Caching HTTP - A comparative study of caching reverse...

76
Bachelor Degree Project in Computer Science G2F, 15 ECTS June 8, 2014 Tobias Logren Dély [email protected] Network and System Administration ’11 Spring term 2014 Supervisor: Jiangou Ding Examiner: Gunnar Mathiason Caching HTTP A comparative study of caching reverse proxies Varnish and Nginx

Transcript of Caching HTTP - A comparative study of caching reverse...

Bachelor Degree Project in Computer Science

G2F, 15 ECTS

June 8, 2014

Tobias Logren Dély

[email protected]

Network and System Administration ’11

Spring term 2014

Supervisor: Jiangou Ding

Examiner: Gunnar Mathiason

Caching HTTP A comparative study of caching reverse proxies Varnish and Nginx

Abstract

With the amount of users on the web steadily increasing websites must at times

endure heavy loads and risk grinding to a halt beneath the flood of visitors. One

solution to this problem is by using HTTP reverse proxy caching, which acts as an

intermediate between web application and user. Content from the application is stored

and passed on, avoiding the need for the application produce it anew for every request.

One popular application designed solely for this task is Varnish; another interesting

application for the task is Nginx which is primarily designed as a web server. This

thesis compares the performance of the two applications in terms of number of

requests served in relation to response time, as well as system load and free memory.

With both applications using their default configuration, the experiments find that

Nginx performs better in the majority of tests performed. The difference is however

very slightly in tests with low request rate.

Keywords: Web accelerator, Web cache, Reverse proxy, Varnish, Nginx, Tsung

Table of contents

1 Introduction ............................................................................................................ 1

2 Background ............................................................................................................ 2

2.1 Load testing tools ............................................................................................ 3

3 Problem statement .................................................................................................. 4

4 Method ................................................................................................................... 4

4.1 Environment .................................................................................................... 5

4.2 Target files....................................................................................................... 6

4.3 Load test procedure ......................................................................................... 7

5 Environment setup ................................................................................................. 8

5.1 Hardware ......................................................................................................... 9

5.2 General server configuration ........................................................................... 9

5.3 Origin server configuration ............................................................................. 9

5.4 Varnish configuration .................................................................................... 10

5.5 Nginx configuration ...................................................................................... 11

5.6 Client configuration....................................................................................... 12

5.7 Load testing ................................................................................................... 13

6 Results and analysis ............................................................................................. 13

6.1 File size phase ............................................................................................... 14

6.2 User range phase ........................................................................................... 15

7 Conclusion ........................................................................................................... 19

8 Future work .......................................................................................................... 19

References .................................................................................................................... 21

Appendix A: Lighttpd configuration

Appendix B: Varnish configuration

Appendix C: Nginx configuration

Appendix D: allthethings.pl

Appendix E: Datasets

1

1 Introduction As the amount of web users continue to increase and with web presence becoming

increasingly important for organizations, stability and resilience against flash floods

of users has become an important subject; exposure is often exactly what an

organization wants as it means more potential customers, but with this comes

problems. Should the performance of the website degrade due to heavy traffic the

result may very well be disgruntled clients (Ari, Hong, Miller, Brandt, & Long, 2003)

and a loss of profit or reputation. One solution to increase the amount of traffic that

can be withstood is to use one or more reverse proxies situated between the web

server originating the content, the origin server, and the clients; the reverse proxies

may then cache responses from the origin server (Nottingham, 2013). This can be set

up using a single reverse proxy cache or by implementing a more complex solution

such as the multi-level caching presented by Ari et al. (2003).

The reverse proxy cache applications compared in this thesis are Varnish and Nginx;

Varnish which was designed for such a task, while Nginx was originally designed as a

web server. Performance-wise, users browsing a website will be most affected by the

response time, and are prone to abandon attempts at browsing should no progress be

made despite repeated updates. This thesis will evaluate both the statistics relating to

user experience as well as the resource consumption on the server side. By following

the recommendations of Nottingham (2011) the experiment environment was setup to

minimize possible interference and avoid potential factors which could invalidate the

results.

As the experiment did not target any specific website or type of web application files

had to be created specifically for testing. Data over average file sizes grouped by type

of content, gathered by HTTP Archive (n.d.) from various web sites, was used as a

basis for files created for the experiment. The HTTP load testing application Tsung

was used in two testing phases to evaluate the response time of the reverse proxies

both in relation to target file size and amount of concurrent requests, as well as system

load and free memory. The first phase sent 10 requests per second for each file in turn,

each file being tested for 10 consecutive minutes; the second phase requested a single

file with the rate of request increasing in 10 minute intervals, from 100 requests per

second to 1000 requests per second.

The results indicate that, in near default configuration, Nginx uses fewer resources

than Varnish. The first testing phase yielded very similar results between the

applications, with Varnish performing more consistently in regards to response time,

but Nginx responding somewhat faster. The second phase proved Nginx to perform

more consistently with increasing request rate, as well as with lower response time

throughout the phase. Overall it would appear that best performance will gained from

using Nginx for reverse proxy caching.

2

2 Background One method of improving web performance mentioned by Nottingham (2013) is to

use web caching. A web cache is located between an origin server and one or more

clients, temporarily storing responses sent by the server in order to serve these directly

when requested again, not requiring the involvement of the origin server. Browsers

often cache downloaded site content when a user browses the web; in order to avoid

downloading the same material repeatedly the browser will save files to cache

(Nottingham, 2013). Another type of web caching may be performed using reverse

proxies that are able to cache responses from origin servers; this improves the

response time of the web site and the amount of requests that may be handled at once

(Nottingham, 2013).

A proxy server acts as an intermediary between a client sending requests and the

target server; proxy server may be used to describe either the service itself or a

physical host providing the service. Figure 2.1 illustrates two types of proxy server,

reverse and forward. A forward proxy will intermediate traffic between client and the

destination chosen by the client, whereas a reverse proxy will appear to be the origin

server for any of the connecting clients; it forwards requests upstream from clients to

the origin server and passes content or information from the server back downstream

to the clients (The Apache Software Foundation, n.d.). The term “origin server” is

used to describe a server located highest in a hierarchy of servers; a server where

information or content originates.

Reverse proxy

example

Forward proxy

example

Origin server Origin servers

Proxy server

Proxy server

Clients Client

Figure 2.1: Examples contrasting the differences between a reverse proxy (left) which will appear

to be the origin of content, and a forward proxy (right) which may be used by a client to connect

to a chosen destination.

Ari et al. (2003) describes in Managing Flash Crowds on the Internet how caches

may be used to prevent poor performance as a result of what they call “flash crowds”

flooding the servers; a flash crowd being a sudden and great increase in visitors in

relation to the sites normal traffic. Ari et al. (2003) mentions that such occurrences

3

often result in a significant number of unsatisfied visitors, while Varnish Software

(2013) claims that in such situations companies or organizations may lose potential

profit or damage its reputation due to poor web application performance.

Varnish Software (2013) states that by using a reverse proxy to intercept requests and

cache the responses from the web server, subsequent users will not experience a delay

from the origin server reproducing the same page. This behavior avoids unnecessary

load on origin servers; according to Varnish Software (2013) it enables the system to

“serve hundreds of consecutive requests per second, speeding up the website

performance and reducing server load drastically”.

One popular caching proxy today is Varnish from Varnish Software, which according

to its creator Poul-Henning Kamp in the article You’re Doing It Wrong (2010), is

designed solely to act as a caching HTTP reverse proxy and is used widely, including

high profile sites Facebook, Wikia, and Slashdot. An earlier application that has

existed for a long time and been used widely for this purpose is Squid, which is given

mention by Kamp (2010) in the article,

The first user of Varnish, the large Norwegian newspaper VG, replaced 12

machines running Squid with three machines running Varnish. The Squid

machines were flat-out 100% busy, while the Varnish machines had 90% of

their CPU available for twiddling their digital thumbs. (p. 55-56)

Kamp (n.d.) explains that caches attempt to store content in primary memory; the

term “attempt” is used here because modern operating systems use virtual memory.

This allows the operating system to swap less frequently used content from primary

storage to secondary storage when space is needed; this management of virtual

memory is invisible to the applications (Kamp, n.d.). Kamp (n.d.) writes that Varnish

performs better than Squid in part because Squid monitors and attempts to swap its

cache content on its own, and that this “1975 programming” is detrimental to

performance due to the application and operating system fighting over memory

management, as well as the time spent monitoring the location of cache content.

Chi, Liu, Niu, & Qiuxuan (2012) tested the application Nginx (pronounced engine-x)

in the role of HTTP cache, Nginx was originally designed to act as an origin server

(Mobily, 2012) but currently also has the ability to act both as a reverse proxy and a

caching reverse proxy (Nginx Inc., n.d.). From these tests Chi et al. (2012) found that

web cache solutions based on Nginx were both suitable and effective in high

concurrency environments, but did not compare this effectiveness to other solutions

available.

A study on the effects of large file transfers on web proxy caching by Kim et al. (2010)

argues that the Squid proxy server used in the campus network became a bottleneck

due to poor scaling in the centralized web proxy caching model. While this thesis

does not aim to verify the viability of centralized caching in relation to peer-to-peer

cooperative caching as done by Kim et al. (2010), the scalability of the proxies in

regard to file size is of relevance when choosing a suitable caching proxy.

2.1 Load testing tools

Load testing a web server is generally done by sending an increasing amount of

simultaneous requests toward the web server, mimicking an increasing amount of

visitors simultaneously browsing the contents. Load tests on a reverse web proxy may

4

be performed using the same techniques; the proxy appears no different from the web

server to the client, and how it performs while serving requests is what is of interest.

Load testing tools record data during a test, such as response time and the number of

requests being sent, including the number of which gets responses and any errors

returned. These statistics only serve to illustrate what the client sees and not the state

of the server resources, gathering such information must be done in conjunction with

other tools and is necessary in order to identify possible bottlenecks or analyze the

applications use of resources. The interesting server resources are primarily the usage

of memory and CPU, network throughput during the tests is recorded by the load

testing tool itself.

There is a multitude of tools available for load testing HTTP on a variety of platforms;

in this thesis the free software application Tsung, written in the Ericsson developed

Open Source language Erlang (Niclausse, 2013), was used to perform the tests. Tsung

may be used for a variety of protocols which includes but is not limited to WebDAV,

MySQL, Jabber/XMPP, and HTTP (Niclausse, 2013); while it contains many features

that may be useful for load testing and simulating real usage of services, the important

main features for this particular thesis is the ability to distribute load between a cluster

of clients, producing requests individually while gathering data to a single point.

Tsung also supports “OS monitoring (CPU, memory and network traffic) using

SNMP, Munin or Erlang agents on remote servers.” (Niclausse, 2013), this ability to

interact with Munin nodes means that resource usage data can automatically be

gathered during the load testing, without the need to manually retrieve and compile

the data. Munin itself is not directly related to load testing but is a tool for networked

resource monitoring, built using a master/node architecture; nodes installed on hosts

in a network gather data about host specific resource usage, while the master regularly

retrieves the gathered data from the nodes (About Munin, n.d.).

3 Problem statement When designing or extending an infrastructure that hosts a website, reverse proxies

may be used to create a more responsive and resilient website; choosing which proxy

application to implement into the system may be a question of which software

provides the best performance, although the choice may also be influenced by which

operating system is already used, as well as the configurability of the application and

available service level agreements. Many individuals are more than willing to

recommend one application or another based on personal experience or anecdotal

evidence, but such recommendations mean little without actual data as evidence.

This thesis aims to provide a concrete basis for the choice of caching HTTP reverse

proxy by comparing the performance of the popular and effective reverse proxy

Varnish, to the performance of Nginx running as a caching reverse proxy.

Performance will be evaluated on the response time of requests, as well as CPU and

memory usage during load. Response time is interesting from the perspective of client

experience while memory and CPU usage are important factors in determining the

impact on server resources between the applications.

4 Method A scientifically sound method of execution must be planned in order to guarantee that

the gathered data is both verifiable and of significance to the problem posed. When

load testing a network service such as a web server or a reverse proxy, care must be

5

taken to ensure that the host or service itself is the limiting factor (Nottingham, 2011);

the amount of network traffic will always be limited to the bandwidth of the network

infrastructure, and any network services sending packets over the link being used for

benchmarking will compete for bandwidth with benchmarking traffic. It is therefore

important that an isolated environment without outside interference be used, and that

the limits of the network infrastructure are known and traffic flow is monitored as to

not reach these limits. Another important detail is that the client or clients used to

perform the a test must not reach maximum capacity during the test, as this will report

the clients capacity for generating load rather than the load which the server is able to

handle (Nottingham, 2011).

Mark Nottingham (2011) outlines several other important issues which must be

considered in order to create meaningful results with a load test, the first being the

issue of consistency; the test environment must be identical between all tests if any

real comparison is to be made between the results, both different software versions or

applications running as well as other environment differences may all impact the

results. For this thesis it means that the network components and topology must not

change; the OS and configuration thereof must not change and the running

applications or scripts should be must not change; anything that affects the available

resources other than the subject of the test itself may impact the results, and thus

invalidate the test. Nottingham (2011) goes on to mention that one common fault

being repeated is running the load test software on the same machine as the server that

is being tested which is an issue as both the load testing tool and the server will

compete for the resources, which creates unreliable results due to the server fighting

for resources it would have readily available during a real scenario. Overloading the

server with requests may be of interest to see how such a scenario affects the server’s

performance, but is not indicative of the maximum amount of requests it can handle

as performance usually is lost when the server becomes overloaded (Nottingham,

2011). According to Nottingham (2011) a test should run for at least 3 minutes to be

sure all application and OS buffers and network stacks have stabilized, preferably the

test should last even longer such as 5 or even 10 minutes. He also mentions that

different response sizes may perform differently.

4.1 Environment

As mentioned previously, an isolated environment on which to perform the tests is

required in order to gather data for analysis and comparison. The proxies require a

web server to act as a back-end where content originates, and at least one client is

required from which requests will be sent. During load tests a large amount of

network traffic is expected, and the network may become congested; the topology of

the environment illustrated in Figure 4.1 is simple and designed to maximize the

amount of simultaneous requests that can be handled by the network, reducing the

amount of possible bottlenecks and failure points introduced by the network

equipment. By directly connecting the proxy to the origin server the chance of

equipment failure is minimized; introducing a second switch connecting the web

server to the proxy would introduce more possible failure points, and connecting the

origin server to the proxy by the first switch would increase the load on the switch.

6

Origin server

HTTP caching

reverse proxy

Clients used as testing platforms

Gigabit switch

Figure 4.1: The testing setup, including the clients from which tests are run, the reverse proxy

which will be tested, and the origin server hosting the requested content.

Both Varnish and Nginx are functional on multiple platforms; the Debian distribution

of GNU/Linux was chosen as all software required was available on this commonly

used platform. The proxies were installed on separate hard drives of the same brand

and model, containing identical operating system installations to provide an equal and

fair footing and to avoid any possible interference between the two applications.

4.2 Target files

Content type that is provided through a caching proxy may vary depending on the

organization, and may range from lightweight text-based files to videos much larger

in size; as mentioned in section 2 as well as section 3, the scalability in regards to file

size is of relevance when selecting a reverse proxy, this is also noted by Nottingham

(2011) as one aspect that may be of interest when performing load testing. As this

thesis does not target a specific web site or type of content, but rather aims to be of

use when working with any type of web site, the selection of file sizes should be

based on relevant real world data. The HTTP Archive (n.d.) provides a solid basis for

selecting the range of file sizes to cover in the tests as it gathers and publishes data

about requests from a large selection of web sites on a monthly basis. This data

includes average size of various types of content, which is exactly the kind of data

required to select relevant file sizes for the experiment. The actual contents of the files

are not important, only that the file contents are initialized (written to disk); simply

allocating space will not be enough as there must be actual file content to read and to

send.

Table 4.1. Average sizes of responses separated into type as gathered by the HTTP Archive (n.d.)

between 2013-04-01 and 2014-04-01.

Date HTML JS CSS Image Flash Font Other

2013-04-01 53 219 36 853 88 18 133

2013-04-15 56 221 36 856 92 18 132

2013-05-01 57 219 36 872 91 19 133

2013-05-15 53 222 37 881 91 29 144

7

Date HTML JS CSS Image Flash Font Other

2013-06-01 54 223 37 891 90 29 147

2013-06-15 54 224 37 899 90 21 141

2013-07-01 54 225 37 909 89 21 149

2013-07-15 54 227 38 915 90 22 146

2013-08-01 55 238 40 932 90 25 142

2013-08-15 55 250 41 930 89 28 139

2013-09-01 56 256 42 951 85 30 131

2013-09-15 56 259 43 965 88 31 143

2013-10-01 57 260 44 970 84 33 142

2013-10-15 57 264 44 988 85 35 145

2013-11-01 56 265 45 987 83 37 142

2013-11-15 56 267 46 1001 86 55 142

2013-12-15 57 276 46 1030 87 58 147

2014-01-01 56 272 46 1028 79 59 142

2014-01-15 57 274 46 1031 78 50 146

2014-02-01 56 274 47 1040 77 51 142

2014-02-15 56 276 48 1054 77 53 147

2014-03-01 56 276 48 1063 76 54 131

2014-04-01 56 280 49 1088 76 57 134

As is evident from Table 4.1, the average size of different kinds of web content has

changed frequently during the period observed. The average size of Flash content

shows a prolonged shrinkage, while JavaScript (JS), Cascading Style Sheets (CSS),

fonts, and images instead show a growth. The size of HTML and “other” content

appears to fluctuate but remain generally the same.

Based on the content size observed during the period 2013-04-01 to 2014-04-01 by

the HTTP Archive (n.d.), Table 4.1, the average sizes range from 29kB to 1088kB

with the most values concentrated in the 50kB to 300kB range. This information was

used to choose the file sizes for the tests as presented in Table 4.1, which also

includes some values outside the observed range to provide more insight into how the

application scales in this regard.

Table 4.2. Files created for the tests, sizes based on the observed ranges and trends in Table (4.1).

File name Size (kB)

10.emt 10

50.emt 50

100.emt 100

150.emt 150

200.emt 200

500.emt 500

1000.emt 1000

1500.emt 1500

4.3 Load test procedure

As mentioned in section 2.1, load testing may be performed by sending an increasing

amount of simultaneous requests towards the target server with the purpose of finding

how the server or system performs, and the load under which it is able to adequately

8

serve requests. The procedure of the experiment will differ somewhat from such a test

where an actual website is the target of the test; the targets in the experiment are

specific files of specific sizes, and the point of the experiment is not to find out the

highest traffic load a website can serve or to tune the system on which it is hosted, but

rather to compare the performance of two reverse proxies.

It is, as established by Nottingham (2011), important to know the limitations of the

network infrastructure. iperf was used to measure, in terms of TCP throughput, the

connection between the client and the proxy first, then the connection between proxy

and origin server in 10 minute tests.

The load tests were divided into two phases, the first of which evaluated the

performance in regard to file size, the file size phase; each target file was tested one at

a time with a rate of 10 requests per second during a 10 minute period, after which a

one minute cool-down period of one minute was initiated to free up resources before

the test of the next file size was started. The length of the cool-down period was

chosen to be a bit longer than the timeout period for TCP sockets (set to 30 seconds in

section 5.6). The second phase, the user range phase, was aimed at evaluating the

performance of the servers at different request rates by targeting a single file and

creating an increasing rate of requests. The phase started with a rate of 100 requests

per second, and every 10 minutes the rate was incremented by 100, until a maximum

rate of 1000 requests was reached. This was not enough to deplete resources, but

rather an arbitrary threshold chosen both due to a lack of time (each increment taking

10 minutes) as well as to avoid problems which could appear due to resources being

depleted.

Before each test (but not each phase) both the proxy and the origin server were

rebooted and the cron service was stopped by running service cron stop to avoid

any scheduled scripts or applications from impacting the tests.

The origin server was tested first to assure the proper operation of both the test

sequence as well the server itself, this required the origin server to be connected to the

switch and not the reverse proxy, and after this test was completed the origin server

was connected properly to the proxy, and the reverse proxy applications were tested

one at a time.

5 Environment setup The hostnames and IP addresses used during this experiment are presented in Table

5.1.

Table 5.1. Hostname and IP address of hosts

Hostname IP Address Role

Client1 10.204.4.2 Testing platform

Client2 10.204.4.3 Testing platform

Proxy1 10.204.4.253

192.168.1.2

Varnish reverse proxy

Proxy2 10.204.4.253

192.168.1.2

Nginx reverse proxy

Web 192.168.1.1

10.204.4.254*

Origin server

* The same interface as the hosts other address, address only used during the initial trial without a

proxy.

9

5.1 Hardware

All machines used in the experiments had identical components; each machine had a

Core 2 Duo [email protected] processor, was fitted with four DDR2 1024MB

667MHz RAM sticks, used SATA-2 7200RPM 160GB hard drives all of the same

brand which were connected by a hard drive bay, and the NICs used were rated for

transfer speeds up to 1 Gigabit.

5.2 General server configuration

All servers were installed with Debian 7.4, using all available hard drive space. The

hard drive was automatically partitioned by the installer into one swap partition and a

single ext4 partition for the operating system. During the software selection phase of

the installation, the Standard system utilities and SSH server were chosen. The Munin

agents (nodes) required were installed after OS installation from the Debian

repositories through the command apt-get install munin-node.

5.3 Origin server configuration

Version 1.4.31 of the web server Lighttpd (pronounced lighty) was installed on the

origin server through the command apt-get install lighttpd, the default

configuration from the installed Debian package was used with some modification, as

described below.

An important point brought up by Nottingham (2011) is running out of file

descriptors, this is important both on the servers being connected to as well as the

clients performing the tests. Establishing a connection requires a file descriptor to be

used; should all file descriptors already be in use, the connecting party will only

receive the TCP error “too many open files”. Changing the file descriptors available

to Lighttpd as stated in the official documentation (server.max-fds option, n.d.) may

be done through the server.max-fds option, default value 1024 (server.max-fds

option, n.d.). According to the documentation this setting only works if the lighttpd

service has root permissions on startup, however, changing this option did increase

the amount of available file descriptors despite the service being run as the www-data

user, although it would not increase beyond the value 37856 despite attempts to set it

considerably higher. Since it would not increase beyond 37856, this was chosen as the

final value, and the tests never encountered any issued with this value set.

Related to the file descriptors is the amount of connection lighttpd allows to be

open at any one time, like server.max-fds, the option server.max-connections is

set to 1024 by default (server.max-connections option, n.d.). The documentation

recommends the value to be set to half the value of server.max-fds, which in this

case would be

. The complete version of lighttpd.conf as used in

the experiment may be found in appendix A.

The target files were created with the UNIX command dd, which is described to

“Copy a file, converting and formatting according to the operands” (Rubin,

MacKenzie, & Kemp, 2010). The command can be used to create a zero-filled file of

a given size by copying /dev/zero of the Linux OS, and this was used to create the

target files:

dd if=/dev/zero of=/var/www/10K.emt bs=1K count=10

dd if=/dev/zero of=/var/www/50K.emt bs=1K count=50

dd if=/dev/zero of=/var/www/100K.emt bs=1K count=100

10

dd if=/dev/zero of=/var/www/150K.emt bs=1K count=150

dd if=/dev/zero of=/var/www/200K.emt bs=1K count=200

dd if=/dev/zero of=/var/www/500K.emt bs=1K count=500

dd if=/dev/zero of=/var/www/1000K.emt bs=1K count=1000

dd if=/dev/zero of=/var/www/1500K.emt bs=1K count=1500

Substituting /dev/zero with /dev/urandom (or /dev/random) will instead fill the

file with random data; however, tests using both zero-filled and random-filled files

resulted in no real performance difference when used in caching, which suggests that

neither of the applications tested differentiate between file content.

5.4 Varnish configuration

As previously mentioned, the proxy host has two separate hard drives, one for each of

the reverse proxy servers. The version of Varnish available in the Debian 7

repositories at the time of installation was 3.0.2, while the latest stable version

released was 3.0.5. The latest version was available as a Debian package using the

official Varnish repository for Debian:

wget -qO - http://repo.varnish-cache.org/debian/GPG-key.txt | apt-key add -

echo "deb http://repo.varnish-cache.org/debian/ wheezy varnish-3.0" \

>> /etc/apt/sources.list

apt-get update

apt-get install varnish

The start options for the Varnish daemon are set in /etc/default/varnish, -a

determines the port on which Varnish will listen and is set to 6081 in new installations

to not interfere with any web services already running on the host during the setup of

the service. The port was changed to 80 as this is the TCP port for HTTP traffic, and

no other services are using this port on the proxy host. The number of file descriptors

available to Varnish was already set to 131072, which did not incur any issues during

testing.

DAEMON_OPTS="-a :80 \

-T localhost:6082 \

-f /etc/varnish/default.vcl \

-S /etc/varnish/secret \

-s malloc,256m"

The configuration file used by Varnish is /etc/varnish/default/vcl by default, as

declared by –f in /etc/default/varnish. Several changes were made to

default.vcl in order to set Varnish to pass requests to the origin server, and to cache

responses for the target files created in section 5.3. The backend option is used to

declare different servers which requests may be passed on to, in this experiment the

origin server was the only server that requests would be passed on to, and thus only a

single backend was declared.

backend default {

.host = "192.168.1.1";

.port = "80";

}

The vcl_recv subroutine is called when a request is received, and determines what

backend is used, and what action is taken; vcl_fetch is called when a response from

the backend is received (Varnish Configuration Language - VCL, n.d.). vcl_recv was

set to use the backend declared for the origin server, and to always look for cached

versions of responses (lookup). Backend responses (beresp) for the target files were

set to be cached for 5 minutes and to be delivered to the requesting client (deliver).

11

sub vcl_recv {

set req.backend = default;

return(lookup);

}

sub vcl_fetch {

if (req.url ~ "\.(emt)") {

set beresp.ttl = 5m;

return(deliver);

}

}

The complete versions of the varnish and default.vcl file as used in the

experiment may be found in appendix B.

5.5 Nginx configuration

Like Varnish, the latest official Nginx release was found on the official Nginx

repository as a Debian package, version 1.6.0, as opposed to version 1.2.1 provided

by the Debian repositories:

wget -qO - http://nginx.org/packages/keys/nginx_signing.key | apt-key add -

echo "deb http://nginx.org/packages/debian/ wheezy nginx" >> \

/etc/apt/sources.list

echo "deb-src http://nginx.org/packages/debian/ wheezy nginx" >> \

/etc/apt/sources.list

apt-get update

apt-get install nginx

The main configuration file of Nginx is /etc/nginx/nginx.conf, in which the

amount of file descriptors available to each worker was set by adding

worker_rlimit_nofile 37856, and the amount of connections each worker is able

to accept at any time was changed by setting worker_connections . A

location to store cache objects is required to be set in order to cache with Nginx, a

cache zone called TEST was set with a size of 256 MB, matching the memory

allocated in Varnish:

proxy_cache_path /etc/nginx/cache keys_zone=TEST:256m;

The default behavior of the Nginx configuration is to include files which contain

configuration for sites, this was modified by replacing the line

include /etc/nginx/conf.d/*.conf; with a server directive; the directive

contains options to listen on port 80 (the port for HTTP), and to pass any request

received to the origin server. It uses the previously declared cache location TEST to

cache requests and will cache any response with code 200 OK (file found) for a

duration of 5 minutes.

server {

listen 80;

location / {

proxy_pass http://192.168.1.1;

proxy_set_header Host $host;

proxy_cache TEST;

proxy_cache_valid 200 5m;

}

}

The complete version of nginx.conf as used in the experiment may be found in

appendix C.

12

5.6 Client configuration

The clients were installed with Debian 7.4 in the same manner as the servers, except

the Desktop Environment task was included with Standard and SSH server. Tsung

version 1.4.2 was installed through the Debian repositories using apt-get install

tsung. Tsung cannot use the IP address of clients when running distributed tests, and

must instead use a hostname or fully qualified domain name. As these tests were

performed in an isolated environment without a DNS server, this required entries to

be made in the hosts file of both clients. The Debian hosts file is located in

/etc/hosts, where the IP address is stated first, followed by the hostname to bind to

the address. The hosts file of Client1 was altered by adding a line with “10.204.4.3

Client2”, and the hosts file of Client2 with “10.204.4.2 Client1”.

Tsung relies on SSH when communicating between the different clients used when

testing, and it relies on the SSH protocols public key support in order to authenticate

and establish the connection for communication. The key pair was generated on

Client1 by running the command ssh-keygen –t rsa and entering a blank password

in order to avoid entering the password every test, the public key was then copied into

the authorized_keys file through running the command cp ~/.ssh/id_rsa.pub

~/.ssh/authorized_keys, thus allowing the private key to be used in order to

authenticate a SSH session. All the files created were copied onto Client2 (scp -r

~/.ssh Client2:~/.), allowing either of the clients to initiate a SSH session with

the other using these keys. Connecting to a host through SSH for the first time will

result in a prompt declaring that the authenticity of a host is unknown and asking

whether to continue or not, this is an issue that prevents Tsung from connecting to the

clients, including localhost, which means that each host used for distributed testing

must be manually connected to through SSH before any tests can be run.

The amount of file descriptors available to a specific user or group on the system may

be set in /etc/security/limits.conf, the file descriptors available to the user used

on the clients to run the tests, test-user, was increased to 200,000 by appending two

lines to this file on both Client1 and Client2:

test-user soft nofile 200000

test-user hard nofile 200000

As mentioned in section 4.3 running out of ephemeral ports is an issue that must be

avoided during a test, and both the users generated by Tsung as well as connections

used for the Munin integration requires ephemeral ports. The ephemeral ports used by

default in Debian 7.5 as reported by sysctl net.ipv4.ip_local_port_range are

32768 to 61000, which is a total of 28232 ports; as shown increase the available

amount and decrease the timeout value. According to Best Current Practices: 165 by

Cotton, M. et. al. (2011) IANA defines port number 0-1023 as System Ports or Well

Known Ports, these are the ports assigned to system services such as DNS, DHCP,

NTP, etc. The second defined range is User Ports, 1024-49151, and finally the

Ephemeral Ports defined as 49152-65535. By consolidating the user port range into

the ephemeral port range, 1024-65535, the number of available ephemeral ports is

increased to 64511. To further free up ports, the timeout period was lowered to 30

seconds, which allows previously used ports to be reused faster.

/etc/sysctl.conf: net.ipv4.ip_local_port_range="1024 65535"

/etc/sysctl.conf: net.ipv4.tcp_fin_timeout=30

13

5.7 Load testing

Using iperf the connection between the clients and the proxy host was measured to

allow 937 Mbit/sec, the proxy to origin server connection was measured to allow 772

Mbit/sec. Nottingham (2011) claim that load test tools do not report the TCP overhead

when reporting the bandwidth being used, and recommends not exceeding a portion

such as 2/3 of the number reported by iperf or similar networking throughput test,

using this recommendation the limit becomes (

) Mbit/sec and

(

) Mbit/sec respectively.

Every Tsung test requires a XML file containing the configuration for the test, which

includes all client nodes being used, servers to target, servers to monitor, and how the

test is performed which includes all targets on the target servers. A script (appendix

D) was created to automate the creation of the XML files and to start the tests

according to the steps outlined in section 4.3.

6 Results and analysis The results are presented in this section together with an analysis in relation to the

different variables of performance measured. It should be noted that all requests

produced during these tests resulted in 200 OK responses, that is, no server side errors

were encountered.

According to the calculation of bandwidth based on testing, as presented in section

5.7, the available bandwidth was 624.7 Mbit/sec and 514.7 Mbit/sec between client

and proxy, and proxy and origin server respectively. The highest recorded network

throughput during any load test in this experiment was 145.74 Mbit/sec (Nginx, 10

requests per second, 1500kB target file), thus the network should not have negatively

impacted any of the results.

All request and resource related results produced during the tests and presented in this

section are available in appendix D.

14

6.1 File size phase

Figure 6.1. Distribution of mean response time (milliseconds) per ten seconds during the file size

phase. Nginx displayed on the left hand side, Varnish on the right hand side. Empty circle shows

mean, bar inside boxes show median, dots are outliers.

Requests of the different target files showed slight differences in response time in

favor of Nginx. Tsung does not save the response time for each separate request, but

instead calculates the mean of every ten seconds (although it does record the highest

and lowest individual response time) as well as the standard deviation; Figure 6.1

shows the distribution of mean response time per ten seconds as recorded by Tsung

during the file size testing phase, Figure 6.2 shows the corresponding standard

deviation of response time.

The most distant outliers in both Figure 6.1 and Figure 6.2 represent the instances

containing the very first request of a file, where neither the reverse proxy nor the

origin server had yet retrieved the target file. Such occurrences result in a much larger

response time as opposed to if the origin server had already loaded the file into

memory, and larger still in comparison to if the reverse proxy had placed the file into

cache.

0

5

10

15

20

10kB 50kB 100kB 150kB 200kB 500kB 1000kB 1500kB

File size

Nginx

Varnish

Mean response time per 10 seconds

15

Figure 6.2. Distribution of standard deviation in response time per ten seconds during the file size

phase. Nginx displayed on the left hand side, Varnish on the right hand side. Empty circle shows

mean, bar inside boxes show median, dots are outliers.

Varnish appears to be somewhat more consistent in the file size phase than Nginx

regarding response time, as the results show a tiny bit lower standard distributions and

less spread between most data points, although the differences are very slight.

6.2 User range phase

In contrast to the file size phase, the results from the user range phase show a

considerable difference between the applications as shown in Figure 6.3. Like in the

file size phase Nginx achieves the lowest response time, with a 10 second mean never

reaching above 1.3 milliseconds; Varnish on the other hand reaches close to 80

milliseconds on two occasions, and between 20 and 40 on several more.

0

2

4

6

8

10kB 50kB 100kB 150kB 200kB 500kB 1000kB 1500kB

File size

Nginx

Varnish

Standard deviation in response time per 10 seconds

16

Figure 6.3. Mean response time (milliseconds) per 10 seconds during the user range phase.

Starting with 100 requests per second, the request rate was increased by 100 every 600 seconds

until a rate of 1000 requests per second had been reached.

Figure 6.4 provides a better view of the 0-5 millisecond range, with the larger values

removed. From this perspective the difference in response time between the spikes

becomes much clearer; Nginx can be seen performing slightly better than Varnish

throughout the test, and not just when the response time of Varnish dramatically

increased.

Figure 6.4. Mean response time (milliseconds) per 10 seconds during the user range phase,

adjusted for visibility by removing values above 5 milliseconds.

The standard deviation in response time (Figure 6.5) calculated during this phase

display many extreme spikes from Varnish throughout the test, and the overall

0.8

1.0

1.2

0

20

40

60

Ngin

xV

arn

ish

0 2000 4000 6000

Time

Mean response time per 10 seconds

0

1

2

3

4

5

0 2000 4000 6000

Time

Nginx Varnish

Mean response time per 10 seconds - adjusted

17

difference between the two standard deviations of the two applications become more

defined as the request rate increases.

Figure 6.5. Standard deviation in response time during the user range phase. Starting with 100

requests per second, the request rate was increased by 100 every 600 seconds until a rate of 1000

requests per second had been reached.

Removing the more extreme values and focusing only on the 0 to 10 millisecond

values again provides a clearer view of the majority of recorded values, and not just

the odd spikes (Figure 6.6). Even when disregarding the more extreme values from

Varnish, Nginx appears to have a more consistent behavior in regards to response

time.

Figure 6.6. Standard deviation in response time during the user range phase. Adjusted for

visibility by removing values above 10.

0

1

2

3

4

5

0

50

100

150

200

250

Ngin

xV

arn

ish

0 2000 4000 6000

Time

Standard deviation in response time per 10 seconds

0.0

2.5

5.0

7.5

10.0

0.0

2.5

5.0

7.5

10.0

Ngin

xV

arn

ish

0 2000 4000 6000

Time

Standard deviation in response time per 10 seconds - adjusted

18

Figure 6.7. System load during the user range phase. Starting with 100 requests per second, the

request rate was increased by 100 every 600 seconds until a rate of 1000 requests per second had

been reached.

As seen in Figure 6.7, Nginx had a more consistent and lower overall system load,

and the free memory count also showed a slight favor towards Nginx (Figure 6.8).

Figure 6.8. Free memory (megabytes) during the user range phase. Starting with 100 requests

per second, the request rate was increased by 100 every 600 seconds until a rate of 1000 requests

per second had been reached.

0.0

0.1

0.2

0.3

0.0

0.1

0.2

0.3

Ngin

xV

arn

ish

0 2000 4000 6000

Time

System load per 10 seconds

3745.0

3747.5

3750.0

3752.5

3755.0

3757.5

3745.0

3747.5

3750.0

3752.5

3755.0

3757.5

Ngin

xV

arn

ish

0 2000 4000 6000

Time

Free memory per 10 seconds

19

7 Conclusion During the first phase Nginx performed best (although with a nearly nonexistent

margin) in overall response time, Varnish however displayed less deviation in

response time which means a more consistent behavior. The second phase with higher

request rates favored Nginx in both response time and consistency, Varnish displaying

a large variance in response time with large spikes. System load and free memory

recorded during the second phase also favored Nginx.

The behavior of Varnish in the second phase may be a result of an inability to

properly handle congestion as the request rate increases, which means that the default

configuration may possibly be changed to improve this behavior. However, as

previously stated Varnish did not produce any errors during testing and despite the

perplexing differences in the results succeeded in serving all requests.

Available memory recorded during the user range phase does not necessarily

represent memory used by the processes of the applications, or their caches, but may

simply be the result of an increase of file descriptors and similar OS bound factors

related to establishing connections.

While the experiment did not simulate, nor attempt to simulate, real usage of a web

site, the results are still a valid basis for estimating performance in a real scenario as it

evaluates the behavior of the applications at different request rates and file sizes.

Performance of a real web site is affected not only by the reverse proxy (if present),

but also the programming of the site itself and any intermediary caches such as for

instance application cache and byte-code cache. The results indicate that the best

performance will be gained from using Nginx for reverse proxy caching, but it is

impossible to say for certain if optimization of both applications’ configuration will

favor one or the other. As the default configuration was used for both Varnish and

Nginx, it is impossible to draw any conclusion about which software perform best

when optimized to any system.

8 Future work Had more time and better resources been available this experiment could have been

improved by testing a range of requests per second not only on the 10kB target, but on

all the other targets as well. A higher maximum rate of requests could also have been

used. While the experiment as performed lends some insight into scaling in terms of

file size and requests per second separately, a greater certainty would have been

achieved if a combination thereof was tested. Unfortunately the hardware used did not

provide the bandwidth necessary for high rates of requests on larger target files.

Another aspect of reverse proxy caching, which is lost in this experiment, is

performance during load balancing and the handling of cache misses (the target file is

not found in cache). There are also other applications which may act as reverse proxy

caches beside Nginx and Varnish, including Squid which is mentioned in section 2;

while Squid supposedly performed significantly worse than Varnish this may have

been improved since, and while Varnish and Nginx are supposedly rather popular this

is no guarantee that other software do not match or surpass their performance.

Reverse proxies by their nature offer some protection against raw distributed-denial

of-service (DDoS) attacks that work by flooding the servers with simple requests.

Layer 7 denial-of-service (DoS) attacks such as Slowloris or R-U-Dead-Yet (RUDY)

work differently however. A normal DDoS attack as previously described will affect

20

all services on the server, the amount of requests will in the worst case max the CPU

usage of the host rendering the host unresponsive during the attack. Slowloris works

differently as explained by its creator Robert ‘RSnake’ Hansen (n.d.), instead of

drowning the target in requests it will send partial HTTP requests; the attack builds

upon the assumption that the target server will expect further packets containing the

rest of the HTTP requests and keep the socket connections open, while Slowloris

periodically sends more bytes of the requests thus keeping the connections from

timing out. The aim is to eventually have all server workers busy waiting for HTTP

request fragments, leaving no space for genuine connections from clients (Hansen,

n.d.). RUDY also works by keeping the server waiting, but instead of incomplete

headers, sends incomplete POST forms (Raz, 2010). The first packet establishes a

connection to the server, but is incomplete and only contains the first part of a POST

form field, it will then keep the connection open by periodically sending more data

contained in the field. Unlike Slowloris which is ineffective against certain web

servers, RUDY is universal (Raz, 2010). Different reverse proxies’ resistance to these

kinds of attack could be well be explored, as well as analysis of what design choices

or implementations make respective proxies either effective or ineffective in this

regard.

21

References About Munin. (n.d.). Retrieved 03 19, 2014, from Munin: http://munin-

monitoring.org/

Ari, I., Hong, B., Miller, E. L., Brandt, S. A., & Long, D. D. (2003). Managing Flash

Crowds on the Internet. MASCOTS (pp. 246-249). IEEE Computer Society.

doi:10.1109/MASCOT.2003.1240667

Chi, X., Liu, B., Niu, Q., & Qiuxuan, W. (2012). Web Load Balance and Cache

Optimization Design based Nginx Under High-concurrency Environment.

2012 Third International Conference on Digital Manufacturing and

Automation (ICDMA), (pp. 1029-1032). doi:10.1109/ICDMA.2012.241

Cotton, M., Eggert, L., Touch, J., Westerlund, M., & Cheshire, S. (2011). Internet

Assigned Numbers Authority (IANA) Procedures for the Management of the

Service Name and Transport Protocol Port Number Registry. BCP: 165. RFC:

6335. Retrieved 04 26, 2014, from https://tools.ietf.org/html/rfc6335

Hansen, R. (n.d.). Slowloris HTTP DoS. Retrieved 03 18, 2014, from

http://ha.ckers.org/slowloris/

HTTP archive. (n.d.). Retrieved 03 21, 2014, from Trends:

http://httparchive.org/trends.php

Kamp, P.-H. (2010, 07). You're doing it wrong. Communications of the ACM, 53(7),

pp. 55-59. doi:10.1145/1785414.1785434

Kamp, P.-H. (n.d.). Notes from the Architect. Retrieved 03 08, 2014, from

https://www.varnish-cache.org/trac/wiki/ArchitectNotes

Kim, H.-C., Lee, D., Chon, K., Jang, B., Kwon, T., & Choi, Y. (2010). Performance

Impact of Large File Transfer on Web Proxy Caching: A Case Study in a High

Bandwidth Campus Network Environment. JOURNAL OF

COMMUNICATIONS AND NETWORKS, 12, 52-66.

doi:10.1109/JCN.2010.6388434

Mobily, T. (2012). Interview with Igor Sysoev, author of Apache's competitor NGINX.

Retrieved 12 16, 2013, from

http://www.freesoftwaremagazine.com/articles/interview_igor_sysoev_author

_apaches_competitor_nginx

Nginx Inc. (n.d.). Product Comparison. Retrieved 12 16, 2013, from

http://nginx.com/products/

Niclausse, N. (2013). Tsung is an open-source multi-protocol distributed load testing

tool. Retrieved 12 16, 2013, from http://tsung.erlang-projects.org/

Nottingham, M. (2011). On HTTP Load Testing. Retrieved 03 21, 2014, from mnot's

blog: http://www.mnot.net/blog/2011/05/18/http_benchmark_rules

Nottingham, M. (2013). Caching Tutorial. Retrieved 03 14, 2014, from mnot's blog:

http://www.mnot.net/cache_docs/

Raz, R. (2010). Universal HTTP DoS - Are You Dead Yet? Retrieved 03 19, 2014,

from http://chaptersinwebsecurity.blogspot.com/2010/11/universal-http-dos-

are-you-dead-yet.html

22

Rubin, P., MacKenzie, D., & Kemp, S. (2010). dd(1) - Linux man page. Retrieved

2014, from http://linux.die.net/man/1/dd

server.max-connections option. (n.d.). Retrieved 04 06, 2014, from Lighttpd:

http://redmine.lighttpd.net/projects/lighttpd/wiki/Server_max-

connectionsDetails

server.max-fds option. (n.d.). Retrieved 04 06, 2014, from Lighttpd:

http://redmine.lighttpd.net/projects/lighttpd/wiki/Server_max-fdsDetails

The Apache Software Foundation. (n.d.). Apache Module mod_proxy. Retrieved 12

16, 2013, from https://httpd.apache.org/docs/2.2/mod/mod_proxy.html

Varnish Configuration Language - VCL. (n.d.). Retrieved 05 03, 2014, from Varnish

version 3.0.5 documentation: https://www.varnish-

cache.org/docs/3.0/tutorial/vcl.html

Varnish Software. (2013). The high cost of poor web performance. Retrieved 03 14,

2014, from https://www.varnish-

software.com/system/files/web_downloads/varnish_high_cost_of_poor_web_

performance_whitepaper_1.pdf

i

Appendix A: Lighttpd configuration

/etc/lighttpd/lighttpd.conf:

server.modules = (

"mod_access",

"mod_alias",

"mod_compress",

"mod_redirect",

)

server.document-root = "/var/www"

server.upload-dirs = ( "/var/cache/lighttpd/uploads" )

server.errorlog = "/var/log/lighttpd/error.log"

server.accesslog = "/var/log/lighttpd/access.log"

server.pid-file = "/var/run/lighttpd.pid"

server.username = "www-data"

server.groupname = "www-data"

server.port = 80

server.max-fds = 37856

server.max-connections = 18524

index-file.names = ( "index.php", "index.html",

"index.lighttpd.html" )

url.access-deny = ( "~", ".inc" )

static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir = "/var/cache/lighttpd/compress/"

compress.filetype = ( "application/javascript", "text/css",

"text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port

include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port

include_shell "/usr/share/lighttpd/create-mime.assign.pl"

include_shell "/usr/share/lighttpd/include-conf-enabled.pl"

i

Appendix B: Varnish configuration

/etc/default/varnish:

START=yes

NFILES=131072

MEMLOCK=82000

DAEMON_OPTS="-a :80 \

-T localhost:6082 \

-f /etc/varnish/default.vcl \

-S /etc/varnish/secret \

-s malloc,256m"

/etc/varnish/default.vcl:

backend default {

.host = "192.168.1.1";

.port = "80";

}

sub vcl_recv {

set req.backend = default;

return(lookup);

}

sub vcl_fetch {

if (req.url ~ "\.(emt)") {

set beresp.ttl = 5m;

return(deliver);

}

}

i

Appendix C: Nginx configuration

/etc/nginx/nginx.conf:

User nginx;

worker_processes 1;

worker_rlimit_nofile 37856;

error_log /var/log/nginx/error.log warn;

pid /var/run/nginx.pid;

events {

worker_connections 37856;

}

http {

include /etc/nginx/mime.types;

default_type application/octet-stream;

log_format main

'$remote_addr - $remote_user [$time_local] "$request"'

'$status $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;

keepalive_timeout 65;

proxy_cache_path /etc/nginx/cache keys_zone=TEST:256m;

server {

listen 80;

location / {

proxy_pass http://192.168.1.1;

proxy_set_header Host $host;

proxy_cache TEST;

proxy_cache_valid 200 5m;

}

}

}

i

Appendix D: allthethings.pl #!/usr/bin/perl

use strict;

use warnings;

use IO::File;

my @file_names = ('10K.emt','50K.emt','100K.emt','150K.emt',

'200K.emt','500K.emt','1000K.emt','1500K.emt');

my $time = 10;

# Read target IP address

my $target = shift;

if(not $target){

print "\nTarget IP address:\n";

chomp($target = <>);

}

# Timestamp subroutine

sub getTimestamp {

my

($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);

my $timestamp = sprintf ( "%02d:%02d:%02d",

$hour,$min,$sec);

return $timestamp;

}

my $fh = IO::File->new();

# For approximation of test time

my $sTime = time();

# Phase 1: test file sizes

print "Phase 1: Testing file sizes\n";

foreach my $file (@file_names){

print "Writing to tsung.xml (Phase 1: $file)\n";

$fh->open(".tsung/tsung.xml","w");

print $fh <<EOF;

<?xml version="1.0"?>

<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd">

<tsung loglevel="notice" version="1.0">

<!-- Client side setup -->

<clients>

<client host="localhost" maxusers="190000" cpu="2">

<ip value="10.204.4.2"/>

</client>

<client host="client2" maxusers="190000" cpu="2">

<ip value="10.204.4.3"/>

</client>

</clients>

<!-- Server side setup -->

<servers>

<server host="$target" port="80" type="tcp"></server>

</servers>

<!-- OS monitoring -->

<monitoring>

<monitor host="$target" type="munin"/>

</monitoring>

<load>

<arrivalphase phase="1" duration="$time" unit="minute">

<users arrivalrate="10" unit="second"/>

</arrivalphase>

</load>

ii

<sessions>

<session name="http-example" probability="100" type="ts_http">

<request> <http url="/$file" method="GET" version="1.1"/> </request>

</session>

</sessions>

</tsung>

EOF

$fh->close;

print getTimestamp().": ";

system('tsung start');

# Allow some time to release resources between tests

print "Cooling down..\n";

sleep 60;

}

# Phase 2: Test user range

print "Phase 2: Testing user range\n";

print "Writing to tsung.xml (Phase 2)\n";

$fh->open(".tsung/tsung.xml","w");

print $fh <<EOF;

<?xml version="1.0"?>

<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd">

<tsung loglevel="notice" version="1.0">

<!-- Client side setup -->

<clients>

<client host="localhost" maxusers="190000" cpu="2">

<ip value="10.204.4.2"/>

</client>

<client host="client2" maxusers="190000" cpu="2">

<ip value="10.204.4.3"/>

</client>

</clients>

<!-- Server side setup -->

<servers>

<server host="$target" port="80" type="tcp"></server>

</servers>

<!-- OS monitoring -->

<monitoring>

<monitor host="$target" type="munin"/>

</monitoring>

<load>

<arrivalphase phase="1" duration="$time" unit="minute">

<users arrivalrate="100" unit="second"/>

</arrivalphase>

<arrivalphase phase="2" duration="$time" unit="minute">

<users arrivalrate="200" unit="second"/>

</arrivalphase>

<arrivalphase phase="3" duration="$time" unit="minute">

<users arrivalrate="300" unit="second"/>

</arrivalphase>

<arrivalphase phase="4" duration="$time" unit="minute">

<users arrivalrate="400" unit="second"/>

</arrivalphase>

<arrivalphase phase="5" duration="$time" unit="minute">

<users arrivalrate="500" unit="second"/>

</arrivalphase>

<arrivalphase phase="6" duration="$time" unit="minute">

<users arrivalrate="600" unit="second"/>

</arrivalphase>

<arrivalphase phase="7" duration="$time" unit="minute">

<users arrivalrate="700" unit="second"/>

</arrivalphase>

iii

<arrivalphase phase="8" duration="$time" unit="minute">

<users arrivalrate="800" unit="second"/>

</arrivalphase>

<arrivalphase phase="9" duration="$time" unit="minute">

<users arrivalrate="900" unit="second"/>

</arrivalphase>

<arrivalphase phase="10" duration="$time" unit="minute">

<users arrivalrate="1000" unit="second"/>

</arrivalphase>

</load>

<sessions>

<session name="http-example" probability="100" type="ts_http">

<request> <http url="/10K.emt" method="GET" version="1.1"/> </request>

</session>

</sessions>

</tsung>

EOF

$fh->close;

print getTimestamp().": ";

system('tsung start');

printf getTimestamp().": All tests complete: duration %.2f minutes\n",

((time() - $sTime)/60);

i

Appendix E: Datasets

User range phase - requests

time tenseccount tensecmean tensecstddev max min mean count application 0 39.4 1.004982 0.59292 12.40796 0.658203 0 0 Varnish

10 95.2 0.969081 0.116597 12.40796 0.613037 1.004982 394 Varnish 20 97.5 0.971312 0.12943 12.40796 0.613037 0.97959 1346 Varnish 30 103.4 1.039956 1.366009 42.26782 0.613037 0.976113 2321 Varnish 40 99.2 0.96079 0.118315 42.26782 0.613037 0.995789 3355 Varnish 50 97.5 0.965381 0.11473 42.26782 0.613037 0.987802 4347 Varnish 60 90 1.005431 0.905537 42.26782 0.613037 0.983694 5322 Varnish 70 98 0.980093 0.124791 42.26782 0.613037 0.986838 6222 Varnish 80 92.4 0.966574 0.113496 42.26782 0.613037 0.985921 7202 Varnish 90 91.6 1.127072 2.09211 42.26782 0.613037 0.983721 8126 Varnish

100 97.8 0.978522 0.130815 42.26782 0.613037 0.998243 9042 Varnish 110 98.9 0.968731 0.113024 42.26782 0.613037 0.996318 10020 Varnish 120 101.6 0.973556 0.107815 42.26782 0.613037 0.99384 11009 Varnish 130 104.3 1.165456 2.406525 42.26782 0.613037 0.992126 12025 Varnish 140 97.9 0.970975 0.107121 42.26782 0.613037 1.00596 13068 Varnish 150 99.4 0.971417 0.110821 42.26782 0.613037 1.003522 14047 Varnish 160 98.4 1.015648 1.037054 42.26782 0.613037 1.0014 15041 Varnish 170 100.8 0.968842 0.104892 42.26782 0.613037 1.002275 16025 Varnish 180 97.6 0.978869 0.127597 42.26782 0.613037 1.000296 17033 Varnish 190 100 1.05035 1.413126 42.26782 0.613037 0.999135 18009 Varnish 200 99.4 0.980189 0.137326 42.26782 0.613037 1.001829 19009 Varnish 210 98.7 0.964338 0.11592 42.26782 0.613037 1.000754 20003 Varnish 220 88.3 0.975274 0.110993 42.26782 0.613037 0.999042 20990 Varnish 230 100.3 1.060937 1.695908 42.48389 0.613037 0.998082 21873 Varnish 240 98.6 0.974478 0.140854 42.48389 0.613037 1.000838 22876 Varnish 250 96 0.971868 0.117696 42.48389 0.613037 0.999749 23862 Varnish 260 96.1 0.975349 0.128663 42.48389 0.613037 0.998671 24822 Varnish 270 99 1.248745 2.986685 43.40015 0.613037 0.997801 25783 Varnish 280 99.2 0.976887 0.109731 43.40015 0.613037 1.007081 26773 Varnish 290 95.4 1.006996 0.879105 43.40015 0.613037 1.006002 27765 Varnish 300 109 1.023897 1.06449 43.40015 0.613037 1.006035 28719 Varnish 310 94.6 0.970369 0.113956 43.40015 0.613037 1.006688 29809 Varnish 320 101.1 0.974289 0.116034 43.40015 0.613037 1.005571 30755 Varnish 330 98.3 0.991255 0.349566 43.40015 0.613037 1.004575 31766 Varnish 340 97.4 0.97935 0.126792 43.40015 0.613037 1.004175 32749 Varnish 350 94.4 0.977256 0.118386 43.40015 0.613037 1.003458 33723 Varnish 360 97.7 1.044531 1.466304 43.40015 0.613037 1.002745 34667 Varnish 370 93.6 0.972467 0.11422 43.40015 0.613037 1.00389 35644 Varnish 380 99 0.976655 0.113314 43.40015 0.613037 1.003086 36580 Varnish 390 100.6 1.081654 1.968961 48.24414 0.613037 1.00239 37570 Varnish 400 91.1 0.98145 0.129022 48.24414 0.613037 1.004457 38576 Varnish 410 102.4 0.973285 0.116123 48.24414 0.613037 1.003926 39487 Varnish 420 95.3 1.000087 0.530364 48.24414 0.613037 1.003151 40511 Varnish 430 91.5 0.972306 0.109052 48.24414 0.613037 1.003081 41464 Varnish 440 95.6 0.980844 0.121046 48.24414 0.613037 1.002417 42379 Varnish 450 95.7 0.970298 0.111627 48.24414 0.611816 1.001941 43335 Varnish 460 97.6 1.126273 2.218899 48.24414 0.611816 1.001257 44292 Varnish 470 96 1.110845 1.937884 48.24414 0.611816 1.003952 45268 Varnish 480 103.5 0.975436 0.121115 48.24414 0.611816 1.006172 46228 Varnish 490 92.3 1.128264 2.341034 48.24414 0.611816 1.005499 47263 Varnish 500 102.1 0.980418 0.128241 48.24414 0.611816 1.007851 48186 Varnish 510 105 0.975636 0.120527 48.24414 0.611816 1.007281 49207 Varnish 520 98.8 1.152595 2.326646 48.24414 0.611816 1.00662 50257 Varnish 530 97.3 0.980225 0.181974 48.24414 0.611816 1.009435 51245 Varnish 540 99.5 0.979846 0.127325 48.24414 0.611816 1.00889 52218 Varnish 550 105.3 0.980605 0.137435 48.24414 0.611816 1.008347 53213 Varnish 560 95 1.318123 4.234439 75.05688 0.611816 1.007809 54266 Varnish 570 95.5 0.969098 0.106567 75.05688 0.611816 1.013148 55216 Varnish 580 90.9 0.975853 0.135282 75.05688 0.611816 1.012399 56171 Varnish 590 98.4 1.10869 1.806721 75.05688 0.611816 1.011817 57080 Varnish 600 145.6 0.974627 0.156747 75.05688 0.611816 1.013459 58064 Varnish 610 185.9 0.971713 0.153241 75.05688 0.611816 1.012509 59520 Varnish 620 187.3 1.107334 2.135347 75.05688 0.611816 1.011273 61379 Varnish 630 193.5 1.018584 0.870179 75.05688 0.611816 1.014118 63252 Varnish

ii

640 200.4 0.981746 0.166524 75.05688 0.611816 1.01425 65187 Varnish 650 193.8 0.976402 0.167451 75.05688 0.611816 1.013281 67191 Varnish 660 194.8 1.047509 1.193655 75.05688 0.611816 1.012247 69129 Varnish 670 193.8 0.981872 0.168931 75.05688 0.611816 1.013213 71077 Varnish 680 194.9 0.970215 0.163728 75.05688 0.611816 1.012382 73015 Varnish 690 193.9 1.211144 2.802061 75.05688 0.611816 1.011285 74964 Varnish 700 191.9 0.979987 0.150994 75.05688 0.611816 1.016324 76903 Varnish 710 189.7 0.975481 0.175359 75.05688 0.611816 1.01544 78822 Varnish 720 188 1.140145 2.568207 75.05688 0.611816 1.014501 80719 Varnish 730 194.8 0.979968 0.155554 75.05688 0.611816 1.01736 82599 Varnish 740 197.5 0.97304 0.159671 75.05688 0.606201 1.016499 84547 Varnish 750 194 1.190584 2.662726 75.05688 0.606201 1.015507 86522 Varnish 760 186.9 0.991013 0.175362 75.05688 0.606201 1.019346 88462 Varnish 770 194.2 0.975242 0.157774 75.05688 0.606201 1.01876 90331 Varnish 780 196.2 1.021264 0.877214 75.05688 0.606201 1.017844 92273 Varnish 790 186 0.983234 0.185399 75.05688 0.606201 1.017915 94235 Varnish 800 193.1 0.968004 0.143034 75.05688 0.606201 1.017244 96095 Varnish 810 194.4 0.978955 0.153983 75.05688 0.606201 1.016274 98026 Varnish 820 197.1 0.978369 0.153844 75.05688 0.606201 1.015548 99970 Varnish 830 189.5 0.978031 0.162095 75.05688 0.603027 1.01483 101941 Varnish 840 188.7 0.983215 0.171771 75.05688 0.603027 1.014158 103836 Varnish 850 196.9 0.984524 0.159007 75.05688 0.603027 1.013606 105723 Varnish 860 193.6 0.97916 0.155532 75.05688 0.603027 1.013074 107692 Varnish 870 199.2 0.978674 0.165291 75.05688 0.603027 1.012475 109628 Varnish 880 189.5 0.984717 0.173157 75.05688 0.603027 1.011872 111620 Varnish 890 196.4 0.986246 0.15572 75.05688 0.603027 1.011419 113515 Varnish 900 193.5 0.982653 0.171837 75.05688 0.603027 1.01099 115479 Varnish 910 193.3 0.976327 0.164505 75.05688 0.603027 1.010523 117414 Varnish 920 196.2 0.976134 0.15732 75.05688 0.603027 1.00997 119347 Varnish 930 200 0.971387 0.142211 75.05688 0.603027 1.009422 121309 Varnish 940 189.7 0.976773 0.150387 75.05688 0.603027 1.008805 123309 Varnish 950 199.4 0.992498 0.192324 75.05688 0.603027 1.00832 125206 Varnish 960 194.5 0.96813 0.144954 75.05688 0.603027 1.008072 127200 Varnish 970 191.3 0.980398 0.172063 75.05688 0.603027 1.007471 129145 Varnish 980 193 0.974333 0.154699 75.05688 0.603027 1.007075 131058 Varnish 990 192.1 0.972019 0.156037 75.05688 0.603027 1.0066 132988 Varnish

1000 189.9 0.981747 0.206234 75.05688 0.603027 1.006108 134909 Varnish 1010 192.6 0.989158 0.168897 75.05688 0.603027 1.00577 136808 Varnish 1020 195 0.984142 0.156495 75.05688 0.603027 1.005539 138734 Varnish 1030 200.4 0.982989 0.164676 75.05688 0.603027 1.005242 140684 Varnish 1040 193.9 0.987148 0.170824 75.05688 0.603027 1.00493 142688 Varnish 1050 194.6 0.972969 0.149963 75.05688 0.602051 1.004691 144627 Varnish 1060 195.6 0.983401 0.174031 75.05688 0.602051 1.00427 146573 Varnish 1070 190.4 0.98418 0.158965 75.05688 0.602051 1.003995 148529 Varnish 1080 195.7 0.98325 0.172228 75.05688 0.602051 1.003745 150433 Varnish 1090 192.7 0.988714 0.246038 75.05688 0.602051 1.003481 152390 Varnish 1100 191.4 0.992722 0.157992 75.05688 0.602051 1.003297 154317 Varnish 1110 188.4 0.980913 0.160276 75.05688 0.602051 1.003168 156231 Varnish 1120 191.6 0.981996 0.183916 75.05688 0.602051 1.002902 158115 Varnish 1130 187.6 0.98045 0.265843 75.05688 0.602051 1.002652 160031 Varnish 1140 193.9 0.978619 0.153538 75.05688 0.602051 1.002395 161907 Varnish 1150 190.3 23.638 93.52565 596.4102 0.602051 1.002113 163846 Varnish 1160 193.7 0.987978 0.173401 596.4102 0.602051 1.262001 165749 Varnish 1170 196.4 0.984667 0.167401 596.4102 0.602051 1.258836 167686 Varnish 1180 199.7 1.312855 3.987613 596.4102 0.602051 1.255662 169650 Varnish 1190 193.6 0.991647 0.167818 596.4102 0.602051 1.256327 171647 Varnish 1200 233.7 0.975776 0.18914 596.4102 0.602051 1.253375 173583 Varnish 1210 284.9 1.15316 2.627039 596.4102 0.602051 1.249687 175920 Varnish 1220 286.5 0.998286 0.20428 596.4102 0.602051 1.248149 178769 Varnish 1230 280.9 0.993156 0.191609 596.4102 0.602051 1.244208 181634 Varnish 1240 277.6 1.343557 4.465349 596.4102 0.602051 1.240384 184443 Varnish 1250 287.9 0.989769 0.1906 596.4102 0.602051 1.241914 187219 Varnish 1260 277.7 0.998515 0.194164 596.4102 0.602051 1.238095 190098 Varnish 1270 289.8 1.061055 1.399121 596.4102 0.602051 1.234646 192875 Varnish 1280 287.2 1.208668 3.287642 596.4102 0.602051 1.232076 195773 Varnish 1290 276.8 0.994009 0.187663 596.4102 0.602051 1.231738 198645 Varnish 1300 285.9 0.995264 0.20761 596.4102 0.602051 1.228471 201413 Varnish 1310 278.9 1.351425 4.050415 596.4102 0.602051 1.225207 204272 Varnish 1320 290.4 1.003058 0.192917 596.4102 0.602051 1.226907 207061 Varnish 1330 285.9 0.990007 0.18337 596.4102 0.602051 1.223811 209965 Varnish 1340 277.6 1.349971 4.109189 596.4102 0.602051 1.22067 212824 Varnish

iii

1350 293.6 0.996828 0.193977 596.4102 0.602051 1.222335 215600 Varnish 1360 299.1 0.989663 0.182482 596.4102 0.602051 1.219305 218536 Varnish 1370 282.4 1.403188 4.761417 596.4102 0.60083 1.216205 221527 Varnish 1380 285.4 0.998331 0.196066 596.4102 0.60083 1.218558 224351 Varnish 1390 277.1 0.987867 0.18081 596.4102 0.60083 1.215792 227205 Varnish 1400 281.7 0.9956 0.203087 596.4102 0.60083 1.213046 229976 Varnish 1410 289 1.413279 5.133908 596.4102 0.60083 1.210414 232793 Varnish 1420 281 0.986304 0.171161 596.4102 0.60083 1.212902 235683 Varnish 1430 292.9 0.988529 0.192904 596.4102 0.60083 1.210232 238493 Varnish 1440 277.4 1.308709 3.91475 596.4102 0.60083 1.207542 241422 Varnish 1450 283.9 0.990534 0.179777 596.4102 0.60083 1.208692 244196 Varnish 1460 283.6 1.29994 4.177171 596.4102 0.60083 1.206184 247035 Varnish 1470 299.3 1.039455 0.901192 596.4102 0.60083 1.207249 249871 Varnish 1480 286.4 1.006878 0.197008 596.4102 0.60083 1.205262 252864 Varnish 1490 279.7 0.985425 0.17975 596.4102 0.60083 1.203041 255728 Varnish 1500 284.9 1.182284 3.53145 596.4102 0.60083 1.200686 258525 Varnish 1510 293 0.995843 0.208403 596.4102 0.60083 1.200486 261374 Varnish 1520 289.5 0.989208 0.189816 596.4102 0.60083 1.198217 264304 Varnish 1530 289.2 1.282286 3.957836 596.4102 0.60083 1.195953 267199 Varnish 1540 290.7 1.043655 0.877271 596.4102 0.60083 1.196877 270091 Varnish 1550 281.5 0.98776 0.187595 596.4102 0.60083 1.195245 272998 Varnish 1560 284.8 0.993146 0.199363 596.4102 0.60083 1.193128 275813 Varnish 1570 292 1.3167 4.073427 596.4102 0.60083 1.191084 278661 Varnish 1580 286.1 0.984115 0.187362 596.4102 0.60083 1.192387 281581 Varnish 1590 285.2 0.987245 0.200663 596.4102 0.60083 1.190292 284442 Varnish 1600 291.3 1.904691 9.125562 596.4102 0.60083 1.188276 287294 Varnish 1610 289.3 0.991263 0.199617 596.4102 0.60083 1.195467 290207 Varnish 1620 294.1 0.983677 0.19627 596.4102 0.60083 1.193452 293100 Varnish 1630 282.6 0.989585 0.191374 596.4102 0.60083 1.191368 296041 Varnish 1640 287.8 1.395306 5.011957 596.4102 0.60083 1.18946 298867 Varnish 1650 286.8 0.985809 0.205183 596.4102 0.5979 1.191423 301745 Varnish 1660 282.7 0.995214 0.186106 596.4102 0.5979 1.189487 304613 Varnish 1670 292.9 1.39593 4.649803 596.4102 0.5979 1.187701 307440 Varnish 1680 288.3 0.982273 0.192487 596.4102 0.5979 1.189666 310369 Varnish 1690 294.3 0.988587 0.193794 596.4102 0.5979 1.187757 313252 Varnish 1700 285.7 1.302557 4.229696 596.4102 0.5979 1.185903 316195 Varnish 1710 278.9 0.985885 0.190897 596.4102 0.573975 1.186948 319052 Varnish 1720 281.6 1.024538 0.846762 596.4102 0.573975 1.185205 321841 Varnish 1730 270.5 1.080224 1.975535 596.4102 0.573975 1.183812 324657 Varnish 1740 289.2 0.993598 0.204884 596.4102 0.573975 1.182956 327362 Varnish 1750 285 0.981383 0.179465 596.4102 0.573975 1.181298 330254 Varnish 1760 281.4 1.396346 4.876345 596.4102 0.573975 1.179587 333104 Varnish 1770 283.3 0.985442 0.189896 596.4102 0.573975 1.181403 335918 Varnish 1780 274.5 0.995542 0.195438 596.4102 0.573975 1.179764 338751 Varnish 1790 286.8 1.447057 4.98038 596.4102 0.573975 1.178283 341496 Varnish 1800 326.9 0.982286 0.193363 596.4102 0.573975 1.180522 344364 Varnish 1810 365.8 1.000356 0.214596 596.4102 0.573975 1.178658 347633 Varnish 1820 376.1 1.491476 5.515458 596.4102 0.573975 1.176801 351291 Varnish 1830 383 1.00298 0.22264 596.4102 0.573975 1.180134 355052 Varnish 1840 374.7 0.993353 0.209159 596.4102 0.573975 1.178244 358882 Varnish 1850 387.5 1.723892 7.586817 596.4102 0.573975 1.176333 362629 Varnish 1860 370.4 1.000016 0.218717 596.4102 0.573975 1.182123 366504 Varnish 1870 374.8 0.995316 0.207264 596.4102 0.573975 1.180301 370208 Varnish 1880 379 1.650549 6.894417 596.4102 0.573975 1.178447 373956 Varnish 1890 377 1.010233 0.222871 596.4102 0.573975 1.183183 377746 Varnish 1900 365.1 0.996669 0.220795 596.4102 0.573975 1.181474 381516 Varnish 1910 378.1 1.718437 6.648216 596.4102 0.573975 1.179722 385167 Varnish 1920 380.9 1.008124 0.216622 596.4102 0.573975 1.184959 388948 Varnish 1930 372.1 1.004612 0.283996 596.4102 0.573975 1.183244 392757 Varnish 1940 374.3 1.578764 6.303597 596.4102 0.573975 1.181568 396478 Varnish 1950 381.4 1.012679 0.225042 596.4102 0.573975 1.185283 400221 Varnish 1960 382.4 1.008662 0.22115 596.4102 0.573975 1.183653 404035 Varnish 1970 380.1 1.003381 0.216818 596.4102 0.573975 1.182013 407859 Varnish 1980 358.7 1.008379 0.220491 596.4102 0.573975 1.180363 411660 Varnish 1990 374.1 1.002434 0.209378 596.4102 0.573975 1.178878 415247 Varnish 2000 371.9 1.003796 0.229607 596.4102 0.573975 1.177302 418988 Varnish 2010 374.9 1.00891 0.206037 596.4102 0.573975 1.175776 422707 Varnish 2020 386.2 1.004395 0.222038 596.4102 0.573975 1.174309 426456 Varnish 2030 376.9 0.996342 0.213451 596.4102 0.573975 1.172784 430318 Varnish 2040 362.3 1.003627 0.214274 596.4102 0.573975 1.171252 434087 Varnish 2050 376 1.004505 0.214525 596.4102 0.573975 1.169864 437710 Varnish

iv

2060 382.9 1.002286 0.2185 596.4102 0.573975 1.168456 441470 Varnish 2070 383.8 1.00904 0.211538 596.4102 0.573975 1.167027 445299 Varnish 2080 362 0.996997 0.19641 596.4102 0.573975 1.165677 449137 Varnish 2090 378.6 1.005345 0.270183 596.4102 0.573975 1.164328 452757 Varnish 2100 380.1 13.40922 71.95908 1001.768 0.573975 1.16301 456543 Varnish 2110 367.2 1.001914 0.21561 1001.768 0.573975 1.264125 460344 Varnish 2120 382.4 1.001942 0.225392 1001.768 0.573975 1.26205 464016 Varnish 2130 372.4 1.433011 5.333049 1001.768 0.573975 1.259924 467840 Varnish 2140 375.5 1.00666 0.226403 1001.768 0.573975 1.261291 471564 Varnish 2150 381.8 1.003364 0.221925 1001.768 0.573975 1.25928 475319 Varnish 2160 380.6 1.860663 8.099345 1001.768 0.573975 1.25724 479137 Varnish 2170 386.1 1.015488 0.2499 1001.768 0.573975 1.261996 482943 Varnish 2180 384.6 0.999984 0.221939 1001.768 0.573975 1.260041 486804 Varnish 2190 373.9 1.371077 4.387013 1001.768 0.573975 1.258002 490650 Varnish 2200 379.3 1.210049 2.788138 1001.768 0.573975 1.258857 494389 Varnish 2210 374.2 1.002675 0.214977 1001.768 0.573975 1.258486 498182 Varnish 2220 371.7 1.005982 0.221005 1001.768 0.573975 1.256579 501924 Varnish 2230 378.5 1.771563 7.343405 1001.768 0.573975 1.254736 505641 Varnish 2240 380.8 0.996575 0.225499 1001.768 0.573975 1.258576 509426 Varnish 2250 362.1 0.999923 0.222504 1001.768 0.573975 1.256632 513234 Varnish 2260 385.2 1.478983 5.561479 1001.768 0.573975 1.254834 516855 Varnish 2270 382.4 1.008472 0.232087 1001.768 0.573975 1.256492 520707 Varnish 2280 370.6 1.004996 0.220756 1001.768 0.573975 1.254684 524531 Varnish 2290 371.1 1.566386 6.194231 1001.768 0.573975 1.252932 528237 Varnish 2300 374.8 1.004701 0.218743 1001.768 0.573975 1.255119 531948 Varnish 2310 372.2 0.997649 0.217328 1001.768 0.573975 1.253367 535696 Varnish 2320 383.8 2.1704 10.7515 1001.768 0.573975 1.251602 539418 Varnish 2330 376.3 1.040362 0.598928 1001.768 0.573975 1.258094 543256 Varnish 2340 371.6 1.00715 0.237509 1001.768 0.573975 1.256596 547019 Varnish 2350 375.6 1.001657 0.210969 1001.768 0.573975 1.254913 550735 Varnish 2360 376.8 1.776794 7.666983 1001.768 0.573975 1.253197 554491 Varnish 2370 369.4 0.999485 0.21382 1001.768 0.573975 1.256731 558259 Varnish 2380 389.1 1.00957 0.222578 1001.768 0.573975 1.25504 561953 Varnish 2390 379.1 1.628383 6.211195 1001.768 0.573975 1.253352 565844 Varnish 2400 413.4 0.996869 0.229186 1001.768 0.573975 1.255848 569635 Varnish 2410 456.9 1.013266 0.233882 1001.768 0.573975 1.253982 573769 Varnish 2420 470.4 1.579904 6.192845 1001.768 0.573975 1.252081 578338 Varnish 2430 467.4 1.008481 0.244054 1001.768 0.573975 1.254725 583042 Varnish 2440 460.8 1.020454 0.242996 1001.768 0.573975 1.252767 587716 Varnish 2450 468.9 1.263957 3.4145 1001.768 0.573975 1.25096 592324 Varnish 2460 473.8 1.377815 4.029709 1001.768 0.573975 1.251062 597013 Varnish 2470 457.2 1.005493 0.241604 1001.768 0.573975 1.25206 601751 Varnish 2480 467.3 1.021974 0.241265 1001.768 0.573975 1.250201 606323 Varnish 2490 464.6 1.782419 7.780929 1001.768 0.573975 1.248455 610996 Varnish 2500 462.1 1.013379 0.239378 1001.768 0.573975 1.252485 615642 Varnish 2510 459.9 1.035153 0.257128 1001.768 0.573975 1.250703 620263 Varnish 2520 460.1 1.799716 7.939981 1001.768 0.573975 1.249117 624862 Varnish 2530 462.5 1.030384 0.627171 1001.768 0.565186 1.253141 629463 Varnish 2540 474.8 1.018556 0.234834 1001.768 0.565186 1.251517 634088 Varnish 2550 452.4 1.015268 0.232257 1001.768 0.565186 1.249785 638836 Varnish 2560 466.4 1.508422 5.693362 1001.768 0.565186 1.248136 643360 Varnish 2570 465.9 1.019425 0.24043 1001.768 0.565186 1.25001 648024 Varnish 2580 468 1.018374 0.24142 1001.768 0.565186 1.248364 652683 Varnish 2590 460.3 1.792357 8.078914 1001.768 0.565186 1.246726 657363 Varnish 2600 470.8 1.012362 0.238076 1001.768 0.565186 1.25052 661966 Varnish 2610 473.4 1.025313 0.244802 1001.768 0.565186 1.248838 666674 Varnish 2620 463.9 1.744401 7.80704 1001.768 0.565186 1.247262 671408 Varnish 2630 468.1 1.133259 1.76991 1001.768 0.565186 1.250674 676047 Varnish 2640 469.5 1.026673 0.242019 1001.768 0.565186 1.249866 680728 Varnish 2650 476 1.016097 0.250531 1001.768 0.565186 1.248337 685423 Varnish 2660 460.2 1.783392 7.926235 1001.768 0.565186 1.246736 690183 Varnish 2670 460.6 1.009898 0.22389 1001.768 0.565186 1.25029 694785 Varnish 2680 469.7 1.02255 0.247986 1001.768 0.565186 1.248707 699391 Varnish 2690 471.1 1.899894 8.508479 1001.768 0.565186 1.247199 704088 Varnish 2700 480.1 1.112601 1.561222 1001.768 0.565186 1.251537 708799 Varnish 2710 467.6 1.017276 0.242958 1001.768 0.565186 1.250602 713600 Varnish 2720 461.1 1.015853 0.256317 1001.768 0.565186 1.249083 718276 Varnish 2730 467.8 1.95384 8.92676 1001.768 0.565186 1.247595 722887 Varnish 2740 462.5 1.012004 0.234045 1001.768 0.565186 1.252136 727565 Varnish 2750 472.8 1.021736 0.277553 1001.768 0.565186 1.250619 732190 Varnish 2760 458.2 1.821657 8.049461 1001.768 0.565186 1.249151 736918 Varnish

v

2770 456.2 1.021604 0.241835 1001.768 0.565186 1.252689 741500 Varnish 2780 458.2 1.010753 0.24453 1001.768 0.565186 1.251276 746062 Varnish 2790 445.2 1.802266 8.184621 1001.768 0.565186 1.249807 750644 Varnish 2800 468.2 1.028563 0.255035 1001.768 0.565186 1.253065 755096 Varnish 2810 462.7 1.004086 0.217855 1001.768 0.565186 1.251681 759778 Varnish 2820 476 1.7946 7.554859 1001.768 0.565186 1.250182 764405 Varnish 2830 473.9 1.153381 1.960788 1001.768 0.565186 1.253552 769165 Varnish 2840 473.9 1.01465 0.247992 1001.768 0.565186 1.252938 773904 Varnish 2850 461 1.024321 0.247434 1001.768 0.565186 1.251488 778643 Varnish 2860 464.1 1.954029 8.773832 1001.768 0.565186 1.250151 783253 Varnish 2870 466.8 1.015835 0.26581 1001.768 0.565186 1.254297 787894 Varnish 2880 460.8 1.015059 0.235889 1001.768 0.565186 1.252893 792562 Varnish 2890 467.8 1.185327 2.387706 1001.768 0.565186 1.251518 797170 Varnish 2900 464.7 1.011141 0.231404 1001.768 0.565186 1.251132 801848 Varnish 2910 461.1 1.020965 0.265394 1001.768 0.565186 1.249749 806495 Varnish 2920 471.8 1.025894 0.245057 1001.768 0.565186 1.248448 811106 Varnish 2930 463.1 1.020397 0.234183 1001.768 0.565186 1.247161 815824 Varnish 2940 462.9 1.012175 0.234417 1001.768 0.565186 1.245881 820455 Varnish 2950 465.3 5.632104 29.67997 1001.768 0.565186 1.24457 825084 Varnish 2960 466.2 1.076578 1.39007 1001.768 0.565186 1.269174 829737 Varnish 2970 466.9 1.015545 0.226412 1001.768 0.565186 1.268098 834399 Varnish 2980 460.3 1.028301 0.245632 1001.768 0.565186 1.266693 839068 Varnish 2990 466.8 2.16931 10.02136 1001.768 0.565186 1.265392 843671 Varnish 3000 511.3 1.029953 0.264018 1001.768 0.565186 1.270366 848339 Varnish 3010 551.8 1.040985 0.277758 1001.768 0.565186 1.268926 853452 Varnish 3020 529.2 2.140826 9.815633 1001.768 0.565186 1.267462 858970 Varnish 3030 554.7 1.035083 0.279907 1001.768 0.565186 1.272809 864262 Varnish 3040 560.9 1.043603 0.264561 1001.768 0.565186 1.271293 869809 Varnish 3050 559.1 1.924268 9.161632 1001.768 0.565186 1.269834 875418 Varnish 3060 565.3 1.169215 2.106599 1001.768 0.565186 1.273988 881009 Varnish 3070 544.3 1.033382 0.278406 1001.768 0.565186 1.27332 886662 Varnish 3080 548 1.036236 0.253577 1001.768 0.565186 1.271856 892105 Varnish 3090 556.8 2.166235 10.78212 1001.768 0.565186 1.270417 897585 Varnish 3100 559.7 1.031634 0.263178 1001.768 0.565186 1.27594 903153 Varnish 3110 564.7 1.045678 0.268284 1001.768 0.565186 1.274435 908750 Varnish 3120 565.4 2.304354 11.25015 1001.768 0.565186 1.273022 914397 Varnish 3130 542.1 1.221061 2.469816 1001.768 0.565186 1.27936 920051 Varnish 3140 553 1.042866 0.259701 1001.768 0.565186 1.279019 925472 Varnish 3150 538.6 1.033268 0.249328 1001.768 0.565186 1.277616 931002 Varnish 3160 555.8 2.211391 10.58413 1001.768 0.565186 1.276211 936388 Varnish 3170 559.9 1.047697 0.258024 1001.768 0.565186 1.281729 941946 Varnish 3180 548.7 1.038663 0.294084 1001.768 0.565186 1.280346 947545 Varnish 3190 549.7 2.198569 10.31448 1001.768 0.565186 1.278954 953032 Varnish 3200 559.8 1.043367 0.254536 1001.768 0.565186 1.284228 958529 Varnish 3210 555.5 1.035381 0.25433 1001.768 0.565186 1.28283 964127 Varnish 3220 557.6 2.139091 10.09889 1001.768 0.565186 1.281412 969682 Varnish 3230 534.7 1.035966 0.257536 1001.768 0.565186 1.286316 975258 Varnish 3240 551.4 1.040474 0.265903 1001.768 0.565186 1.284951 980605 Varnish 3250 562 2.1166 9.960304 1001.768 0.565186 1.283584 986119 Varnish 3260 552.7 1.043743 0.275378 1001.768 0.565186 1.288304 991739 Varnish 3270 541.7 1.033474 0.254998 1001.768 0.565186 1.286949 997266 Varnish 3280 544.9 1.080635 0.815178 1001.768 0.565186 1.28558 1002683 Varnish 3290 555.1 1.049275 0.268595 1001.768 0.565186 1.284472 1008132 Varnish 3300 554.8 1.045674 0.253524 1001.768 0.565186 1.283184 1013683 Varnish 3310 552.3 4.791969 25.56365 1001.768 0.565186 1.281891 1019231 Varnish 3320 550.9 1.116354 1.242008 1001.768 0.565186 1.300809 1024754 Varnish 3330 551.9 1.050395 0.265485 1001.768 0.565186 1.299823 1030263 Varnish 3340 547.9 1.038031 0.268161 1001.768 0.565186 1.298494 1035782 Varnish 3350 554.9 1.779912 7.684161 1001.768 0.565186 1.297123 1041261 Varnish 3360 545.6 1.048292 0.263495 1001.768 0.565186 1.299682 1046810 Varnish 3370 564.8 1.056667 0.276752 1001.768 0.565186 1.298379 1052266 Varnish 3380 550.3 2.81411 14.51377 1001.768 0.565186 1.297088 1057914 Varnish 3390 565.5 1.058283 0.267249 1001.768 0.565186 1.304939 1063417 Varnish 3400 553.7 1.045589 0.2632 1001.768 0.565186 1.303634 1069072 Varnish 3410 552.7 2.113615 9.873041 1001.768 0.565186 1.302304 1074609 Varnish 3420 557.8 1.05236 0.269817 1001.768 0.565186 1.306456 1080136 Varnish 3430 556.6 1.044593 0.262217 1001.768 0.565186 1.30515 1085714 Varnish 3440 552.2 1.411074 4.34993 1001.768 0.565186 1.303821 1091280 Varnish 3450 558.5 1.588277 5.183406 1001.768 0.565186 1.304361 1096802 Varnish 3460 559.7 1.052093 0.29083 1001.768 0.565186 1.3058 1102387 Varnish 3470 543 1.043949 0.264214 1001.768 0.557129 1.304518 1107984 Varnish

vi

3480 550.9 2.391691 11.96184 1001.768 0.557129 1.303247 1113414 Varnish 3490 557.9 1.048064 0.264667 1001.768 0.557129 1.308606 1118923 Varnish 3500 549.7 1.030106 0.246845 1001.768 0.557129 1.307314 1124502 Varnish 3510 545.1 1.241037 2.814415 1001.768 0.557129 1.305965 1129999 Varnish 3520 556 1.054383 0.292351 1001.768 0.557129 1.305653 1135450 Varnish 3530 550.7 1.049959 0.285039 1001.768 0.557129 1.304429 1141010 Varnish 3540 551.8 2.151391 9.842031 1001.768 0.557129 1.303207 1146517 Varnish 3550 555.1 1.053829 0.260465 1001.768 0.557129 1.307269 1152035 Varnish 3560 549.3 1.04146 0.256364 1001.768 0.557129 1.306054 1157586 Varnish 3570 560.6 1.811852 7.758349 1001.768 0.557129 1.304804 1163079 Varnish 3580 557.3 1.179046 1.803658 1001.768 0.557129 1.307237 1168685 Varnish 3590 564.6 1.047259 0.267949 1001.768 0.557129 1.306628 1174258 Varnish 3600 592.1 1.046279 0.279514 1001.768 0.557129 1.305387 1179904 Varnish 3610 637.8 1.927153 8.812238 1001.768 0.557129 1.304093 1185825 Varnish 3620 631.8 1.054634 0.267651 1001.768 0.557129 1.307427 1192203 Varnish 3630 622.4 1.057254 0.287199 1001.768 0.557129 1.306094 1198521 Varnish 3640 654.1 2.210899 10.90625 1001.768 0.557129 1.304808 1204745 Varnish 3650 644.9 1.055307 0.268693 1001.768 0.557129 1.309701 1211286 Varnish 3660 643.4 1.05464 0.284376 1001.768 0.557129 1.308354 1217735 Varnish 3670 646.4 1.454354 4.626824 1001.768 0.557129 1.307021 1224169 Varnish 3680 648.2 1.166322 1.646708 1001.768 0.557129 1.307794 1230633 Varnish 3690 643 1.051277 0.271685 1001.768 0.557129 1.307053 1237115 Varnish 3700 659.4 1.072768 0.287971 1001.768 0.557129 1.305731 1243545 Varnish 3710 639.1 2.229353 11.03866 1001.768 0.557129 1.304502 1250139 Varnish 3720 647.7 1.058004 0.289963 1001.768 0.557129 1.309206 1256530 Varnish 3730 615.7 1.066265 0.280978 1001.768 0.557129 1.307918 1263007 Varnish 3740 626.9 2.413023 11.40355 1001.768 0.557129 1.306745 1269164 Varnish 3750 628.2 1.065267 0.290761 1001.768 0.557129 1.312183 1275433 Varnish 3760 639.3 1.068057 0.27559 1001.768 0.557129 1.310973 1281715 Varnish 3770 643.6 2.505457 12.34245 1001.768 0.557129 1.309767 1288108 Varnish 3780 627.7 1.053115 0.28928 1001.768 0.557129 1.315712 1294544 Varnish 3790 648.1 1.066924 0.287593 1001.768 0.557129 1.314445 1300821 Varnish 3800 644.6 1.070459 0.289459 1001.768 0.557129 1.313217 1307302 Varnish 3810 638.3 1.057662 0.271623 1001.768 0.557129 1.312026 1313748 Varnish 3820 642.3 1.058017 0.280957 1001.768 0.557129 1.310796 1320131 Varnish 3830 644.4 1.07392 0.283532 1001.768 0.557129 1.309573 1326554 Varnish 3840 639.1 1.058049 0.279124 1001.768 0.557129 1.308433 1332998 Varnish 3850 619.1 1.062098 0.284574 1001.768 0.557129 1.307239 1339389 Varnish 3860 648.9 1.068184 0.283563 1001.768 0.557129 1.306111 1345580 Varnish 3870 634 31.36543 156.3363 1002.469 0.557129 1.304969 1352069 Varnish 3880 646.7 1.063032 0.288183 1002.469 0.557129 1.445268 1358409 Varnish 3890 638.8 1.076485 0.28787 1002.469 0.557129 1.443457 1364876 Varnish 3900 649.7 2.568195 12.68409 1002.469 0.557129 1.441747 1371264 Varnish 3910 635.5 1.057499 0.295644 1002.469 0.557129 1.447059 1377761 Varnish 3920 643.3 1.077345 0.29455 1002.469 0.557129 1.44527 1384116 Varnish 3930 640.2 1.570481 5.718744 1002.469 0.557129 1.443568 1390549 Varnish 3940 629.8 1.442037 4.53914 1002.469 0.557129 1.44415 1396951 Varnish 3950 651.1 1.074205 0.283013 1002.469 0.557129 1.44414 1403249 Varnish 3960 638.7 1.060948 0.282843 1002.469 0.557129 1.442432 1409760 Varnish 3970 638.8 2.345763 11.44142 1002.469 0.557129 1.440711 1416147 Varnish 3980 632.4 1.071367 0.282525 1002.469 0.557129 1.444776 1422535 Varnish 3990 651 1.065881 0.275423 1002.469 0.557129 1.443123 1428859 Varnish 4000 653.3 2.286221 11.21163 1002.469 0.555176 1.441412 1435369 Varnish 4010 653.2 1.155972 1.452447 1002.469 0.555176 1.44524 1441902 Varnish 4020 653 1.063078 0.274449 1002.469 0.555176 1.443935 1448434 Varnish 4030 649.5 1.06604 0.29402 1002.469 0.555176 1.442226 1454964 Varnish 4040 637.4 2.5219 11.86949 1002.469 0.555176 1.440554 1461459 Varnish 4050 654.6 1.072722 0.284218 1002.469 0.555176 1.44525 1467833 Varnish 4060 653.2 1.068553 0.310362 1002.469 0.555176 1.443596 1474379 Varnish 4070 646 2.466558 12.22289 1002.469 0.555176 1.441941 1480911 Varnish 4080 648 1.071506 0.287216 1002.469 0.555176 1.446392 1487371 Varnish 4090 635.7 1.059266 0.280026 1002.469 0.555176 1.444765 1493851 Varnish 4100 641.8 1.182512 2.192793 1002.469 0.555176 1.443132 1500208 Varnish 4110 633 1.071676 0.283794 1002.469 0.555176 1.442022 1506626 Varnish 4120 633.9 1.058825 0.278113 1002.469 0.555176 1.440472 1512956 Varnish 4130 638.3 1.057544 0.285491 1002.469 0.555176 1.43888 1519295 Varnish 4140 638 1.058748 0.267634 1002.469 0.555176 1.437284 1525678 Varnish 4150 664.1 1.064028 0.283654 1002.469 0.555176 1.435708 1532058 Varnish 4160 630.6 1.053986 0.265363 1002.469 0.555176 1.434104 1538699 Varnish 4170 647.9 1.071306 0.307761 1002.469 0.555176 1.432552 1545005 Varnish 4180 642.9 1.067401 0.303438 1002.469 0.540039 1.431044 1551484 Varnish

vii

4190 645.9 33.89587 160.7056 1002.469 0.540039 1.429543 1557913 Varnish 4200 696.2 1.07519 0.313149 1002.469 0.540039 1.563591 1564372 Varnish 4210 719.8 1.074094 0.284468 1002.469 0.540039 1.561427 1571334 Varnish 4220 724.9 3.476814 27.54204 1002.469 0.540039 1.559205 1578532 Varnish 4230 711.6 1.098078 0.336357 1002.469 0.540039 1.56797 1585781 Varnish 4240 712.6 1.080397 0.288155 1002.469 0.540039 1.565871 1592897 Varnish 4250 734.1 1.179184 1.652185 1002.469 0.540039 1.563709 1600023 Varnish 4260 739.1 1.090435 0.303965 1002.469 0.540039 1.561953 1607364 Varnish 4270 729.4 1.090987 0.303911 1002.469 0.540039 1.559795 1614755 Varnish 4280 709.2 1.072797 0.308362 1002.469 0.540039 1.557687 1622049 Varnish 4290 710.9 1.091126 0.315073 1002.469 0.540039 1.555576 1629141 Varnish 4300 732.4 1.087909 0.304353 1002.469 0.540039 1.553558 1636250 Varnish 4310 726.5 1.084985 0.296954 1002.469 0.540039 1.551483 1643574 Varnish 4320 724.9 1.080012 0.300093 1002.469 0.540039 1.54943 1650839 Varnish 4330 738 1.089321 0.305342 1002.469 0.540039 1.547378 1658088 Varnish 4340 715.5 1.085157 0.308291 1002.469 0.540039 1.545348 1665468 Varnish 4350 729.4 1.083022 0.303499 1002.469 0.540039 1.543379 1672623 Varnish 4360 722.6 1.098312 0.315459 1002.469 0.540039 1.541381 1679917 Varnish 4370 734 1.225928 2.262881 1002.469 0.540039 1.539483 1687143 Varnish 4380 726 1.085188 0.345821 1002.469 0.540039 1.538125 1694483 Varnish 4390 739.6 1.093605 0.299107 1002.469 0.540039 1.536192 1701743 Varnish 4400 744.8 1.083353 0.304549 1002.469 0.540039 1.534277 1709139 Varnish 4410 723.7 1.069914 0.29765 1002.469 0.540039 1.532321 1716587 Varnish 4420 732.3 1.086902 0.306999 1002.469 0.540039 1.530379 1723824 Varnish 4430 723.3 1.074697 0.30132 1002.469 0.540039 1.528503 1731147 Varnish 4440 727.9 1.080314 0.308541 1002.469 0.540039 1.526615 1738380 Varnish 4450 723.3 1.082163 0.29777 1002.469 0.540039 1.524754 1745659 Varnish 4460 732.6 1.084462 0.305433 1002.469 0.540039 1.522928 1752892 Varnish 4470 726 1.075998 0.30062 1002.469 0.540039 1.521103 1760218 Varnish 4480 713.1 1.082391 0.285992 1002.469 0.540039 1.519275 1767478 Varnish 4490 717.6 1.083009 0.295476 1002.469 0.540039 1.517519 1774609 Varnish 4500 736.9 74.38229 253.0135 1002.887 0.540039 1.515769 1781785 Varnish 4510 728.2 1.088728 0.317084 1002.887 0.540039 1.815885 1789154 Varnish 4520 734.2 1.091917 0.310019 1002.887 0.540039 1.812937 1796436 Varnish 4530 715.7 1.223257 2.229228 1002.887 0.540039 1.810003 1803778 Varnish 4540 724.4 1.084445 0.32357 1002.887 0.540039 1.807684 1810935 Varnish 4550 720.7 1.087984 0.322296 1002.887 0.540039 1.804802 1818179 Varnish 4560 725.1 8.860061 72.61376 1003.341 0.540039 1.801972 1825386 Varnish 4570 732.1 1.072691 0.289448 1003.341 0.540039 1.829898 1832637 Varnish 4580 727.7 1.082408 0.287695 1003.341 0.540039 1.826885 1839958 Varnish 4590 737.1 2.742346 14.18134 1003.341 0.540039 1.823952 1847235 Varnish 4600 732.3 1.076685 0.311295 1003.341 0.540039 1.827603 1854606 Varnish 4610 738.5 1.092999 0.309652 1003.341 0.540039 1.824649 1861929 Varnish 4620 723.1 2.854914 14.49659 1003.341 0.540039 1.821759 1869314 Varnish 4630 716.5 1.086273 0.312039 1003.341 0.540039 1.82574 1876545 Varnish 4640 726.3 1.088444 0.304721 1003.341 0.540039 1.822927 1883710 Varnish 4650 733.9 1.669055 6.53089 1003.341 0.540039 1.820106 1890973 Varnish 4660 729.9 1.076396 0.301629 1003.341 0.540039 1.819522 1898312 Varnish 4670 710.4 1.083234 0.290841 1003.341 0.540039 1.816676 1905611 Varnish 4680 734.3 1.084167 0.331656 1003.341 0.540039 1.813952 1912715 Varnish 4690 724.3 1.080809 0.302638 1003.341 0.540039 1.811161 1920058 Varnish 4700 728 1.08556 0.309138 1003.341 0.540039 1.808416 1927301 Varnish 4710 722.8 1.079649 0.287022 1003.341 0.540039 1.805696 1934581 Varnish 4720 711.5 32.73498 162.137 1005.824 0.540039 1.802993 1941809 Varnish 4730 721.1 1.091201 0.293669 1005.824 0.540039 1.915918 1948924 Varnish 4740 725.1 1.085418 0.300089 1005.824 0.540039 1.912877 1956135 Varnish 4750 727.1 2.64889 13.28648 1005.824 0.540039 1.909822 1963386 Varnish 4760 729.2 1.083398 0.300398 1005.824 0.540039 1.912548 1970657 Varnish 4770 715.1 1.084125 0.303816 1005.824 0.540039 1.909492 1977949 Varnish 4780 729.8 2.281544 11.21159 1005.824 0.540039 1.906518 1985100 Varnish 4790 730.4 1.587157 4.81726 1005.824 0.540039 1.907892 1992398 Varnish 4800 749.8 1.085152 0.290302 1005.824 0.540039 1.906721 1999702 Varnish 4810 809.4 1.09488 0.319242 1005.824 0.540039 1.903652 2007200 Varnish 4820 818.3 5.101976 43.64513 1005.824 0.540039 1.900403 2015294 Varnish 4830 805.7 1.103938 0.323202 1005.824 0.540039 1.913351 2023477 Varnish 4840 798.3 1.100989 0.36443 1005.824 0.540039 1.91014 2031534 Varnish 4850 803.9 7.189049 64.3056 1005.824 0.540039 1.906973 2039517 Varnish 4860 803.8 1.352681 3.159549 1005.824 0.540039 1.927711 2047556 Varnish 4870 803.3 1.101102 0.334851 1005.824 0.540039 1.925463 2055594 Varnish 4880 805.4 1.098687 0.311644 1005.824 0.540039 1.922254 2063627 Varnish 4890 810.4 8.36044 72.896 1005.824 0.540039 1.919052 2071681 Varnish

viii

4900 807.8 1.102026 0.331181 1005.824 0.540039 1.944151 2079785 Varnish 4910 829.1 1.109746 0.346477 1005.824 0.540039 1.940893 2087863 Varnish 4920 806.9 2.54842 10.59554 1005.824 0.540039 1.937606 2096154 Varnish 4930 817 1.309335 2.914735 1005.824 0.540039 1.939948 2104223 Varnish 4940 802.6 1.093115 0.316456 1005.824 0.540039 1.937509 2112393 Varnish 4950 802.6 1.103906 0.312513 1005.824 0.540039 1.934313 2120419 Varnish 4960 794.6 1.829149 7.310813 1005.824 0.540039 1.931182 2128445 Varnish 4970 815.7 1.105812 0.324991 1005.824 0.540039 1.930802 2136391 Varnish 4980 806.3 1.115055 0.323451 1005.824 0.540039 1.927664 2144548 Varnish 4990 792.2 3.072491 15.78566 1005.824 0.540039 1.92462 2152611 Varnish 5000 808.8 1.105794 0.330975 1005.824 0.540039 1.928829 2160533 Varnish 5010 810 1.104619 0.314382 1005.824 0.540039 1.92576 2168621 Varnish 5020 796.7 6.045214 56.87433 1005.824 0.540039 1.922704 2176721 Varnish 5030 800.6 1.099186 0.326414 1005.824 0.540039 1.937738 2184688 Varnish 5040 814.6 1.102463 0.309174 1005.824 0.540039 1.934676 2192694 Varnish 5050 783.8 1.347707 3.355064 1005.824 0.540039 1.931596 2200840 Varnish 5060 799.3 1.097864 0.327996 1005.824 0.540039 1.929524 2208678 Varnish 5070 802.5 1.103172 0.328925 1005.824 0.540039 1.926525 2216671 Varnish 5080 810.3 1.104412 0.315148 1005.824 0.540039 1.923555 2224696 Varnish 5090 804.2 1.094973 0.361092 1005.824 0.540039 1.920582 2232799 Varnish 5100 799.9 1.093433 0.327235 1005.824 0.540039 1.917619 2240841 Varnish 5110 805.3 37.12378 174.3244 1005.824 0.540039 1.914688 2248840 Varnish 5120 797.3 1.176857 1.519355 1005.824 0.540039 2.04032 2256893 Varnish 5130 810.1 1.099218 0.320242 1005.824 0.540039 2.03728 2264866 Varnish 5140 813.9 1.108677 0.323827 1005.824 0.540039 2.033937 2272967 Varnish 5150 802.3 8.468496 72.73498 1005.824 0.540039 2.030636 2281106 Varnish 5160 821.3 1.103376 0.34362 1005.824 0.540039 2.053199 2289129 Varnish 5170 817.9 1.115285 0.333476 1005.824 0.540039 2.049804 2297342 Varnish 5180 795.7 1.164159 1.427274 1005.824 0.540039 2.046488 2305521 Varnish 5190 804.5 1.093245 0.324982 1005.824 0.540039 2.043454 2313478 Varnish 5200 817.8 1.114293 0.315205 1005.824 0.540039 2.040161 2321523 Varnish 5210 806 1.095781 0.314881 1005.824 0.540039 2.036911 2329701 Varnish 5220 801.3 1.097782 0.31768 1005.824 0.540039 2.033666 2337761 Varnish 5230 794.5 1.098849 0.294739 1005.824 0.540039 2.030469 2345774 Varnish 5240 815.2 1.104601 0.318877 1005.824 0.540039 2.027324 2353719 Varnish 5250 810.7 1.096329 0.307652 1005.824 0.540039 2.02414 2361871 Varnish 5260 804.2 1.112916 0.329135 1005.824 0.540039 2.020966 2369978 Varnish 5270 807.8 1.169646 1.312171 1005.824 0.540039 2.017895 2378020 Varnish 5280 814.2 1.101062 0.325381 1005.824 0.540039 2.015023 2386098 Varnish 5290 809 1.104977 0.325042 1005.824 0.540039 2.011915 2394240 Varnish 5300 789.4 1.41141 3.789133 1005.824 0.540039 2.008861 2402330 Varnish 5310 794.6 1.09977 0.319842 1005.824 0.540039 2.006904 2410224 Varnish 5320 822.6 1.119853 0.340963 1005.824 0.540039 2.003923 2418170 Varnish 5330 812.2 1.10215 0.317941 1005.824 0.540039 2.000926 2426396 Varnish 5340 814.4 1.098598 0.323987 1005.824 0.540039 1.997928 2434518 Varnish 5350 818.7 1.098661 0.320946 1005.824 0.540039 1.994929 2442662 Varnish 5360 811.6 73.1167 251.4605 1005.824 0.540039 1.991935 2450849 Varnish 5370 818.2 1.096875 0.315484 1005.824 0.540039 2.226688 2458965 Varnish 5380 813.3 1.107101 0.340562 1005.824 0.540039 2.222941 2467147 Varnish 5390 811.2 1.809395 7.384925 1005.824 0.540039 2.219275 2475280 Varnish 5400 848.3 1.102875 0.346433 1005.824 0.540039 2.217936 2483392 Varnish 5410 871.8 1.11476 0.342031 1005.824 0.540039 2.21414 2491875 Varnish 5420 892.7 1.31601 2.703518 1005.824 0.540039 2.210307 2500593 Varnish 5430 893.2 1.125264 0.350463 1005.824 0.540039 2.207126 2509520 Varnish 5440 889.6 1.117913 0.327274 1005.824 0.540039 2.203289 2518452 Varnish 5450 871.9 1.124519 0.336976 1005.824 0.540039 2.199469 2527348 Varnish 5460 888.4 1.128172 0.36914 1005.824 0.540039 2.195773 2536067 Varnish 5470 876.1 1.114621 0.320516 1005.824 0.540039 2.192046 2544951 Varnish 5480 863.5 1.109114 0.326913 1005.824 0.540039 2.18835 2553712 Varnish 5490 899.5 63.19401 233.7147 1005.824 0.540039 2.184713 2562347 Varnish 5500 883.1 1.125311 0.354031 1005.824 0.540039 2.398134 2571342 Varnish 5510 894.4 1.140298 0.364774 1005.824 0.540039 2.393777 2580173 Varnish 5520 896.8 5.664014 49.67604 1005.824 0.540039 2.389447 2589117 Varnish 5530 889.8 1.345502 2.962114 1005.824 0.540039 2.40075 2598085 Varnish 5540 908.8 1.136884 0.355957 1005.824 0.540039 2.397149 2606983 Varnish 5550 902 1.115619 0.320994 1005.824 0.540039 2.392771 2616071 Varnish 5560 889.6 4.783208 47.91295 1005.824 0.540039 2.388382 2625091 Varnish 5570 873.8 1.130229 0.358488 1005.824 0.540039 2.396471 2633987 Varnish 5580 888.1 1.131056 0.337547 1005.824 0.540039 2.392284 2642725 Varnish 5590 872.6 3.603665 18.9301 1005.824 0.540039 2.38806 2651606 Varnish 5600 899 1.125131 0.334894 1005.824 0.540039 2.392047 2660332 Varnish

ix

5610 887.4 1.125979 0.337699 1005.824 0.540039 2.38778 2669322 Varnish 5620 897.3 12.08598 94.02187 1005.824 0.540039 2.383599 2678196 Varnish 5630 896.2 1.132951 0.368486 1005.824 0.540039 2.415997 2687169 Varnish 5640 883.1 1.132804 0.341489 1005.824 0.540039 2.411732 2696131 Varnish 5650 883.1 8.332631 71.06121 1005.824 0.540039 2.407557 2704962 Varnish 5660 896.1 1.32633 2.787357 1005.824 0.540039 2.426838 2713793 Varnish 5670 897.8 1.138223 0.351701 1005.824 0.540039 2.423216 2722754 Varnish 5680 900.1 1.129344 0.346941 1005.824 0.540039 2.418993 2731732 Varnish 5690 909.9 10.11249 84.04773 1005.824 0.540039 2.414757 2740733 Varnish 5700 896.3 1.132457 0.333576 1005.824 0.540039 2.440229 2749832 Varnish 5710 895.2 1.11539 0.330781 1005.824 0.540039 2.43598 2758795 Varnish 5720 877.3 1.694779 5.20346 1005.824 0.540039 2.431709 2767747 Varnish 5730 882.5 1.126525 0.341641 1005.824 0.540039 2.42938 2776520 Varnish 5740 892.1 1.120574 0.326473 1005.824 0.540039 2.425252 2785345 Varnish 5750 887 10.6614 85.52415 1005.824 0.540039 2.421087 2794266 Varnish 5760 908.2 1.142835 0.352569 1005.824 0.540039 2.447162 2803136 Varnish 5770 882 1.112367 0.335386 1005.824 0.540039 2.442949 2812218 Varnish 5780 888.3 1.110474 0.334795 1005.824 0.540039 2.438789 2821038 Varnish 5790 896.9 6.996087 54.52625 1005.824 0.540039 2.43462 2829921 Varnish 5800 888 1.12748 0.353216 1005.824 0.540039 2.449031 2838890 Varnish 5810 885.9 1.11574 0.326035 1005.824 0.540039 2.44491 2847770 Varnish 5820 883.9 3.714922 18.98782 1005.824 0.540039 2.440788 2856629 Varnish 5830 887.1 1.119998 0.326854 1005.824 0.540039 2.444718 2865468 Varnish 5840 899.9 1.118096 0.329813 1005.824 0.540039 2.44063 2874339 Varnish 5850 887.8 2.419048 11.84087 1005.824 0.540039 2.436502 2883338 Varnish 5860 903.2 1.554245 5.392813 1005.824 0.540039 2.436449 2892216 Varnish 5870 897.9 1.12317 0.339692 1005.824 0.540039 2.433702 2901248 Varnish 5880 891.6 1.133064 0.358827 1005.824 0.540039 2.429659 2910227 Varnish 5890 893.6 4.416758 32.56196 1005.824 0.540039 2.425699 2919143 Varnish 5900 890 1.119103 0.344701 1005.824 0.540039 2.431775 2928079 Varnish 5910 880.5 1.125242 0.353283 1005.824 0.540039 2.427797 2936979 Varnish 5920 889.3 6.659301 55.04155 1005.824 0.540039 2.423904 2945784 Varnish 5930 884.4 1.114987 0.321207 1005.824 0.540039 2.436651 2954677 Varnish 5940 898.3 1.127181 0.337627 1005.824 0.540039 2.432707 2963521 Varnish 5950 889 8.731169 75.92151 1005.824 0.540039 2.428762 2972504 Varnish 5960 889.8 1.127275 0.343627 1005.824 0.540039 2.447555 2981394 Varnish 5970 892 1.128654 0.331631 1005.824 0.540039 2.443626 2990292 Varnish 5980 875.2 1.655154 5.904584 1005.824 0.540039 2.439715 2999212 Varnish 5990 877.6 1.114074 0.33942 1005.824 0.540039 2.437432 3007964 Varnish 6000 474.4 1.160225 0.356477 1005.824 0.540039 2.433583 3016740 Varnish

0 43 1.299282 5.016494 63.20288 0.549072 0 0 Nginx 10 93.1 0.74733 0.140037 63.20288 0.549072 1.299282 430 Nginx 20 97.2 0.750911 0.130535 63.20288 0.549072 0.921716 1361 Nginx 30 100.1 0.763517 0.159252 63.20288 0.549072 0.850553 2333 Nginx 40 89 0.736993 0.141553 63.20288 0.549072 0.824421 3334 Nginx 50 97.1 0.748845 0.130004 63.20288 0.549072 0.806 4224 Nginx 60 93.3 0.738502 0.136449 63.20288 0.549072 0.795317 5195 Nginx 70 101.4 0.778462 0.138632 63.20288 0.546143 0.786667 6128 Nginx 80 97.5 0.751637 0.163805 63.20288 0.546143 0.785502 7142 Nginx 90 91.1 0.755711 0.148573 63.20288 0.546143 0.781434 8117 Nginx

100 92.3 0.749511 0.146997 63.20288 0.546143 0.778839 9028 Nginx 110 100.4 0.747802 0.129676 63.20288 0.546143 0.776118 9951 Nginx 120 97.1 0.750218 0.144356 63.20288 0.546143 0.773523 10955 Nginx 130 94.7 0.761417 0.13445 63.20288 0.546143 0.771626 11926 Nginx 140 98.8 0.760554 0.138931 63.20288 0.546143 0.770875 12873 Nginx 150 97.6 0.73434 0.134749 63.20288 0.546143 0.770139 13861 Nginx 160 94 0.747836 0.132446 63.20288 0.546143 0.767784 14837 Nginx 170 98.2 0.756392 0.129401 63.20288 0.546143 0.766596 15777 Nginx 180 98.6 0.77725 0.153504 63.20288 0.546143 0.765998 16759 Nginx 190 97.5 0.770131 0.13816 63.20288 0.546143 0.766623 17745 Nginx 200 96.6 0.740259 0.145063 63.20288 0.546143 0.766806 18720 Nginx 210 91.1 0.751056 0.143455 63.20288 0.546143 0.765503 19686 Nginx 220 102.8 0.758297 0.139949 63.20288 0.546143 0.764864 20597 Nginx 230 94.8 0.720372 0.121174 63.20288 0.546143 0.764552 21625 Nginx 240 100.7 0.758846 0.147911 63.20288 0.546143 0.762697 22573 Nginx 250 98.5 0.745838 0.145721 63.20288 0.546143 0.762532 23580 Nginx 260 97.1 0.754361 0.138173 63.20288 0.546143 0.761863 24565 Nginx 270 96.7 0.771402 0.137321 63.20288 0.546143 0.761577 25536 Nginx 280 99 0.759141 0.16164 63.20288 0.546143 0.761936 26503 Nginx 290 99.9 0.744251 0.145367 63.20288 0.546143 0.761835 27493 Nginx 300 100.9 0.794461 0.653348 63.20288 0.546143 0.761219 28492 Nginx

x

310 95.6 0.774722 0.142066 63.20288 0.546143 0.762356 29501 Nginx 320 93.7 0.747296 0.134853 63.20288 0.546143 0.762744 30457 Nginx 330 102.3 0.74684 0.135747 63.20288 0.544189 0.762283 31394 Nginx 340 92.6 0.752226 0.139356 63.20288 0.544189 0.761795 32417 Nginx 350 96.8 0.746192 0.143205 63.20288 0.544189 0.76153 33343 Nginx 360 92.2 0.750473 0.311775 63.20288 0.544189 0.761097 34311 Nginx 370 104.7 0.754813 0.140587 63.20288 0.544189 0.760819 35233 Nginx 380 95.1 0.782887 0.145458 63.20288 0.539795 0.760646 36280 Nginx 390 97.5 0.743031 0.133555 63.20288 0.539795 0.761214 37231 Nginx 400 97.3 0.779612 0.147178 63.20288 0.539795 0.76075 38206 Nginx 410 99.2 0.757984 0.14635 63.20288 0.539795 0.761218 39179 Nginx 420 98.3 0.747964 0.135046 63.20288 0.539795 0.761138 40171 Nginx 430 97.1 0.764474 0.131786 63.20288 0.539795 0.760824 41154 Nginx 440 97.7 0.772826 0.138552 63.20288 0.539795 0.760908 42125 Nginx 450 101.2 0.733831 0.143586 63.20288 0.539795 0.761178 43102 Nginx 460 96.7 0.753347 0.151602 63.20288 0.539795 0.760551 44114 Nginx 470 98.4 0.755687 0.133663 63.20288 0.539795 0.760396 45081 Nginx 480 96.6 0.753819 0.147731 63.20288 0.539795 0.760295 46065 Nginx 490 101 0.812115 0.929242 63.20288 0.539795 0.760162 47031 Nginx 500 104.9 0.753723 0.462344 63.20288 0.539795 0.761255 48041 Nginx 510 99.2 0.736576 0.134949 63.20288 0.539795 0.761094 49090 Nginx 520 97.4 0.752576 0.13985 63.20288 0.539795 0.760608 50082 Nginx 530 101 0.750408 0.14142 63.20288 0.539795 0.760455 51056 Nginx 540 96.4 0.748133 0.147888 63.20288 0.539795 0.76026 52066 Nginx 550 101.6 0.760662 0.140569 63.20288 0.539795 0.76004 53030 Nginx 560 94.3 0.749403 0.14102 63.20288 0.539795 0.760051 54046 Nginx 570 95.8 0.748719 0.128732 63.20288 0.539063 0.759869 54989 Nginx 580 99.9 0.736713 0.163259 63.20288 0.539063 0.759678 55947 Nginx 590 98.2 0.762663 0.128913 63.20288 0.539063 0.759275 56946 Nginx 600 143.9 0.805895 0.650931 63.20288 0.539063 0.759332 57928 Nginx 610 184.9 0.753832 0.153337 63.20288 0.539063 0.760461 59367 Nginx 620 199.2 0.78633 0.170449 63.20288 0.539063 0.760261 61216 Nginx 630 195.6 0.772923 0.164802 63.20288 0.539063 0.761082 63208 Nginx 640 190.8 0.764097 0.165436 63.20288 0.531982 0.761438 65164 Nginx 650 190.9 0.77745 0.169612 63.20288 0.531982 0.761513 67072 Nginx 660 202.1 0.787406 0.182999 63.20288 0.531982 0.761954 68981 Nginx 670 192.6 0.768552 0.157649 63.20288 0.531982 0.762679 71002 Nginx 680 190.5 0.777415 0.17378 63.20288 0.531982 0.762834 72928 Nginx 690 190.4 0.782582 0.161708 63.20288 0.531982 0.763205 74833 Nginx 700 193.7 0.768258 0.16518 63.20288 0.531982 0.763686 76737 Nginx 710 188.3 0.755842 0.164664 63.20288 0.531982 0.763798 78674 Nginx 720 190 0.767524 0.165895 63.20288 0.531982 0.763612 80557 Nginx 730 183.3 0.767876 0.165214 63.20288 0.531982 0.763703 82457 Nginx 740 196.9 0.757831 0.160527 63.20288 0.531982 0.763793 84290 Nginx 750 200.9 0.778526 0.174737 63.20288 0.531982 0.763657 86259 Nginx 760 196.8 0.776007 0.176091 63.20288 0.531982 0.763996 88268 Nginx 770 189.3 0.769271 0.158244 63.20288 0.520996 0.764258 90236 Nginx 780 188.8 0.760913 0.161668 63.20288 0.520996 0.764361 92129 Nginx 790 195.5 0.773484 0.162665 63.20288 0.520996 0.764291 94017 Nginx 800 193.7 0.752761 0.165111 63.20288 0.520996 0.764479 95972 Nginx 810 193.1 0.780188 0.154089 63.20288 0.520996 0.764247 97909 Nginx 820 192 0.769645 0.167927 63.20288 0.520996 0.764555 99840 Nginx 830 192 0.766681 0.154788 63.20288 0.520996 0.764651 101760 Nginx 840 192.4 0.778614 0.158384 63.20288 0.520996 0.764689 103680 Nginx 850 190.6 0.769234 0.164092 63.20288 0.520996 0.764943 105604 Nginx 860 195.4 0.759377 0.148913 63.20288 0.520996 0.765019 107510 Nginx 870 193.2 0.797159 0.179218 63.20288 0.520996 0.764918 109464 Nginx 880 196.3 0.786174 0.171736 63.20288 0.520996 0.765477 111396 Nginx 890 193.4 0.77565 0.165003 63.20288 0.520996 0.765835 113359 Nginx 900 188.6 1.053031 2.646851 63.20288 0.520996 0.766 115293 Nginx 910 195.9 0.785722 0.168133 63.20288 0.520996 0.77062 117179 Nginx 920 200.8 0.769281 0.161591 63.20288 0.520996 0.770868 119138 Nginx 930 205 0.781873 0.180325 63.20288 0.520996 0.770842 121146 Nginx 940 191.3 0.793891 0.172346 63.20288 0.520996 0.771025 123196 Nginx 950 193.2 0.773911 0.159587 63.20288 0.520996 0.771375 125109 Nginx 960 189.1 0.779195 0.182089 63.20288 0.520996 0.771414 127041 Nginx 970 188.1 0.790731 0.53282 63.20288 0.520996 0.771528 128932 Nginx 980 190.7 0.756197 0.162292 63.20288 0.520996 0.771804 130813 Nginx 990 196.6 0.762459 0.158362 63.20288 0.520996 0.77158 132720 Nginx

1000 193 0.773469 0.150448 63.20288 0.520996 0.771446 134686 Nginx 1010 193.9 0.772319 0.177312 63.20288 0.520996 0.771475 136616 Nginx

xi

1020 197.1 0.766076 0.163074 63.20288 0.520996 0.771487 138555 Nginx 1030 193.9 0.788683 0.172503 63.20288 0.520996 0.771411 140526 Nginx 1040 195 0.787604 0.170728 63.20288 0.520996 0.771646 142465 Nginx 1050 181.5 0.788455 0.156448 63.20288 0.520996 0.771862 144415 Nginx 1060 197 0.810514 0.542328 63.20288 0.520996 0.772068 146230 Nginx 1070 193.5 0.765548 0.154126 63.20288 0.520996 0.772579 148200 Nginx 1080 192.3 0.773542 0.1652 63.20288 0.520996 0.772488 150135 Nginx 1090 204.2 0.790831 0.181404 63.20288 0.520996 0.772501 152058 Nginx 1100 198.6 0.791783 0.173896 63.20288 0.520996 0.772744 154100 Nginx 1110 194.6 0.785836 0.169438 63.20288 0.520996 0.772986 156086 Nginx 1120 191.8 0.792458 0.157082 63.20288 0.520996 0.773145 158032 Nginx 1130 198.4 0.806786 0.188295 63.20288 0.520996 0.773376 159950 Nginx 1140 197.8 0.796471 0.181102 63.20288 0.520996 0.773786 161934 Nginx 1150 187.7 0.79085 0.161531 63.20288 0.520996 0.774059 163912 Nginx 1160 188.8 0.797581 0.161963 63.20288 0.520996 0.774249 165789 Nginx 1170 195.1 0.793693 0.169173 63.20288 0.520996 0.774512 167677 Nginx 1180 192.2 0.802957 0.16944 63.20288 0.520996 0.774733 169628 Nginx 1190 192.3 0.799177 0.173315 63.20288 0.520996 0.775049 171550 Nginx 1200 231.6 0.801783 0.496388 63.20288 0.520996 0.775316 173473 Nginx 1210 276.4 0.793956 0.185643 63.20288 0.520996 0.775665 175789 Nginx 1220 284.4 0.799836 0.195482 63.20288 0.520996 0.775948 178553 Nginx 1230 287 0.807332 0.186846 63.20288 0.520996 0.776323 181397 Nginx 1240 289.3 0.796932 0.194791 63.20288 0.520996 0.776806 184267 Nginx 1250 283.4 0.797285 0.363174 63.20288 0.520996 0.777117 187160 Nginx 1260 286.8 0.784541 0.18095 63.20288 0.520996 0.777418 189994 Nginx 1270 290.3 0.774295 0.182868 63.20288 0.520996 0.777524 192862 Nginx 1280 287.1 0.847427 1.125619 63.20288 0.520996 0.777476 195765 Nginx 1290 289.3 0.804423 0.186332 63.20288 0.520996 0.778487 198636 Nginx 1300 281.8 0.772733 0.17372 63.20288 0.520996 0.778859 201529 Nginx 1310 279.5 0.79847 0.494007 63.20288 0.520996 0.778775 204347 Nginx 1320 285.2 0.812439 0.188759 63.20288 0.520996 0.77904 207142 Nginx 1330 288 0.790212 0.200418 63.20288 0.520996 0.779494 209994 Nginx 1340 288 0.830801 0.724926 63.20288 0.520996 0.779639 212874 Nginx 1350 278.4 0.798653 0.174443 63.20288 0.520996 0.780322 215754 Nginx 1360 291.5 0.792912 0.203474 63.20288 0.520996 0.780555 218538 Nginx 1370 280.3 0.78808 0.214096 63.20288 0.520996 0.780718 221453 Nginx 1380 280.8 0.785093 0.187067 63.20288 0.520996 0.78081 224256 Nginx 1390 289.3 0.792544 0.196384 63.20288 0.520996 0.780863 227064 Nginx 1400 294 0.772376 0.176714 63.20288 0.520996 0.78101 229957 Nginx 1410 278.5 0.860246 1.127621 63.20288 0.520996 0.780901 232897 Nginx 1420 286.1 0.780374 0.177129 63.20288 0.520996 0.781839 235682 Nginx 1430 277.6 0.77206 0.175787 63.20288 0.520996 0.781821 238543 Nginx 1440 290.6 0.820542 0.69907 63.20288 0.520996 0.781709 241319 Nginx 1450 283.4 0.792211 0.197431 63.20288 0.520996 0.782171 244225 Nginx 1460 286.7 0.790033 0.196475 63.20288 0.520996 0.782286 247059 Nginx 1470 287 0.793815 0.381141 63.20288 0.520996 0.782375 249926 Nginx 1480 285.2 0.784146 0.182115 63.20288 0.520996 0.782505 252796 Nginx 1490 289.7 0.783554 0.186475 63.20288 0.520996 0.782523 255648 Nginx 1500 285.7 0.841191 1.070658 63.20288 0.520996 0.782535 258545 Nginx 1510 283.4 0.783098 0.188338 63.20288 0.520996 0.783176 261402 Nginx 1520 291.3 0.771651 0.179069 63.20288 0.520996 0.783175 264236 Nginx 1530 296.8 0.795995 0.621248 63.20288 0.520996 0.783049 267149 Nginx 1540 289.7 0.783937 0.188187 63.20288 0.520996 0.783192 270117 Nginx 1550 281.5 0.784848 0.186344 63.20288 0.520996 0.783199 273014 Nginx 1560 284.4 0.784435 0.333008 63.20288 0.520996 0.783216 275829 Nginx 1570 285.1 0.786365 0.189423 63.20288 0.520996 0.783229 278673 Nginx 1580 283.8 0.771258 0.177144 63.20288 0.520996 0.78326 281524 Nginx 1590 284.8 0.780466 0.202605 63.20288 0.517822 0.783141 284362 Nginx 1600 278.2 0.817215 0.759655 63.20288 0.517822 0.783114 287210 Nginx 1610 296.5 0.791454 0.195005 63.20288 0.517822 0.783441 289992 Nginx 1620 286.4 0.781163 0.179034 63.20288 0.517822 0.783522 292957 Nginx 1630 288.6 0.792762 0.427349 63.20288 0.517822 0.7835 295821 Nginx 1640 280.9 0.786495 0.177033 63.20288 0.517822 0.783589 298707 Nginx 1650 289.7 0.783012 0.181935 63.20288 0.517822 0.783616 301516 Nginx 1660 288.1 0.801238 0.448673 63.20288 0.517822 0.78361 304413 Nginx 1670 279.8 0.799088 0.17961 63.20288 0.517822 0.783776 307294 Nginx 1680 284.6 0.79025 0.179907 63.20288 0.517822 0.783914 310092 Nginx 1690 285.3 0.802347 0.373228 63.20288 0.517822 0.783971 312938 Nginx 1700 286.6 0.794666 0.18686 63.20288 0.517822 0.784137 315791 Nginx 1710 287.9 0.807939 0.204305 63.20288 0.517822 0.784232 318657 Nginx 1720 284.3 0.793685 0.228217 63.20288 0.517822 0.784444 321536 Nginx

xii

1730 287.2 0.799147 0.182487 63.20288 0.517822 0.784525 324379 Nginx 1740 284.3 0.785656 0.18734 63.20288 0.517822 0.784654 327251 Nginx 1750 288.9 0.767576 0.176292 63.20288 0.517822 0.784662 330094 Nginx 1760 278.2 0.81879 0.737925 63.20288 0.517822 0.784514 332983 Nginx 1770 279.5 0.791543 0.190405 63.20288 0.517822 0.784798 335765 Nginx 1780 292.4 0.786385 0.18827 63.20288 0.517822 0.784854 338560 Nginx 1790 278.9 0.852433 0.84883 63.20288 0.517822 0.784867 341484 Nginx 1800 324.2 0.815973 0.45834 63.20288 0.517822 0.785414 344273 Nginx 1810 384 0.79717 0.19821 63.20288 0.517822 0.785699 347515 Nginx 1820 372.7 0.835622 0.752104 63.20288 0.517822 0.785825 351355 Nginx 1830 376.3 0.809256 0.211658 63.20288 0.517822 0.786347 355082 Nginx 1840 369.5 0.802399 0.204495 63.20288 0.517822 0.786588 358845 Nginx 1850 370.3 0.829063 0.481656 63.20288 0.517822 0.786749 362540 Nginx 1860 384.4 0.822876 0.21535 63.20288 0.517822 0.787177 366243 Nginx 1870 383.2 0.807159 0.224349 63.20288 0.517822 0.787547 370087 Nginx 1880 370.5 0.815927 0.549369 63.20288 0.517822 0.787748 373919 Nginx 1890 375.6 0.811977 0.214144 63.20288 0.517822 0.788025 377624 Nginx 1900 381 0.810007 0.206729 63.20288 0.517822 0.788261 381380 Nginx 1910 377.6 0.823882 0.593084 63.20288 0.517822 0.788476 385190 Nginx 1920 371.2 0.809112 0.199316 63.20288 0.517822 0.78882 388966 Nginx 1930 382.6 0.815136 0.219511 63.20288 0.517822 0.789011 392678 Nginx 1940 373.6 0.794498 0.20154 63.20288 0.517822 0.789263 396504 Nginx 1950 374.6 0.81361 0.465865 63.20288 0.517822 0.789312 400240 Nginx 1960 383.1 0.802836 0.204627 63.20288 0.517822 0.789538 403986 Nginx 1970 371.1 0.804412 0.205818 63.20288 0.517822 0.789663 407817 Nginx 1980 369.8 0.833009 0.726991 63.20288 0.517822 0.789796 411528 Nginx 1990 368.5 0.805187 0.20747 63.20288 0.517822 0.79018 415226 Nginx 2000 377.8 0.799118 0.203715 63.20288 0.517822 0.790312 418911 Nginx 2010 375.2 0.847809 0.964279 63.20288 0.517822 0.790391 422689 Nginx 2020 376.7 0.817497 0.210956 63.20288 0.517822 0.790896 426441 Nginx 2030 377 0.807093 0.207755 63.20288 0.517822 0.791129 430208 Nginx 2040 370.6 0.829997 0.804472 63.20288 0.516846 0.791268 433978 Nginx 2050 379.6 0.810688 0.210268 63.20288 0.516846 0.791596 437684 Nginx 2060 378.4 0.801855 0.200699 63.20288 0.516846 0.79176 441480 Nginx 2070 381.8 0.827106 0.66197 63.20288 0.516846 0.791846 445264 Nginx 2080 382 0.806619 0.206808 63.20288 0.516846 0.792146 449082 Nginx 2090 373.9 0.795423 0.207568 63.20288 0.516846 0.792268 452902 Nginx 2100 379.6 0.852108 0.840771 63.20288 0.516846 0.792293 456641 Nginx 2110 371.9 0.798725 0.198691 63.20288 0.516846 0.792787 460437 Nginx 2120 370 0.807718 0.221424 63.20288 0.516846 0.792834 464156 Nginx 2130 367.8 0.792173 0.198057 63.20288 0.516846 0.792952 467856 Nginx 2140 377.9 0.840021 0.715654 63.20288 0.516846 0.792946 471534 Nginx 2150 380.1 0.793481 0.192948 63.20288 0.516846 0.79332 475313 Nginx 2160 382.8 0.798305 0.210277 63.20288 0.516846 0.793321 479114 Nginx 2170 374.4 0.834414 0.68896 63.20288 0.516846 0.793361 482942 Nginx 2180 377.7 0.813233 0.205739 63.20288 0.516846 0.793677 486686 Nginx 2190 378.9 0.801996 0.205325 63.20288 0.516846 0.793827 490463 Nginx 2200 378.1 0.832424 0.508091 63.20288 0.516846 0.79389 494252 Nginx 2210 371.4 0.811561 0.220415 63.20288 0.516846 0.794182 498033 Nginx 2220 369.2 0.809003 0.207732 63.20288 0.516846 0.794311 501747 Nginx 2230 376.9 0.82424 0.657589 63.20288 0.516846 0.794418 505439 Nginx 2240 373.6 0.810155 0.246763 63.20288 0.516846 0.794639 509208 Nginx 2250 378.1 0.804212 0.230856 63.20288 0.516846 0.794752 512944 Nginx 2260 380.4 0.819053 0.416685 63.20288 0.516846 0.794821 516725 Nginx 2270 377.2 0.81981 0.250959 63.20288 0.516846 0.794998 520529 Nginx 2280 375.8 0.796044 0.203571 63.20288 0.516846 0.795177 524301 Nginx 2290 372 0.821026 0.693098 63.20288 0.516846 0.795183 528059 Nginx 2300 378.1 0.80172 0.207195 63.20288 0.516846 0.795364 531779 Nginx 2310 374.3 0.799748 0.210717 63.20288 0.516846 0.795409 535560 Nginx 2320 377.9 0.80587 0.497353 63.20288 0.516846 0.795439 539303 Nginx 2330 379.5 0.805489 0.212575 63.20288 0.516846 0.795511 543082 Nginx 2340 384.7 0.809001 0.19963 63.20288 0.516846 0.795581 546877 Nginx 2350 375.8 0.827067 0.66955 63.20288 0.516846 0.795674 550724 Nginx 2360 371.5 0.807281 0.257093 63.20288 0.516846 0.795887 554482 Nginx 2370 371.1 0.817039 0.203154 63.20288 0.516846 0.795963 558197 Nginx 2380 373.2 0.817555 0.543732 63.20288 0.516846 0.796102 561908 Nginx 2390 381.4 0.807356 0.221392 63.20288 0.516846 0.796244 565640 Nginx 2400 419.1 0.836865 0.497944 63.20288 0.516846 0.796318 569454 Nginx 2410 454.2 0.838672 0.673078 63.20288 0.516846 0.796614 573645 Nginx 2420 454.9 0.816675 0.212257 63.20288 0.516846 0.796945 578187 Nginx 2430 475.9 0.829067 0.228113 63.20288 0.516846 0.797099 582736 Nginx

xiii

2440 476.6 0.873143 0.943496 63.20288 0.516846 0.797358 587495 Nginx 2450 465.5 0.806877 0.224079 63.20288 0.516846 0.797968 592261 Nginx 2460 459.9 0.822646 0.215433 63.20288 0.516846 0.798037 596916 Nginx 2470 465.9 0.864956 0.866643 63.20288 0.516846 0.798225 601515 Nginx 2480 454 0.810068 0.226236 63.20288 0.516846 0.798738 606174 Nginx 2490 464.6 0.815236 0.251452 63.20288 0.516846 0.798822 610714 Nginx 2500 464.3 0.825129 0.225491 63.20288 0.516846 0.798946 615360 Nginx 2510 463 0.859591 0.911326 63.20288 0.516846 0.799142 620003 Nginx 2520 462.5 0.825158 0.240636 63.20288 0.516846 0.79959 624633 Nginx 2530 464.9 0.827231 0.20997 63.20288 0.516846 0.799778 629258 Nginx 2540 480.3 0.867129 0.971034 63.20288 0.516846 0.79998 633907 Nginx 2550 463.5 0.805531 0.211117 63.20288 0.516846 0.800485 638710 Nginx 2560 466 0.827666 0.226529 63.20288 0.516846 0.800521 643345 Nginx 2570 459.5 0.878577 1.320697 63.20288 0.516846 0.800716 648005 Nginx 2580 469.7 0.815048 0.223522 63.20288 0.516846 0.801264 652600 Nginx 2590 474.4 0.822218 0.221898 63.20288 0.516846 0.801363 657297 Nginx 2600 463.9 0.8375 0.720976 63.20288 0.516846 0.801512 662041 Nginx 2610 462.7 0.810413 0.223771 63.20288 0.516846 0.801763 666680 Nginx 2620 455.3 0.815127 0.234349 63.20288 0.516846 0.801822 671307 Nginx 2630 474.2 0.863199 0.765908 63.20288 0.516846 0.801912 675860 Nginx 2640 474.9 0.811746 0.226015 63.20288 0.516846 0.802339 680602 Nginx 2650 470 0.818737 0.217458 63.20288 0.516846 0.802404 685351 Nginx 2660 464.5 0.850926 0.787621 63.20288 0.516846 0.802516 690051 Nginx 2670 475.9 0.81928 0.268997 63.20288 0.516846 0.802839 694696 Nginx 2680 464.6 0.817395 0.219411 63.20288 0.516846 0.802951 699455 Nginx 2690 461.2 0.815049 0.215354 63.20288 0.516846 0.803046 704101 Nginx 2700 474.7 0.894648 1.206994 63.20288 0.516846 0.803124 708713 Nginx 2710 469.6 0.82081 0.230494 63.20288 0.516846 0.803733 713460 Nginx 2720 468.9 0.829535 0.232722 63.20288 0.516846 0.803845 718156 Nginx 2730 459.7 0.866835 0.965891 63.20288 0.516846 0.804012 722845 Nginx 2740 456.7 0.819648 0.234554 63.20288 0.516846 0.804409 727442 Nginx 2750 463.1 0.819342 0.22025 63.20288 0.516846 0.804504 732009 Nginx 2760 463.5 0.859405 0.906639 63.20288 0.516846 0.804597 736640 Nginx 2770 452.2 0.815841 0.225839 63.20288 0.516846 0.80494 741275 Nginx 2780 456.7 0.817047 0.211307 63.20288 0.516846 0.805006 745797 Nginx 2790 465.9 0.838946 0.545155 63.20288 0.516846 0.805079 750364 Nginx 2800 455.8 0.814652 0.216103 63.20288 0.516846 0.805288 755023 Nginx 2810 463.6 0.815071 0.208625 63.20288 0.516846 0.805344 759581 Nginx 2820 467.9 0.887122 1.000746 63.20288 0.516846 0.805403 764217 Nginx 2830 470.3 0.821147 0.227939 63.20288 0.516846 0.805901 768896 Nginx 2840 469.5 0.818314 0.218 63.20288 0.516846 0.805993 773599 Nginx 2850 459.6 0.869139 1.008047 63.20288 0.516846 0.806068 778294 Nginx 2860 462.8 0.81473 0.24343 63.20288 0.516846 0.806438 782890 Nginx 2870 467 0.817297 0.239313 63.20288 0.516846 0.806487 787518 Nginx 2880 468.2 0.819721 0.234454 63.20288 0.516846 0.80655 792188 Nginx 2890 476.9 0.931204 1.932805 63.20288 0.516846 0.806628 796870 Nginx 2900 462.1 0.821372 0.222439 63.20288 0.516846 0.807369 801639 Nginx 2910 462.3 0.835019 0.231037 63.20288 0.516846 0.807449 806260 Nginx 2920 461.7 0.882582 1.180106 63.20288 0.514893 0.807606 810883 Nginx 2930 463.1 0.812721 0.231839 63.20288 0.514893 0.808031 815500 Nginx 2940 462.8 0.828538 0.219501 63.20288 0.514893 0.808057 820131 Nginx 2950 470.8 0.897669 1.346146 63.20288 0.514893 0.808172 824759 Nginx 2960 473.8 0.818062 0.231395 63.20288 0.514893 0.80868 829467 Nginx 2970 460.8 0.832084 0.223191 63.20288 0.514893 0.808733 834205 Nginx 2980 470.6 0.876179 0.945031 63.20288 0.514893 0.808862 838813 Nginx 2990 456.2 0.811555 0.215409 63.20288 0.514893 0.809237 843519 Nginx 3000 505.7 0.824948 0.245014 63.20288 0.514893 0.80925 848081 Nginx 3010 548.2 0.842884 0.465988 63.20288 0.514893 0.809343 853138 Nginx 3020 558.4 0.890247 1.119022 63.20288 0.514893 0.809557 858620 Nginx 3030 555.9 0.842402 0.248527 63.20288 0.514893 0.810078 864204 Nginx 3040 559.5 0.83917 0.24295 63.20288 0.514893 0.810285 869763 Nginx 3050 568.2 0.877949 0.890629 63.20288 0.514893 0.81047 875358 Nginx 3060 559.6 0.841701 0.246971 63.20288 0.514893 0.810905 881040 Nginx 3070 564.1 0.851414 0.234607 63.20288 0.514893 0.811099 886636 Nginx 3080 569.4 0.914918 1.381096 63.20288 0.514893 0.811354 892277 Nginx 3090 551 0.832717 0.241385 63.20288 0.514893 0.812011 897971 Nginx 3100 561.3 0.847701 0.239302 63.20288 0.514893 0.812137 903481 Nginx 3110 553 0.864313 0.712355 63.20288 0.514893 0.812357 909094 Nginx 3120 546.9 0.823859 0.231365 63.20288 0.514893 0.812671 914624 Nginx 3130 552.7 0.84435 0.254355 63.20288 0.514893 0.812737 920093 Nginx 3140 560.4 1.038476 2.854192 63.20288 0.514893 0.812926 925620 Nginx

xiv

3150 566.4 0.824646 0.235718 63.20288 0.514893 0.814283 931224 Nginx 3160 559.4 0.83732 0.239475 63.20288 0.514893 0.814346 936888 Nginx 3170 568.8 0.909441 1.219345 63.20288 0.514893 0.814482 942482 Nginx 3180 557.1 0.832997 0.241622 63.20288 0.514893 0.815052 948170 Nginx 3190 560.9 0.841015 0.243724 63.20288 0.514893 0.815157 953741 Nginx 3200 546.9 0.876103 0.871974 63.20288 0.514893 0.815308 959350 Nginx 3210 549.4 0.828083 0.249727 63.20288 0.514893 0.815653 964819 Nginx 3220 535.2 0.835633 0.235481 63.20288 0.514893 0.815723 970313 Nginx 3230 556.3 0.913046 1.186226 63.20288 0.514893 0.815832 975665 Nginx 3240 542.2 0.834225 0.231097 63.20288 0.514893 0.816383 981228 Nginx 3250 563 0.831767 0.239939 63.20288 0.514893 0.816481 986650 Nginx 3260 543.8 0.848825 0.247588 63.20288 0.514893 0.816568 992280 Nginx 3270 540.7 0.909157 1.236887 63.20288 0.514893 0.816744 997718 Nginx 3280 553.5 0.828398 0.239198 63.20288 0.514893 0.817242 1003125 Nginx 3290 557.8 0.839766 0.247085 63.20288 0.514893 0.817303 1008660 Nginx 3300 549.4 0.862946 0.741493 63.20288 0.514893 0.817427 1014238 Nginx 3310 557.8 0.862657 0.571363 63.20288 0.514893 0.817672 1019732 Nginx 3320 557.3 0.844023 0.260048 63.20288 0.514893 0.817917 1025310 Nginx 3330 539.8 0.890373 0.956496 63.20288 0.514893 0.818058 1030883 Nginx 3340 549.2 0.823098 0.25518 63.20288 0.514893 0.818435 1036281 Nginx 3350 550.2 0.84503 0.234811 63.20288 0.514893 0.818459 1041773 Nginx 3360 542.6 0.933786 1.66876 63.20288 0.514893 0.818599 1047275 Nginx 3370 557.3 0.835506 0.285496 63.20288 0.514893 0.819192 1052701 Nginx 3380 558.8 0.836956 0.23458 63.20288 0.514893 0.819278 1058274 Nginx 3390 556.9 0.908584 1.123219 63.20288 0.514893 0.819371 1063862 Nginx 3400 559.9 0.831323 0.248291 63.20288 0.514893 0.819836 1069431 Nginx 3410 557.1 0.840502 0.257325 63.20288 0.514893 0.819896 1075030 Nginx 3420 556.2 0.92618 1.523714 63.20288 0.514893 0.820002 1080601 Nginx 3430 550.6 0.826446 0.232937 63.20288 0.514893 0.820546 1086163 Nginx 3440 549.4 0.831273 0.24431 63.20288 0.514893 0.820575 1091669 Nginx 3450 565.5 0.905881 1.036143 63.20288 0.514893 0.820629 1097163 Nginx 3460 549.1 0.837764 0.250578 63.20288 0.514893 0.821066 1102818 Nginx 3470 553.6 0.83364 0.244765 63.20288 0.514893 0.821149 1108309 Nginx 3480 539.8 0.900364 1.159229 63.20288 0.514893 0.821211 1113845 Nginx 3490 541.2 0.840097 0.234112 63.20288 0.514893 0.821593 1119243 Nginx 3500 548 0.827684 0.238047 63.20288 0.514893 0.821682 1124655 Nginx 3510 548.4 0.878464 0.824392 63.20288 0.514893 0.821711 1130135 Nginx 3520 554.6 0.844693 0.270341 63.20288 0.514893 0.821985 1135619 Nginx 3530 551.8 0.82702 0.242863 63.20288 0.514893 0.822095 1141165 Nginx 3540 557.4 0.939558 1.725352 63.20288 0.514893 0.822119 1146683 Nginx 3550 550.5 0.84622 0.270099 63.20288 0.514893 0.822687 1152257 Nginx 3560 556.5 0.836035 0.262829 63.20288 0.514893 0.822799 1157762 Nginx 3570 555.3 0.927202 1.264916 63.20288 0.514893 0.822862 1163327 Nginx 3580 558.8 0.852937 0.23927 63.20288 0.514893 0.823358 1168880 Nginx 3590 544.7 0.833658 0.244852 63.20288 0.514893 0.823499 1174468 Nginx 3600 582 0.846064 0.244149 63.20288 0.514893 0.823546 1179915 Nginx 3610 641.1 0.92367 1.11817 63.20288 0.514893 0.823656 1185735 Nginx 3620 638.3 0.846399 0.251727 63.20288 0.514893 0.824194 1192146 Nginx 3630 646.9 0.854987 0.274405 63.20288 0.514893 0.824312 1198529 Nginx 3640 641.9 0.957674 1.545674 63.20288 0.514893 0.824477 1204998 Nginx 3650 636.6 0.852729 0.261786 63.20288 0.510986 0.825183 1211417 Nginx 3660 633.3 0.849838 0.282501 63.20288 0.510986 0.825327 1217783 Nginx 3670 631.2 0.944773 1.45451 63.20288 0.510986 0.825453 1224116 Nginx 3680 633.9 0.850338 0.253561 63.20288 0.510986 0.826066 1230428 Nginx 3690 645 0.846671 0.259279 63.20288 0.510986 0.82619 1236767 Nginx 3700 639.6 0.959878 1.404496 63.20288 0.510986 0.826296 1243217 Nginx 3710 639.2 0.859735 0.248958 63.20288 0.510986 0.82698 1249613 Nginx 3720 636.5 0.850885 0.272797 63.20288 0.510986 0.827147 1256005 Nginx 3730 622.1 0.929721 1.337274 63.20288 0.510986 0.827266 1262370 Nginx 3740 653.7 0.867375 0.263561 63.20288 0.510986 0.827769 1268591 Nginx 3750 627.8 0.849535 0.260709 63.20288 0.510986 0.827972 1275128 Nginx 3760 645.5 0.90512 1.034015 63.20288 0.510986 0.828077 1281406 Nginx 3770 632.5 0.861575 0.250065 63.20288 0.510986 0.828464 1287861 Nginx 3780 653.1 0.850892 0.246041 63.20288 0.510986 0.828625 1294186 Nginx 3790 647.7 0.927024 1.304361 63.20288 0.510986 0.828737 1300717 Nginx 3800 645.5 0.8735 0.27286 63.20288 0.510986 0.829224 1307194 Nginx 3810 641.6 0.855868 0.266444 63.20288 0.50708 0.829442 1313649 Nginx 3820 639.1 0.951708 1.692654 63.20288 0.50708 0.82957 1320065 Nginx 3830 640 0.869994 0.284545 63.20288 0.50708 0.830159 1326456 Nginx 3840 633.8 0.855542 0.280398 63.20288 0.50708 0.83035 1332856 Nginx 3850 633.3 0.927143 1.34206 63.20288 0.50708 0.830469 1339194 Nginx

xv

3860 628.7 0.8583 0.255058 63.20288 0.50708 0.830924 1345527 Nginx 3870 637.2 0.861065 0.284257 63.20288 0.50708 0.831052 1351814 Nginx 3880 643.1 0.931232 1.522992 63.20288 0.50708 0.831192 1358186 Nginx 3890 626.5 0.855101 0.245989 63.20288 0.50708 0.831664 1364617 Nginx 3900 635.5 0.855958 0.251455 63.20288 0.50708 0.831771 1370882 Nginx 3910 645.2 1.19405 3.943794 68.18579 0.50708 0.831882 1377237 Nginx 3920 652.7 0.862499 0.254078 68.18579 0.50708 0.833571 1383689 Nginx 3930 645.5 0.857722 0.251209 68.18579 0.50708 0.833707 1390216 Nginx 3940 648 0.845574 0.243737 68.18579 0.50708 0.833818 1396671 Nginx 3950 638.7 0.909716 1.178512 68.18579 0.50708 0.833872 1403151 Nginx 3960 641.2 0.86098 0.251229 68.18579 0.50708 0.834216 1409538 Nginx 3970 636.6 0.852125 0.285704 68.18579 0.50708 0.834337 1415950 Nginx 3980 627.4 0.901962 0.96571 68.18579 0.50708 0.834417 1422316 Nginx 3990 642.3 0.8759 0.260097 68.18579 0.50708 0.834713 1428590 Nginx 4000 620.7 0.845201 0.26034 68.18579 0.50708 0.834898 1435013 Nginx 4010 640.9 0.914077 1.163828 68.18579 0.50708 0.834942 1441220 Nginx 4020 631.5 0.866847 0.253117 68.18579 0.50708 0.835293 1447629 Nginx 4030 640.6 0.862817 0.267848 68.18579 0.50708 0.83543 1453944 Nginx 4040 642.2 0.922344 1.377255 68.18579 0.50708 0.83555 1460350 Nginx 4050 633.8 0.869611 0.264424 68.18579 0.50708 0.83593 1466772 Nginx 4060 644.1 0.868305 0.271596 68.18579 0.50708 0.836075 1473110 Nginx 4070 651.8 0.916664 1.216624 68.18579 0.50708 0.836215 1479551 Nginx 4080 641.3 0.86718 0.252688 68.18579 0.50708 0.836568 1486069 Nginx 4090 642.7 0.873538 0.273602 68.18579 0.50708 0.836699 1492482 Nginx 4100 641.3 0.924712 1.280664 68.18579 0.50708 0.836857 1498909 Nginx 4110 648.4 0.86715 0.25909 68.18579 0.50708 0.837232 1505322 Nginx 4120 636.9 0.872859 0.256607 68.18579 0.50708 0.83736 1511806 Nginx 4130 637.3 0.878539 0.686787 68.18579 0.50708 0.837509 1518175 Nginx 4140 637.3 0.866666 0.279544 68.18579 0.50708 0.83768 1524548 Nginx 4150 651.7 0.872529 0.264201 68.18579 0.50708 0.837801 1530921 Nginx 4160 634.2 0.91111 1.032737 68.18579 0.50708 0.837948 1537438 Nginx 4170 639.9 0.852853 0.267457 68.18579 0.50708 0.838249 1543780 Nginx 4180 638.7 0.869453 0.268377 68.18579 0.50708 0.838309 1550179 Nginx 4190 631.2 0.907806 1.10068 68.18579 0.50708 0.838437 1556566 Nginx 4200 672 0.866671 0.297146 68.18579 0.50708 0.838717 1562878 Nginx 4210 714.7 1.013741 1.813629 68.18579 0.50708 0.838837 1569598 Nginx 4220 728.1 0.911072 0.914977 68.18579 0.50708 0.839629 1576745 Nginx 4230 701.3 0.863271 0.263186 68.18579 0.50708 0.839958 1584026 Nginx 4240 734.8 0.891446 0.277413 68.18579 0.50708 0.840061 1591039 Nginx 4250 729.3 0.979517 1.801931 68.18579 0.50708 0.840297 1598387 Nginx 4260 726.5 0.871906 0.2702 68.18579 0.50708 0.840929 1605680 Nginx 4270 740.5 0.901107 0.289759 68.18579 0.50708 0.841069 1612945 Nginx 4280 700.2 0.933303 1.028997 68.18579 0.50708 0.841343 1620350 Nginx 4290 719.8 0.858346 0.272473 68.18579 0.50708 0.841739 1627352 Nginx 4300 724.5 0.89362 0.304992 68.18579 0.487061 0.841812 1634550 Nginx 4310 719.9 0.9224 0.99339 68.18579 0.487061 0.842041 1641795 Nginx 4320 724.5 0.870153 0.284303 68.18579 0.487061 0.842391 1648994 Nginx 4330 728.8 0.87921 0.2851 68.18579 0.487061 0.842513 1656239 Nginx 4340 725.8 0.959372 1.320865 68.18579 0.487061 0.842674 1663527 Nginx 4350 719.7 0.868345 0.26903 68.18579 0.487061 0.843181 1670785 Nginx 4360 736.9 0.887673 0.295439 68.18579 0.487061 0.843288 1677982 Nginx 4370 728.2 1.053425 2.35621 68.18579 0.487061 0.843483 1685351 Nginx 4380 735.9 0.877013 0.279969 68.18579 0.487061 0.844386 1692633 Nginx 4390 724.1 0.874942 0.315984 68.18579 0.487061 0.844527 1699992 Nginx 4400 712.9 0.982001 1.637074 68.18579 0.487061 0.844656 1707233 Nginx 4410 733.4 0.872984 0.286577 68.18579 0.487061 0.845227 1714362 Nginx 4420 722.8 0.867139 0.260787 68.18579 0.487061 0.845345 1721696 Nginx 4430 716.9 0.931708 1.114443 68.18579 0.487061 0.845436 1728924 Nginx 4440 723.3 0.874527 0.279238 68.18579 0.487061 0.845793 1736093 Nginx 4450 730.7 0.866972 0.273101 68.18579 0.487061 0.845912 1743326 Nginx 4460 706.3 0.940858 1.218537 68.18579 0.487061 0.846 1750633 Nginx 4470 726.1 0.876184 0.274415 68.18579 0.487061 0.846381 1757696 Nginx 4480 726.1 0.86867 0.2844 68.18579 0.487061 0.846504 1764957 Nginx 4490 718.3 0.959494 1.440313 68.18579 0.487061 0.846594 1772218 Nginx 4500 721.1 0.883421 0.286358 68.18579 0.484863 0.84705 1779401 Nginx 4510 717 0.902693 0.631709 68.18579 0.484863 0.847197 1786612 Nginx 4520 728 0.939027 1.216334 68.18579 0.484863 0.847419 1793782 Nginx 4530 707.7 0.893035 0.296813 68.18579 0.484863 0.847789 1801062 Nginx 4540 733.5 0.869364 0.284479 68.18579 0.484863 0.847966 1808139 Nginx 4550 729.3 0.973637 1.689237 68.18579 0.484863 0.848053 1815474 Nginx 4560 723.7 0.884596 0.276866 68.18579 0.484863 0.848555 1822767 Nginx

xvi

4570 710 0.875697 0.294557 68.18579 0.484863 0.848698 1830004 Nginx 4580 716.3 0.945386 1.324045 68.18579 0.484863 0.848802 1837104 Nginx 4590 738.3 0.890178 0.278604 68.18579 0.484863 0.849177 1844267 Nginx 4600 710.3 0.875196 0.278688 68.18579 0.484863 0.849341 1851650 Nginx 4610 713.4 0.942587 1.328078 68.18579 0.484863 0.849439 1858753 Nginx 4620 724.1 0.888886 0.275606 68.18579 0.484863 0.849796 1865887 Nginx 4630 711.4 0.871318 0.273527 68.18579 0.484863 0.849947 1873128 Nginx 4640 734.7 0.979809 1.742816 68.18579 0.484863 0.850027 1880242 Nginx 4650 728 0.888297 0.280683 68.18579 0.484863 0.850533 1887589 Nginx 4660 735.1 0.8877 0.292808 68.18579 0.484863 0.850678 1894869 Nginx 4670 708.6 0.867906 0.288459 68.18579 0.484863 0.850821 1902220 Nginx 4680 730.8 1.008393 1.978191 68.18579 0.484863 0.850884 1909306 Nginx 4690 734 0.887163 0.282318 68.18579 0.484863 0.851485 1916614 Nginx 4700 713.8 0.858374 0.262891 68.18579 0.484863 0.851621 1923954 Nginx 4710 720.7 0.989975 1.685204 68.18579 0.484863 0.851646 1931092 Nginx 4720 713.8 0.886229 0.285964 68.18579 0.484863 0.85216 1938299 Nginx 4730 735.6 0.870874 0.276318 68.18579 0.484863 0.852285 1945437 Nginx 4740 721 0.973325 1.568606 68.18579 0.484863 0.852355 1952793 Nginx 4750 738.7 0.892465 0.292668 68.18579 0.484863 0.8528 1960003 Nginx 4760 732.8 0.872384 0.286541 68.18579 0.484863 0.852949 1967390 Nginx 4770 716.8 0.978665 1.900309 68.18579 0.484863 0.853021 1974718 Nginx 4780 734 0.890928 0.282291 68.18579 0.484863 0.853476 1981886 Nginx 4790 721 0.869125 0.283343 68.18579 0.484863 0.853614 1989226 Nginx 4800 767.5 0.920725 1.047746 68.18579 0.484863 0.85367 1996436 Nginx 4810 790.8 0.942155 0.78652 68.18579 0.484863 0.853927 2004111 Nginx 4820 818 0.894908 0.318773 68.18579 0.484863 0.854273 2012019 Nginx 4830 799.6 0.944655 1.186244 68.18579 0.484863 0.854438 2020199 Nginx 4840 804.8 0.894663 0.284501 68.18579 0.484863 0.854794 2028195 Nginx 4850 809.1 0.898832 0.306387 68.18579 0.484863 0.854951 2036243 Nginx 4860 808 1.082701 2.81357 68.18579 0.484863 0.855125 2044334 Nginx 4870 801.9 0.89421 0.288103 68.18579 0.484863 0.856021 2052414 Nginx 4880 806.8 0.899718 0.316874 68.18579 0.484863 0.856169 2060433 Nginx 4890 808.2 1.087961 2.814915 68.18579 0.484863 0.856339 2068501 Nginx 4900 806.8 0.90011 0.315938 68.18579 0.484863 0.857241 2076583 Nginx 4910 818.4 0.905774 0.333488 68.18579 0.484863 0.857407 2084651 Nginx 4920 812 1.260141 4.41729 74.91187 0.484863 0.857596 2092835 Nginx 4930 807.1 0.890641 0.307731 74.91187 0.484863 0.859152 2100955 Nginx 4940 806.8 0.9071 0.304741 74.91187 0.484863 0.859272 2109026 Nginx 4950 807.8 1.020378 2.152671 74.91187 0.484863 0.859454 2117094 Nginx 4960 801.2 0.887659 0.297187 74.91187 0.484863 0.860066 2125172 Nginx 4970 819.9 0.902548 0.292177 74.91187 0.484863 0.86017 2133184 Nginx 4980 802.2 1.054939 2.368418 74.91187 0.484863 0.860332 2141383 Nginx 4990 797.2 0.883781 0.313211 74.91187 0.484863 0.861058 2149405 Nginx 5000 807.9 0.901784 0.289615 74.91187 0.484863 0.861142 2157377 Nginx 5010 820 0.951093 1.264109 74.91187 0.484863 0.861294 2165456 Nginx 5020 793.6 0.881302 0.29049 74.91187 0.483154 0.861633 2173656 Nginx 5030 809.3 0.902504 0.314137 74.91187 0.483154 0.861704 2181592 Nginx 5040 793.1 0.898352 0.305737 74.91187 0.483154 0.861855 2189685 Nginx 5050 803.3 0.958211 1.576659 74.91187 0.483154 0.861987 2197616 Nginx 5060 803.8 0.897547 0.308151 74.91187 0.483154 0.862337 2205649 Nginx 5070 809.8 0.901735 0.308791 74.91187 0.483154 0.862465 2213687 Nginx 5080 819.8 0.956509 1.344167 74.91187 0.483154 0.862608 2221785 Nginx 5090 809.6 0.904247 0.328951 74.91187 0.483154 0.862953 2229983 Nginx 5100 800.3 0.904854 0.307866 74.91187 0.483154 0.863103 2238079 Nginx 5110 807.9 1.033203 2.175666 74.91187 0.483154 0.863251 2246082 Nginx 5120 821.8 0.883379 0.310549 74.91187 0.483154 0.863861 2254161 Nginx 5130 808.7 0.899131 0.285153 74.91187 0.483154 0.863932 2262379 Nginx 5140 820 0.931343 1.011828 74.91187 0.483154 0.864057 2270466 Nginx 5150 808 0.882074 0.298638 74.91187 0.483154 0.864299 2278666 Nginx 5160 813.8 0.901955 0.311344 74.91187 0.483154 0.864362 2286746 Nginx 5170 812.1 0.940054 1.115796 74.91187 0.483154 0.864495 2294884 Nginx 5180 803.9 0.87514 0.315641 74.91187 0.483154 0.864762 2303005 Nginx 5190 803 0.905857 0.317205 74.91187 0.483154 0.864798 2311044 Nginx 5200 799.8 0.955896 1.339671 74.91187 0.483154 0.86494 2319074 Nginx 5210 813.4 0.874448 0.296639 74.91187 0.483154 0.865252 2327072 Nginx 5220 800.9 0.895802 0.30237 74.91187 0.483154 0.865284 2335206 Nginx 5230 803.5 0.935592 1.078594 74.91187 0.483154 0.865389 2343215 Nginx 5240 809 0.872211 0.288986 74.91187 0.483154 0.865629 2351250 Nginx 5250 822.5 0.898858 0.305936 74.91187 0.483154 0.865651 2359340 Nginx 5260 816.8 0.978015 1.481518 74.91187 0.483154 0.865767 2367565 Nginx 5270 809.7 0.872516 0.281865 74.91187 0.483154 0.866153 2375733 Nginx

xvii

5280 778.9 0.891273 0.313682 74.91187 0.483154 0.866174 2383830 Nginx 5290 794.5 0.894925 0.320258 74.91187 0.483154 0.866256 2391619 Nginx 5300 796.7 0.960679 1.50255 74.91187 0.483154 0.866351 2399564 Nginx 5310 813.5 0.893089 0.311703 74.91187 0.483154 0.866663 2407531 Nginx 5320 809.4 0.909698 0.312136 74.91187 0.483154 0.866752 2415666 Nginx 5330 809.4 0.95124 1.431656 74.91187 0.483154 0.866895 2423760 Nginx 5340 798.3 0.878275 0.294452 74.91187 0.483154 0.867176 2431854 Nginx 5350 810.1 0.9109 0.32191 74.91187 0.483154 0.867212 2439837 Nginx 5360 808.3 1.322254 4.730364 83.55688 0.483154 0.867357 2447938 Nginx 5370 807.9 0.877142 0.284111 83.55688 0.483154 0.868854 2456021 Nginx 5380 814.6 0.911881 0.325255 83.55688 0.483154 0.868881 2464100 Nginx 5390 799.4 0.946158 1.148387 83.55688 0.483154 0.869023 2472246 Nginx 5400 838.8 0.888532 0.298497 83.55688 0.483154 0.869272 2480240 Nginx 5410 896.3 0.963992 0.853143 83.55688 0.483154 0.869337 2488628 Nginx 5420 904.6 1.04647 2.130565 83.55688 0.483154 0.869676 2497591 Nginx 5430 887.6 0.892728 0.323519 83.55688 0.483154 0.870314 2506637 Nginx 5440 886.8 0.925883 0.32703 83.55688 0.483154 0.870393 2515513 Nginx 5450 900.2 1.026348 1.810194 83.55688 0.483154 0.870588 2524381 Nginx 5460 883.6 0.905114 0.361329 83.55688 0.483154 0.871142 2533383 Nginx 5470 904.6 0.914611 0.317509 83.55688 0.483154 0.87126 2542219 Nginx 5480 882.4 0.976546 1.317696 83.55688 0.483154 0.871413 2551265 Nginx 5490 890.6 0.899778 0.309027 83.55688 0.483154 0.871776 2560089 Nginx 5500 892.3 0.909227 0.31783 83.55688 0.483154 0.871873 2568995 Nginx 5510 888.6 1.036692 1.769026 83.55688 0.483154 0.872002 2577918 Nginx 5520 893.9 0.896809 0.332016 83.55688 0.483154 0.872568 2586804 Nginx 5530 892.2 0.910974 0.317102 83.55688 0.483154 0.872651 2595743 Nginx 5540 883 0.927631 0.326675 83.55688 0.483154 0.872783 2604665 Nginx 5550 881.6 0.984759 1.50081 83.55688 0.483154 0.872968 2613495 Nginx 5560 878 0.904417 0.320233 83.55688 0.483154 0.873344 2622311 Nginx 5570 879.1 0.922692 0.315645 83.55688 0.483154 0.873448 2631091 Nginx 5580 880.5 0.988298 1.468116 83.55688 0.483154 0.873612 2639882 Nginx 5590 881.3 0.898374 0.30792 83.55688 0.483154 0.873993 2648687 Nginx 5600 893.9 0.914102 0.316386 83.55688 0.483154 0.874074 2657500 Nginx 5610 903.1 1.016478 1.670839 83.55688 0.483154 0.874208 2666439 Nginx 5620 890.3 0.896202 0.312312 83.55688 0.483154 0.874688 2675470 Nginx 5630 894.9 0.918613 0.341933 83.55688 0.483154 0.874759 2684373 Nginx 5640 873.8 0.994389 1.536027 83.55688 0.483154 0.874905 2693322 Nginx 5650 887.9 0.894373 0.30857 83.55688 0.483154 0.875292 2702060 Nginx 5660 902 0.912549 0.31916 83.55688 0.483154 0.875354 2710939 Nginx 5670 885 1.011015 1.698731 83.55688 0.483154 0.875477 2719959 Nginx 5680 889.8 0.897901 0.312221 83.55688 0.483154 0.875917 2728809 Nginx 5690 889 0.913807 0.306501 83.55688 0.483154 0.875988 2737707 Nginx 5700 902.6 1.034933 1.820177 83.55688 0.483154 0.876111 2746597 Nginx 5710 883.6 0.933269 0.699164 83.55688 0.483154 0.876631 2755623 Nginx 5720 888.2 0.907031 0.308405 83.55688 0.483154 0.876812 2764459 Nginx 5730 878 0.979811 1.283905 83.55688 0.483154 0.876909 2773341 Nginx 5740 902.3 0.901974 0.314559 83.55688 0.483154 0.877234 2782121 Nginx 5750 891.8 0.910303 0.347166 83.55688 0.483154 0.877314 2791144 Nginx 5760 904.5 1.004922 1.562708 83.55688 0.483154 0.877419 2800062 Nginx 5770 890.4 0.896979 0.315677 83.55688 0.483154 0.877829 2809107 Nginx 5780 881.6 0.898003 0.302087 83.55688 0.483154 0.87789 2818011 Nginx 5790 896.3 1.068082 2.291753 83.55688 0.483154 0.877952 2826827 Nginx 5800 892.1 0.912931 0.332716 83.55688 0.483154 0.878553 2835790 Nginx 5810 872.7 0.899355 0.322131 83.55688 0.483154 0.878661 2844711 Nginx 5820 899.6 1.232841 3.918982 83.55688 0.483154 0.878724 2853438 Nginx 5830 885.8 0.907044 0.297987 83.55688 0.483154 0.879837 2862434 Nginx 5840 885.4 0.90408 0.332181 83.55688 0.483154 0.879921 2871292 Nginx 5850 902.6 0.984045 1.396397 83.55688 0.483154 0.879996 2880146 Nginx 5860 904.5 0.930234 0.318003 83.55688 0.483154 0.880321 2889172 Nginx 5870 878 0.889635 0.315531 83.55688 0.483154 0.880476 2898217 Nginx 5880 879.4 1.342295 4.969947 89.60791 0.483154 0.880504 2906997 Nginx 5890 883.9 0.915529 0.316355 89.60791 0.483154 0.881897 2915791 Nginx 5900 886.2 0.898431 0.308125 89.60791 0.483154 0.881998 2924630 Nginx 5910 895.4 0.913394 0.309211 89.60791 0.483154 0.882048 2933492 Nginx 5920 875 1.286622 4.495966 89.60791 0.483154 0.882143 2942446 Nginx 5930 888.3 0.89827 0.327898 89.60791 0.483154 0.883343 2951196 Nginx 5940 882.8 0.910185 0.337463 89.60791 0.483154 0.883387 2960079 Nginx 5950 903.1 1.028883 1.856983 89.60791 0.483154 0.883467 2968907 Nginx 5960 887.7 0.907354 0.313914 89.60791 0.483154 0.883908 2977938 Nginx 5970 897.9 0.905371 0.321339 89.60791 0.483154 0.883978 2986815 Nginx 5980 881.3 0.999286 1.477587 89.60791 0.483154 0.884042 2995794 Nginx

xviii

5990 899.4 0.912068 0.318857 89.60791 0.483154 0.88438 3004607 Nginx 6000 479.6 0.921685 0.341737 89.60791 0.483154 0.884463 3013601 Nginx

User range phase – load and free memory

time load_tensecmean load_mean freemem_tensecmean freemem_mean application 10 0.01 0 3757.301 0 Nginx 20 0.01 0.01 3757.164 3757.301 Nginx 30 0.01 0.01 3757.148 3757.232 Nginx 40 0.01 0.01 3757.117 3757.204 Nginx 50 0.01 0.01 3757.113 3757.183 Nginx 70 0.01 0.01 3757.441 3757.169 Nginx 80 0.01 0.01 3757.32 3757.214 Nginx 90 0.01 0.01 3757.43 3757.229 Nginx

100 0.01 0.01 3757.266 3757.254 Nginx 110 0.01 0.01 3757.391 3757.256 Nginx 130 0.01 0.01 3757.242 3757.269 Nginx 140 0.03 0.01 3757.223 3757.267 Nginx 150 0.03 0.011667 3757.207 3757.263 Nginx 160 0.03 0.013077 3757.316 3757.259 Nginx 170 0.03 0.014286 3757.293 3757.263 Nginx 190 0.03 0.015333 3757.266 3757.265 Nginx 200 0.03 0.01625 3757.254 3757.265 Nginx 210 0.02 0.017059 3757.242 3757.264 Nginx 220 0.02 0.017222 3757.477 3757.263 Nginx 230 0.02 0.017368 3757.332 3757.274 Nginx 250 0.02 0.0175 3757.195 3757.277 Nginx 260 0.02 0.017619 3757.074 3757.273 Nginx 270 0.02 0.017727 3757.172 3757.264 Nginx 280 0.02 0.017826 3757.16 3757.26 Nginx 290 0.02 0.017917 3757.262 3757.256 Nginx 310 0.01 0.018 3757.238 3757.256 Nginx 320 0.01 0.017692 3757.23 3757.256 Nginx 330 0.01 0.017407 3757.336 3757.255 Nginx 340 0.01 0.017143 3757.188 3757.258 Nginx 350 0.01 0.016897 3757.191 3757.255 Nginx 380 0.01 0.016667 3757.27 3757.253 Nginx 390 0.01 0.016452 3757.277 3757.254 Nginx 400 0.01 0.01625 3757.48 3757.254 Nginx 410 0.01 0.016061 3757.352 3757.261 Nginx 420 0.01 0.015882 3757.336 3757.264 Nginx 440 0.01 0.015714 3757.094 3757.266 Nginx 450 0.01 0.015556 3757.18 3757.261 Nginx 460 0.01 0.015405 3757.184 3757.259 Nginx 470 0.01 0.015263 3757.043 3757.257 Nginx 480 0.01 0.015128 3757.25 3757.251 Nginx 500 0.01 0.015 3757.109 3757.251 Nginx 510 0.01 0.014878 3757.098 3757.248 Nginx 520 0.01 0.014762 3757.078 3757.244 Nginx 530 0.01 0.014651 3757.18 3757.24 Nginx 540 0.03 0.014545 3757.059 3757.239 Nginx 560 0.03 0.014889 3757.391 3757.235 Nginx 570 0.03 0.015217 3757.254 3757.238 Nginx 580 0.03 0.015532 3757.109 3757.239 Nginx 590 0.03 0.015833 3757.457 3757.236 Nginx 600 0.03 0.016122 3757.332 3757.241 Nginx 620 0.04 0.0164 3757.246 3757.242 Nginx 630 0.04 0.016863 3757.316 3757.242 Nginx 640 0.04 0.017308 3757.273 3757.244 Nginx 650 0.04 0.017736 3757.199 3757.244 Nginx 660 0.04 0.018148 3757.145 3757.244 Nginx 680 0.03 0.018545 3757.07 3757.242 Nginx 690 0.03 0.01875 3757.145 3757.239 Nginx 700 0.03 0.018947 3757.352 3757.237 Nginx 710 0.03 0.019138 3757.156 3757.239 Nginx 720 0.03 0.019322 3757.242 3757.238 Nginx 750 0.04 0.0195 3757.156 3757.238 Nginx 760 0.04 0.019836 3757.102 3757.236 Nginx 770 0.04 0.020161 3757.156 3757.234 Nginx 780 0.04 0.020476 3756.984 3757.233 Nginx 790 0.04 0.020781 3757.055 3757.229 Nginx

xix

810 0.04 0.021077 3757.086 3757.226 Nginx 820 0.04 0.021364 3757.168 3757.224 Nginx 830 0.04 0.021642 3757 3757.223 Nginx 840 0.03 0.021912 3757.195 3757.22 Nginx 850 0.03 0.022029 3757.039 3757.22 Nginx 870 0.03 0.022143 3757.055 3757.217 Nginx 880 0.03 0.022254 3757.004 3757.215 Nginx 890 0.03 0.022361 3757.199 3757.212 Nginx 900 0.03 0.022466 3757.035 3757.212 Nginx 910 0.03 0.022568 3757.012 3757.209 Nginx 930 0.03 0.022667 3757.023 3757.207 Nginx 940 0.02 0.022763 3756.984 3757.204 Nginx 950 0.02 0.022727 3757.051 3757.202 Nginx 960 0.02 0.022692 3756.992 3757.2 Nginx 970 0.02 0.022658 3757.063 3757.197 Nginx 990 0.02 0.022625 3756.969 3757.195 Nginx

1000 0.02 0.022593 3757.031 3757.193 Nginx 1010 0.02 0.022561 3756.875 3757.191 Nginx 1020 0.02 0.02253 3757.051 3757.187 Nginx 1030 0.02 0.0225 3757.008 3757.185 Nginx 1050 0.01 0.022471 3757.059 3757.183 Nginx 1060 0.01 0.022326 3757 3757.182 Nginx 1070 0.01 0.022184 3757.066 3757.18 Nginx 1080 0.01 0.022045 3757.031 3757.178 Nginx 1090 0.01 0.02191 3757 3757.177 Nginx 1120 0.01 0.021778 3756.91 3757.175 Nginx 1130 0.01 0.021648 3756.746 3757.172 Nginx 1140 0.01 0.021522 3756.809 3757.167 Nginx 1150 0.01 0.021398 3756.879 3757.163 Nginx 1160 0.01 0.021277 3756.828 3757.16 Nginx 1180 0.01 0.021158 3756.73 3757.157 Nginx 1190 0.01 0.021042 3756.914 3757.152 Nginx 1200 0.01 0.020928 3756.777 3757.15 Nginx 1210 0.03 0.020816 3756.914 3757.146 Nginx 1220 0.03 0.020909 3756.801 3757.144 Nginx 1240 0.03 0.021 3756.875 3757.14 Nginx 1250 0.04 0.021089 3756.82 3757.138 Nginx 1260 0.04 0.021275 3756.969 3757.134 Nginx 1270 0.04 0.021456 3756.762 3757.133 Nginx 1280 0.04 0.021635 3756.801 3757.129 Nginx 1300 0.04 0.02181 3756.645 3757.126 Nginx 1310 0.04 0.021981 3756.668 3757.122 Nginx 1320 0.04 0.02215 3756.691 3757.117 Nginx 1330 0.04 0.022315 3756.734 3757.113 Nginx 1340 0.03 0.022477 3756.754 3757.11 Nginx 1360 0.03 0.022545 3756.613 3757.107 Nginx 1370 0.03 0.022613 3756.805 3757.102 Nginx 1380 0.03 0.022679 3756.836 3757.1 Nginx 1390 0.03 0.022743 3756.719 3757.097 Nginx 1400 0.03 0.022807 3756.746 3757.094 Nginx 1420 0.03 0.02287 3756.738 3757.091 Nginx 1430 0.04 0.022931 3756.746 3757.088 Nginx 1440 0.04 0.023077 3756.66 3757.085 Nginx 1450 0.04 0.02322 3756.82 3757.081 Nginx 1460 0.04 0.023361 3756.508 3757.079 Nginx 1490 0.04 0.0235 3756.594 3757.074 Nginx 1500 0.04 0.023636 3756.629 3757.07 Nginx 1510 0.04 0.02377 3756.566 3757.067 Nginx 1520 0.03 0.023902 3756.594 3757.063 Nginx 1530 0.03 0.023952 3756.613 3757.059 Nginx 1550 0.03 0.024 3756.441 3757.055 Nginx 1560 0.03 0.024048 3756.727 3757.051 Nginx 1570 0.03 0.024094 3756.527 3757.048 Nginx 1580 0.03 0.024141 3756.559 3757.044 Nginx 1590 0.03 0.024186 3756.492 3757.04 Nginx 1610 0.03 0.024231 3756.563 3757.036 Nginx 1620 0.02 0.024275 3756.602 3757.032 Nginx 1630 0.02 0.024242 3756.484 3757.029 Nginx 1640 0.02 0.024211 3756.531 3757.025 Nginx 1650 0.02 0.024179 3756.469 3757.021 Nginx 1670 0.02 0.024148 3756.441 3757.017 Nginx

xx

1680 0.02 0.024118 3756.473 3757.013 Nginx 1690 0.02 0.024088 3756.523 3757.009 Nginx 1700 0.02 0.024058 3756.414 3757.006 Nginx 1710 0.02 0.024029 3756.422 3757.001 Nginx 1730 0.01 0.024 3756.414 3756.997 Nginx 1740 0.01 0.023901 3756.477 3756.993 Nginx 1750 0.01 0.023803 3756.523 3756.989 Nginx 1760 0.01 0.023706 3756.414 3756.986 Nginx 1770 0.01 0.023611 3756.32 3756.982 Nginx 1790 0.01 0.023517 3756.289 3756.978 Nginx 1800 0.01 0.023425 3756.238 3756.973 Nginx 1810 0.01 0.023333 3756.457 3756.968 Nginx 1820 0.01 0.023243 3756.332 3756.964 Nginx 1830 0.03 0.023154 3756.348 3756.96 Nginx 1860 0.03 0.0232 3756.23 3756.956 Nginx 1870 0.03 0.023245 3756.227 3756.951 Nginx 1880 0.03 0.023289 3756.234 3756.946 Nginx 1890 0.03 0.023333 3756.328 3756.942 Nginx 1900 0.02 0.023377 3756.203 3756.938 Nginx 1920 0.02 0.023355 3756.227 3756.933 Nginx 1930 0.02 0.023333 3756.262 3756.929 Nginx 1940 0.02 0.023312 3756.359 3756.924 Nginx 1950 0.02 0.023291 3756.203 3756.921 Nginx 1960 0.02 0.02327 3756.07 3756.916 Nginx 1980 0.03 0.02325 3756.199 3756.911 Nginx 1990 0.03 0.023292 3756.059 3756.907 Nginx 2000 0.03 0.023333 3756.203 3756.901 Nginx 2010 0.03 0.023374 3756.164 3756.897 Nginx 2020 0.03 0.023415 3756.066 3756.893 Nginx 2040 0.04 0.023455 3756.09 3756.888 Nginx 2050 0.04 0.023554 3756.063 3756.883 Nginx 2060 0.04 0.023653 3756.055 3756.878 Nginx 2070 0.04 0.02375 3756.035 3756.873 Nginx 2080 0.04 0.023846 3756.039 3756.868 Nginx 2100 0.04 0.023941 3756.059 3756.863 Nginx 2110 0.04 0.024035 3755.965 3756.858 Nginx 2120 0.05 0.024128 3756.191 3756.853 Nginx 2130 0.05 0.024277 3756.07 3756.849 Nginx 2140 0.05 0.024425 3756.047 3756.845 Nginx 2160 0.04 0.024571 3755.914 3756.84 Nginx 2170 0.04 0.024659 3755.902 3756.835 Nginx 2180 0.04 0.024746 3756.023 3756.83 Nginx 2190 0.04 0.024831 3756.121 3756.825 Nginx 2200 0.04 0.024916 3755.914 3756.821 Nginx 2230 0.04 0.025 3755.91 3756.816 Nginx 2240 0.05 0.025083 3755.789 3756.811 Nginx 2250 0.05 0.02522 3756.016 3756.806 Nginx 2260 0.05 0.025355 3755.875 3756.801 Nginx 2270 0.06 0.025489 3755.754 3756.796 Nginx 2290 0.06 0.025676 3755.895 3756.791 Nginx 2300 0.06 0.02586 3755.785 3756.786 Nginx 2310 0.06 0.026043 3755.773 3756.781 Nginx 2320 0.05 0.026223 3755.887 3756.775 Nginx 2330 0.05 0.026349 3755.754 3756.77 Nginx 2350 0.05 0.026474 3755.91 3756.765 Nginx 2360 0.05 0.026597 3755.887 3756.761 Nginx 2370 0.04 0.026719 3755.984 3756.756 Nginx 2380 0.04 0.026788 3755.863 3756.752 Nginx 2390 0.04 0.026856 3755.785 3756.748 Nginx 2410 0.04 0.026923 3755.758 3756.743 Nginx 2420 0.06 0.02699 3755.684 3756.738 Nginx 2430 0.05 0.027157 3755.641 3756.732 Nginx 2440 0.05 0.027273 3755.699 3756.727 Nginx 2450 0.05 0.027387 3755.652 3756.722 Nginx 2470 0.04 0.0275 3755.707 3756.716 Nginx 2480 0.04 0.027562 3755.688 3756.711 Nginx 2490 0.04 0.027624 3755.652 3756.706 Nginx 2500 0.04 0.027685 3755.82 3756.701 Nginx 2510 0.04 0.027745 3755.523 3756.697 Nginx 2530 0.04 0.027805 3755.613 3756.691 Nginx 2540 0.05 0.027864 3755.539 3756.686 Nginx

xxi

2550 0.05 0.027971 3755.48 3756.68 Nginx 2560 0.05 0.028077 3755.547 3756.674 Nginx 2570 0.05 0.028182 3755.539 3756.669 Nginx 2600 0.04 0.028286 3755.602 3756.664 Nginx 2610 0.04 0.028341 3755.422 3756.659 Nginx 2620 0.04 0.028396 3755.492 3756.653 Nginx 2630 0.04 0.028451 3755.434 3756.647 Nginx 2640 0.04 0.028505 3755.52 3756.642 Nginx 2660 0.05 0.028558 3755.469 3756.636 Nginx 2670 0.05 0.028657 3755.559 3756.631 Nginx 2680 0.05 0.028756 3755.395 3756.626 Nginx 2690 0.06 0.028853 3755.344 3756.62 Nginx 2700 0.06 0.028995 3755.301 3756.615 Nginx 2720 0.06 0.029136 3755.473 3756.609 Nginx 2730 0.06 0.029276 3755.301 3756.603 Nginx 2740 0.05 0.029414 3755.25 3756.598 Nginx 2750 0.05 0.029507 3755.195 3756.591 Nginx 2760 0.05 0.029598 3755.203 3756.585 Nginx 2780 0.05 0.029689 3755.285 3756.579 Nginx 2790 0.04 0.029779 3755.223 3756.573 Nginx 2800 0.04 0.029824 3755.074 3756.567 Nginx 2810 0.04 0.029868 3755.137 3756.561 Nginx 2820 0.04 0.029913 3755.344 3756.555 Nginx 2840 0.04 0.029957 3755.164 3756.549 Nginx 2850 0.04 0.03 3755.156 3756.543 Nginx 2860 0.04 0.030043 3755.223 3756.537 Nginx 2870 0.04 0.030086 3755.063 3756.532 Nginx 2880 0.04 0.030128 3755.125 3756.526 Nginx 2900 0.03 0.03017 3755.059 3756.52 Nginx 2910 0.03 0.030169 3755.012 3756.513 Nginx 2920 0.03 0.030169 3754.945 3756.507 Nginx 2930 0.03 0.030168 3754.902 3756.5 Nginx 2950 0.03 0.030167 3755.137 3756.494 Nginx 2970 0.03 0.030167 3755.09 3756.488 Nginx 2980 0.03 0.030166 3754.91 3756.482 Nginx 2990 0.04 0.030165 3754.969 3756.476 Nginx 3000 0.04 0.030206 3754.934 3756.47 Nginx 3010 0.04 0.030246 3755.051 3756.463 Nginx 3030 0.04 0.030286 3754.77 3756.458 Nginx 3040 0.04 0.030325 3754.953 3756.451 Nginx 3050 0.04 0.030364 3754.871 3756.445 Nginx 3060 0.03 0.030403 3754.77 3756.438 Nginx 3070 0.03 0.030402 3754.824 3756.432 Nginx 3090 0.03 0.0304 3754.676 3756.425 Nginx 3100 0.03 0.030398 3754.941 3756.418 Nginx 3110 0.03 0.030397 3754.73 3756.412 Nginx 3120 0.03 0.030395 3754.965 3756.406 Nginx 3130 0.03 0.030394 3754.84 3756.4 Nginx 3150 0.03 0.030392 3754.828 3756.394 Nginx 3160 0.02 0.030391 3754.621 3756.388 Nginx 3170 0.02 0.03035 3754.762 3756.381 Nginx 3180 0.02 0.03031 3754.711 3756.375 Nginx 3190 0.02 0.03027 3754.598 3756.368 Nginx 3210 0.02 0.030231 3754.586 3756.361 Nginx 3220 0.02 0.030192 3754.672 3756.355 Nginx 3230 0.02 0.030153 3754.461 3756.348 Nginx 3240 0.02 0.030114 3754.484 3756.341 Nginx 3250 0.02 0.030076 3754.75 3756.334 Nginx 3270 0.01 0.030038 3754.484 3756.328 Nginx 3280 0.01 0.029962 3754.531 3756.321 Nginx 3290 0.03 0.029888 3754.418 3756.314 Nginx 3300 0.03 0.029888 3754.773 3756.307 Nginx 3320 0.03 0.029888 3754.555 3756.302 Nginx 3340 0.03 0.029889 3754.395 3756.295 Nginx 3350 0.03 0.029889 3754.539 3756.288 Nginx 3360 0.02 0.02989 3754.332 3756.282 Nginx 3370 0.02 0.029853 3754.363 3756.275 Nginx 3380 0.02 0.029818 3754.391 3756.268 Nginx 3400 0.02 0.029782 3754.16 3756.261 Nginx 3410 0.04 0.029746 3754.336 3756.253 Nginx 3420 0.04 0.029783 3754.238 3756.246 Nginx

xxii

3430 0.03 0.02982 3754.254 3756.239 Nginx 3440 0.03 0.029821 3754.43 3756.232 Nginx 3460 0.03 0.029821 3754.035 3756.225 Nginx 3470 0.03 0.029822 3754.172 3756.218 Nginx 3480 0.03 0.029823 3754.309 3756.21 Nginx 3490 0.03 0.029823 3754.25 3756.204 Nginx 3500 0.03 0.029824 3754.172 3756.197 Nginx 3520 0.04 0.029825 3754.148 3756.19 Nginx 3530 0.04 0.02986 3754.176 3756.183 Nginx 3540 0.04 0.029895 3753.98 3756.176 Nginx 3550 0.04 0.029931 3754.117 3756.168 Nginx 3560 0.04 0.029965 3754.141 3756.161 Nginx 3580 0.05 0.03 3754.063 3756.154 Nginx 3590 0.05 0.030069 3754.207 3756.147 Nginx 3600 0.05 0.030137 3754.035 3756.14 Nginx 3610 0.05 0.030205 3754.141 3756.133 Nginx 3620 0.04 0.030272 3753.984 3756.126 Nginx 3640 0.04 0.030305 3753.883 3756.119 Nginx 3650 0.04 0.030338 3753.883 3756.111 Nginx 3660 0.04 0.03037 3753.941 3756.104 Nginx 3670 0.04 0.030403 3754.023 3756.096 Nginx 3690 0.04 0.030435 3753.781 3756.09 Nginx 3710 0.04 0.030467 3753.793 3756.082 Nginx 3720 0.04 0.030498 3753.93 3756.074 Nginx 3730 0.03 0.03053 3754.004 3756.067 Nginx 3740 0.03 0.030528 3753.738 3756.06 Nginx 3750 0.03 0.030526 3753.715 3756.053 Nginx 3770 0.03 0.030525 3753.695 3756.045 Nginx 3780 0.03 0.030523 3753.805 3756.037 Nginx 3790 0.03 0.030521 3753.891 3756.03 Nginx 3800 0.03 0.030519 3753.629 3756.023 Nginx 3810 0.03 0.030518 3753.758 3756.015 Nginx 3830 0.04 0.030516 3753.758 3756.008 Nginx 3840 0.04 0.030547 3753.629 3756.001 Nginx 3850 0.04 0.030577 3753.602 3755.993 Nginx 3860 0.04 0.030607 3753.637 3755.986 Nginx 3870 0.04 0.030637 3753.621 3755.978 Nginx 3890 0.03 0.030667 3753.527 3755.971 Nginx 3900 0.03 0.030665 3753.41 3755.963 Nginx 3910 0.03 0.030662 3753.52 3755.955 Nginx 3920 0.03 0.03066 3753.492 3755.947 Nginx 3930 0.03 0.030658 3753.484 3755.94 Nginx 3950 0.04 0.030656 3753.297 3755.932 Nginx 3960 0.04 0.030685 3753.273 3755.924 Nginx 3970 0.04 0.030714 3753.383 3755.915 Nginx 3980 0.04 0.030743 3753.242 3755.908 Nginx 3990 0.04 0.030772 3753.48 3755.899 Nginx 4010 0.04 0.0308 3753.41 3755.892 Nginx 4020 0.04 0.030828 3753.328 3755.884 Nginx 4030 0.04 0.030856 3753.309 3755.876 Nginx 4050 0.04 0.030884 3753.16 3755.869 Nginx 4060 0.03 0.030912 3753.121 3755.86 Nginx 4080 0.05 0.030909 3753.051 3755.852 Nginx 4090 0.05 0.030967 3753.156 3755.844 Nginx 4100 0.04 0.031024 3753.008 3755.836 Nginx 4110 0.04 0.031051 3752.973 3755.827 Nginx 4120 0.04 0.031078 3753.172 3755.819 Nginx 4140 0.06 0.031104 3753.051 3755.811 Nginx 4150 0.05 0.03119 3753.047 3755.802 Nginx 4160 0.05 0.031246 3753.27 3755.794 Nginx 4170 0.05 0.031302 3752.887 3755.787 Nginx 4180 0.05 0.031357 3753.125 3755.778 Nginx 4200 0.04 0.031412 3753.039 3755.77 Nginx 4210 0.04 0.031437 3752.938 3755.762 Nginx 4220 0.06 0.031462 3753.113 3755.754 Nginx 4230 0.06 0.031545 3752.922 3755.746 Nginx 4240 0.05 0.031628 3752.996 3755.738 Nginx 4260 0.05 0.031681 3752.82 3755.73 Nginx 4270 0.05 0.031734 3752.996 3755.722 Nginx 4280 0.05 0.031787 3752.813 3755.714 Nginx 4290 0.04 0.031839 3752.844 3755.706 Nginx

xxiii

4300 0.04 0.031862 3752.91 3755.697 Nginx 4320 0.06 0.031886 3752.469 3755.689 Nginx 4330 0.05 0.031966 3752.797 3755.68 Nginx 4340 0.05 0.032017 3752.73 3755.672 Nginx 4350 0.05 0.032068 3752.535 3755.664 Nginx 4360 0.06 0.032119 3752.602 3755.655 Nginx 4380 0.06 0.032197 3752.371 3755.646 Nginx 4390 0.06 0.032275 3752.766 3755.637 Nginx 4400 0.06 0.032353 3752.723 3755.629 Nginx 4420 0.05 0.03243 3752.551 3755.621 Nginx 4430 0.05 0.032479 3752.59 3755.612 Nginx 4450 0.05 0.032528 3752.281 3755.604 Nginx 4460 0.05 0.032576 3752.484 3755.595 Nginx 4470 0.04 0.032624 3752.461 3755.586 Nginx 4480 0.04 0.032645 3752.566 3755.578 Nginx 4490 0.04 0.032665 3752.402 3755.569 Nginx 4510 0.06 0.032685 3752.34 3755.561 Nginx 4520 0.05 0.03276 3752.52 3755.552 Nginx 4530 0.05 0.032807 3752.355 3755.544 Nginx 4540 0.05 0.032853 3752.402 3755.535 Nginx 4550 0.07 0.0329 3752.223 3755.526 Nginx 4570 0.06 0.033 3752.195 3755.518 Nginx 4580 0.06 0.033073 3752.324 3755.509 Nginx 4590 0.06 0.033145 3752.234 3755.5 Nginx 4600 0.06 0.033217 3752.191 3755.491 Nginx 4610 0.05 0.033289 3752.004 3755.482 Nginx 4630 0.05 0.033333 3752.07 3755.473 Nginx 4640 0.05 0.033378 3751.961 3755.464 Nginx 4650 0.05 0.033422 3752.082 3755.455 Nginx 4660 0.04 0.033466 3752.199 3755.446 Nginx 4670 0.04 0.033483 3752.125 3755.437 Nginx 4690 0.06 0.0335 3752.18 3755.429 Nginx 4700 0.07 0.03357 3751.879 3755.42 Nginx 4710 0.07 0.033665 3751.969 3755.411 Nginx 4720 0.07 0.03376 3751.879 3755.402 Nginx 4730 0.08 0.033854 3751.934 3755.393 Nginx 4750 0.08 0.033974 3751.594 3755.384 Nginx 4760 0.07 0.034093 3751.793 3755.374 Nginx 4780 0.07 0.034186 3751.816 3755.365 Nginx 4790 0.07 0.034278 3752.008 3755.355 Nginx 4800 0.07 0.03437 3752.035 3755.347 Nginx 4820 0.09 0.034462 3751.957 3755.338 Nginx 4830 0.11 0.034604 3751.859 3755.33 Nginx 4840 0.1 0.034796 3752.117 3755.321 Nginx 4850 0.1 0.034962 3751.895 3755.313 Nginx 4860 0.1 0.035127 3752.008 3755.304 Nginx 4880 0.09 0.035291 3752.09 3755.296 Nginx 4890 0.09 0.035429 3751.98 3755.288 Nginx 4900 0.1 0.035567 3751.863 3755.279 Nginx 4910 0.1 0.035729 3751.902 3755.271 Nginx 4920 0.11 0.03589 3751.543 3755.262 Nginx 4940 0.14 0.036075 3751.898 3755.253 Nginx 4950 0.13 0.036334 3751.961 3755.245 Nginx 4960 0.14 0.036567 3752.121 3755.236 Nginx 4970 0.14 0.036824 3751.891 3755.229 Nginx 4980 0.13 0.037079 3751.652 3755.22 Nginx 5000 0.14 0.037309 3751.633 3755.212 Nginx 5010 0.14 0.037562 3751.406 3755.203 Nginx 5020 0.15 0.037813 3751.391 3755.193 Nginx 5030 0.14 0.038088 3751.441 3755.184 Nginx 5040 0.14 0.038337 3751.496 3755.175 Nginx 5060 0.13 0.038585 3751.832 3755.166 Nginx 5070 0.12 0.038808 3751.598 3755.158 Nginx 5080 0.12 0.039005 3751.488 3755.149 Nginx 5090 0.13 0.039201 3751.617 3755.14 Nginx 5100 0.13 0.03942 3751.504 3755.132 Nginx 5120 0.15 0.039639 3751.621 3755.123 Nginx 5130 0.15 0.039904 3751.707 3755.115 Nginx 5150 0.14 0.040168 3751.488 3755.107 Nginx 5160 0.15 0.040407 3751.621 3755.098 Nginx 5170 0.15 0.040668 3751.516 3755.09 Nginx

xxiv

5190 0.17 0.040929 3751.125 3755.081 Nginx 5200 0.16 0.041235 3751.117 3755.072 Nginx 5210 0.18 0.041517 3751.02 3755.062 Nginx 5220 0.17 0.041844 3751.043 3755.053 Nginx 5230 0.16 0.042146 3751 3755.043 Nginx 5250 0.19 0.042424 3751.035 3755.034 Nginx 5260 0.18 0.04277 3751.137 3755.024 Nginx 5270 0.17 0.043091 3751.043 3755.015 Nginx 5280 0.18 0.043388 3751.027 3755.006 Nginx 5290 0.19 0.043706 3750.918 3754.997 Nginx 5310 0.18 0.044047 3751.035 3754.987 Nginx 5320 0.17 0.044362 3750.973 3754.978 Nginx 5330 0.17 0.044653 3750.973 3754.969 Nginx 5340 0.16 0.044942 3751.02 3754.96 Nginx 5350 0.17 0.045207 3751.016 3754.951 Nginx 5370 0.23 0.045494 3750.52 3754.941 Nginx 5380 0.22 0.045917 3750.555 3754.931 Nginx 5390 0.23 0.046316 3750.281 3754.921 Nginx 5400 0.22 0.046735 3750.672 3754.911 Nginx 5410 0.23 0.04713 3750.477 3754.901 Nginx 5430 0.23 0.047545 3750.734 3754.891 Nginx 5440 0.24 0.047959 3750.359 3754.882 Nginx 5450 0.23 0.048394 3750.34 3754.871 Nginx 5460 0.24 0.048804 3750.355 3754.861 Nginx 5470 0.23 0.049234 3750.449 3754.851 Nginx 5490 0.23 0.04964 3750.367 3754.841 Nginx 5510 0.22 0.050045 3750.332 3754.831 Nginx 5520 0.21 0.050425 3750.297 3754.821 Nginx 5530 0.22 0.050781 3750.191 3754.811 Nginx 5540 0.25 0.051158 3750.316 3754.801 Nginx 5560 0.23 0.0516 3750.059 3754.791 Nginx 5570 0.23 0.051996 3750.051 3754.78 Nginx 5580 0.22 0.052389 3750.004 3754.77 Nginx 5590 0.23 0.052759 3750.055 3754.759 Nginx 5600 0.22 0.05315 3750.027 3754.749 Nginx 5620 0.21 0.053516 3749.945 3754.738 Nginx 5630 0.2 0.05386 3750.148 3754.728 Nginx 5640 0.21 0.054179 3750.121 3754.718 Nginx 5650 0.2 0.05452 3749.809 3754.708 Nginx 5660 0.2 0.054837 3750.051 3754.697 Nginx 5680 0.18 0.055152 3749.773 3754.687 Nginx 5690 0.17 0.055423 3750 3754.676 Nginx 5700 0.17 0.055671 3749.828 3754.666 Nginx 5710 0.16 0.055918 3749.879 3754.656 Nginx 5720 0.17 0.056142 3749.969 3754.646 Nginx 5740 0.16 0.056387 3749.617 3754.636 Nginx 5750 0.16 0.056609 3749.844 3754.625 Nginx 5760 0.15 0.056831 3749.684 3754.614 Nginx 5770 0.16 0.05703 3749.621 3754.604 Nginx 5780 0.16 0.057249 3749.695 3754.593 Nginx 5800 0.16 0.057468 3749.742 3754.583 Nginx 5810 0.16 0.057686 3749.57 3754.573 Nginx 5820 0.15 0.057903 3749.785 3754.562 Nginx 5830 0.15 0.058097 3749.48 3754.552 Nginx 5840 0.16 0.058291 3749.59 3754.541 Nginx 5860 0.15 0.058505 3749.445 3754.531 Nginx 5880 0.14 0.058697 3749.535 3754.52 Nginx 5890 0.14 0.058868 3749.473 3754.51 Nginx 5900 0.13 0.059038 3749.297 3754.499 Nginx 5910 0.13 0.059186 3749.527 3754.488 Nginx 5930 0.12 0.059333 3749.398 3754.478 Nginx 5940 0.13 0.059459 3749.242 3754.467 Nginx 5950 0.13 0.059606 3749.309 3754.457 Nginx 5960 0.13 0.059752 3749.258 3754.446 Nginx 5970 0.12 0.059897 3749.359 3754.435 Nginx 5990 0.11 0.060021 3749.055 3754.425 Nginx 6000 0.11 0.060123 3749.07 3754.414 Nginx

10 0.01 0 3750.137 0 Varnish 20 0.01 0.01 3750.016 3750.137 Varnish 30 0.01 0.01 3749.887 3750.076 Varnish 40 0.01 0.01 3749.773 3750.013 Varnish

xxv

50 0.01 0.01 3749.773 3749.953 Varnish 70 0.01 0.01 3749.777 3749.917 Varnish 80 0.01 0.01 3749.656 3749.894 Varnish 90 0.01 0.01 3749.672 3749.86 Varnish

100 0.01 0.01 3749.68 3749.836 Varnish 110 0.01 0.01 3749.68 3749.819 Varnish 130 0.01 0.01 3749.922 3749.805 Varnish 140 0.01 0.01 3749.809 3749.816 Varnish 150 0.01 0.01 3749.922 3749.815 Varnish 160 0.01 0.01 3749.824 3749.823 Varnish 170 0.01 0.01 3749.93 3749.823 Varnish 190 0.01 0.01 3751.254 3749.83 Varnish 200 0.01 0.01 3751.254 3749.919 Varnish 210 0.01 0.01 3751.141 3749.998 Varnish 220 0.03 0.01 3751.254 3750.061 Varnish 230 0.03 0.011053 3751.133 3750.124 Varnish 250 0.03 0.012 3751.133 3750.175 Varnish 260 0.04 0.012857 3751.246 3750.22 Varnish 270 0.04 0.014091 3751.133 3750.267 Varnish 280 0.04 0.015217 3751.254 3750.305 Varnish 290 0.04 0.01625 3751.141 3750.344 Varnish 310 0.04 0.0172 3751.27 3750.376 Varnish 320 0.04 0.018077 3751.27 3750.41 Varnish 330 0.04 0.018889 3751.148 3750.442 Varnish 340 0.04 0.019643 3751.148 3750.467 Varnish 360 0.03 0.020345 3751.148 3750.491 Varnish 380 0.03 0.020667 3751.148 3750.513 Varnish 390 0.03 0.020968 3751.277 3750.533 Varnish 400 0.03 0.02125 3751.156 3750.557 Varnish 410 0.03 0.021515 3751.277 3750.575 Varnish 420 0.03 0.021765 3751.148 3750.595 Varnish 440 0.03 0.022 3751.52 3750.611 Varnish 450 0.03 0.022222 3751.398 3750.636 Varnish 460 0.02 0.022432 3751.52 3750.657 Varnish 470 0.02 0.022368 3751.277 3750.68 Varnish 480 0.02 0.022308 3751.273 3750.695 Varnish 500 0.02 0.02225 3751.16 3750.709 Varnish 510 0.02 0.022195 3751.297 3750.72 Varnish 520 0.02 0.022143 3751.168 3750.734 Varnish 530 0.02 0.022093 3751.16 3750.744 Varnish 540 0.02 0.022045 3751.16 3750.754 Varnish 560 0.01 0.022 3750.91 3750.763 Varnish 570 0.01 0.021739 3751.039 3750.766 Varnish 580 0.01 0.021489 3751.039 3750.772 Varnish 590 0.01 0.02125 3750.918 3750.777 Varnish 600 0.01 0.02102 3751.039 3750.78 Varnish 620 0.01 0.0208 3751.285 3750.785 Varnish 630 0.01 0.020588 3751.285 3750.795 Varnish 640 0.03 0.020385 3751.406 3750.805 Varnish 650 0.03 0.020566 3751.285 3750.816 Varnish 660 0.04 0.020741 3751.293 3750.825 Varnish 680 0.04 0.021091 3751.156 3750.833 Varnish 690 0.04 0.021429 3751.156 3750.839 Varnish 700 0.04 0.021754 3751.164 3750.845 Varnish 710 0.06 0.022069 3751.16 3750.85 Varnish 730 0.05 0.022712 3751.051 3750.855 Varnish 750 0.05 0.023167 3751.164 3750.859 Varnish 760 0.05 0.023607 3751.164 3750.864 Varnish 770 0.05 0.024032 3751.285 3750.868 Varnish 780 0.04 0.024444 3751.156 3750.875 Varnish 790 0.04 0.024688 3751.172 3750.879 Varnish 810 0.04 0.024923 3751.164 3750.884 Varnish 820 0.04 0.025152 3751.164 3750.888 Varnish 830 0.04 0.025373 3751.164 3750.892 Varnish 840 0.04 0.025588 3751.293 3750.896 Varnish 850 0.04 0.025797 3751.289 3750.902 Varnish 870 0.03 0.026 3751.168 3750.908 Varnish 880 0.03 0.026056 3751.176 3750.911 Varnish 890 0.03 0.026111 3751.176 3750.915 Varnish 900 0.03 0.026164 3751.039 3750.918 Varnish 910 0.03 0.026216 3751.039 3750.92 Varnish

xxvi

930 0.03 0.026267 3751.16 3750.922 Varnish 940 0.03 0.026316 3751.16 3750.925 Varnish 950 0.03 0.026364 3751.16 3750.928 Varnish 960 0.03 0.02641 3751.063 3750.931 Varnish 970 0.02 0.026456 3751.16 3750.933 Varnish 990 0.02 0.026375 3751.16 3750.935 Varnish

1000 0.02 0.026296 3751.16 3750.938 Varnish 1010 0.02 0.02622 3751.172 3750.941 Varnish 1020 0.02 0.026145 3751.168 3750.944 Varnish 1030 0.02 0.026071 3751.172 3750.946 Varnish 1050 0.03 0.026 3751.18 3750.949 Varnish 1060 0.03 0.026047 3751.293 3750.952 Varnish 1070 0.03 0.026092 3750.961 3750.956 Varnish 1080 0.03 0.026136 3750.816 3750.956 Varnish 1100 0.03 0.02618 3750.938 3750.954 Varnish 1120 0.03 0.026222 3750.816 3750.954 Varnish 1130 0.03 0.026264 3750.809 3750.952 Varnish 1140 0.02 0.026304 3750.816 3750.951 Varnish 1150 0.02 0.026237 3749.848 3750.949 Varnish 1160 0.02 0.02617 3750.129 3750.938 Varnish 1180 0.02 0.026105 3750.496 3750.929 Varnish 1190 0.02 0.026042 3750.27 3750.925 Varnish 1200 0.02 0.025979 3750.383 3750.918 Varnish 1210 0.02 0.025918 3750.512 3750.912 Varnish 1220 0.02 0.025859 3750.383 3750.908 Varnish 1240 0.01 0.0258 3750.266 3750.903 Varnish 1250 0.01 0.025644 3750.387 3750.897 Varnish 1260 0.01 0.02549 3750.266 3750.892 Varnish 1270 0.01 0.02534 3750.387 3750.886 Varnish 1280 0.01 0.025192 3750.402 3750.881 Varnish 1300 0.03 0.025048 3750.395 3750.876 Varnish 1310 0.03 0.025094 3750.145 3750.872 Varnish 1320 0.03 0.02514 3750.152 3750.865 Varnish 1330 0.03 0.025185 3750.273 3750.858 Varnish 1340 0.06 0.025229 3750.281 3750.853 Varnish 1360 0.07 0.025545 3750.41 3750.848 Varnish 1370 0.07 0.025946 3750.273 3750.844 Varnish 1380 0.07 0.026339 3750.172 3750.839 Varnish 1390 0.07 0.026726 3750.285 3750.833 Varnish 1400 0.06 0.027105 3750.313 3750.828 Varnish 1420 0.06 0.027391 3750.285 3750.824 Varnish 1430 0.06 0.027672 3750.406 3750.819 Varnish 1440 0.05 0.027949 3750.172 3750.815 Varnish 1450 0.05 0.028136 3750.285 3750.81 Varnish 1470 0.05 0.028319 3750.188 3750.806 Varnish 1490 0.05 0.0285 3750.156 3750.8 Varnish 1500 0.04 0.028678 3750.285 3750.795 Varnish 1510 0.04 0.02877 3750.164 3750.791 Varnish 1520 0.04 0.028862 3750.293 3750.786 Varnish 1530 0.04 0.028952 3750.285 3750.782 Varnish 1550 0.04 0.02904 3750.285 3750.778 Varnish 1560 0.04 0.029127 3750.289 3750.774 Varnish 1570 0.04 0.029213 3750.18 3750.77 Varnish 1580 0.04 0.029297 3750.172 3750.766 Varnish 1590 0.04 0.02938 3750.172 3750.761 Varnish 1610 0.03 0.029462 3750.18 3750.756 Varnish 1620 0.03 0.029466 3750.168 3750.752 Varnish 1630 0.03 0.02947 3750.184 3750.748 Varnish 1640 0.03 0.029474 3750.055 3750.743 Varnish 1650 0.03 0.029478 3749.949 3750.738 Varnish 1670 0.03 0.029481 3750.063 3750.732 Varnish 1680 0.03 0.029485 3750.176 3750.727 Varnish 1690 0.03 0.029489 3750.289 3750.723 Varnish 1700 0.02 0.029493 3750.063 3750.72 Varnish 1710 0.02 0.029424 3750.168 3750.716 Varnish 1730 0.05 0.029357 3750.176 3750.712 Varnish 1740 0.05 0.029504 3750.176 3750.708 Varnish 1750 0.05 0.029648 3750.078 3750.704 Varnish 1760 0.05 0.02979 3750.07 3750.7 Varnish 1770 0.05 0.029931 3750.184 3750.695 Varnish 1790 0.07 0.030069 3749.953 3750.692 Varnish

xxvii

1800 0.07 0.030342 3750.059 3750.687 Varnish 1810 0.07 0.030612 3750.172 3750.682 Varnish 1820 0.07 0.030878 3750.035 3750.679 Varnish 1840 0.07 0.031141 3750.059 3750.675 Varnish 1860 0.11 0.0314 3749.891 3750.671 Varnish 1870 0.11 0.031921 3749.914 3750.665 Varnish 1880 0.1 0.032434 3749.883 3750.66 Varnish 1890 0.1 0.032876 3750.02 3750.655 Varnish 1900 0.1 0.033312 3750.031 3750.651 Varnish 1920 0.09 0.033742 3749.891 3750.647 Varnish 1930 0.09 0.034103 3749.906 3750.642 Varnish 1940 0.09 0.034459 3749.906 3750.638 Varnish 1950 0.08 0.03481 3749.891 3750.633 Varnish 1960 0.08 0.035094 3749.891 3750.628 Varnish 1980 0.07 0.035375 3749.898 3750.624 Varnish 1990 0.07 0.03559 3749.914 3750.619 Varnish 2000 0.07 0.035802 3749.898 3750.615 Varnish 2010 0.1 0.036012 3749.898 3750.611 Varnish 2020 0.1 0.036402 3750.02 3750.606 Varnish 2040 0.09 0.036788 3749.898 3750.603 Varnish 2050 0.09 0.037108 3750.02 3750.598 Varnish 2060 0.09 0.037425 3749.922 3750.595 Varnish 2070 0.1 0.037738 3750.02 3750.591 Varnish 2080 0.11 0.038107 3749.898 3750.588 Varnish 2100 0.12 0.038529 3749.195 3750.584 Varnish 2110 0.12 0.039006 3749.723 3750.575 Varnish 2120 0.11 0.039477 3749.746 3750.57 Varnish 2130 0.11 0.039884 3749.641 3750.566 Varnish 2140 0.11 0.040287 3749.641 3750.56 Varnish 2160 0.1 0.040686 3749.609 3750.555 Varnish 2170 0.11 0.041023 3749.746 3750.55 Varnish 2180 0.11 0.041412 3749.754 3750.545 Varnish 2190 0.1 0.041798 3749.777 3750.541 Varnish 2210 0.1 0.042123 3749.688 3750.536 Varnish 2230 0.09 0.042444 3749.625 3750.532 Varnish 2240 0.09 0.042707 3749.754 3750.527 Varnish 2250 0.09 0.042967 3749.688 3750.522 Varnish 2260 0.08 0.043224 3749.664 3750.518 Varnish 2270 0.08 0.043424 3749.656 3750.513 Varnish 2290 0.09 0.043622 3749.668 3750.509 Varnish 2300 0.09 0.043871 3749.547 3750.504 Varnish 2310 0.09 0.044118 3749.652 3750.499 Varnish 2320 0.08 0.044362 3749.766 3750.495 Varnish 2330 0.08 0.04455 3749.5 3750.491 Varnish 2350 0.09 0.044737 3749.645 3750.485 Varnish 2360 0.09 0.044974 3749.395 3750.481 Varnish 2370 0.08 0.045208 3749.629 3750.475 Varnish 2380 0.08 0.045389 3749.637 3750.471 Varnish 2390 0.08 0.045567 3749.258 3750.467 Varnish 2410 0.07 0.045744 3749.523 3750.46 Varnish 2420 0.07 0.045867 3749.379 3750.456 Varnish 2430 0.07 0.04599 3749.395 3750.45 Varnish 2440 0.07 0.046111 3749.508 3750.445 Varnish 2450 0.06 0.046231 3749.402 3750.44 Varnish 2470 0.06 0.0463 3749.484 3750.435 Varnish 2480 0.06 0.046368 3749.613 3750.43 Varnish 2490 0.06 0.046436 3749.363 3750.426 Varnish 2500 0.06 0.046502 3749.379 3750.421 Varnish 2510 0.05 0.046569 3749.363 3750.416 Varnish 2530 0.07 0.046585 3749.5 3750.411 Varnish 2540 0.1 0.046699 3749.371 3750.406 Varnish 2550 0.14 0.046957 3749.379 3750.401 Varnish 2570 0.14 0.047404 3749.387 3750.396 Varnish 2580 0.13 0.047847 3749.402 3750.392 Varnish 2600 0.14 0.048238 3749.324 3750.387 Varnish 2610 0.14 0.048673 3749.121 3750.382 Varnish 2620 0.13 0.049104 3749.484 3750.376 Varnish 2630 0.13 0.049484 3749.316 3750.372 Varnish 2640 0.12 0.04986 3749.469 3750.367 Varnish 2660 0.12 0.050186 3749.094 3750.363 Varnish 2670 0.14 0.050509 3749.223 3750.357 Varnish

xxviii

2680 0.14 0.050922 3749.344 3750.352 Varnish 2690 0.15 0.05133 3749.32 3750.347 Varnish 2700 0.15 0.051781 3749.039 3750.342 Varnish 2720 0.14 0.052227 3749.215 3750.336 Varnish 2730 0.13 0.052624 3748.918 3750.331 Varnish 2740 0.16 0.052973 3749.063 3750.325 Varnish 2750 0.15 0.053453 3749.094 3750.319 Varnish 2760 0.15 0.053884 3749.055 3750.314 Varnish 2780 0.14 0.054311 3749.305 3750.308 Varnish 2790 0.14 0.05469 3748.941 3750.304 Varnish 2800 0.13 0.055066 3749.176 3750.298 Varnish 2810 0.13 0.055395 3749.199 3750.293 Varnish 2820 0.12 0.055721 3748.918 3750.288 Varnish 2840 0.11 0.056 3749.063 3750.282 Varnish 2850 0.11 0.056234 3749.063 3750.277 Varnish 2860 0.11 0.056466 3748.879 3750.272 Varnish 2870 0.14 0.056695 3749.039 3750.266 Varnish 2880 0.13 0.057051 3748.953 3750.26 Varnish 2900 0.12 0.057362 3748.961 3750.255 Varnish 2910 0.12 0.057627 3749.074 3750.249 Varnish 2920 0.12 0.05789 3749.195 3750.244 Varnish 2940 0.13 0.058151 3748.961 3750.24 Varnish 2950 0.17 0.058452 3749.09 3750.235 Varnish 2970 0.16 0.058917 3748.742 3750.23 Varnish 2980 0.15 0.059336 3748.91 3750.224 Varnish 2990 0.15 0.059711 3748.941 3750.218 Varnish 3000 0.14 0.060082 3748.621 3750.213 Varnish 3010 0.14 0.06041 3748.887 3750.206 Varnish 3030 0.15 0.060735 3748.359 3750.201 Varnish 3040 0.14 0.061098 3748.754 3750.194 Varnish 3050 0.14 0.061417 3748.785 3750.188 Varnish 3060 0.13 0.061734 3748.754 3750.182 Varnish 3070 0.13 0.062008 3748.551 3750.176 Varnish 3090 0.14 0.06228 3748.496 3750.17 Varnish 3100 0.16 0.06259 3748.656 3750.163 Varnish 3110 0.18 0.062976 3748.672 3750.157 Varnish 3120 0.17 0.063439 3748.648 3750.151 Varnish 3130 0.19 0.063858 3748.57 3750.145 Varnish 3150 0.18 0.064353 3748.656 3750.139 Varnish 3160 0.18 0.064805 3748.441 3750.133 Varnish 3170 0.19 0.065253 3748.535 3750.127 Varnish 3180 0.21 0.065736 3748.648 3750.121 Varnish 3190 0.21 0.066293 3748.215 3750.115 Varnish 3210 0.21 0.066846 3748.543 3750.108 Varnish 3220 0.2 0.067395 3748.344 3750.102 Varnish 3230 0.2 0.067901 3748.535 3750.095 Varnish 3240 0.19 0.068403 3748.535 3750.089 Varnish 3250 0.18 0.068864 3748.363 3750.083 Varnish 3270 0.22 0.069283 3748.555 3750.077 Varnish 3280 0.21 0.06985 3748.531 3750.071 Varnish 3300 0.21 0.070375 3748.547 3750.065 Varnish 3310 0.2 0.070896 3748.547 3750.059 Varnish 3320 0.19 0.071375 3747.957 3750.054 Varnish 3340 0.18 0.071815 3748.258 3750.046 Varnish 3350 0.17 0.072214 3748.152 3750.039 Varnish 3360 0.17 0.072574 3748.281 3750.033 Varnish 3370 0.16 0.07293 3748.402 3750.026 Varnish 3380 0.16 0.073248 3748.074 3750.02 Varnish 3400 0.15 0.073564 3748.402 3750.013 Varnish 3410 0.14 0.073841 3748.395 3750.007 Varnish 3420 0.14 0.074079 3748.34 3750.001 Varnish 3430 0.13 0.074317 3748.152 3749.995 Varnish 3440 0.13 0.074516 3748.289 3749.989 Varnish 3460 0.12 0.074714 3748.266 3749.983 Varnish 3470 0.12 0.074875 3748.395 3749.977 Varnish 3480 0.11 0.075035 3748.266 3749.971 Varnish 3490 0.14 0.075159 3747.938 3749.965 Varnish 3500 0.14 0.075387 3748.227 3749.958 Varnish 3520 0.12 0.075614 3748.176 3749.952 Varnish 3530 0.12 0.075769 3748.418 3749.946 Varnish 3540 0.12 0.075923 3748.18 3749.94 Varnish

xxix

3550 0.15 0.076076 3748.016 3749.934 Varnish 3560 0.14 0.076332 3748.129 3749.928 Varnish 3580 0.13 0.076552 3747.969 3749.921 Varnish 3590 0.13 0.076735 3748 3749.915 Varnish 3600 0.12 0.076918 3748.355 3749.908 Varnish 3610 0.12 0.077065 3748.082 3749.903 Varnish 3620 0.12 0.077211 3747.977 3749.897 Varnish 3640 0.12 0.077356 3747.93 3749.89 Varnish 3650 0.12 0.0775 3747.863 3749.883 Varnish 3670 0.12 0.077643 3748.137 3749.877 Varnish 3680 0.13 0.077785 3747.984 3749.871 Varnish 3690 0.13 0.07796 3747.887 3749.865 Varnish 3710 0.12 0.078133 3747.914 3749.858 Varnish 3720 0.11 0.078272 3748.105 3749.851 Varnish 3730 0.11 0.078377 3748.125 3749.846 Varnish 3740 0.1 0.078482 3747.918 3749.84 Varnish 3750 0.1 0.078553 3747.684 3749.834 Varnish 3770 0.11 0.078623 3748.094 3749.827 Varnish 3780 0.12 0.078725 3747.672 3749.821 Varnish 3790 0.12 0.07886 3747.895 3749.814 Varnish 3800 0.12 0.078994 3748.039 3749.808 Varnish 3810 0.11 0.079126 3747.918 3749.802 Varnish 3830 0.1 0.079226 3747.895 3749.796 Varnish 3840 0.1 0.079293 3747.918 3749.79 Varnish 3850 0.1 0.079359 3748.039 3749.784 Varnish 3860 0.11 0.079425 3747.922 3749.778 Varnish 3870 0.11 0.079522 3747.348 3749.772 Varnish 3890 0.1 0.079619 3747.738 3749.765 Varnish 3900 0.1 0.079684 3747.742 3749.758 Varnish 3910 0.09 0.079748 3747.758 3749.752 Varnish 3920 0.09 0.07978 3747.918 3749.746 Varnish 3930 0.09 0.079812 3747.723 3749.74 Varnish 3950 0.08 0.079844 3747.898 3749.734 Varnish 3960 0.08 0.079844 3748.004 3749.728 Varnish 3970 0.08 0.079845 3747.539 3749.722 Varnish 3980 0.09 0.079845 3747.684 3749.716 Varnish 3990 0.1 0.079877 3747.863 3749.709 Varnish 4010 0.1 0.079938 3747.773 3749.704 Varnish 4030 0.09 0.08 3747.844 3749.698 Varnish 4040 0.09 0.080031 3747.867 3749.692 Varnish 4050 0.1 0.080061 3747.395 3749.687 Varnish 4060 0.1 0.080122 3747.668 3749.68 Varnish 4080 0.09 0.080182 3747.504 3749.674 Varnish 4090 0.11 0.080211 3747.555 3749.667 Varnish 4100 0.1 0.080301 3747.723 3749.661 Varnish 4110 0.1 0.08036 3747.625 3749.655 Varnish 4120 0.1 0.080419 3747.609 3749.649 Varnish 4140 0.12 0.080478 3747.75 3749.643 Varnish 4150 0.14 0.080595 3747.734 3749.637 Varnish 4160 0.13 0.080772 3747.75 3749.631 Varnish 4170 0.13 0.080917 3747.684 3749.626 Varnish 4180 0.12 0.081062 3747.773 3749.62 Varnish 4200 0.11 0.081176 3746.773 3749.615 Varnish 4210 0.11 0.081261 3747.234 3749.606 Varnish 4220 0.12 0.081345 3747.508 3749.599 Varnish 4230 0.12 0.081458 3747.383 3749.593 Varnish 4240 0.12 0.08157 3747.488 3749.587 Varnish 4260 0.11 0.081681 3747.539 3749.581 Varnish 4270 0.1 0.081763 3747.555 3749.575 Varnish 4280 0.1 0.081816 3747.465 3749.569 Varnish 4290 0.1 0.081868 3747.563 3749.563 Varnish 4300 0.09 0.08192 3747.602 3749.557 Varnish 4320 0.09 0.081943 3747.453 3749.552 Varnish 4330 0.08 0.081966 3747.363 3749.546 Varnish 4340 0.1 0.08196 3747.469 3749.54 Varnish 4350 0.1 0.082011 3747.605 3749.534 Varnish 4360 0.11 0.082062 3747.582 3749.528 Varnish 4390 0.1 0.082141 3747.348 3749.523 Varnish 4400 0.1 0.082191 3747.348 3749.517 Varnish 4410 0.1 0.082241 3747.574 3749.511 Varnish 4420 0.09 0.082291 3747.344 3749.505 Varnish

xxx

4430 0.09 0.082312 3747.578 3749.499 Varnish 4450 0.08 0.082333 3747.441 3749.494 Varnish 4460 0.08 0.082327 3747.473 3749.488 Varnish 4470 0.08 0.08232 3747.578 3749.483 Varnish 4480 0.07 0.082314 3747.594 3749.477 Varnish 4490 0.07 0.08228 3747.328 3749.472 Varnish 4510 0.08 0.082247 3746.668 3749.466 Varnish 4520 0.08 0.08224 3747.188 3749.459 Varnish 4530 0.08 0.082234 3747.105 3749.452 Varnish 4540 0.07 0.082228 3747.371 3749.446 Varnish 4550 0.07 0.082195 3747.363 3749.44 Varnish 4570 0.13 0.082162 3746.98 3749.435 Varnish 4580 0.13 0.082291 3747.203 3749.428 Varnish 4590 0.12 0.082419 3747.371 3749.422 Varnish 4600 0.14 0.08252 3746.957 3749.417 Varnish 4610 0.13 0.082674 3747.234 3749.41 Varnish 4630 0.14 0.0828 3746.969 3749.404 Varnish 4640 0.13 0.082952 3747.039 3749.398 Varnish 4650 0.13 0.083077 3747.063 3749.392 Varnish 4660 0.12 0.083201 3747.078 3749.385 Varnish 4670 0.12 0.083298 3747.367 3749.379 Varnish 4690 0.11 0.083395 3747.246 3749.374 Varnish 4700 0.11 0.083465 3747.262 3749.368 Varnish 4710 0.12 0.083534 3747.262 3749.363 Varnish 4720 0.13 0.083629 3746.793 3749.357 Varnish 4730 0.13 0.08375 3746.961 3749.351 Varnish 4760 0.14 0.08387 3746.695 3749.345 Varnish 4770 0.13 0.084016 3746.953 3749.338 Varnish 4780 0.15 0.084134 3747.289 3749.332 Varnish 4790 0.14 0.084304 3746.984 3749.326 Varnish 4800 0.14 0.084447 3746.75 3749.32 Varnish 4820 0.12 0.08459 3747.168 3749.314 Varnish 4830 0.14 0.08468 3746.738 3749.308 Varnish 4840 0.13 0.084821 3746.898 3749.302 Varnish 4850 0.13 0.084936 3747.121 3749.295 Varnish 4860 0.17 0.085051 3746.641 3749.29 Varnish 4880 0.16 0.085266 3746.848 3749.283 Varnish 4890 0.16 0.085455 3746.633 3749.277 Varnish 4900 0.15 0.085642 3746.789 3749.27 Varnish 4910 0.15 0.085804 3746.957 3749.264 Varnish 4920 0.14 0.085965 3746.98 3749.258 Varnish 4940 0.13 0.0861 3746.754 3749.253 Varnish 4950 0.13 0.086209 3746.922 3749.247 Varnish 4960 0.12 0.086318 3746.594 3749.241 Varnish 4970 0.14 0.086402 3746.844 3749.234 Varnish 4980 0.13 0.086535 3746.809 3749.228 Varnish 5000 0.12 0.086642 3746.387 3749.222 Varnish 5010 0.12 0.086724 3746.738 3749.215 Varnish 5020 0.11 0.086806 3746.496 3749.209 Varnish 5030 0.11 0.086863 3746.566 3749.203 Varnish 5040 0.11 0.086919 3746.766 3749.196 Varnish 5060 0.12 0.086976 3746.676 3749.19 Varnish 5070 0.11 0.087056 3746.691 3749.184 Varnish 5080 0.11 0.087112 3746.691 3749.178 Varnish 5090 0.1 0.087167 3746.926 3749.172 Varnish 5100 0.1 0.087198 3746.813 3749.167 Varnish 5130 0.09 0.087229 3746.16 3749.161 Varnish 5140 0.09 0.087236 3746.285 3749.154 Varnish 5150 0.09 0.087242 3746.863 3749.147 Varnish 5160 0.09 0.087249 3746.594 3749.141 Varnish 5170 0.08 0.087255 3746.543 3749.135 Varnish 5190 0.09 0.087238 3746.734 3749.129 Varnish 5200 0.09 0.087245 3746.508 3749.123 Varnish 5210 0.09 0.087251 3746.621 3749.117 Varnish 5220 0.08 0.087258 3746.637 3749.111 Varnish 5230 0.08 0.087241 3746.5 3749.105 Varnish 5250 0.07 0.087224 3746.668 3749.099 Varnish 5260 0.07 0.087183 3746.547 3749.094 Varnish 5270 0.07 0.087143 3746.66 3749.088 Varnish 5280 0.1 0.087103 3746.793 3749.082 Varnish 5290 0.1 0.087133 3746.805 3749.077 Varnish

xxxi

5310 0.12 0.087163 3746.648 3749.071 Varnish 5320 0.12 0.087239 3746.559 3749.066 Varnish 5330 0.13 0.087315 3746.785 3749.06 Varnish 5340 0.13 0.087413 3746.793 3749.055 Varnish 5350 0.12 0.087512 3746.695 3749.049 Varnish 5370 0.15 0.087586 3746 3749.044 Varnish 5380 0.16 0.087729 3746.238 3749.037 Varnish 5390 0.15 0.087895 3746.441 3749.031 Varnish 5400 0.17 0.088037 3746.578 3749.025 Varnish 5410 0.16 0.088223 3746.52 3749.019 Varnish 5430 0.18 0.088386 3746.527 3749.014 Varnish 5440 0.19 0.088594 3746.637 3749.008 Varnish 5450 0.2 0.088824 3746.422 3749.003 Varnish 5460 0.2 0.089074 3746.547 3748.997 Varnish 5470 0.21 0.089324 3746.656 3748.991 Varnish 5500 0.24 0.089596 3746.039 3748.986 Varnish 5510 0.23 0.089933 3746.117 3748.979 Varnish 5520 0.23 0.090246 3746.52 3748.973 Varnish 5530 0.25 0.090558 3746.25 3748.967 Varnish 5540 0.27 0.090913 3746.266 3748.961 Varnish 5560 0.26 0.091311 3746.5 3748.955 Varnish 5570 0.28 0.091685 3746.012 3748.95 Varnish 5580 0.28 0.092102 3746.379 3748.943 Varnish 5590 0.29 0.092517 3745.828 3748.938 Varnish 5600 0.28 0.092952 3745.965 3748.931 Varnish 5620 0.31 0.093363 3746.125 3748.924 Varnish 5630 0.3 0.093838 3746.148 3748.918 Varnish 5640 0.29 0.094289 3746.203 3748.912 Varnish 5650 0.28 0.094716 3746.176 3748.906 Varnish 5660 0.29 0.09512 3746.027 3748.9 Varnish 5680 0.27 0.095543 3746.137 3748.894 Varnish 5690 0.26 0.095922 3745.906 3748.888 Varnish 5700 0.25 0.096277 3746.156 3748.882 Varnish 5710 0.28 0.096609 3746.363 3748.876 Varnish 5720 0.29 0.097004 3746.145 3748.87 Varnish 5740 0.27 0.097419 3746.426 3748.865 Varnish 5750 0.26 0.09779 3746.426 3748.859 Varnish 5760 0.25 0.098137 3746.02 3748.854 Varnish 5770 0.24 0.098462 3746.285 3748.848 Varnish 5780 0.23 0.098763 3746.34 3748.843 Varnish 5800 0.21 0.099043 3745.859 3748.837 Varnish 5810 0.21 0.099278 3746.168 3748.831 Varnish 5820 0.2 0.099513 3745.523 3748.825 Varnish 5830 0.19 0.099725 3745.82 3748.818 Varnish 5840 0.2 0.099916 3745.941 3748.812 Varnish 5870 0.19 0.100126 3745.871 3748.806 Varnish 5880 0.18 0.100315 3746.016 3748.8 Varnish 5890 0.18 0.100482 3746.262 3748.794 Varnish 5900 0.19 0.100649 3745.559 3748.789 Varnish 5910 0.18 0.100835 3745.895 3748.782 Varnish 5930 0.19 0.101 3745.512 3748.776 Varnish 5940 0.2 0.101185 3745.75 3748.769 Varnish 5950 0.19 0.10139 3745.973 3748.763 Varnish 5960 0.18 0.101573 3745.629 3748.757 Varnish 5970 0.18 0.101736 3745.852 3748.751 Varnish 5990 0.18 0.101897 3745.707 3748.745 Varnish 6000 0.18 0.102058 3745.988 3748.738 Varnish

File size phase – requests

time tenseccount tensecmean tensecstddev max min mean count application filesize 0 4.1 1.619748 4.523756 30.22583 0.736084 0 0 Varnish 10kB

10 9.9 0.939409 0.079724 30.22583 0.736084 1.619748 41 Varnish 10kB 20 9.2 0.9615 0.129184 30.22583 0.720947 1.138651 140 Varnish 10kB 30 10.4 0.942841 0.067558 30.22583 0.720947 1.068401 232 Varnish 10kB 40 11.3 0.93325 0.076079 30.22583 0.709961 1.029537 336 Varnish 10kB 50 10.1 0.93253 0.072362 30.22583 0.709961 1.005305 449 Varnish 10kB 60 10 0.947585 0.125671 30.22583 0.709961 0.991941 550 Varnish 10kB 70 10.5 0.944592 0.074182 30.22583 0.709961 0.985117 650 Varnish 10kB 80 9.2 0.938307 0.076481 30.22583 0.709961 0.979481 755 Varnish 10kB 90 10.8 0.938479 0.068925 30.22583 0.709961 0.975009 847 Varnish 10kB

xxxii

100 8.4 0.930838 0.067586 30.22583 0.709961 0.970877 955 Varnish 10kB 110 9.9 0.937379 0.07842 30.22583 0.709961 0.96764 1039 Varnish 10kB 120 11.1 0.941276 0.071392 30.22583 0.709961 0.965008 1138 Varnish 10kB 130 11.1 0.934069 0.079645 30.22583 0.702148 0.962899 1249 Varnish 10kB 140 8.8 0.934187 0.077531 30.22583 0.702148 0.960546 1360 Varnish 10kB 150 9.9 0.935559 0.078126 30.22583 0.702148 0.958944 1448 Varnish 10kB 160 9.7 0.93757 0.072791 30.22583 0.702148 0.957447 1547 Varnish 10kB 170 8.8 0.930811 0.075324 30.22583 0.702148 0.956275 1644 Varnish 10kB 180 10.1 0.935844 0.07111 30.22583 0.702148 0.954981 1732 Varnish 10kB 190 10.1 0.943251 0.069106 30.22583 0.702148 0.953926 1833 Varnish 10kB 200 9.2 0.938758 0.07605 30.22583 0.702148 0.953369 1934 Varnish 10kB 210 9.4 0.94806 0.085068 30.22583 0.702148 0.952705 2026 Varnish 10kB 220 8.9 0.945088 0.073391 30.22583 0.702148 0.952499 2120 Varnish 10kB 230 9.8 0.935345 0.072443 30.22583 0.702148 0.952201 2209 Varnish 10kB 240 10.8 0.934634 0.075847 30.22583 0.691162 0.951485 2307 Varnish 10kB 250 9.1 0.946555 0.074554 30.22583 0.690918 0.950731 2415 Varnish 10kB 260 9.1 0.940507 0.069125 30.22583 0.690918 0.95058 2506 Varnish 10kB 270 10 0.95009 0.127596 30.22583 0.690918 0.950227 2597 Varnish 10kB 280 10.5 0.943866 0.071571 30.22583 0.690918 0.950222 2697 Varnish 10kB 290 10.5 0.944866 0.068279 30.22583 0.690918 0.949983 2802 Varnish 10kB 300 12.2 0.96101 0.119702 30.22583 0.690918 0.949799 2907 Varnish 10kB 310 12.5 0.945328 0.06025 30.22583 0.690918 0.95025 3029 Varnish 10kB 320 9.5 0.935526 0.07653 30.22583 0.690918 0.950055 3154 Varnish 10kB 330 11 0.944065 0.06318 30.22583 0.690918 0.94963 3249 Varnish 10kB 340 9.6 0.939466 0.065673 30.22583 0.690918 0.949448 3359 Varnish 10kB 350 8.4 0.931411 0.080514 30.22583 0.690918 0.949171 3455 Varnish 10kB 360 9.1 0.938691 0.070477 30.22583 0.690918 0.948749 3539 Varnish 10kB 370 12 0.947837 0.071625 30.22583 0.690918 0.948497 3630 Varnish 10kB 380 9.5 0.943431 0.063228 30.22583 0.690918 0.948476 3750 Varnish 10kB 390 11.8 0.950744 0.093695 30.22583 0.690918 0.948351 3845 Varnish 10kB 400 10.4 0.948479 0.06218 30.22583 0.690918 0.948422 3963 Varnish 10kB 410 11.5 0.949157 0.082447 30.22583 0.690918 0.948424 4067 Varnish 10kB 420 9 0.938322 0.077633 30.22583 0.690918 0.948444 4182 Varnish 10kB 430 9.7 0.939403 0.072168 30.22583 0.690918 0.948231 4272 Varnish 10kB 440 9.4 0.944777 0.072614 30.22583 0.690918 0.948035 4369 Varnish 10kB 450 10.1 0.940476 0.06548 30.22583 0.690918 0.947966 4463 Varnish 10kB 460 9.9 0.940304 0.069814 30.22583 0.690918 0.9478 4564 Varnish 10kB 470 9.1 0.935034 0.076706 30.22583 0.690918 0.947641 4663 Varnish 10kB 480 9 0.943557 0.104531 30.22583 0.690918 0.9474 4754 Varnish 10kB 490 9.6 0.935778 0.077361 30.22583 0.690918 0.947329 4844 Varnish 10kB 500 9.3 0.93582 0.076096 30.22583 0.690918 0.947104 4940 Varnish 10kB 510 9.8 0.946904 0.071285 30.22583 0.690918 0.946896 5033 Varnish 10kB 520 9 0.936825 0.074943 30.22583 0.690918 0.946896 5131 Varnish 10kB 530 9.4 0.938464 0.075131 30.22583 0.690918 0.946722 5221 Varnish 10kB 540 12.4 0.951152 0.146484 30.22583 0.690918 0.946576 5315 Varnish 10kB 550 9.6 0.940468 0.073647 30.22583 0.690918 0.94668 5439 Varnish 10kB 560 11.9 0.946353 0.064505 30.22583 0.690918 0.946573 5535 Varnish 10kB 570 10.6 0.949889 0.097283 30.22583 0.690918 0.946568 5654 Varnish 10kB 580 9.4 0.93798 0.079735 30.22583 0.690918 0.946629 5760 Varnish 10kB 590 8 0.923175 0.077371 30.22583 0.690918 0.94649 5854 Varnish 10kB 600 3.9 0.903865 0.136634 30.22583 0.690918 0.946176 5934 Varnish 10kB

0 4.4 2.038075 3.658543 26.01489 1.253906 0 0 Varnish 50kB 10 7.9 1.510517 0.082735 26.01489 1.253906 2.038075 44 Varnish 50kB 20 9 1.527593 0.087705 26.01489 1.253906 1.699237 123 Varnish 50kB 30 10.5 1.534589 0.088992 26.01489 1.251953 1.626711 213 Varnish 50kB 40 10 1.530627 0.083915 26.01489 1.251953 1.596294 318 Varnish 50kB 50 10 1.531482 0.076326 26.01489 1.251953 1.580584 418 Varnish 50kB 60 11.3 1.528003 0.076549 26.01489 1.186035 1.571105 518 Varnish 50kB 70 10 1.524175 0.07407 26.01489 1.186035 1.563386 631 Varnish 50kB 80 10.4 1.521327 0.074186 26.01489 1.186035 1.558022 731 Varnish 50kB 90 7.5 1.522943 0.103781 26.01489 1.186035 1.553452 835 Varnish 50kB

100 9.7 1.521275 0.086123 26.01489 1.186035 1.550937 910 Varnish 50kB 110 9.4 1.522001 0.075304 26.01489 1.186035 1.54808 1007 Varnish 50kB 120 10.6 1.516774 0.086722 26.01489 1.186035 1.545853 1101 Varnish 50kB 130 9.4 1.514251 0.081588 26.01489 1.186035 1.5433 1207 Varnish 50kB 140 10.1 1.519642 0.088046 26.01489 1.186035 1.541201 1301 Varnish 50kB 150 8.6 1.518064 0.123604 26.01489 1.186035 1.539648 1402 Varnish 50kB 160 12.2 1.534564 0.095826 26.01489 1.186035 1.5384 1488 Varnish 50kB 170 10.7 1.536103 0.070094 26.01489 1.186035 1.53811 1610 Varnish 50kB 180 9.9 1.528343 0.105284 26.01489 1.186035 1.537985 1717 Varnish 50kB 190 11.6 1.528297 0.069424 26.01489 1.186035 1.537459 1816 Varnish 50kB

xxxiii

200 9.6 1.516042 0.075829 26.01489 1.186035 1.536909 1932 Varnish 50kB 210 10.2 1.52574 0.067036 26.01489 1.186035 1.535921 2028 Varnish 50kB 220 10.4 1.512787 0.082073 26.01489 1.186035 1.535434 2130 Varnish 50kB 230 7.2 1.504317 0.090443 26.01489 1.186035 1.534379 2234 Varnish 50kB 240 11 1.518468 0.076219 26.01489 1.186035 1.533441 2306 Varnish 50kB 250 9.6 1.526634 0.074406 26.01489 1.186035 1.532759 2416 Varnish 50kB 260 10.9 1.525861 0.080443 26.01489 1.186035 1.532525 2512 Varnish 50kB 270 10.2 1.523234 0.081207 26.01489 1.186035 1.532248 2621 Varnish 50kB 280 11.1 1.528914 0.075612 26.01489 1.186035 1.53191 2723 Varnish 50kB 290 10 1.519714 0.076891 26.01489 1.186035 1.531793 2834 Varnish 50kB 300 8.6 1.533564 0.174897 26.01489 1.186035 1.531381 2934 Varnish 50kB 310 9.4 1.520913 0.085087 26.01489 1.186035 1.531443 3020 Varnish 50kB 320 11.2 1.52713 0.07731 26.01489 1.186035 1.531125 3114 Varnish 50kB 330 10.2 1.522317 0.071419 26.01489 1.186035 1.530987 3226 Varnish 50kB 340 7.9 1.532625 0.134939 26.01489 1.186035 1.530721 3328 Varnish 50kB 350 9.7 1.527465 0.071727 26.01489 1.186035 1.530765 3407 Varnish 50kB 360 9.2 1.521556 0.082793 26.01489 1.186035 1.530674 3504 Varnish 50kB 370 10.9 1.539172 0.114574 26.01489 1.186035 1.53044 3596 Varnish 50kB 380 8.6 1.502683 0.079321 26.01489 1.186035 1.530697 3705 Varnish 50kB 390 10.4 1.51993 0.079402 26.01489 1.186035 1.530062 3791 Varnish 50kB 400 10.7 1.522835 0.07371 26.01489 1.186035 1.529791 3895 Varnish 50kB 410 9.7 1.513601 0.076964 26.01489 1.186035 1.529605 4002 Varnish 50kB 420 10 1.527417 0.073024 26.01489 1.186035 1.529227 4099 Varnish 50kB 430 10.2 1.52041 0.074538 26.01489 1.186035 1.529183 4199 Varnish 50kB 440 11.8 1.527559 0.067873 26.01489 1.186035 1.528975 4301 Varnish 50kB 450 8.6 1.525825 0.082948 26.01489 1.186035 1.528938 4419 Varnish 50kB 460 9.4 1.521045 0.074069 26.01489 1.186035 1.528878 4505 Varnish 50kB 470 9 1.529289 0.080537 26.01489 1.186035 1.528718 4599 Varnish 50kB 480 9.6 1.539001 0.097565 26.01489 1.186035 1.528729 4689 Varnish 50kB 490 10.3 1.528673 0.091284 26.01489 1.186035 1.528935 4785 Varnish 50kB 500 9.5 1.52113 0.077686 26.01489 1.186035 1.52893 4888 Varnish 50kB 510 11.4 1.520026 0.080464 26.01489 1.186035 1.528781 4983 Varnish 50kB 520 8.9 1.512621 0.084622 26.01489 1.186035 1.528585 5097 Varnish 50kB 530 9.4 1.525572 0.091691 26.01489 1.186035 1.528311 5186 Varnish 50kB 540 9.7 1.528703 0.073007 26.01489 1.186035 1.528262 5280 Varnish 50kB 550 10 1.522156 0.071365 26.01489 1.186035 1.52827 5377 Varnish 50kB 560 10.5 1.518464 0.100414 26.01489 1.146973 1.528159 5477 Varnish 50kB 570 10.4 1.514627 0.079751 26.01489 1.146973 1.527976 5582 Varnish 50kB 580 9.2 1.516278 0.076086 26.01489 1.146973 1.527732 5686 Varnish 50kB 590 7.9 1.529461 0.141503 26.01489 1.146973 1.52755 5778 Varnish 50kB 600 2.6 1.511362 0.237784 26.01489 1.146973 1.527576 5857 Varnish 50kB

0 4.3 2.596595 2.896543 21.30908 1.920898 0 0 Varnish 100kB 10 10.3 2.123127 0.077527 21.30908 1.920166 2.596595 43 Varnish 100kB 20 9.8 2.101102 0.082659 21.30908 1.915771 2.262573 146 Varnish 100kB 30 9.1 2.122494 0.09307 21.30908 1.905029 2.19772 244 Varnish 100kB 40 12.5 2.115752 0.07365 21.30908 1.905029 2.177285 335 Varnish 100kB 50 9.4 2.127857 0.132956 21.30908 1.859131 2.160564 460 Varnish 100kB 60 10.3 2.110515 0.102133 21.30908 1.859131 2.155015 554 Varnish 100kB 70 10.3 2.116498 0.089894 21.30908 1.859131 2.148038 657 Varnish 100kB 80 9.6 2.108154 0.083484 21.30908 1.859131 2.143764 760 Varnish 100kB 90 7.6 2.102333 0.087245 21.30908 1.85083 2.13977 856 Varnish 100kB

100 8.7 2.143807 0.121817 21.30908 1.85083 2.136717 932 Varnish 100kB 110 8.8 2.119343 0.076955 21.30908 1.85083 2.137323 1019 Varnish 100kB 120 8.8 2.11021 0.087582 21.30908 1.85083 2.135893 1107 Varnish 100kB 130 9.4 2.121405 0.091761 21.30908 1.85083 2.134002 1195 Varnish 100kB 140 10.4 2.123474 0.098336 21.30908 1.85083 2.133084 1289 Varnish 100kB 150 11.4 2.125953 0.070106 21.30908 1.85083 2.132366 1393 Varnish 100kB 160 9.5 2.122538 0.078191 21.30908 1.85083 2.131881 1507 Varnish 100kB 170 9.7 2.120814 0.080351 21.30908 1.85083 2.131327 1602 Varnish 100kB 180 11.1 2.128326 0.089818 21.30908 1.850098 2.130727 1699 Varnish 100kB 190 9.9 2.1199 0.093332 21.30908 1.850098 2.130579 1810 Varnish 100kB 200 9.5 2.106903 0.083493 21.30908 1.838867 2.130026 1909 Varnish 100kB 210 9.4 2.135467 0.110352 21.30908 1.838867 2.12893 2004 Varnish 100kB 220 8.9 2.111328 0.081549 21.30908 1.838867 2.129222 2098 Varnish 100kB 230 9 2.121707 0.102232 21.30908 1.838867 2.128494 2187 Varnish 100kB 240 11.1 2.127395 0.100424 21.30908 1.838867 2.128226 2277 Varnish 100kB 250 8.4 2.134585 0.162994 21.30908 1.838867 2.128187 2388 Varnish 100kB 260 9.2 2.116803 0.081586 21.30908 1.838867 2.128405 2472 Varnish 100kB 270 10.9 2.127381 0.096495 21.30908 1.838867 2.127988 2564 Varnish 100kB 280 10.6 2.146752 0.175603 21.30908 1.838867 2.127964 2673 Varnish 100kB 290 9.3 2.119151 0.083934 21.30908 1.838867 2.12868 2779 Varnish 100kB

xxxiv

300 11.2 2.139339 0.20319 21.30908 1.838867 2.128372 2872 Varnish 100kB 310 11.1 2.126344 0.094413 21.30908 1.838867 2.128783 2984 Varnish 100kB 320 9.3 2.125362 0.086301 21.30908 1.838867 2.128696 3095 Varnish 100kB 330 9.7 2.128441 0.089471 21.30908 1.838867 2.128599 3188 Varnish 100kB 340 9.3 2.123456 0.078116 21.30908 1.838867 2.128594 3285 Varnish 100kB 350 10.5 2.118006 0.090789 21.30908 1.838867 2.128453 3378 Varnish 100kB 360 10.5 2.132313 0.147779 21.30908 1.838867 2.128138 3483 Varnish 100kB 370 10.1 2.122986 0.096356 21.30908 1.838867 2.12826 3588 Varnish 100kB 380 9.7 2.11763 0.08412 21.30908 1.838867 2.128115 3689 Varnish 100kB 390 10.3 2.146617 0.123263 21.30908 1.838867 2.127847 3786 Varnish 100kB 400 10 2.122952 0.084996 21.30908 1.838867 2.128344 3889 Varnish 100kB 410 10.9 2.1159 0.09071 21.30908 1.838867 2.128209 3989 Varnish 100kB 420 8.8 2.141482 0.133017 21.30908 1.838867 2.127881 4098 Varnish 100kB 430 10.5 2.123947 0.091102 21.30908 1.821045 2.128167 4186 Varnish 100kB 440 9.4 2.126667 0.111499 21.30908 1.821045 2.128064 4291 Varnish 100kB 450 8.6 2.113503 0.081595 21.30908 1.821045 2.128034 4385 Varnish 100kB 460 10.9 2.144757 0.120503 21.30908 1.821045 2.127755 4471 Varnish 100kB 470 10.5 2.121466 0.092356 21.30908 1.821045 2.128159 4580 Varnish 100kB 480 10.2 2.124804 0.084187 21.30908 1.821045 2.128009 4685 Varnish 100kB 490 10.6 2.129837 0.145548 21.30908 1.803955 2.127941 4787 Varnish 100kB 500 10.7 2.137364 0.118884 21.30908 1.803955 2.127982 4893 Varnish 100kB 510 11.3 2.131659 0.108619 21.30908 1.803955 2.128183 5000 Varnish 100kB 520 8.2 2.110527 0.113426 21.30908 1.803955 2.12826 5113 Varnish 100kB 530 9.6 2.115494 0.078881 21.30908 1.803955 2.12798 5195 Varnish 100kB 540 8.2 2.125432 0.097308 21.30908 1.803955 2.127753 5291 Varnish 100kB 550 9.4 2.12586 0.096338 21.30908 1.803955 2.127718 5373 Varnish 100kB 560 11.3 2.143002 0.106088 21.30908 1.803955 2.127686 5467 Varnish 100kB 570 11.6 2.132341 0.087834 21.30908 1.803955 2.127996 5580 Varnish 100kB 580 9.7 2.12765 0.142554 21.30908 1.803955 2.128084 5696 Varnish 100kB 590 6.7 2.132029 0.107027 21.30908 1.803955 2.128077 5793 Varnish 100kB 600 5.9 2.169508 0.275113 21.30908 1.803955 2.128122 5860 Varnish 100kB

0 4.2 3.534337 6.019071 42.07202 2.400879 0 0 Varnish 150kB 10 10.5 2.659403 0.307055 42.07202 2.400879 3.534337 42 Varnish 150kB 20 10.6 2.638771 0.143071 42.07202 2.400879 2.909384 147 Varnish 150kB 30 8.7 2.667581 0.296906 42.07202 2.400879 2.796005 253 Varnish 150kB 40 10.1 2.605324 0.068188 42.07202 2.346924 2.763143 340 Varnish 150kB 50 10.9 2.644861 0.165625 42.07202 2.346924 2.726999 441 Varnish 150kB 60 9.3 2.65902 0.173716 42.07202 2.346924 2.71072 550 Varnish 150kB 70 11.4 2.618143 0.082704 42.07202 2.346924 2.703243 643 Varnish 150kB 80 12.5 2.628775 0.130947 42.07202 2.336914 2.690427 757 Varnish 150kB 90 9.4 2.639807 0.14716 42.07202 2.336914 2.68169 882 Varnish 150kB

100 9.9 2.614613 0.096196 42.07202 2.336914 2.677656 976 Varnish 150kB 110 11.1 2.600922 0.051774 42.07202 2.336914 2.67185 1075 Varnish 150kB 120 9.1 2.633341 0.14843 42.07202 2.336914 2.665212 1186 Varnish 150kB 130 10.7 2.618027 0.108434 42.07202 2.336914 2.662941 1277 Varnish 150kB 140 10.8 2.604517 0.059846 42.07202 2.336914 2.659468 1384 Varnish 150kB 150 10.1 2.609909 0.061787 42.07202 2.336914 2.655491 1492 Varnish 150kB 160 8.4 2.611072 0.08405 42.07202 2.336914 2.652601 1593 Varnish 150kB 170 11 2.606041 0.054829 42.07202 2.336914 2.65052 1677 Varnish 150kB 180 9.8 2.646208 0.153606 42.07202 2.336914 2.647783 1787 Varnish 150kB 190 10.3 2.610655 0.078309 42.07202 2.336914 2.647701 1885 Varnish 150kB 200 11.3 2.641917 0.152807 42.07202 2.336914 2.645781 1988 Varnish 150kB 210 12.5 2.630389 0.142765 42.07202 2.336914 2.645573 2101 Varnish 150kB 220 9.3 2.627615 0.108685 42.07202 2.336914 2.644721 2226 Varnish 150kB 230 10.3 2.636164 0.174368 42.07202 2.336914 2.644035 2319 Varnish 150kB 240 9.5 2.614975 0.097783 42.07202 2.336914 2.6437 2422 Varnish 150kB 250 10.6 2.608758 0.068828 42.07202 2.336914 2.642616 2517 Varnish 150kB 260 11.2 2.601584 0.050287 42.07202 2.336914 2.641248 2623 Varnish 150kB 270 9.6 2.636444 0.168292 42.07202 2.336914 2.639623 2735 Varnish 150kB 280 11 2.608738 0.062433 42.07202 2.336914 2.639516 2831 Varnish 150kB 290 11.4 2.622944 0.131859 42.07202 2.336914 2.638364 2941 Varnish 150kB 300 11 2.651281 0.29716 42.07202 2.336914 2.637789 3055 Varnish 150kB 310 9.8 2.63771 0.183581 42.07202 2.336914 2.638258 3165 Varnish 150kB 320 9.5 2.630428 0.106001 42.07202 2.336914 2.638241 3263 Varnish 150kB 330 9.1 2.646267 0.168905 42.07202 2.336914 2.63802 3358 Varnish 150kB 340 8.9 2.607397 0.080787 42.07202 2.336914 2.638238 3449 Varnish 150kB 350 9 2.636404 0.166873 42.07202 2.336914 2.637462 3538 Varnish 150kB 360 8.6 2.643447 0.178529 42.07202 2.336914 2.637436 3628 Varnish 150kB 370 10.1 2.678694 0.264302 42.07202 2.336914 2.637575 3714 Varnish 150kB 380 11.3 2.614543 0.093283 42.07202 2.336914 2.638664 3815 Varnish 150kB 390 9.4 2.609152 0.062777 42.07202 2.336914 2.63797 3928 Varnish 150kB

xxxv

400 10.3 2.608282 0.074977 42.07202 2.336914 2.637296 4022 Varnish 150kB 410 11.1 2.639081 0.175385 42.07202 2.336914 2.636572 4125 Varnish 150kB 420 9.1 2.635579 0.141504 42.07202 2.336914 2.636638 4236 Varnish 150kB 430 9.5 2.637575 0.156791 42.07202 2.336914 2.636615 4327 Varnish 150kB 440 8.6 2.623189 0.112618 42.07202 2.336914 2.636636 4422 Varnish 150kB 450 11 2.60706 0.050041 42.07202 2.336914 2.636379 4508 Varnish 150kB 460 10.2 2.630967 0.154112 42.07202 2.336914 2.635681 4618 Varnish 150kB 470 9.6 2.615786 0.113886 42.07202 2.336914 2.635579 4720 Varnish 150kB 480 9.4 2.634696 0.128706 42.07202 2.336914 2.635185 4816 Varnish 150kB 490 8.7 2.623995 0.145733 42.07202 2.336914 2.635175 4910 Varnish 150kB 500 10.5 2.621775 0.078007 42.07202 2.336914 2.634981 4997 Varnish 150kB 510 10.5 2.628713 0.12566 42.07202 2.336914 2.634709 5102 Varnish 150kB 520 10.8 2.646518 0.18264 42.07202 2.336914 2.634588 5207 Varnish 150kB 530 11.1 2.629502 0.136447 42.07202 2.336914 2.63483 5315 Varnish 150kB 540 11.7 2.630651 0.109276 42.07202 2.336914 2.634721 5426 Varnish 150kB 550 11.1 2.616849 0.100523 42.07202 2.336914 2.634635 5543 Varnish 150kB 560 7.5 2.607542 0.078765 42.07202 2.336914 2.634286 5654 Varnish 150kB 570 8 2.60332 0.058633 42.07202 2.336914 2.633936 5729 Varnish 150kB 580 7.2 2.603431 0.071236 42.07202 2.336914 2.633514 5809 Varnish 150kB 590 6.9 2.60888 0.05614 42.07202 2.336914 2.633146 5881 Varnish 150kB 600 0.2 2.664063 0.062012 42.07202 2.336914 2.632865 5950 Varnish 150kB

0 3.7 3.969806 4.26716 29.56714 3.084961 0 0 Varnish 200kB 10 10.5 3.338965 0.165457 29.56714 3.084961 3.969806 37 Varnish 200kB 20 10.7 3.32144 0.101877 29.56714 3.084961 3.503339 142 Varnish 200kB 30 9 3.362033 0.277748 29.56714 3.084961 3.425173 249 Varnish 200kB 40 10.5 3.359914 0.200309 29.56714 3.078125 3.408411 339 Varnish 200kB 50 8.6 3.298263 0.070066 29.56714 3.078125 3.396942 444 Varnish 200kB 60 9.7 3.321644 0.163418 29.56714 3.025879 3.38093 530 Varnish 200kB 70 10.9 3.365107 0.277256 29.56714 3.025879 3.371758 627 Varnish 200kB 80 9.9 3.315879 0.114271 29.56714 3.025879 3.370773 736 Varnish 200kB 90 9.3 3.344947 0.191371 29.56714 3.025879 3.364265 835 Varnish 200kB

100 9.4 3.328265 0.151234 29.56714 3.025879 3.362329 928 Varnish 200kB 110 10.4 3.348379 0.18083 29.56714 3.025879 3.359196 1022 Varnish 200kB 120 11.3 3.355823 0.223428 29.56714 3.025879 3.358197 1126 Varnish 200kB 130 11.1 3.312245 0.0633 29.56714 3.025879 3.35798 1239 Varnish 200kB 140 10.2 3.329379 0.124175 29.56714 3.025879 3.35422 1350 Varnish 200kB 150 9.2 3.308201 0.07722 29.56714 3.025879 3.352475 1452 Varnish 200kB 160 10.9 3.323645 0.081583 29.56714 3.025879 3.349837 1544 Varnish 200kB 170 10.2 3.367695 0.257621 29.56714 3.025879 3.34811 1653 Varnish 200kB 180 10.8 3.329357 0.138544 29.56714 3.025879 3.349248 1755 Varnish 200kB 190 9 3.343761 0.241947 29.56714 3.025879 3.348095 1863 Varnish 200kB 200 9.2 3.34548 0.189252 29.56714 3.025879 3.347895 1953 Varnish 200kB 210 8 3.313431 0.121682 29.56714 3.025879 3.347786 2045 Varnish 200kB 220 8 3.3573 0.204664 29.56714 3.025879 3.346493 2125 Varnish 200kB 230 8.4 3.366795 0.301674 29.56714 3.025879 3.346885 2205 Varnish 200kB 240 10.6 3.311602 0.075259 29.56714 3.025879 3.347616 2289 Varnish 200kB 250 9.3 3.320901 0.093725 29.56714 3.025879 3.346022 2395 Varnish 200kB 260 10.7 3.359464 0.191152 29.56714 3.025879 3.345083 2488 Varnish 200kB 270 10.2 3.333515 0.118856 29.56714 3.025879 3.345676 2595 Varnish 200kB 280 12.6 3.371749 0.304095 29.56714 3.025879 3.345216 2697 Varnish 200kB 290 9.8 3.335434 0.172326 29.56714 3.025879 3.3464 2823 Varnish 200kB 300 8.8 3.339813 0.3351 29.56714 3.025879 3.346032 2921 Varnish 200kB 310 9.4 3.337397 0.164194 29.56714 3.025879 3.34585 3009 Varnish 200kB 320 10.8 3.336062 0.146186 29.56714 3.025879 3.345594 3103 Varnish 200kB 330 10.1 3.347666 0.235409 29.56714 3.025879 3.345274 3211 Varnish 200kB 340 9.7 3.335142 0.138931 29.56714 3.025879 3.345347 3312 Varnish 200kB 350 9.1 3.315601 0.082703 29.56714 3.025879 3.345056 3409 Varnish 200kB 360 11.1 3.377637 0.24281 29.56714 3.025879 3.34429 3500 Varnish 200kB 370 9.6 3.331421 0.109834 29.56714 3.025879 3.345315 3611 Varnish 200kB 380 11.4 3.373291 0.241128 29.56714 3.025879 3.344956 3707 Varnish 200kB 390 9.6 3.319071 0.080199 29.56714 3.025879 3.345801 3821 Varnish 200kB 400 10.6 3.326867 0.102167 29.56714 3.025879 3.345146 3917 Varnish 200kB 410 11 3.324552 0.088343 29.56714 3.025879 3.344664 4023 Varnish 200kB 420 12.1 3.359712 0.194439 29.56714 3.025879 3.344129 4133 Varnish 200kB 430 9.4 3.351074 0.201735 29.56714 3.025879 3.344572 4254 Varnish 200kB 440 10.7 3.362213 0.211759 29.56714 3.025879 3.344713 4348 Varnish 200kB 450 9.5 3.370613 0.246177 29.56714 3.025879 3.345133 4455 Varnish 200kB 460 10.8 3.322173 0.12557 29.56714 3.025879 3.345665 4550 Varnish 200kB 470 12 3.340127 0.138858 29.56714 3.025879 3.34512 4658 Varnish 200kB 480 9.5 3.411837 0.281781 29.56714 3.025879 3.344995 4778 Varnish 200kB 490 9.9 3.346201 0.173825 29.56714 3.025879 3.346298 4873 Varnish 200kB

xxxvi

500 10.2 3.392679 0.289645 29.56714 3.025879 3.346296 4972 Varnish 200kB 510 10.6 3.366384 0.223983 29.56714 3.025879 3.347229 5074 Varnish 200kB 520 9.7 3.349423 0.226644 29.56714 3.025879 3.347621 5180 Varnish 200kB 530 9.5 3.316185 0.095841 29.56714 3.025879 3.347654 5277 Varnish 200kB 540 9 3.322542 0.11251 29.56714 3.025879 3.347097 5372 Varnish 200kB 550 12 3.336511 0.134715 29.56714 3.025879 3.346693 5462 Varnish 200kB 560 8.8 3.35348 0.21788 29.56714 3.025879 3.346474 5582 Varnish 200kB 570 8.1 3.299536 0.08841 29.56714 3.025879 3.346582 5670 Varnish 200kB 580 6.3 3.298754 0.140232 29.56714 3.025879 3.34592 5751 Varnish 200kB 590 7.7 3.323581 0.132149 29.56714 3.025879 3.345409 5814 Varnish 200kB 600 3.6 3.357361 0.544596 29.56714 3.025879 3.345123 5891 Varnish 200kB

0 5.1 7.83397 3.931832 35.11401 6.679932 0 0 Varnish 500kB 10 9.1 7.024385 0.438678 35.11401 6.679932 7.83397 51 Varnish 500kB 20 10.2 7.139388 0.550822 35.11401 6.679932 7.315151 142 Varnish 500kB 30 9.4 7.116221 0.605957 35.11401 6.679932 7.241676 244 Varnish 500kB 40 9.8 7.089308 0.626445 35.11401 6.679932 7.206786 338 Varnish 500kB 50 10.4 7.099121 0.486684 35.11401 6.679932 7.180381 436 Varnish 500kB 60 10.4 7.064934 0.499066 35.11401 6.679932 7.164731 540 Varnish 500kB 70 10.4 7.045952 0.449289 35.11401 6.583008 7.148615 644 Varnish 500kB 80 9.2 7.074309 0.605426 35.11401 6.583008 7.134341 748 Varnish 500kB 90 9.7 7.011379 0.360415 35.11401 6.583008 7.127766 840 Varnish 500kB

100 11.3 7.07731 0.610165 35.11401 6.583008 7.115717 937 Varnish 500kB 110 9.9 7.055647 0.493776 35.11401 6.583008 7.111584 1050 Varnish 500kB 120 8.9 7.166611 1.236047 35.11401 6.583008 7.106764 1149 Varnish 500kB 130 11.8 7.084595 0.531618 35.11401 6.583008 7.111067 1238 Varnish 500kB 140 12.4 7.121299 0.713981 35.11401 6.583008 7.108763 1356 Varnish 500kB 150 8.9 7.2804 1.030147 35.11401 6.583008 7.109813 1480 Varnish 500kB 160 9.3 6.936565 0.142346 35.11401 6.583008 7.11949 1569 Varnish 500kB 170 9.5 7.017884 0.320091 35.11401 6.583008 7.109254 1662 Varnish 500kB 180 10.1 7.078282 0.548646 35.11401 6.583008 7.104313 1757 Varnish 500kB 190 8.3 7.087479 0.566679 35.11401 6.583008 7.102898 1858 Varnish 500kB 200 9 7.161564 0.793398 35.11401 6.583008 7.102239 1941 Varnish 500kB 210 9.6 6.923818 0.115849 35.11401 6.583008 7.104868 2031 Varnish 500kB 220 9.5 7.138094 0.646827 35.11401 6.583008 7.096696 2127 Varnish 500kB 230 11.4 7.116314 0.470838 35.11401 6.583008 7.098466 2222 Varnish 500kB 240 10.2 7.071177 0.551465 35.11401 6.583008 7.099337 2336 Varnish 500kB 250 9.6 7.054375 0.531324 35.11401 6.583008 7.098159 2438 Varnish 500kB 260 8.4 7.026053 0.39945 35.11401 6.583008 7.0965 2534 Varnish 500kB 270 10.8 7.051267 0.532364 35.11401 6.583008 7.09424 2618 Varnish 500kB 280 8.4 7.184989 0.873737 35.11401 6.583008 7.092538 2726 Varnish 500kB 290 9.7 7.049045 0.497512 35.11401 6.583008 7.095301 2810 Varnish 500kB 300 11.5 7.066933 0.721003 35.11401 6.583008 7.093758 2907 Varnish 500kB 310 9.6 6.91448 0.079313 35.11401 6.583008 7.092737 3022 Varnish 500kB 320 11.9 7.183446 0.702956 35.11401 6.583008 7.087249 3118 Varnish 500kB 330 10.7 7.072152 0.592315 35.11401 6.583008 7.090785 3237 Varnish 500kB 340 10.5 7.366676 1.016918 35.11401 6.583008 7.090189 3344 Varnish 500kB 350 10.3 7.22528 0.771579 35.11401 6.583008 7.098606 3449 Varnish 500kB 360 10.7 6.995252 0.357419 35.11401 6.583008 7.102279 3552 Varnish 500kB 370 10.3 7.100351 0.545179 35.11401 6.583008 7.09915 3659 Varnish 500kB 380 10.4 7.24719 0.733738 35.11401 6.583008 7.099182 3762 Varnish 500kB 390 11 7.246134 1.199898 35.11401 6.583008 7.103164 3866 Varnish 500kB 400 8.3 7.014034 0.525949 35.11401 6.583008 7.107119 3976 Varnish 500kB 410 9.5 7.083391 0.547499 35.11401 6.583008 7.105216 4059 Varnish 500kB 420 9 7.06935 0.663062 35.11401 6.583008 7.104717 4154 Varnish 500kB 430 11.3 7.091371 0.604175 35.11401 6.583008 7.103967 4244 Varnish 500kB 440 9.8 7.119502 0.613335 35.11401 6.583008 7.10364 4357 Varnish 500kB 450 11.9 7.093022 0.56229 35.11401 6.583008 7.103989 4455 Varnish 500kB 460 9.2 6.981525 0.324113 35.11401 6.583008 7.103704 4574 Varnish 500kB 470 11.3 7.125905 0.614371 35.11401 6.583008 7.101295 4666 Varnish 500kB 480 10.1 7.009396 0.345314 35.11401 6.583008 7.101877 4779 Varnish 500kB 490 11.9 7.173305 0.820058 35.11401 6.583008 7.099963 4880 Varnish 500kB 500 11.8 7.221243 0.949817 35.11401 6.583008 7.101708 4999 Varnish 500kB 510 9.3 7.058557 0.593186 35.11401 6.583008 7.104465 5117 Varnish 500kB 520 10.8 7.070597 0.602575 35.11401 6.583008 7.103646 5210 Varnish 500kB 530 9.1 7.04944 0.531257 35.11401 6.583008 7.102974 5318 Varnish 500kB 540 9 7.011041 0.43352 35.11401 6.583008 7.102074 5409 Varnish 500kB 550 10.8 7.088838 0.672693 35.11401 6.583008 7.100584 5499 Varnish 500kB 560 9.7 6.993557 0.333466 35.11401 6.583008 7.100358 5607 Varnish 500kB 570 9.4 7.082369 0.565455 35.11401 6.583008 7.098541 5704 Varnish 500kB 580 10.3 7.104812 0.614054 35.11401 6.583008 7.098279 5798 Varnish 500kB 590 8.1 7.171984 1.094202 35.11401 6.583008 7.098393 5901 Varnish 500kB

xxxvii

600 1.4 7.296055 1.654514 35.11401 6.583008 7.09939 5982 Varnish 500kB 0 5 14.48771 6.195604 53.146 12.61182 0 0 Varnish 1000kB

10 8.9 13.59774 1.785958 53.146 12.57788 14.48771 50 Varnish 1000kB 20 9.4 13.21656 1.22964 53.146 12.57788 13.91787 139 Varnish 1000kB 30 8.4 13.06562 0.948728 53.146 12.57788 13.63494 233 Varnish 1000kB 40 9.2 13.48804 1.463018 53.146 12.57788 13.48408 317 Varnish 1000kB 50 10.8 13.51234 1.346105 53.146 12.57788 13.48497 409 Varnish 1000kB 60 9.2 13.81438 2.725098 53.146 12.57788 13.49069 517 Varnish 1000kB 70 10.2 13.34469 1.253261 53.146 12.57788 13.53959 609 Varnish 1000kB 80 10.7 13.80089 2.63776 53.146 12.57788 13.51163 711 Varnish 1000kB 90 9.1 13.19981 1.301233 53.146 12.50708 13.54946 818 Varnish 1000kB

100 9.9 13.2916 1.782495 53.146 12.50708 13.51446 909 Varnish 1000kB 110 9.9 13.59208 1.582259 53.146 12.50708 13.49257 1008 Varnish 1000kB 120 11.6 13.23056 1.053766 53.146 12.50708 13.50147 1107 Varnish 1000kB 130 10.7 13.19503 1.2546 53.146 12.50708 13.47578 1223 Varnish 1000kB 140 9.6 13.85503 2.423328 53.146 12.50708 13.45319 1330 Varnish 1000kB 150 9.8 13.1376 0.990925 53.146 12.50708 13.48024 1426 Varnish 1000kB 160 11 13.45061 1.584845 53.146 12.50708 13.45821 1524 Varnish 1000kB 170 11 13.28848 1.216258 53.146 12.50708 13.4577 1634 Varnish 1000kB 180 8.7 13.44258 1.464504 53.146 12.50708 13.44702 1744 Varnish 1000kB 190 12.9 13.99574 2.587341 53.146 12.50708 13.44681 1831 Varnish 1000kB 200 10.3 14.18795 2.763469 53.146 12.50708 13.48294 1960 Varnish 1000kB 210 10.5 13.83127 2.118612 53.146 12.50708 13.51814 2063 Varnish 1000kB 220 9.9 13.38566 1.513484 53.146 12.50708 13.53331 2168 Varnish 1000kB 230 11.4 13.80213 2.227246 53.146 12.50708 13.52686 2267 Varnish 1000kB 240 9 13.32114 1.266706 53.146 12.50708 13.54004 2381 Varnish 1000kB 250 10.5 13.60227 1.846072 53.146 12.50708 13.53206 2471 Varnish 1000kB 260 11.2 13.69407 2.355002 53.146 12.50708 13.53493 2576 Varnish 1000kB 270 9 13.23431 1.24006 53.146 12.50708 13.54156 2688 Varnish 1000kB 280 11.7 13.6903 1.774348 53.146 12.50708 13.5316 2778 Varnish 1000kB 290 11.5 13.37576 1.453334 53.146 12.50708 13.53802 2895 Varnish 1000kB 300 8.7 13.70064 2.344848 53.146 12.50708 13.53182 3010 Varnish 1000kB 310 10.2 13.44976 1.443849 53.146 12.50708 13.53656 3097 Varnish 1000kB 320 9 13.34306 1.757877 53.146 12.50708 13.53379 3199 Varnish 1000kB 330 9.6 13.48708 1.456749 53.146 12.50708 13.52857 3289 Varnish 1000kB 340 11 14.0362 2.50985 53.146 12.50708 13.5274 3385 Varnish 1000kB 350 10.8 13.5514 1.749818 53.146 12.50708 13.54341 3495 Varnish 1000kB 360 9.6 13.36125 1.335696 53.146 12.50708 13.54365 3603 Varnish 1000kB 370 9.1 13.26879 1.469319 53.146 12.50708 13.53892 3699 Varnish 1000kB 380 10.5 13.42352 1.356782 53.146 12.50708 13.53243 3790 Varnish 1000kB 390 10.4 14.8588 5.068483 53.146 12.50708 13.52949 3895 Varnish 1000kB 400 10.4 13.91046 1.999212 53.146 12.50708 13.56407 3999 Varnish 1000kB 410 9.1 13.65759 2.143234 53.146 12.50708 13.57285 4103 Varnish 1000kB 420 10.7 13.25201 1.324344 53.146 12.50708 13.57468 4194 Varnish 1000kB 430 10.7 13.36259 1.661468 53.146 12.50708 13.56666 4301 Varnish 1000kB 440 10.5 13.39386 1.423948 53.146 12.50708 13.5617 4408 Varnish 1000kB 450 10.4 13.28137 1.235718 53.146 12.50708 13.5578 4513 Varnish 1000kB 460 9.2 13.34447 1.450471 53.146 12.50708 13.55157 4617 Varnish 1000kB 470 10.1 13.30387 1.799708 53.146 12.50708 13.54752 4709 Varnish 1000kB 480 9.1 14.18531 3.728001 53.146 12.50708 13.54241 4810 Varnish 1000kB 490 10.3 13.56046 1.991127 53.146 12.50708 13.55435 4901 Varnish 1000kB 500 9.9 13.42978 1.50626 53.146 12.50708 13.55447 5004 Varnish 1000kB 510 10.9 13.4123 1.453173 53.146 12.50708 13.55205 5103 Varnish 1000kB 520 8.9 13.29074 1.34569 53.146 12.47485 13.54913 5212 Varnish 1000kB 530 9.5 13.52003 1.75758 53.146 12.47485 13.54479 5301 Varnish 1000kB 540 9.3 13.30352 1.338818 53.146 12.47485 13.54436 5396 Varnish 1000kB 550 11 13.68125 1.963291 53.146 12.47485 13.54028 5489 Varnish 1000kB 560 9 13.5028 2.516686 53.146 12.47485 13.54304 5599 Varnish 1000kB 570 9.3 13.68592 1.951471 53.146 12.47485 13.54241 5689 Varnish 1000kB 580 7.2 13.07768 1.018459 53.146 12.47485 13.54472 5782 Varnish 1000kB 590 5.8 13.05872 0.980514 53.146 12.47485 13.53897 5854 Varnish 1000kB 600 4.1 13.33411 2.86229 53.146 12.47485 13.53426 5912 Varnish 1000kB

0 5 21.05277 6.420362 61.68604 18.59595 0 0 Varnish 1500kB 10 9.3 19.60781 1.988225 61.68604 18.59595 21.05277 50 Varnish 1500kB 20 9.5 20.0768 2.8907 61.68604 18.59595 20.11304 143 Varnish 1500kB 30 10.8 20.39839 2.825073 61.68604 18.59595 20.09857 238 Varnish 1500kB 40 10.3 21.68229 3.798198 61.68604 18.59595 20.19216 346 Varnish 1500kB 50 9.8 20.08099 2.842177 61.68604 18.59595 20.53399 449 Varnish 1500kB 60 9.1 20.35888 2.635314 61.68604 18.59595 20.45283 547 Varnish 1500kB 70 9.1 20.66137 2.803038 61.68604 18.59595 20.43943 638 Varnish 1500kB 80 9.5 21.03075 3.644293 61.68604 18.59595 20.46714 729 Varnish 1500kB

xxxviii

90 8.6 20.53331 3.46005 61.68604 18.59595 20.53212 824 Varnish 1500kB 100 10.3 20.41164 3.362295 61.68604 18.59595 20.53223 910 Varnish 1500kB 110 9.1 20.62846 3.408131 61.68604 18.59595 20.51997 1013 Varnish 1500kB 120 9.1 20.92251 4.085769 61.68604 18.59595 20.52891 1104 Varnish 1500kB 130 10.4 19.63513 1.702597 61.68604 18.59595 20.55888 1195 Varnish 1500kB 140 9.2 20.67171 2.958053 61.68604 18.59595 20.48493 1299 Varnish 1500kB 150 11.1 22.55106 7.989784 61.68604 18.59595 20.49728 1391 Varnish 1500kB 160 10.1 19.84233 2.159205 61.68604 18.59595 20.64906 1502 Varnish 1500kB 170 10.4 19.95081 2.634298 61.68604 18.59595 20.59823 1603 Varnish 1500kB 180 9.7 19.81067 2.240908 61.68604 18.59595 20.55878 1707 Varnish 1500kB 190 10.9 20.50107 3.643894 61.68604 18.59204 20.51856 1804 Varnish 1500kB 200 12.8 20.80006 3.531854 61.68604 18.58398 20.51756 1913 Varnish 1500kB 210 11.2 21.15728 3.688985 61.68604 18.58398 20.53528 2041 Varnish 1500kB 220 9.4 20.3266 3.42176 61.68604 18.58398 20.56764 2153 Varnish 1500kB 230 9.8 20.40604 2.694632 61.68604 18.58398 20.55755 2247 Varnish 1500kB 240 9.6 19.70068 1.775996 61.68604 18.58398 20.55122 2345 Varnish 1500kB 250 10.5 20.05782 2.370683 61.68604 18.58398 20.51777 2441 Varnish 1500kB 260 10.4 19.94085 2.685333 61.68604 18.58398 20.4988 2546 Varnish 1500kB 270 11.6 20.99711 3.288215 61.68604 18.58398 20.4769 2650 Varnish 1500kB 280 9.8 20.15063 3.080133 61.68604 18.58398 20.49872 2766 Varnish 1500kB 290 10.1 20.81483 4.206563 61.68604 18.58398 20.48681 2864 Varnish 1500kB 300 9.4 20.81228 3.169092 61.68604 18.58398 20.49798 2965 Varnish 1500kB 310 9.4 19.61867 1.869117 61.68604 18.58398 20.50764 3059 Varnish 1500kB 320 9.7 19.85722 1.969128 61.68604 18.58398 20.48114 3153 Varnish 1500kB 330 8.9 20.12868 2.22804 61.68604 18.58398 20.46252 3250 Varnish 1500kB 340 9.2 21.41011 4.441049 61.68604 18.58398 20.45362 3339 Varnish 1500kB 350 11 20.37299 2.285522 61.68604 18.58398 20.47927 3431 Varnish 1500kB 360 10.1 20.12877 2.071128 61.68604 18.58398 20.47596 3541 Varnish 1500kB 370 9.3 20.07975 2.459863 61.68604 18.58398 20.46634 3642 Varnish 1500kB 380 11.8 21.31444 3.973738 61.68604 18.58398 20.45671 3735 Varnish 1500kB 390 10.5 20.51794 2.633537 61.68604 18.58398 20.48298 3853 Varnish 1500kB 400 7.4 19.93522 2.255104 61.68604 18.58398 20.48391 3958 Varnish 1500kB 410 10.4 20.99386 3.339205 61.68604 18.58398 20.47384 4032 Varnish 1500kB 420 7.8 20.43365 3.197582 61.68604 18.58398 20.48691 4136 Varnish 1500kB 430 9.1 19.96936 2.566173 61.68604 18.58398 20.48593 4214 Varnish 1500kB 440 9 20.57173 2.845723 61.68604 18.58398 20.47501 4305 Varnish 1500kB 450 11.6 20.98843 3.3016 61.68604 18.58398 20.47699 4395 Varnish 1500kB 460 8.5 20.24326 3.283865 61.68604 18.58398 20.49014 4511 Varnish 1500kB 470 10.6 20.75536 3.422662 61.68604 18.58398 20.48557 4596 Varnish 1500kB 480 10.2 20.85724 3.650076 61.68604 18.58398 20.49166 4702 Varnish 1500kB 490 11.2 20.41433 2.753026 61.68604 18.54199 20.49942 4804 Varnish 1500kB 500 9.9 19.89684 2.179451 61.68604 18.54199 20.49748 4916 Varnish 1500kB 510 9.3 20.00213 2.42782 61.68604 18.54199 20.48562 5015 Varnish 1500kB 520 10.5 21.27874 4.323393 61.68604 18.54199 20.47682 5108 Varnish 1500kB 530 11.3 20.20737 2.191096 61.68604 18.54199 20.49297 5213 Varnish 1500kB 540 8.7 19.85456 1.964521 61.68604 18.54199 20.48691 5326 Varnish 1500kB 550 10.6 21.22679 3.867999 61.68604 18.54199 20.47675 5413 Varnish 1500kB 560 12.4 20.34907 2.344406 61.68604 18.54199 20.49115 5519 Varnish 1500kB 570 9.7 20.86386 4.117107 61.68604 18.54199 20.48803 5643 Varnish 1500kB 580 11.3 20.1668 2.904534 61.68604 18.54199 20.49438 5740 Varnish 1500kB 590 7.2 19.97074 2.173673 61.68604 18.54199 20.48806 5853 Varnish 1500kB 600 4.5 19.61493 2.784847 61.68604 18.54199 20.48177 5925 Varnish 1500kB

0 5.6 1.343161 4.680823 36.05298 0.611084 0 0 Nginx 10kB 10 12.1 0.678572 0.066838 36.05298 0.611084 1.343161 56 Nginx 10kB 20 9.4 0.697933 0.080824 36.05298 0.611084 0.888837 177 Nginx 10kB 30 11.9 0.6953 0.077303 36.05298 0.5979 0.82262 271 Nginx 10kB 40 10.2 0.694424 0.07314 36.05298 0.59082 0.783771 390 Nginx 10kB 50 8.8 0.678156 0.056414 36.05298 0.59082 0.765248 492 Nginx 10kB 60 9.5 0.693126 0.072336 36.05298 0.59082 0.752034 580 Nginx 10kB 70 9.1 0.688855 0.069117 36.05298 0.59082 0.743743 675 Nginx 10kB 80 9.2 0.66743 0.044847 36.05298 0.582031 0.737222 766 Nginx 10kB 90 9.6 0.711871 0.080196 36.05298 0.582031 0.729739 858 Nginx 10kB

100 11.1 0.702239 0.092425 36.05298 0.582031 0.727941 954 Nginx 10kB 110 9.6 0.682475 0.058629 36.05298 0.582031 0.725262 1065 Nginx 10kB 120 9.5 0.70221 0.07095 36.05298 0.582031 0.721724 1161 Nginx 10kB 130 10.2 0.701933 0.079592 36.05298 0.582031 0.720248 1256 Nginx 10kB 140 10.9 0.701203 0.077037 36.05298 0.582031 0.718872 1358 Nginx 10kB 150 9.3 0.706672 0.089943 36.05298 0.582031 0.71756 1467 Nginx 10kB 160 8.1 0.68652 0.066245 36.05298 0.582031 0.71691 1560 Nginx 10kB 170 12.1 0.705005 0.082637 36.05298 0.582031 0.71541 1641 Nginx 10kB 180 10.5 0.724019 0.094576 36.05298 0.582031 0.714696 1762 Nginx 10kB

xxxix

190 9.3 0.698345 0.075165 36.05298 0.582031 0.71522 1867 Nginx 10kB 200 10.7 0.685586 0.06439 36.05298 0.582031 0.714419 1960 Nginx 10kB 210 8.3 0.700542 0.075614 36.05298 0.582031 0.712927 2067 Nginx 10kB 220 8.1 0.699155 0.075268 36.05298 0.582031 0.712449 2150 Nginx 10kB 230 10.2 0.728923 0.094626 36.05298 0.582031 0.711966 2231 Nginx 10kB 240 11.8 0.702287 0.079934 36.05298 0.582031 0.712707 2333 Nginx 10kB 250 9.3 0.710625 0.074356 36.05298 0.582031 0.712206 2451 Nginx 10kB 260 10.4 0.724969 0.103498 36.05298 0.582031 0.712148 2544 Nginx 10kB 270 9.5 0.704944 0.078308 36.05298 0.582031 0.712652 2648 Nginx 10kB 280 9.4 0.718207 0.075573 36.05298 0.582031 0.712385 2743 Nginx 10kB 290 10.5 0.691134 0.066946 36.05298 0.582031 0.712578 2837 Nginx 10kB 300 9.9 0.958812 1.806527 36.05298 0.582031 0.711812 2942 Nginx 10kB 310 10 0.70936 0.078173 36.05298 0.582031 0.719853 3041 Nginx 10kB 320 9.3 0.709066 0.075122 36.05298 0.582031 0.719519 3141 Nginx 10kB 330 11 0.682821 0.06584 36.05298 0.582031 0.719219 3234 Nginx 10kB 340 8.6 0.685675 0.059429 36.05298 0.582031 0.718021 3344 Nginx 10kB 350 9.6 0.694016 0.075244 36.05298 0.582031 0.71721 3430 Nginx 10kB 360 9.7 0.699214 0.07319 36.05298 0.582031 0.716579 3526 Nginx 10kB 370 11.6 0.71618 0.093952 36.05298 0.577148 0.716114 3623 Nginx 10kB 380 11.2 0.700071 0.075053 36.05298 0.577148 0.716116 3739 Nginx 10kB 390 9.5 0.674859 0.053052 36.05298 0.577148 0.715649 3851 Nginx 10kB 400 10.8 0.704689 0.083927 36.05298 0.577148 0.714667 3946 Nginx 10kB 410 10.4 0.706088 0.08099 36.05298 0.577148 0.714401 4054 Nginx 10kB 420 9.6 0.708394 0.07363 36.05298 0.577148 0.714194 4158 Nginx 10kB 430 11 0.69136 0.072552 36.05298 0.577148 0.714063 4254 Nginx 10kB 440 11.8 0.700928 0.08239 36.05298 0.577148 0.71349 4364 Nginx 10kB 450 9.6 0.693283 0.06862 36.05298 0.577148 0.71316 4482 Nginx 10kB 460 12 0.693233 0.074428 36.05298 0.577148 0.712743 4578 Nginx 10kB 470 9.1 0.698631 0.077662 36.05298 0.577148 0.712245 4698 Nginx 10kB 480 10.3 0.700193 0.075026 36.05298 0.577148 0.711986 4789 Nginx 10kB 490 10 0.719033 0.080893 36.05298 0.577148 0.711738 4892 Nginx 10kB 500 10 0.702109 0.094396 36.05298 0.577148 0.711884 4992 Nginx 10kB 510 12.3 0.729512 0.090489 36.05298 0.577148 0.711692 5092 Nginx 10kB 520 9.4 0.69666 0.078311 36.05298 0.577148 0.712112 5215 Nginx 10kB 530 10.4 0.692636 0.070368 36.05298 0.577148 0.711838 5309 Nginx 10kB 540 10.2 0.700992 0.074388 36.05298 0.577148 0.71147 5413 Nginx 10kB 550 8.8 0.704096 0.07262 36.05298 0.577148 0.711276 5515 Nginx 10kB 560 8.4 0.697702 0.075349 36.05298 0.577148 0.711163 5603 Nginx 10kB 570 9.2 0.710858 0.080204 36.05298 0.577148 0.710964 5687 Nginx 10kB 580 9.8 0.701934 0.072475 36.05298 0.577148 0.710962 5779 Nginx 10kB 590 6.7 0.704517 0.080268 36.05298 0.577148 0.710812 5877 Nginx 10kB 600 5 1.140942 2.894897 36.05298 0.577148 0.710741 5944 Nginx 10kB

0 3.8 2.068096 4.29507 28.1521 1.076172 0 0 Nginx 50kB 10 7.6 1.35799 0.123208 28.1521 1.076172 2.068096 38 Nginx 50kB 20 8.6 1.356587 0.111701 28.1521 1.038818 1.594692 114 Nginx 50kB 30 10.5 1.364483 0.11613 28.1521 1.038086 1.492307 200 Nginx 50kB 40 9.9 1.369464 0.117845 28.1521 1.038086 1.448302 305 Nginx 50kB 50 11.2 1.357043 0.111954 28.1521 1.038086 1.428983 404 Nginx 50kB 60 9.9 1.351836 0.11036 28.1521 1.038086 1.413368 516 Nginx 50kB 70 9.8 1.379629 0.134642 28.1521 1.038086 1.403463 615 Nginx 50kB 80 10.1 1.39069 0.156452 28.1521 1.038086 1.400187 713 Nginx 50kB 90 8.9 1.338047 0.104331 28.1521 1.038086 1.399009 814 Nginx 50kB

100 10.1 1.369938 0.112448 28.1521 1.038086 1.393 903 Nginx 50kB 110 11.5 1.351267 0.104646 28.1521 1.038086 1.39068 1004 Nginx 50kB 120 9.6 1.362193 0.114409 28.1521 1.038086 1.38663 1119 Nginx 50kB 130 9.1 1.363091 0.125144 28.1521 1.038086 1.384699 1215 Nginx 50kB 140 10.2 1.366986 0.112559 28.1521 1.038086 1.383193 1306 Nginx 50kB 150 9.4 1.356858 0.104494 28.1521 1.038086 1.382019 1408 Nginx 50kB 160 8.7 1.363974 0.106455 28.1521 1.038086 1.380445 1502 Nginx 50kB 170 10.4 1.358549 0.116668 28.1521 1.038086 1.379543 1589 Nginx 50kB 180 11.2 1.367033 0.11348 28.1521 1.038086 1.378253 1693 Nginx 50kB 190 11.1 1.370225 0.114254 28.1521 1.038086 1.377557 1805 Nginx 50kB 200 10.4 1.366284 0.102966 28.1521 1.038086 1.377132 1916 Nginx 50kB 210 10.5 1.343322 0.112734 28.1521 1.038086 1.376574 2020 Nginx 50kB 220 9.6 1.353279 0.113639 28.1521 1.038086 1.374931 2125 Nginx 50kB 230 10.1 1.352377 0.1074 28.1521 1.038086 1.373995 2221 Nginx 50kB 240 9.9 1.350505 0.109855 28.1521 1.038086 1.373054 2322 Nginx 50kB 250 10.2 1.384093 0.108472 28.1521 1.038086 1.372132 2421 Nginx 50kB 260 10.5 1.362098 0.107518 28.1521 1.038086 1.372616 2523 Nginx 50kB 270 9.6 1.35273 0.115215 28.1521 1.038086 1.372196 2628 Nginx 50kB 280 10.1 1.36469 0.109784 28.1521 1.038086 1.37151 2724 Nginx 50kB

xl

290 8.8 1.335077 0.110291 28.1521 1.038086 1.371266 2825 Nginx 50kB 300 11.4 1.682722 2.514895 28.1521 1.038086 1.370173 2913 Nginx 50kB 310 9.8 1.347873 0.104397 28.1521 1.038086 1.381944 3027 Nginx 50kB 320 9.9 1.360692 0.112638 28.1521 1.038086 1.380875 3125 Nginx 50kB 330 11.4 1.370869 0.112673 28.1521 1.038086 1.380255 3224 Nginx 50kB 340 9.5 1.382445 0.109013 28.1521 1.038086 1.379935 3338 Nginx 50kB 350 11 1.368712 0.126027 28.1521 1 1.380004 3433 Nginx 50kB 360 10.4 1.374869 0.125501 28.1521 1 1.379654 3543 Nginx 50kB 370 9.9 1.364389 0.107412 28.1521 1 1.379517 3647 Nginx 50kB 380 10.8 1.352155 0.115268 28.1521 1 1.379117 3746 Nginx 50kB 390 10.8 1.361672 0.12532 28.1521 1 1.378362 3854 Nginx 50kB 400 11 1.343892 0.110334 28.1521 1 1.377907 3962 Nginx 50kB 410 8.4 1.363749 0.152276 28.1521 1 1.376988 4072 Nginx 50kB 420 9 1.356 0.116564 28.1521 1 1.37672 4156 Nginx 50kB 430 10 1.402778 0.158926 28.1521 1 1.376281 4246 Nginx 50kB 440 11 1.384715 0.103427 28.1521 1 1.376891 4346 Nginx 50kB 450 11.6 1.377923 0.137023 28.1521 1 1.377084 4456 Nginx 50kB 460 10.5 1.354315 0.108685 28.1521 1 1.377105 4572 Nginx 50kB 470 12.1 1.364573 0.105408 28.1521 1 1.376594 4677 Nginx 50kB 480 10 1.35281 0.10966 28.1521 1 1.376291 4798 Nginx 50kB 490 10.3 1.384834 0.111233 28.1521 1 1.375811 4898 Nginx 50kB 500 11.1 1.346084 0.111392 28.1521 1 1.375997 5001 Nginx 50kB 510 10 1.368892 0.108949 28.1521 1 1.375347 5112 Nginx 50kB 520 8.8 1.341716 0.108963 28.1521 1 1.375224 5212 Nginx 50kB 530 10.4 1.372714 0.112893 28.1521 1 1.374667 5300 Nginx 50kB 540 10.4 1.353222 0.114062 28.1521 1 1.37463 5404 Nginx 50kB 550 9.7 1.401722 0.160713 28.1521 1 1.374225 5508 Nginx 50kB 560 7.9 1.318019 0.11251 28.1521 1 1.374701 5605 Nginx 50kB 570 11.7 1.364504 0.12195 28.1521 1 1.373913 5684 Nginx 50kB 580 9.8 1.357688 0.109118 28.1521 1 1.373724 5801 Nginx 50kB 590 5 1.319839 0.102429 28.1521 1 1.373457 5899 Nginx 50kB 600 0.3 1.269694 0.078737 28.1521 1 1.373007 5949 Nginx 50kB

0 5.3 2.681056 5.067899 39.21997 1.744873 0 0 Nginx 100kB 10 9.6 1.999084 0.122873 39.21997 1.639893 2.681056 53 Nginx 100kB 20 8.5 1.99105 0.114161 39.21997 1.629883 2.241665 149 Nginx 100kB 30 9 1.97423 0.13179 39.21997 1.583008 2.15063 234 Nginx 100kB 40 7 1.990601 0.128199 39.21997 1.583008 2.10163 324 Nginx 100kB 50 11.5 1.988196 0.101606 39.21997 1.583008 2.081904 394 Nginx 100kB 60 10 2.009646 0.145327 39.21997 1.583008 2.060732 509 Nginx 100kB 70 10 2.006702 0.116418 39.21997 1.583008 2.052344 609 Nginx 100kB 80 9.7 1.986356 0.087362 39.21997 1.583008 2.045906 709 Nginx 100kB 90 11.1 1.99135 0.118408 39.21997 1.583008 2.038739 806 Nginx 100kB

100 9.5 1.988985 0.098324 39.21997 1.583008 2.033003 917 Nginx 100kB 110 9.1 1.998262 0.151465 39.21997 1.583008 2.028871 1012 Nginx 100kB 120 10.2 1.977027 0.11086 39.21997 1.583008 2.026345 1103 Nginx 100kB 130 10.5 1.991481 0.116842 39.21997 1.583008 2.022171 1205 Nginx 100kB 140 9 1.972472 0.114682 39.21997 1.583008 2.019711 1310 Nginx 100kB 150 11.2 1.992905 0.099533 39.21997 1.583008 2.016674 1400 Nginx 100kB 160 9.1 1.972914 0.103257 39.21997 1.583008 2.014913 1512 Nginx 100kB 170 11.4 1.991115 0.093632 39.21997 1.583008 2.012529 1603 Nginx 100kB 180 9.1 1.995345 0.122826 39.21997 1.583008 2.011107 1717 Nginx 100kB 190 10.8 2.001655 0.110435 39.21997 1.572998 2.010314 1808 Nginx 100kB 200 9.9 1.988173 0.150982 39.21997 1.572998 2.009826 1916 Nginx 100kB 210 10.4 1.991364 0.104249 39.21997 1.572998 2.008762 2015 Nginx 100kB 220 10.4 2.0075 0.105409 39.21997 1.572998 2.007908 2119 Nginx 100kB 230 8.8 1.971436 0.122239 39.21997 1.572998 2.007889 2223 Nginx 100kB 240 9.7 1.991823 0.127012 39.21997 1.572998 2.006501 2311 Nginx 100kB 250 10.7 2.030255 0.178774 39.21997 1.572998 2.00591 2408 Nginx 100kB 260 10.2 2.005682 0.152155 39.21997 1.571777 2.006945 2515 Nginx 100kB 270 9.8 1.987586 0.089501 39.21997 1.571777 2.006896 2617 Nginx 100kB 280 8.8 1.980982 0.164611 39.21997 1.571777 2.006199 2715 Nginx 100kB 290 10.3 2.009593 0.179285 39.21997 1.571777 2.005408 2803 Nginx 100kB 300 8.3 2.094124 0.999951 39.21997 1.571777 2.005556 2906 Nginx 100kB 310 10.4 2.021224 0.148826 39.21997 1.571777 2.008015 2989 Nginx 100kB 320 9.1 1.98162 0.151846 39.21997 1.571777 2.008459 3093 Nginx 100kB 330 9.9 1.981941 0.112047 39.21997 1.571777 2.007692 3184 Nginx 100kB 340 10 1.995959 0.140238 39.21997 1.571777 2.006916 3283 Nginx 100kB 350 9.6 1.993739 0.126108 39.21997 1.565918 2.006592 3383 Nginx 100kB 360 11.1 2.007078 0.165519 39.21997 1.565918 2.006237 3479 Nginx 100kB 370 9.9 2.009211 0.155502 39.21997 1.565918 2.006263 3590 Nginx 100kB 380 11.6 1.981837 0.110035 39.21997 1.565918 2.006342 3689 Nginx 100kB

xli

390 8.2 1.98645 0.112619 39.21997 1.565918 2.005595 3805 Nginx 100kB 400 9.5 1.975547 0.11576 39.21997 1.565918 2.005191 3887 Nginx 100kB 410 10.4 2.012942 0.108076 39.21997 1.565918 2.004484 3982 Nginx 100kB 420 11.2 1.98953 0.116948 39.21997 1.565918 2.004699 4086 Nginx 100kB 430 10.4 1.992176 0.115137 39.21997 1.565918 2.004295 4198 Nginx 100kB 440 8.7 2.010897 0.179753 39.21997 1.565918 2.004002 4302 Nginx 100kB 450 8.4 1.976103 0.120732 39.21997 1.565918 2.004138 4389 Nginx 100kB 460 10.6 2.014678 0.092636 39.21997 1.565918 2.003612 4473 Nginx 100kB 470 8.7 1.993933 0.146857 39.21997 1.565918 2.003868 4579 Nginx 100kB 480 8.2 1.990407 0.134076 39.21997 1.565918 2.003683 4666 Nginx 100kB 490 9.1 1.983203 0.10281 39.21997 1.565918 2.003454 4748 Nginx 100kB 500 9.9 1.991342 0.166083 39.21997 1.565918 2.003073 4839 Nginx 100kB 510 10.2 1.98735 0.114621 39.21997 1.565918 2.002838 4938 Nginx 100kB 520 9.8 1.980245 0.105869 39.21997 1.565918 2.002524 5040 Nginx 100kB 530 11.8 1.989591 0.104342 39.21997 1.565918 2.002099 5138 Nginx 100kB 540 9 1.994409 0.157922 39.21997 1.565918 2.001818 5256 Nginx 100kB 550 7.6 1.99273 0.100586 39.21997 1.565918 2.001694 5346 Nginx 100kB 560 9.1 2.012424 0.185088 39.21997 1.565918 2.001568 5422 Nginx 100kB 570 10 1.984983 0.11898 39.21997 1.565918 2.001747 5513 Nginx 100kB 580 9.4 1.972643 0.119722 39.21997 1.565918 2.001448 5613 Nginx 100kB 590 10.1 2.003171 0.132164 39.21997 1.565918 2.000974 5707 Nginx 100kB 600 6.8 2.239373 2.353377 39.21997 1.565918 2.001012 5808 Nginx 100kB

0 3.2 4.088058 6.258512 35.27222 2.22998 0 0 Nginx 150kB 10 10.1 2.597098 0.19385 35.27222 2.228027 4.088058 32 Nginx 150kB 20 10.2 2.577697 0.122769 35.27222 2.224854 2.955825 133 Nginx 150kB 30 9.4 2.611681 0.22126 35.27222 2.221924 2.791701 235 Nginx 150kB 40 9 2.580005 0.137496 35.27222 2.214844 2.740267 329 Nginx 150kB 50 10.4 2.616495 0.194542 35.27222 2.214844 2.705843 419 Nginx 150kB 60 11.7 2.606909 0.108519 35.27222 2.214844 2.688076 523 Nginx 150kB 70 11.3 2.624559 0.190105 35.27222 2.214844 2.673238 640 Nginx 150kB 80 9.5 2.624856 0.17976 35.27222 2.214844 2.665933 753 Nginx 150kB 90 10.1 2.653045 0.285853 35.27222 2.214844 2.661331 848 Nginx 150kB

100 10.6 2.652991 0.231681 35.27222 2.214844 2.660449 949 Nginx 150kB 110 7.9 2.613596 0.229418 35.27222 2.214844 2.6597 1055 Nginx 150kB 120 10.7 2.626166 0.177531 35.27222 2.214844 2.656488 1134 Nginx 150kB 130 11.6 2.60332 0.130752 35.27222 2.214844 2.653874 1241 Nginx 150kB 140 10.4 2.600884 0.151609 35.27222 2.214844 2.649552 1357 Nginx 150kB 150 10.1 2.588309 0.120692 35.27222 2.214844 2.646088 1461 Nginx 150kB 160 9.8 2.593371 0.12073 35.27222 2.214844 2.642352 1562 Nginx 150kB 170 9.3 2.559959 0.133644 35.27222 2.200928 2.63946 1660 Nginx 150kB 180 9.7 2.609977 0.203674 35.27222 2.200928 2.635242 1753 Nginx 150kB 190 9.5 2.8683 2.771818 35.27222 2.200928 2.633918 1850 Nginx 150kB 200 8.9 2.628969 0.20894 35.27222 2.200928 2.645366 1945 Nginx 150kB 210 11.1 2.613765 0.223657 35.27222 2.200928 2.644648 2034 Nginx 150kB 220 9.3 2.586772 0.156793 35.27222 2.200928 2.64305 2145 Nginx 150kB 230 10.4 2.66002 0.309015 35.27222 2.200928 2.640711 2238 Nginx 150kB 240 9.4 2.618896 0.219616 35.27222 2.200928 2.641569 2342 Nginx 150kB 250 9.1 2.592621 0.141024 35.27222 2.200928 2.640694 2436 Nginx 150kB 260 10.4 2.602318 0.139016 35.27222 2.200928 2.638963 2527 Nginx 150kB 270 8.6 2.578267 0.154291 35.27222 2.200928 2.637514 2631 Nginx 150kB 280 10.3 2.581368 0.115397 35.27222 2.200928 2.635639 2717 Nginx 150kB 290 12.1 2.643813 0.189533 35.27222 2.200928 2.633657 2820 Nginx 150kB 300 8.6 2.771314 1.752042 35.27222 2.200928 2.634075 2941 Nginx 150kB 310 10.7 2.621434 0.194829 35.27222 2.200928 2.637974 3027 Nginx 150kB 320 9.2 2.596141 0.160561 35.27222 2.200928 2.637409 3134 Nginx 150kB 330 11 2.638266 0.19971 35.27222 2.200928 2.636232 3226 Nginx 150kB 340 10.3 2.608768 0.161267 35.27222 2.200928 2.636299 3336 Nginx 150kB 350 10.8 2.620818 0.149804 35.27222 2.200928 2.635475 3439 Nginx 150kB 360 8.9 2.60983 0.161752 35.27222 2.200928 2.635028 3547 Nginx 150kB 370 10 2.584119 0.208221 35.27222 2.175049 2.634412 3636 Nginx 150kB 380 10.1 2.601599 0.159546 35.27222 2.175049 2.633065 3736 Nginx 150kB 390 9.4 2.595145 0.139938 35.27222 2.175049 2.632237 3837 Nginx 150kB 400 11.1 2.59315 0.106286 35.27222 2.175049 2.63135 3931 Nginx 150kB 410 9.2 2.599583 0.121806 35.27222 2.175049 2.630301 4042 Nginx 150kB 420 10.2 2.634414 0.186628 35.27222 2.175049 2.629617 4134 Nginx 150kB 430 9.4 2.612346 0.188085 35.27222 2.175049 2.629733 4236 Nginx 150kB 440 9.5 2.605554 0.13956 35.27222 2.175049 2.629355 4330 Nginx 150kB 450 11 2.603427 0.142279 35.27222 2.175049 2.628844 4425 Nginx 150kB 460 10.8 2.614855 0.149521 35.27222 2.175049 2.628228 4535 Nginx 150kB 470 9.4 2.589592 0.126711 35.27222 2.175049 2.627917 4643 Nginx 150kB 480 8.3 2.593826 0.192239 35.27222 2.175049 2.627156 4737 Nginx 150kB

xlii

490 9.2 2.582801 0.116666 35.27222 2.175049 2.626582 4820 Nginx 150kB 500 11.1 2.615903 0.13746 35.27222 2.175049 2.625762 4912 Nginx 150kB 510 9.6 2.641246 0.179192 35.27222 2.175049 2.625545 5023 Nginx 150kB 520 9.6 2.594274 0.125493 35.27222 2.175049 2.625839 5119 Nginx 150kB 530 10 2.609814 0.146084 35.27222 2.175049 2.625258 5215 Nginx 150kB 540 10.5 2.639437 0.205599 35.27222 2.175049 2.624967 5315 Nginx 150kB 550 11 2.613352 0.135127 35.27222 2.175049 2.625248 5420 Nginx 150kB 560 10.6 2.595632 0.133335 35.27222 2.175049 2.625011 5530 Nginx 150kB 570 10.3 2.618245 0.201445 35.27222 2.175049 2.624458 5636 Nginx 150kB 580 9.6 2.594681 0.127805 35.27222 2.175049 2.624347 5739 Nginx 150kB 590 10.5 2.646126 0.237533 35.27222 2.175049 2.623859 5835 Nginx 150kB 600 2 3.526306 4.17697 35.27222 2.175049 2.624252 5940 Nginx 150kB

0 4.8 4.117406 5.308966 40.24512 2.929932 0 0 Nginx 200kB 10 9.8 3.153716 0.105978 40.24512 2.901855 4.117406 48 Nginx 200kB 20 8.6 3.144154 0.112391 40.24512 2.901855 3.470546 146 Nginx 200kB 30 10.5 3.137537 0.146145 40.24512 2.853027 3.349556 232 Nginx 200kB 40 10.8 3.163348 0.123307 40.24512 2.853027 3.283497 337 Nginx 200kB 50 10.2 3.153715 0.177984 40.24512 2.853027 3.254337 445 Nginx 200kB 60 10.4 3.148121 0.18162 40.24512 2.771973 3.235574 547 Nginx 200kB 70 9.1 3.161895 0.198266 40.24512 2.771973 3.221603 651 Nginx 200kB 80 10.3 3.129883 0.107219 40.24512 2.771973 3.21428 742 Nginx 200kB 90 9.2 3.148087 0.190706 40.24512 2.771973 3.203993 845 Nginx 200kB

100 8.5 3.169761 0.200938 40.24512 2.771973 3.198504 937 Nginx 200kB 110 9.2 3.125427 0.073805 40.24512 2.771973 3.196113 1022 Nginx 200kB 120 8.7 3.133368 0.091765 40.24512 2.771973 3.190275 1114 Nginx 200kB 130 10.2 3.163471 0.157248 40.24512 2.771973 3.186153 1201 Nginx 200kB 140 9.5 3.158445 0.229955 40.24512 2.771973 3.184378 1303 Nginx 200kB 150 10.8 3.192772 0.167764 40.24512 2.771973 3.182615 1398 Nginx 200kB 160 11.2 3.138829 0.13485 40.24512 2.771973 3.183344 1506 Nginx 200kB 170 10.4 3.207498 0.440799 40.24512 2.771973 3.180262 1618 Nginx 200kB 180 9.3 3.13034 0.121303 40.24512 2.771973 3.181907 1722 Nginx 200kB 190 11.6 3.155242 0.162014 40.24512 2.74707 3.179265 1815 Nginx 200kB 200 8.9 3.154162 0.133505 40.24512 2.74707 3.177822 1931 Nginx 200kB 210 10 3.14387 0.128419 40.24512 2.74707 3.176779 2020 Nginx 200kB 220 10 3.140586 0.141972 40.24512 2.74707 3.175227 2120 Nginx 200kB 230 10.1 3.150052 0.139174 40.24512 2.74707 3.173667 2220 Nginx 200kB 240 9.2 3.173735 0.193698 40.24512 2.74707 3.172639 2321 Nginx 200kB 250 9.1 3.11723 0.103292 40.24512 2.74707 3.172681 2413 Nginx 200kB 260 9.8 3.143609 0.181675 40.24512 2.74707 3.170666 2504 Nginx 200kB 270 10.7 3.185967 0.251665 40.24512 2.74707 3.169647 2602 Nginx 200kB 280 8.8 3.122725 0.089338 40.24512 2.74707 3.170291 2709 Nginx 200kB 290 9.9 3.138275 0.091342 40.24512 2.74707 3.168795 2797 Nginx 200kB 300 9.9 3.274335 1.398173 40.24512 2.74707 3.167751 2896 Nginx 200kB 310 10 3.220664 0.32416 40.24512 2.74707 3.171274 2995 Nginx 200kB 320 10.8 3.144172 0.113285 40.24512 2.74707 3.17287 3095 Nginx 200kB 330 10.9 3.168529 0.215893 40.24512 2.74707 3.171903 3203 Nginx 200kB 340 9.2 3.149664 0.192055 40.24512 2.74707 3.171792 3312 Nginx 200kB 350 9.9 3.187828 0.271454 40.24512 2.74707 3.171194 3404 Nginx 200kB 360 11.2 3.151252 0.20557 40.24512 2.74707 3.171664 3503 Nginx 200kB 370 10.2 3.18093 0.241602 40.24512 2.74707 3.171031 3615 Nginx 200kB 380 10.3 3.168813 0.323186 40.24512 2.74707 3.171303 3717 Nginx 200kB 390 8.5 3.129544 0.120587 40.24512 2.74707 3.171236 3820 Nginx 200kB 400 10.3 3.167732 0.243334 40.24512 2.74707 3.170328 3905 Nginx 200kB 410 8.5 3.119787 0.106798 40.24512 2.74707 3.170261 4008 Nginx 200kB 420 11.8 3.144138 0.09068 40.24512 2.74707 3.169213 4093 Nginx 200kB 430 9.2 3.143292 0.128894 40.24512 2.74707 3.168511 4211 Nginx 200kB 440 10.8 3.137433 0.126624 40.24512 2.74707 3.167971 4303 Nginx 200kB 450 10.7 3.188661 0.246323 40.24512 2.74707 3.167224 4411 Nginx 200kB 460 8.1 3.1745 0.182991 40.24512 2.74707 3.167731 4518 Nginx 200kB 470 8.8 3.111184 0.076122 40.24512 2.74707 3.167851 4599 Nginx 200kB 480 9.1 3.152134 0.158882 40.24512 2.74707 3.166787 4687 Nginx 200kB 490 9.7 3.162802 0.210954 40.24512 2.74707 3.166508 4778 Nginx 200kB 500 10.7 3.187637 0.236248 40.24512 2.74707 3.166434 4875 Nginx 200kB 510 10.7 3.132785 0.081434 40.24512 2.74707 3.166889 4982 Nginx 200kB 520 10.4 3.136115 0.12038 40.24512 2.74707 3.166172 5089 Nginx 200kB 530 9.1 3.120479 0.143985 40.24512 2.74707 3.16557 5193 Nginx 200kB 540 10.2 3.19447 0.242667 40.24512 2.74707 3.164794 5284 Nginx 200kB 550 8.5 3.142027 0.182108 40.24512 2.74707 3.165356 5386 Nginx 200kB 560 9.8 3.162645 0.194317 40.24512 2.74707 3.164993 5471 Nginx 200kB 570 10.7 3.135989 0.132517 40.24512 2.74707 3.164952 5569 Nginx 200kB 580 13.4 3.157227 0.133572 40.24512 2.74707 3.164406 5676 Nginx 200kB

xliii

590 7.9 3.153623 0.163651 40.24512 2.74707 3.16424 5810 Nginx 200kB 600 4.9 3.906235 3.345123 40.24512 2.74707 3.164098 5889 Nginx 200kB

0 4.5 7.945996 5.756358 45.31201 6.445068 0 0 Nginx 500kB 10 9 6.969035 0.705502 45.31201 6.441895 7.945996 45 Nginx 500kB 20 10 6.820732 0.283884 45.31201 6.429932 7.294689 135 Nginx 500kB 30 10.7 6.859272 0.429619 45.31201 6.429932 7.093005 235 Nginx 500kB 40 11.5 6.939249 0.530025 45.31201 6.429932 7.019878 342 Nginx 500kB 50 9.5 6.867283 0.433881 45.31201 6.429932 6.999589 457 Nginx 500kB 60 11.7 7.049056 0.828472 45.31201 6.418945 6.976819 552 Nginx 500kB 70 9.5 6.860138 0.397037 45.31201 6.418945 6.989452 669 Nginx 500kB 80 11.2 6.923852 0.556558 45.31201 6.418945 6.973372 764 Nginx 500kB 90 10.3 6.941937 0.614598 45.31201 6.418945 6.967041 876 Nginx 500kB

100 8.6 6.855247 0.351667 45.31201 6.418945 6.9644 979 Nginx 500kB 110 8.7 6.828248 0.359636 45.31201 6.418945 6.955586 1065 Nginx 500kB 120 9.6 6.885628 0.477735 45.31201 6.418945 6.945969 1152 Nginx 500kB 130 11 6.905515 0.360694 45.31201 6.418945 6.941327 1248 Nginx 500kB 140 9.8 6.824463 0.312522 45.31201 6.418945 6.938427 1358 Nginx 500kB 150 11.2 6.914006 0.566829 45.31201 6.416016 6.930756 1456 Nginx 500kB 160 7.8 6.896822 0.778095 45.31201 6.413818 6.92956 1568 Nginx 500kB 170 8.5 6.822162 0.407527 45.31201 6.378906 6.928008 1646 Nginx 500kB 180 8.5 7.010268 0.709633 45.31201 6.378906 6.922811 1731 Nginx 500kB 190 10.6 6.842725 0.328074 45.31201 6.378906 6.926904 1816 Nginx 500kB 200 9.7 6.787832 0.150468 45.31201 6.378906 6.922262 1922 Nginx 500kB 210 10 6.929456 0.536582 45.31201 6.378906 6.915803 2019 Nginx 500kB 220 10 6.905408 0.484416 45.31201 6.378906 6.916447 2119 Nginx 500kB 230 10.5 6.908617 0.465368 45.31201 6.378906 6.91595 2219 Nginx 500kB 240 10 6.879465 0.492806 45.31201 6.378906 6.915619 2324 Nginx 500kB 250 8.6 6.862651 0.453292 45.31201 6.378906 6.914127 2424 Nginx 500kB 260 12.7 6.977374 0.663539 45.31201 6.378906 6.912363 2510 Nginx 500kB 270 9.9 6.947024 0.556816 45.31201 6.378906 6.915494 2637 Nginx 500kB 280 11.6 7.012742 0.668415 45.31201 6.378906 6.916635 2736 Nginx 500kB 290 11.2 7.066919 0.920768 45.31201 6.378906 6.920544 2852 Nginx 500kB 300 9.3 7.005728 1.624647 45.31201 6.378906 6.926075 2964 Nginx 500kB 310 9.6 6.91805 0.451434 45.31201 6.378906 6.928498 3057 Nginx 500kB 320 11.6 6.968826 0.563167 45.31201 6.378906 6.92818 3153 Nginx 500kB 330 9.9 6.919259 0.559986 45.31201 6.378906 6.929623 3269 Nginx 500kB 340 9.6 6.85833 0.45232 45.31201 6.378906 6.929318 3368 Nginx 500kB 350 11 6.889003 0.424222 45.31201 6.378906 6.927351 3464 Nginx 500kB 360 10.1 6.92006 0.517491 45.31201 6.378906 6.92617 3574 Nginx 500kB 370 9.3 6.886377 0.519042 45.31201 6.378906 6.926002 3675 Nginx 500kB 380 9.8 6.852741 0.360075 45.31201 6.378906 6.925024 3768 Nginx 500kB 390 9.7 6.879626 0.410389 45.31201 6.378906 6.923192 3866 Nginx 500kB 400 10.5 7.061258 0.731233 45.31201 6.378906 6.922126 3963 Nginx 500kB 410 11.1 6.865446 0.376438 45.31201 6.378906 6.925717 4068 Nginx 500kB 420 9.3 6.908261 0.525157 45.31201 6.378906 6.924116 4179 Nginx 500kB 430 9.8 6.931429 0.538071 45.31201 6.378906 6.923771 4272 Nginx 500kB 440 8.6 7.015176 0.877106 45.31201 6.378906 6.923943 4370 Nginx 500kB 450 10.2 6.906341 0.457312 45.31201 6.378906 6.925703 4456 Nginx 500kB 460 8.4 6.809913 0.270824 45.31201 6.378906 6.92527 4558 Nginx 500kB 470 8.2 6.928809 0.562 45.31201 6.378906 6.923183 4642 Nginx 500kB 480 9.3 6.877315 0.590678 45.31201 6.378906 6.92328 4724 Nginx 500kB 490 10.3 6.915174 0.599234 45.31201 6.378906 6.922393 4817 Nginx 500kB 500 9.9 6.87863 0.45292 45.31201 6.378906 6.922242 4920 Nginx 500kB 510 9.3 6.921284 0.547854 45.31201 6.378906 6.921382 5019 Nginx 500kB 520 9.8 7.036686 1.035314 45.31201 6.378906 6.92138 5112 Nginx 500kB 530 9.7 6.818067 0.362954 45.31201 6.378906 6.923549 5210 Nginx 500kB 540 10.9 6.976462 0.527524 45.31201 6.378906 6.921621 5307 Nginx 500kB 550 9.8 6.950676 0.618744 45.31201 6.378906 6.922724 5416 Nginx 500kB 560 8.9 6.930634 0.482063 45.31201 6.378906 6.923221 5514 Nginx 500kB 570 10.7 6.931043 0.496376 45.31201 6.378906 6.923339 5603 Nginx 500kB 580 8.9 6.907268 0.45785 45.31201 6.378906 6.923483 5710 Nginx 500kB 590 10 6.8446 0.373213 45.31201 6.378906 6.923234 5799 Nginx 500kB 600 4.7 7.260586 1.967795 45.31201 6.378906 6.921901 5899 Nginx 500kB

0 5 13.95018 4.951051 47.18115 12.51782 0 0 Nginx 1000kB 10 9 13.33739 1.594467 47.18115 12.50488 13.95018 50 Nginx 1000kB 20 9.2 13.16801 1.286663 47.18115 12.4939 13.55625 140 Nginx 1000kB 30 10.6 13.60444 1.801625 47.18115 12.46899 13.40229 232 Nginx 1000kB 40 9.6 13.48495 1.824071 47.18115 12.4519 13.46569 338 Nginx 1000kB 50 9.6 13.11309 1.046018 47.18115 12.4519 13.46995 434 Nginx 1000kB 60 11.9 13.42081 1.476183 47.18115 12.4519 13.40531 530 Nginx 1000kB 70 9.9 13.4785 1.895144 47.18115 12.4519 13.40815 649 Nginx 1000kB

xliv

80 10.5 13.60727 1.994378 47.18115 12.4519 13.41746 748 Nginx 1000kB 90 9.8 13.29774 1.417395 47.18115 12.4519 13.44083 853 Nginx 1000kB

100 10 13.31231 1.395233 47.18115 12.4519 13.42608 951 Nginx 1000kB 110 8.4 13.5125 1.770276 47.18115 12.4519 13.41526 1051 Nginx 1000kB 120 10 13.31805 1.369293 47.18115 12.4519 13.42245 1135 Nginx 1000kB 130 9.1 13.54841 1.513139 47.18115 12.4519 13.414 1235 Nginx 1000kB 140 9 13.01418 0.891141 47.18115 12.4519 13.42322 1326 Nginx 1000kB 150 11.8 14.26884 2.719957 47.18115 12.4519 13.39723 1416 Nginx 1000kB 160 9.3 13.30832 1.28763 47.18115 12.4519 13.46427 1534 Nginx 1000kB 170 8.7 13.7677 2.023986 47.18115 12.37109 13.45536 1627 Nginx 1000kB 180 11.5 13.4303 1.452192 47.18115 12.37109 13.47121 1714 Nginx 1000kB 190 9.6 13.49262 1.79817 47.18115 12.37109 13.46864 1829 Nginx 1000kB 200 10.3 13.42982 1.519276 47.18115 12.37109 13.46984 1925 Nginx 1000kB 210 9.7 13.4303 1.966638 47.18115 12.37109 13.4678 2028 Nginx 1000kB 220 10 13.50101 1.672685 47.18115 12.37109 13.46609 2125 Nginx 1000kB 230 9.3 13.66136 1.760864 47.18115 12.37109 13.46766 2225 Nginx 1000kB 240 11.2 13.27775 1.232274 47.18115 12.37109 13.47543 2318 Nginx 1000kB 250 11.6 13.48208 1.435252 47.18115 12.37109 13.46632 2430 Nginx 1000kB 260 10.3 13.63984 1.59744 47.18115 12.37109 13.46704 2546 Nginx 1000kB 270 11 13.15483 1.061268 47.18115 12.37109 13.47376 2649 Nginx 1000kB 280 10.2 13.49956 1.694942 47.18115 12.37109 13.46104 2759 Nginx 1000kB 290 8.4 13.77347 2.058208 47.18115 12.37109 13.46242 2861 Nginx 1000kB 300 11.8 13.83173 2.458762 47.18115 12.37109 13.47129 2945 Nginx 1000kB 310 11.1 14.85434 4.786188 47.18115 12.37109 13.48517 3063 Nginx 1000kB 320 11.1 13.80657 2.267115 47.18115 12.37109 13.53306 3174 Nginx 1000kB 330 8.8 13.21194 1.047138 47.18115 12.37109 13.5423 3285 Nginx 1000kB 340 9.8 13.27528 1.217529 47.18115 12.37109 13.53368 3373 Nginx 1000kB 350 9.1 13.57637 1.89809 47.18115 12.37109 13.52638 3471 Nginx 1000kB 360 11.5 13.47842 1.545712 47.18115 12.37109 13.52766 3562 Nginx 1000kB 370 10.5 13.49981 1.697675 47.18115 12.37109 13.52612 3677 Nginx 1000kB 380 10.4 13.69243 2.100891 47.18115 12.37109 13.52539 3782 Nginx 1000kB 390 11.4 13.34866 1.403537 47.18115 12.37109 13.52986 3886 Nginx 1000kB 400 11.5 13.19367 1.373703 47.18115 12.37109 13.5247 4000 Nginx 1000kB 410 10.9 13.76355 2.522466 47.18115 12.37109 13.51544 4115 Nginx 1000kB 420 11.8 13.9763 2.391681 47.18115 12.37109 13.52185 4224 Nginx 1000kB 430 9.1 13.70606 2.521843 47.18115 12.36304 13.5342 4342 Nginx 1000kB 440 10 13.2639 1.233354 47.18115 12.36304 13.53773 4433 Nginx 1000kB 450 8.3 13.22724 1.335808 47.18115 12.36304 13.53169 4533 Nginx 1000kB 460 10.6 13.20055 1.114898 47.18115 12.36304 13.52621 4616 Nginx 1000kB 470 10.4 13.42921 1.530986 47.18115 12.36304 13.5189 4722 Nginx 1000kB 480 10.4 13.31495 1.613713 47.18115 12.36304 13.51697 4826 Nginx 1000kB 490 9.8 13.632 2.18594 47.18115 12.36304 13.51271 4930 Nginx 1000kB 500 8.6 13.03616 0.907508 47.18115 12.36304 13.51503 5028 Nginx 1000kB 510 10.2 13.77121 2.429291 47.18115 12.36304 13.50698 5114 Nginx 1000kB 520 8.5 13.02506 0.912727 47.18115 12.36304 13.51215 5216 Nginx 1000kB 530 9.4 13.29215 1.373966 47.18115 12.36304 13.50433 5301 Nginx 1000kB 540 8 13.57747 2.254552 47.18115 12.36304 13.50064 5395 Nginx 1000kB 550 9.8 13.69231 2.503678 47.18115 12.36304 13.50176 5475 Nginx 1000kB 560 9.9 13.19021 1.118579 47.18115 12.36304 13.50511 5573 Nginx 1000kB 570 10.5 13.42796 1.842354 47.18115 12.36304 13.49961 5672 Nginx 1000kB 580 10.6 13.61877 1.997406 47.18115 12.36304 13.49831 5777 Nginx 1000kB 590 7.7 13.40388 1.392017 47.18115 12.36304 13.50048 5883 Nginx 1000kB 600 1.8 14.86495 4.212449 47.18115 12.36304 13.49923 5960 Nginx 1000kB

0 3.7 20.22641 6.408653 57.5979 18.40405 0 0 Nginx 1500kB 10 8.8 19.8268 2.227721 57.5979 18.39502 20.22641 37 Nginx 1500kB 20 11.8 21.4943 4.33027 57.5979 18.35303 19.94509 125 Nginx 1500kB 30 8.7 19.49079 1.872192 57.5979 18.3479 20.69738 243 Nginx 1500kB 40 9.9 19.39583 1.71178 57.5979 18.3479 20.37928 330 Nginx 1500kB 50 10.7 21.08789 4.563673 57.5979 18.3479 20.15233 429 Nginx 1500kB 60 9.1 19.55244 2.42166 57.5979 18.3479 20.33909 536 Nginx 1500kB 70 11.4 22.31005 7.602852 57.5979 18.3479 20.22492 627 Nginx 1500kB 80 11.2 20.87669 3.955153 57.5979 18.3479 20.54571 741 Nginx 1500kB 90 9.7 20.20912 2.742429 57.5979 18.33496 20.58917 853 Nginx 1500kB

100 8.1 19.83926 2.933414 57.5979 18.33496 20.55036 950 Nginx 1500kB 110 10.5 20.28286 3.035486 57.5979 18.33496 20.4945 1031 Nginx 1500kB 120 11.4 21.23268 5.310875 57.5979 18.33496 20.47493 1136 Nginx 1500kB 130 8.2 20.28539 3.569306 57.5979 18.33496 20.54404 1250 Nginx 1500kB 140 10.3 20.70121 4.216951 57.5979 18.3269 20.52812 1332 Nginx 1500kB 150 8.6 20.1398 3.018142 57.5979 18.32593 20.54054 1435 Nginx 1500kB 160 9 20.45287 3.235593 57.5979 18.32593 20.51788 1521 Nginx 1500kB 170 11 20.57524 3.25835 57.5979 18.32593 20.51425 1611 Nginx 1500kB

xlv

180 9.7 19.84757 2.65705 57.5979 18.32593 20.51815 1721 Nginx 1500kB 190 11.6 20.53366 2.923788 57.5979 18.32593 20.48237 1818 Nginx 1500kB 200 9.5 21.13206 4.643178 57.5979 18.32593 20.48545 1934 Nginx 1500kB 210 9 21.81565 6.558762 57.5979 18.32593 20.51572 2029 Nginx 1500kB 220 8.8 20.49905 3.318158 57.5979 18.32593 20.57093 2119 Nginx 1500kB 230 10.4 20.40782 3.042411 57.5979 18.32593 20.56807 2207 Nginx 1500kB 240 9.5 20.07385 2.868723 57.5979 18.32593 20.56086 2311 Nginx 1500kB 250 9.2 20.13159 2.886154 57.5979 18.32593 20.54163 2406 Nginx 1500kB 260 8.7 19.6691 2.302481 57.5979 18.32593 20.52653 2498 Nginx 1500kB 270 9.5 19.45663 2.115115 57.5979 18.32593 20.49767 2585 Nginx 1500kB 280 9.1 20.09452 2.860127 57.5979 18.32593 20.46077 2680 Nginx 1500kB 290 9.7 19.6496 1.93109 57.5979 18.32593 20.44874 2771 Nginx 1500kB 300 10 20.82063 4.099753 57.5979 18.32593 20.42171 2868 Nginx 1500kB 310 10.3 20.72211 3.695259 57.5979 18.32593 20.43515 2968 Nginx 1500kB 320 11.2 20.38482 3.693362 57.5979 18.32593 20.44477 3071 Nginx 1500kB 330 9.3 20.331 3.747694 57.5979 18.32593 20.44267 3183 Nginx 1500kB 340 8.9 20.22929 3.001666 57.5979 18.32593 20.4395 3276 Nginx 1500kB 350 9.7 19.73504 2.246805 57.5979 18.32593 20.43394 3365 Nginx 1500kB 360 8.9 21.33016 6.098018 57.5979 18.32593 20.41435 3462 Nginx 1500kB 370 9.7 20.12982 2.731632 57.5979 18.32593 20.43731 3551 Nginx 1500kB 380 11.1 19.82993 2.711116 57.5979 18.32593 20.42913 3648 Nginx 1500kB 390 9.8 20.04143 2.676875 57.5979 18.32593 20.41144 3759 Nginx 1500kB 400 8.3 20.36322 3.696422 57.5979 18.32593 20.40204 3857 Nginx 1500kB 410 9.5 20.54702 3.085571 57.5979 18.32593 20.40122 3940 Nginx 1500kB 420 10.6 20.26317 2.854061 57.5979 18.32593 20.40465 4035 Nginx 1500kB 430 11.2 20.14511 2.891532 57.5979 18.32593 20.40103 4141 Nginx 1500kB 440 8.6 19.81588 2.408528 57.5979 18.32593 20.39429 4253 Nginx 1500kB 450 9.1 20.5539 3.084204 57.5979 18.32593 20.38283 4339 Nginx 1500kB 460 10.4 19.79367 2.740863 57.5979 18.32593 20.38634 4430 Nginx 1500kB 470 9 20.52249 4.344722 57.5979 18.32593 20.37274 4534 Nginx 1500kB 480 8.7 20.25646 3.624973 57.5979 18.32593 20.37566 4624 Nginx 1500kB 490 10.1 20.39568 4.01426 57.5979 18.32593 20.37346 4711 Nginx 1500kB 500 10.1 20.38445 3.111169 57.5979 18.32593 20.37392 4812 Nginx 1500kB 510 10 20.71074 5.008045 57.5979 18.32593 20.37414 4913 Nginx 1500kB 520 11.3 20.16161 3.10566 57.5979 18.32593 20.38086 5013 Nginx 1500kB 530 10.7 20.28475 3.332284 57.5979 18.31689 20.37602 5126 Nginx 1500kB 540 11.9 21.03723 4.879284 57.5979 18.31689 20.37416 5233 Nginx 1500kB 550 8.6 19.42827 2.620728 57.5979 18.31689 20.3889 5352 Nginx 1500kB 560 10.6 20.95356 3.543497 57.5979 18.31689 20.37371 5438 Nginx 1500kB 570 8.7 20.72033 3.761258 57.5979 18.31689 20.38479 5544 Nginx 1500kB 580 9.2 21.4098 4.888107 57.5979 18.31689 20.38998 5631 Nginx 1500kB 590 9.9 20.66492 4.472838 57.5979 18.31689 20.40637 5723 Nginx 1500kB 600 4.8 19.62946 3.43674 57.5979 18.31689 20.41077 5822 Nginx 1500kB