diff --git a/.github/workflows/benchmark.template.yaml b/.github/workflows/benchmark.template.yaml index 7ac2f9f77..4a4139fdf 100644 --- a/.github/workflows/benchmark.template.yaml +++ b/.github/workflows/benchmark.template.yaml @@ -31,6 +31,8 @@ on: fork: type: number required: true + waitForUrl: + type: string jobs: test: @@ -39,7 +41,7 @@ jobs: steps: - name: checkout uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - + - name: setup node uses: the-guild-org/shared-config/setup@v1 with: @@ -53,7 +55,7 @@ jobs: override: true - uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2 - + - name: run subgraphs run: | make run-subgraphs & @@ -69,7 +71,7 @@ jobs: - name: configure eqemu uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3 with: - platforms: 'linux/arm64,linux/amd64' + platforms: "linux/arm64,linux/amd64" - name: configure docker buildx uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3 @@ -99,6 +101,7 @@ jobs: MEM_LIMIT: ${{ inputs.memoryLimit }} CPU_LIMIT: ${{ inputs.cpuLimit }} FORK: ${{ inputs.fork }} + WAIT_FOR_URL: ${{ inputs.waitForUrl }} - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5 if: always() diff --git a/.github/workflows/federation-v1.workflow.yaml b/.github/workflows/federation-v1.workflow.yaml index b455422ab..61575e432 100644 --- a/.github/workflows/federation-v1.workflow.yaml +++ b/.github/workflows/federation-v1.workflow.yaml @@ -4,7 +4,8 @@ on: workflow_dispatch: {} concurrency: - group: federation-${{ github.ref }} + # we group by event name because we dont want to cancel workflow dispatch runs on pr commits + group: federation-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true jobs: @@ -21,7 +22,7 @@ jobs: - apollo-gateway - apollo-router - hive-gateway - - hive-gateway-bun + - hive-gateway-router-runtime - hive-router - cosmo - grafbase @@ -36,6 +37,7 @@ jobs: fork: 2 memoryLimit: 6gb mode: constant + waitForUrl: ${{ startsWith(matrix.directory, 'hive-gateway') && 'http://localhost:4000/healthcheck' || '' }} constant-vus-over-time-report: needs: constant-vus-over-time @@ -44,73 +46,73 @@ jobs: with: scenarioName: constant-vus-over-time - constant-vus-subgraphs-delay: - needs: - - decide-runner - strategy: - fail-fast: false - matrix: - directory: - - apollo-gateway - - apollo-router - - hive-gateway - - hive-gateway-bun - - hive-router - - cosmo - - grafbase - uses: ./.github/workflows/benchmark.template.yaml - with: - gateway: ${{ matrix.directory }} - vu: 50 - time: ${{ github.event_name == 'pull_request' && '30s' || '60s' }} - scenarioName: constant-vus-subgraphs-delay - runner: ${{ needs.decide-runner.outputs.runner }} - cpuLimit: 3 - fork: 2 - memoryLimit: 6gb - subgraphDelay: 50 - mode: constant - - constant-vus-subgraphs-delay-report: - needs: constant-vus-subgraphs-delay - uses: ./.github/workflows/report.template.yaml - secrets: inherit - with: - scenarioName: constant-vus-subgraphs-delay - - constant-vus-subgraphs-delay-resources: - needs: - - decide-runner - strategy: - fail-fast: false - matrix: - directory: - - apollo-gateway - - apollo-router - - hive-gateway - - hive-gateway-bun - - hive-router - - cosmo - - grafbase - uses: ./.github/workflows/benchmark.template.yaml - with: - gateway: ${{ matrix.directory }} - vu: 50 - time: ${{ github.event_name == 'pull_request' && '30s' || '60s' }} - scenarioName: constant-vus-subgraphs-delay-resources - runner: ${{ needs.decide-runner.outputs.runner }} - cpuLimit: 4 - fork: 3 - memoryLimit: 8gb - subgraphDelay: 50 - mode: constant - - constant-vus-subgraphs-delay-resources-report: - needs: constant-vus-subgraphs-delay-resources - uses: ./.github/workflows/report.template.yaml - secrets: inherit - with: - scenarioName: constant-vus-subgraphs-delay-resources + # TODO: do we need the delay scenarios? + # constant-vus-subgraphs-delay: + # needs: + # - decide-runner + # strategy: + # fail-fast: false + # matrix: + # directory: + # - apollo-gateway + # - apollo-router + # - hive-gateway + # - hive-gateway-router-runtime + # - hive-router + # - cosmo + # - grafbase + # uses: ./.github/workflows/benchmark.template.yaml + # with: + # gateway: ${{ matrix.directory }} + # vu: 50 + # time: ${{ github.event_name == 'pull_request' && '30s' || '60s' }} + # scenarioName: constant-vus-subgraphs-delay + # runner: ${{ needs.decide-runner.outputs.runner }} + # cpuLimit: 3 + # fork: 2 + # memoryLimit: 6gb + # subgraphDelay: 50 + # mode: constant + # waitForUrl: ${{ startsWith(matrix.directory, 'hive-gateway') && 'http://localhost:4000/healthcheck' || '' }} + # constant-vus-subgraphs-delay-report: + # needs: constant-vus-subgraphs-delay + # uses: ./.github/workflows/report.template.yaml + # secrets: inherit + # with: + # scenarioName: constant-vus-subgraphs-delay + # constant-vus-subgraphs-delay-resources: + # needs: + # - decide-runner + # strategy: + # fail-fast: false + # matrix: + # directory: + # - apollo-gateway + # - apollo-router + # - hive-gateway + # - hive-gateway-router-runtime + # - hive-router + # - cosmo + # - grafbase + # uses: ./.github/workflows/benchmark.template.yaml + # with: + # gateway: ${{ matrix.directory }} + # vu: 50 + # time: ${{ github.event_name == 'pull_request' && '30s' || '60s' }} + # scenarioName: constant-vus-subgraphs-delay-resources + # runner: ${{ needs.decide-runner.outputs.runner }} + # cpuLimit: 4 + # fork: 3 + # memoryLimit: 8gb + # subgraphDelay: 50 + # mode: constant + # waitForUrl: ${{ startsWith(matrix.directory, 'hive-gateway') && 'http://localhost:4000/healthcheck' || '' }} + # constant-vus-subgraphs-delay-resources-report: + # needs: constant-vus-subgraphs-delay-resources + # uses: ./.github/workflows/report.template.yaml + # secrets: inherit + # with: + # scenarioName: constant-vus-subgraphs-delay-resources ramping-vus: needs: @@ -122,7 +124,7 @@ jobs: - apollo-gateway - apollo-router - hive-gateway - - hive-gateway-bun + - hive-gateway-router-runtime - hive-router - cosmo - grafbase @@ -137,6 +139,7 @@ jobs: fork: 3 memoryLimit: 8gb mode: stress + waitForUrl: ${{ startsWith(matrix.directory, 'hive-gateway') && 'http://localhost:4000/healthcheck' || '' }} ramping-vus-report: needs: ramping-vus diff --git a/README.md b/README.md index c70ccbd25..da0a637a3 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ The benchmark uses Unix-specific tools and commands that are not available on Wi ```bash make test gateway= mode= ``` - Replace `` with one of: `apollo-router`, `cosmo`, `grafbase`, `hive-gateway`, `hive-gateway-bun`, or `hive-router`. + Replace `` with one of: `apollo-router`, `cosmo`, `grafbase`, `hive-gateway`, `hive-gateway-bun`, `hive-gateway-router-runtime`, `hive-gateway-router-runtime-bun`, or `hive-router`. Examples: ```bash diff --git a/constant-vus-over-time_result.md b/constant-vus-over-time_result.md index 16456a3df..e7b01210a 100644 --- a/constant-vus-over-time_result.md +++ b/constant-vus-over-time_result.md @@ -10,23 +10,23 @@ This scenario was running 50 VUs over 60s ### Comparison -Comparison +Comparison -| Gateway | RPS ⬇️ | Requests | Duration | Notes | -| :--------------- | :----: | :--------------------: | :--------------------: | :---- | -| hive-router | 1833 | 110452 total, 0 failed | avg: 27ms, p95: 49ms | ✅ | -| grafbase | 1619 | 97671 total, 0 failed | avg: 30ms, p95: 54ms | ✅ | -| cosmo | 689 | 41718 total, 0 failed | avg: 72ms, p95: 105ms | ✅ | -| apollo-router | 361 | 21986 total, 0 failed | avg: 136ms, p95: 178ms | ✅ | -| hive-gateway-bun | 299 | 18384 total, 0 failed | avg: 163ms, p95: 326ms | ✅ | -| hive-gateway | 287 | 17589 total, 0 failed | avg: 170ms, p95: 308ms | ✅ | -| apollo-gateway | 116 | 7143 total, 0 failed | avg: 421ms, p95: 496ms | ✅ | +| Gateway | RPS ⬇️ | Requests | Duration | Notes | +| :-------------------------- | :----: | :-------------------: | :--------------------: | :---- | +| hive-router | 1633 | 98510 total, 0 failed | avg: 30ms, p95: 52ms | ✅ | +| grafbase | 1568 | 94625 total, 0 failed | avg: 31ms, p95: 55ms | ✅ | +| cosmo | 650 | 39305 total, 0 failed | avg: 76ms, p95: 112ms | ✅ | +| hive-gateway-router-runtime | 619 | 37616 total, 0 failed | avg: 79ms, p95: 110ms | ✅ | +| apollo-router | 313 | 19100 total, 0 failed | avg: 157ms, p95: 208ms | ✅ | +| hive-gateway | 291 | 17933 total, 0 failed | avg: 167ms, p95: 279ms | ✅ | +| apollo-gateway | 118 | 7240 total, 0 failed | avg: 415ms, p95: 488ms | ✅ |
- Summary for: `hive-router` + Summary for: hive-router **K6 Output** @@ -38,31 +38,31 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 331056 ✗ 0 - data_received..................: 9.7 GB 161 MB/s - data_sent......................: 129 MB 2.1 MB/s - http_req_blocked...............: avg=5.58µs min=1.16µs med=2.56µs max=10.96ms p(90)=3.74µs p(95)=4.41µs p(99.9)=91.82µs - http_req_connecting............: avg=2.54µs min=0s med=0s max=10.92ms p(90)=0s p(95)=0s p(99.9)=0s - http_req_duration..............: avg=26.95ms min=1.88ms med=24.21ms max=447.16ms p(90)=42.31ms p(95)=48.97ms p(99.9)=91.98ms - { expected_response:true }...: avg=26.95ms min=1.88ms med=24.21ms max=447.16ms p(90)=42.31ms p(95)=48.97ms p(99.9)=91.98ms - http_req_failed................: 0.00% ✓ 0 ✗ 110452 - http_req_receiving.............: avg=120.11µs min=23.63µs med=44.92µs max=132.28ms p(90)=114.34µs p(95)=348.04µs p(99.9)=13.08ms - http_req_sending...............: avg=81.69µs min=5.27µs med=10.3µs max=304.81ms p(90)=30.52µs p(95)=126.78µs p(99.9)=11.79ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=26.75ms min=1.84ms med=24.07ms max=434.05ms p(90)=41.94ms p(95)=48.55ms p(99.9)=89.36ms - http_reqs......................: 110452 1833.569583/s - iteration_duration.............: avg=27.17ms min=4.39ms med=24.41ms max=464.14ms p(90)=42.52ms p(95)=49.16ms p(99.9)=93.6ms - iterations.....................: 110352 1831.909523/s - success_rate...................: 100.00% ✓ 110352 ✗ 0 - vus............................: 50 min=50 max=50 - vus_max........................: 50 min=50 max=50 + checks.........................: 100.00% ✓ 295230 ✗ 0 + data_received..................: 8.6 GB 143 MB/s + data_sent......................: 115 MB 1.9 MB/s + http_req_blocked...............: avg=8.74µs min=1.21µs med=2.52µs max=20.6ms p(90)=3.66µs p(95)=4.36µs p(99.9)=90.77µs + http_req_connecting............: avg=5.64µs min=0s med=0s max=20.58ms p(90)=0s p(95)=0s p(99.9)=0s + http_req_duration..............: avg=30.19ms min=2.23ms med=27.85ms max=479.5ms p(90)=45.54ms p(95)=52.04ms p(99.9)=95.03ms + { expected_response:true }...: avg=30.19ms min=2.23ms med=27.85ms max=479.5ms p(90)=45.54ms p(95)=52.04ms p(99.9)=95.03ms + http_req_failed................: 0.00% ✓ 0 ✗ 98510 + http_req_receiving.............: avg=114.44µs min=23.7µs med=43.29µs max=41.16ms p(90)=102.58µs p(95)=329.02µs p(99.9)=12.13ms + http_req_sending...............: avg=99.34µs min=5.24µs med=10.38µs max=342ms p(90)=30.67µs p(95)=122.3µs p(99.9)=13.77ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=29.98ms min=2.15ms med=27.68ms max=473.89ms p(90)=45.2ms p(95)=51.65ms p(99.9)=93.33ms + http_reqs......................: 98510 1633.996982/s + iteration_duration.............: avg=30.47ms min=3.61ms med=28.1ms max=517.37ms p(90)=45.79ms p(95)=52.28ms p(99.9)=95.85ms + iterations.....................: 98410 1632.33827/s + success_rate...................: 100.00% ✓ 98410 ✗ 0 + vus............................: 50 min=50 max=50 + vus_max........................: 50 min=50 max=50 ``` **Performance Overview** -Performance Overview +Performance Overview @@ -70,13 +70,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `grafbase` + Summary for: grafbase **K6 Output** @@ -88,22 +88,22 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 292713 ✗ 0 - data_received..................: 8.6 GB 142 MB/s - data_sent......................: 114 MB 1.9 MB/s - http_req_blocked...............: avg=6.65µs min=1.16µs med=3.17µs max=10.64ms p(90)=4.59µs p(95)=5.9µs p(99.9)=119.49µs - http_req_connecting............: avg=2.72µs min=0s med=0s max=10.6ms p(90)=0s p(95)=0s p(99.9)=0s - http_req_duration..............: avg=30.48ms min=2.55ms med=27.23ms max=465.25ms p(90)=46.81ms p(95)=53.7ms p(99.9)=99.38ms - { expected_response:true }...: avg=30.48ms min=2.55ms med=27.23ms max=465.25ms p(90)=46.81ms p(95)=53.7ms p(99.9)=99.38ms - http_req_failed................: 0.00% ✓ 0 ✗ 97671 - http_req_receiving.............: avg=151.87µs min=27.06µs med=51.2µs max=58.49ms p(90)=164.09µs p(95)=408.77µs p(99.9)=16.1ms - http_req_sending...............: avg=113.16µs min=5.74µs med=12.11µs max=432.48ms p(90)=41.5µs p(95)=142.55µs p(99.9)=14.36ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=30.21ms min=2.5ms med=27.05ms max=464.02ms p(90)=46.29ms p(95)=53.18ms p(99.9)=95.39ms - http_reqs......................: 97671 1619.120078/s - iteration_duration.............: avg=30.73ms min=8.13ms med=27.46ms max=480.11ms p(90)=47.05ms p(95)=53.95ms p(99.9)=100.95ms - iterations.....................: 97571 1617.462349/s - success_rate...................: 100.00% ✓ 97571 ✗ 0 + checks.........................: 100.00% ✓ 283575 ✗ 0 + data_received..................: 8.3 GB 138 MB/s + data_sent......................: 110 MB 1.8 MB/s + http_req_blocked...............: avg=8.1µs min=1.26µs med=2.93µs max=19.14ms p(90)=4.18µs p(95)=5.13µs p(99.9)=113.95µs + http_req_connecting............: avg=4.5µs min=0s med=0s max=19.11ms p(90)=0s p(95)=0s p(99.9)=0s + http_req_duration..............: avg=31.41ms min=2.56ms med=28.13ms max=461.55ms p(90)=48.13ms p(95)=54.94ms p(99.9)=94.62ms + { expected_response:true }...: avg=31.41ms min=2.56ms med=28.13ms max=461.55ms p(90)=48.13ms p(95)=54.94ms p(99.9)=94.62ms + http_req_failed................: 0.00% ✓ 0 ✗ 94625 + http_req_receiving.............: avg=147.03µs min=26.4µs med=48.63µs max=63.46ms p(90)=136.33µs p(95)=385.91µs p(99.9)=16.33ms + http_req_sending...............: avg=126.07µs min=5.3µs med=11.68µs max=309.13ms p(90)=37.62µs p(95)=138.41µs p(99.9)=17.27ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=31.14ms min=2.51ms med=27.93ms max=452.53ms p(90)=47.67ms p(95)=54.44ms p(99.9)=92.63ms + http_reqs......................: 94625 1568.478395/s + iteration_duration.............: avg=31.72ms min=7ms med=28.41ms max=480.81ms p(90)=48.42ms p(95)=55.24ms p(99.9)=95.68ms + iterations.....................: 94525 1566.820822/s + success_rate...................: 100.00% ✓ 94525 ✗ 0 vus............................: 50 min=50 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -112,7 +112,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -120,13 +120,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `cosmo` + Summary for: cosmo **K6 Output** @@ -138,22 +138,22 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 124854 ✗ 0 - data_received..................: 3.7 GB 61 MB/s - data_sent......................: 49 MB 802 kB/s - http_req_blocked...............: avg=12.09µs min=1.27µs med=2.79µs max=13.68ms p(90)=3.88µs p(95)=4.56µs p(99.9)=2.84ms - http_req_connecting............: avg=8.58µs min=0s med=0s max=13.62ms p(90)=0s p(95)=0s p(99.9)=2.6ms - http_req_duration..............: avg=71.68ms min=2.88ms med=70.31ms max=543.77ms p(90)=97.14ms p(95)=105.37ms p(99.9)=322.12ms - { expected_response:true }...: avg=71.68ms min=2.88ms med=70.31ms max=543.77ms p(90)=97.14ms p(95)=105.37ms p(99.9)=322.12ms - http_req_failed................: 0.00% ✓ 0 ✗ 41718 - http_req_receiving.............: avg=166.35µs min=29.12µs med=68.55µs max=33.5ms p(90)=150.07µs p(95)=370.21µs p(99.9)=15.62ms - http_req_sending...............: avg=56.82µs min=5.94µs med=11.4µs max=282.36ms p(90)=29.7µs p(95)=117.96µs p(99.9)=2.57ms + checks.........................: 100.00% ✓ 117615 ✗ 0 + data_received..................: 3.4 GB 57 MB/s + data_sent......................: 46 MB 757 kB/s + http_req_blocked...............: avg=22.43µs min=1.31µs med=2.99µs max=22.74ms p(90)=4.43µs p(95)=5.49µs p(99.9)=11.59ms + http_req_connecting............: avg=17.85µs min=0s med=0s max=22.7ms p(90)=0s p(95)=0s p(99.9)=11.05ms + http_req_duration..............: avg=76.02ms min=2.85ms med=74.81ms max=498.85ms p(90)=103.39ms p(95)=111.76ms p(99.9)=298.91ms + { expected_response:true }...: avg=76.02ms min=2.85ms med=74.81ms max=498.85ms p(90)=103.39ms p(95)=111.76ms p(99.9)=298.91ms + http_req_failed................: 0.00% ✓ 0 ✗ 39305 + http_req_receiving.............: avg=159.93µs min=29.21µs med=78.76µs max=49.06ms p(90)=158.8µs p(95)=404.96µs p(99.9)=14.07ms + http_req_sending...............: avg=77.38µs min=5.79µs med=11.86µs max=382.23ms p(90)=31.07µs p(95)=130.14µs p(99.9)=4.18ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=71.46ms min=2.83ms med=70.11ms max=542.67ms p(90)=96.88ms p(95)=105.14ms p(99.9)=314.94ms - http_reqs......................: 41718 689.539726/s - iteration_duration.............: avg=72.1ms min=6.86ms med=70.58ms max=573.57ms p(90)=97.39ms p(95)=105.63ms p(99.9)=331.61ms - iterations.....................: 41618 687.886867/s - success_rate...................: 100.00% ✓ 41618 ✗ 0 + http_req_waiting...............: avg=75.78ms min=2.76ms med=74.62ms max=498.52ms p(90)=103.17ms p(95)=111.47ms p(99.9)=283.92ms + http_reqs......................: 39305 650.539852/s + iteration_duration.............: avg=76.53ms min=6.64ms med=75.16ms max=561.43ms p(90)=103.69ms p(95)=112.1ms p(99.9)=311.89ms + iterations.....................: 39205 648.884745/s + success_rate...................: 100.00% ✓ 39205 ✗ 0 vus............................: 50 min=50 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -162,7 +162,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -170,13 +170,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `apollo-router` + Summary for: hive-gateway-router-runtime **K6 Output** @@ -188,22 +188,22 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 65658 ✗ 0 - data_received..................: 1.9 GB 32 MB/s - data_sent......................: 26 MB 420 kB/s - http_req_blocked...............: avg=34.63µs min=1.85µs med=3µs max=19.17ms p(90)=4.72µs p(95)=5.56µs p(99.9)=14.51ms - http_req_connecting............: avg=30.71µs min=0s med=0s max=19.01ms p(90)=0s p(95)=0s p(99.9)=14.47ms - http_req_duration..............: avg=136.28ms min=6.08ms med=135.4ms max=576.1ms p(90)=167.47ms p(95)=178.18ms p(99.9)=416.86ms - { expected_response:true }...: avg=136.28ms min=6.08ms med=135.4ms max=576.1ms p(90)=167.47ms p(95)=178.18ms p(99.9)=416.86ms - http_req_failed................: 0.00% ✓ 0 ✗ 21986 - http_req_receiving.............: avg=90.9µs min=37.67µs med=56.94µs max=136.72ms p(90)=111.8µs p(95)=146.68µs p(99.9)=2.05ms - http_req_sending...............: avg=51.73µs min=7.7µs med=12.1µs max=315.93ms p(90)=21.63µs p(95)=40.75µs p(99.9)=3.04ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=136.13ms min=5.99ms med=135.28ms max=556.87ms p(90)=167.35ms p(95)=177.92ms p(99.9)=406.83ms - http_reqs......................: 21986 361.473795/s - iteration_duration.............: avg=137.2ms min=23.88ms med=135.77ms max=616.99ms p(90)=167.77ms p(95)=178.53ms p(99.9)=436.83ms - iterations.....................: 21886 359.829686/s - success_rate...................: 100.00% ✓ 21886 ✗ 0 + checks.........................: 100.00% ✓ 112548 ✗ 0 + data_received..................: 3.3 GB 54 MB/s + data_sent......................: 44 MB 721 kB/s + http_req_blocked...............: avg=12.69µs min=1.24µs med=2.83µs max=12.82ms p(90)=4.43µs p(95)=5.6µs p(99.9)=3.44ms + http_req_connecting............: avg=8.71µs min=0s med=0s max=12.79ms p(90)=0s p(95)=0s p(99.9)=3.4ms + http_req_duration..............: avg=79.41ms min=5.09ms med=76.7ms max=625.46ms p(90)=100.06ms p(95)=110.23ms p(99.9)=357.72ms + { expected_response:true }...: avg=79.41ms min=5.09ms med=76.7ms max=625.46ms p(90)=100.06ms p(95)=110.23ms p(99.9)=357.72ms + http_req_failed................: 0.00% ✓ 0 ✗ 37616 + http_req_receiving.............: avg=108.43µs min=27µs med=52.16µs max=42.76ms p(90)=119.66µs p(95)=337.55µs p(99.9)=5.23ms + http_req_sending...............: avg=69.14µs min=5.39µs med=11.32µs max=93.4ms p(90)=33.77µs p(95)=136.01µs p(99.9)=8.02ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=79.23ms min=5.04ms med=76.55ms max=625.09ms p(90)=99.79ms p(95)=109.94ms p(99.9)=357.64ms + http_reqs......................: 37616 619.676154/s + iteration_duration.............: avg=79.99ms min=18.28ms med=77.04ms max=698.78ms p(90)=100.42ms p(95)=110.62ms p(99.9)=400.18ms + iterations.....................: 37516 618.02878/s + success_rate...................: 100.00% ✓ 37516 ✗ 0 vus............................: 50 min=50 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -212,7 +212,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -220,13 +220,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `hive-gateway-bun` + Summary for: apollo-router **K6 Output** @@ -238,23 +238,23 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 54852 ✗ 0 - data_received..................: 1.6 GB 26 MB/s - data_sent......................: 21 MB 349 kB/s - http_req_blocked...............: avg=44.62µs min=1.14µs med=2.8µs max=22.86ms p(90)=4.54µs p(95)=5.56µs p(99.9)=17.87ms - http_req_connecting............: avg=40.63µs min=0s med=0s max=22.8ms p(90)=0s p(95)=0s p(99.9)=17.84ms - http_req_duration..............: avg=162.99ms min=9.81ms med=160.69ms max=760.23ms p(90)=232.64ms p(95)=325.94ms p(99.9)=588.97ms - { expected_response:true }...: avg=162.99ms min=9.81ms med=160.69ms max=760.23ms p(90)=232.64ms p(95)=325.94ms p(99.9)=588.97ms - http_req_failed................: 0.00% ✓ 0 ✗ 18384 - http_req_receiving.............: avg=93.77µs min=26.43µs med=45.52µs max=28.65ms p(90)=102.05µs p(95)=175.84µs p(99.9)=3.71ms - http_req_sending...............: avg=77.05µs min=5.57µs med=11.29µs max=226.93ms p(90)=31.98µs p(95)=114.21µs p(99.9)=8.39ms + checks.........................: 100.00% ✓ 57000 ✗ 0 + data_received..................: 1.7 GB 28 MB/s + data_sent......................: 22 MB 364 kB/s + http_req_blocked...............: avg=34.74µs min=2.06µs med=4.3µs max=20.69ms p(90)=6.38µs p(95)=7.45µs p(99.9)=12.03ms + http_req_connecting............: avg=29.35µs min=0s med=0s max=20.52ms p(90)=0s p(95)=0s p(99.9)=11.99ms + http_req_duration..............: avg=156.74ms min=7.38ms med=155.01ms max=672.61ms p(90)=194.36ms p(95)=207.52ms p(99.9)=494.81ms + { expected_response:true }...: avg=156.74ms min=7.38ms med=155.01ms max=672.61ms p(90)=194.36ms p(95)=207.52ms p(99.9)=494.81ms + http_req_failed................: 0.00% ✓ 0 ✗ 19100 + http_req_receiving.............: avg=107.75µs min=36.99µs med=78.38µs max=52.24ms p(90)=141.08µs p(95)=177.92µs p(99.9)=2.33ms + http_req_sending...............: avg=82.08µs min=8.16µs med=16.47µs max=407.16ms p(90)=30.44µs p(95)=73.71µs p(99.9)=2.84ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=162.81ms min=9.75ms med=160.45ms max=760.04ms p(90)=232.51ms p(95)=325.78ms p(99.9)=562.51ms - http_reqs......................: 18384 299.943911/s - iteration_duration.............: avg=164.28ms min=48.69ms med=162.15ms max=812.86ms p(90)=233.28ms p(95)=326.72ms p(99.9)=644.74ms - iterations.....................: 18284 298.312363/s - success_rate...................: 100.00% ✓ 18284 ✗ 0 - vus............................: 50 min=0 max=50 + http_req_waiting...............: avg=156.55ms min=7.28ms med=154.86ms max=651.44ms p(90)=194.22ms p(95)=207.25ms p(99.9)=488.68ms + http_reqs......................: 19100 313.052308/s + iteration_duration.............: avg=158.05ms min=68.7ms med=155.51ms max=756.12ms p(90)=194.89ms p(95)=208.04ms p(99.9)=557.21ms + iterations.....................: 19000 311.41329/s + success_rate...................: 100.00% ✓ 19000 ✗ 0 + vus............................: 24 min=24 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -262,7 +262,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -270,13 +270,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `hive-gateway` + Summary for: hive-gateway **K6 Output** @@ -288,22 +288,22 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 52467 ✗ 0 - data_received..................: 1.5 GB 25 MB/s - data_sent......................: 21 MB 334 kB/s - http_req_blocked...............: avg=39.76µs min=1.26µs med=2.83µs max=21.29ms p(90)=4.87µs p(95)=6.54µs p(99.9)=14.57ms - http_req_connecting............: avg=35.12µs min=0s med=0s max=21.25ms p(90)=0s p(95)=0s p(99.9)=14.19ms - http_req_duration..............: avg=170.33ms min=6.93ms med=158.78ms max=672.76ms p(90)=201.34ms p(95)=307.65ms p(99.9)=526.96ms - { expected_response:true }...: avg=170.33ms min=6.93ms med=158.78ms max=672.76ms p(90)=201.34ms p(95)=307.65ms p(99.9)=526.96ms - http_req_failed................: 0.00% ✓ 0 ✗ 17589 - http_req_receiving.............: avg=100.46µs min=26.9µs med=54.06µs max=20.51ms p(90)=118.66µs p(95)=190.51µs p(99.9)=4.07ms - http_req_sending...............: avg=51.68µs min=5.81µs med=11.59µs max=104.52ms p(90)=33.21µs p(95)=122.16µs p(99.9)=3.46ms + checks.........................: 100.00% ✓ 53499 ✗ 0 + data_received..................: 1.6 GB 26 MB/s + data_sent......................: 21 MB 339 kB/s + http_req_blocked...............: avg=50.86µs min=1.25µs med=2.81µs max=24.36ms p(90)=4.69µs p(95)=5.86µs p(99.9)=18.92ms + http_req_connecting............: avg=46.93µs min=0s med=0s max=24.29ms p(90)=0s p(95)=0s p(99.9)=18.87ms + http_req_duration..............: avg=167.24ms min=7.04ms med=156.36ms max=1.22s p(90)=219.49ms p(95)=278.63ms p(99.9)=785.17ms + { expected_response:true }...: avg=167.24ms min=7.04ms med=156.36ms max=1.22s p(90)=219.49ms p(95)=278.63ms p(99.9)=785.17ms + http_req_failed................: 0.00% ✓ 0 ✗ 17933 + http_req_receiving.............: avg=101.07µs min=25.8µs med=50.39µs max=19.09ms p(90)=115.35µs p(95)=195.58µs p(99.9)=4.69ms + http_req_sending...............: avg=99.21µs min=5.57µs med=11.59µs max=350.64ms p(90)=32.61µs p(95)=128.93µs p(99.9)=6.15ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=170.18ms min=6.88ms med=158.64ms max=672.3ms p(90)=201.18ms p(95)=307.49ms p(99.9)=526.82ms - http_reqs......................: 17589 287.444609/s - iteration_duration.............: avg=171.68ms min=31.53ms med=159.18ms max=719.63ms p(90)=202.14ms p(95)=308.27ms p(99.9)=558.79ms - iterations.....................: 17489 285.810379/s - success_rate...................: 100.00% ✓ 17489 ✗ 0 + http_req_waiting...............: avg=167.03ms min=6.98ms med=156.14ms max=1.22s p(90)=219.31ms p(95)=278ms p(99.9)=785.12ms + http_reqs......................: 17933 291.809874/s + iteration_duration.............: avg=168.61ms min=31.57ms med=157.54ms max=1.22s p(90)=220.08ms p(95)=282.01ms p(99.9)=838.57ms + iterations.....................: 17833 290.182651/s + success_rate...................: 100.00% ✓ 17833 ✗ 0 vus............................: 50 min=0 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -312,7 +312,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -320,13 +320,13 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `apollo-gateway` + Summary for: apollo-gateway **K6 Output** @@ -338,23 +338,23 @@ This scenario was running 50 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 21129 ✗ 0 - data_received..................: 627 MB 10 MB/s - data_sent......................: 8.3 MB 136 kB/s - http_req_blocked...............: avg=48.76µs min=1.37µs med=3.44µs max=12.8ms p(90)=5.45µs p(95)=6.23µs p(99.9)=10.94ms - http_req_connecting............: avg=43.99µs min=0s med=0s max=12.76ms p(90)=0s p(95)=0s p(99.9)=10.91ms - http_req_duration..............: avg=420.78ms min=7.53ms med=419.79ms max=855.96ms p(90)=478.15ms p(95)=495.66ms p(99.9)=738.45ms - { expected_response:true }...: avg=420.78ms min=7.53ms med=419.79ms max=855.96ms p(90)=478.15ms p(95)=495.66ms p(99.9)=738.45ms - http_req_failed................: 0.00% ✓ 0 ✗ 7143 - http_req_receiving.............: avg=74.53µs min=32.09µs med=60.63µs max=21.55ms p(90)=107.97µs p(95)=127.16µs p(99.9)=609.65µs - http_req_sending...............: avg=64.03µs min=6.51µs med=13.74µs max=173.98ms p(90)=22.58µs p(95)=27.77µs p(99.9)=1.67ms + checks.........................: 100.00% ✓ 21420 ✗ 0 + data_received..................: 636 MB 10 MB/s + data_sent......................: 8.4 MB 138 kB/s + http_req_blocked...............: avg=104.66µs min=1.4µs med=2.96µs max=21.12ms p(90)=4.74µs p(95)=5.45µs p(99.9)=19.28ms + http_req_connecting............: avg=100.59µs min=0s med=0s max=20.87ms p(90)=0s p(95)=0s p(99.9)=19.24ms + http_req_duration..............: avg=415.11ms min=7.59ms med=415.37ms max=861.66ms p(90)=470.29ms p(95)=488.09ms p(99.9)=783.78ms + { expected_response:true }...: avg=415.11ms min=7.59ms med=415.37ms max=861.66ms p(90)=470.29ms p(95)=488.09ms p(99.9)=783.78ms + http_req_failed................: 0.00% ✓ 0 ✗ 7240 + http_req_receiving.............: avg=66.82µs min=31.35µs med=54.6µs max=5.1ms p(90)=101.93µs p(95)=118.05µs p(99.9)=317.56µs + http_req_sending...............: avg=81.89µs min=6.48µs med=12.38µs max=219.95ms p(90)=20.86µs p(95)=26.14µs p(99.9)=4.27ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=420.65ms min=7.48ms med=419.69ms max=855.09ms p(90)=478.08ms p(95)=495.59ms p(99.9)=737.6ms - http_reqs......................: 7143 116.715122/s - iteration_duration.............: avg=427.35ms min=33.93ms med=420.33ms max=907.75ms p(90)=479.06ms p(95)=496.31ms p(99.9)=888.9ms - iterations.....................: 7043 115.081143/s - success_rate...................: 100.00% ✓ 7043 ✗ 0 - vus............................: 42 min=42 max=50 + http_req_waiting...............: avg=414.96ms min=7.54ms med=415.28ms max=861.33ms p(90)=470.09ms p(95)=487.95ms p(99.9)=783.37ms + http_reqs......................: 7240 118.375515/s + iteration_duration.............: avg=421.53ms min=117.7ms med=416.02ms max=910.44ms p(90)=470.99ms p(95)=489.27ms p(99.9)=859.8ms + iterations.....................: 7140 116.740494/s + success_rate...................: 100.00% ✓ 7140 ✗ 0 + vus............................: 31 min=31 max=50 vus_max........................: 50 min=50 max=50 ``` @@ -362,7 +362,7 @@ This scenario was running 50 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -370,7 +370,7 @@ This scenario was running 50 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
\ No newline at end of file diff --git a/constant-vus-subgraphs-delay-resources_result.md b/constant-vus-subgraphs-delay-resources_result.md deleted file mode 100644 index 63320b2d5..000000000 --- a/constant-vus-subgraphs-delay-resources_result.md +++ /dev/null @@ -1,376 +0,0 @@ -## Overview for: `constant-vus-subgraphs-delay-resources` - - -This scenario runs 4 subgraphs and a GraphQL gateway with Federation spec, and runs a heavy query. It's being executed with a constant amount of VUs over a fixed amount of time. It measure things like memory usage, CPU usage, average RPS. It also includes a summary of the entire execution, and metrics information about HTTP execution times. - - -This scenario was running 50 VUs over 60s - - -### Comparison - - -Comparison - - -| Gateway | RPS ⬇️ | Requests | Duration | Notes | -| :--------------- | :----: | :-------------------: | :--------------------: | :---- | -| grafbase | 173 | 14042 total, 0 failed | avg: 215ms, p95: 226ms | ✅ | -| hive-router | 170 | 13793 total, 0 failed | avg: 219ms, p95: 229ms | ✅ | -| cosmo | 165 | 13439 total, 0 failed | avg: 225ms, p95: 250ms | ✅ | -| hive-gateway | 161 | 12365 total, 0 failed | avg: 244ms, p95: 304ms | ✅ | -| hive-gateway-bun | 158 | 12186 total, 0 failed | avg: 247ms, p95: 290ms | ✅ | -| apollo-router | 133 | 10864 total, 0 failed | avg: 278ms, p95: 324ms | ✅ | -| apollo-gateway | 123 | 10097 total, 0 failed | avg: 299ms, p95: 334ms | ✅ | - - - -
- Summary for: `grafbase` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 41826 ✗ 0 - data_received..................: 1.2 GB 15 MB/s - data_sent......................: 16 MB 202 kB/s - http_req_blocked...............: avg=20.31µs min=1.19µs med=2.01µs max=10ms p(90)=3.62µs p(95)=5.29µs p(99.9)=7.11ms - http_req_connecting............: avg=17.59µs min=0s med=0s max=9.97ms p(90)=0s p(95)=0s p(99.9)=7.09ms - http_req_duration..............: avg=215.06ms min=156.4ms med=214.3ms max=606ms p(90)=223.14ms p(95)=225.58ms p(99.9)=510.85ms - { expected_response:true }...: avg=215.06ms min=156.4ms med=214.3ms max=606ms p(90)=223.14ms p(95)=225.58ms p(99.9)=510.85ms - http_req_failed................: 0.00% ✓ 0 ✗ 14042 - http_req_receiving.............: avg=83.29µs min=25.82µs med=46.48µs max=13.75ms p(90)=97.61µs p(95)=267.45µs p(99.9)=5.25ms - http_req_sending...............: avg=118.46µs min=5.58µs med=8.72µs max=379.96ms p(90)=30.65µs p(95)=96.04µs p(99.9)=6.58ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=214.86ms min=156.35ms med=214.18ms max=605.12ms p(90)=222.99ms p(95)=225.43ms p(99.9)=493.14ms - http_reqs......................: 14042 173.570868/s - iteration_duration.............: avg=215.33ms min=156.54ms med=214.54ms max=622.49ms p(90)=223.34ms p(95)=225.75ms p(99.9)=519ms - iterations.....................: 13942 172.334784/s - success_rate...................: 100.00% ✓ 13942 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-router` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 41079 ✗ 0 - data_received..................: 1.2 GB 15 MB/s - data_sent......................: 16 MB 198 kB/s - http_req_blocked...............: avg=19.71µs min=1.15µs med=2.08µs max=9.44ms p(90)=3.22µs p(95)=4.52µs p(99.9)=6.69ms - http_req_connecting............: avg=17.08µs min=0s med=0s max=9.41ms p(90)=0s p(95)=0s p(99.9)=6.67ms - http_req_duration..............: avg=219.33ms min=158.58ms med=218.38ms max=593.77ms p(90)=226.7ms p(95)=229.24ms p(99.9)=509.17ms - { expected_response:true }...: avg=219.33ms min=158.58ms med=218.38ms max=593.77ms p(90)=226.7ms p(95)=229.24ms p(99.9)=509.17ms - http_req_failed................: 0.00% ✓ 0 ✗ 13793 - http_req_receiving.............: avg=72.09µs min=24.87µs med=41.98µs max=16.78ms p(90)=82.91µs p(95)=229.45µs p(99.9)=2.84ms - http_req_sending...............: avg=145.3µs min=5.71µs med=8.74µs max=362.97ms p(90)=28.96µs p(95)=94.38µs p(99.9)=5.12ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=219.11ms min=158.53ms med=218.29ms max=593.06ms p(90)=226.55ms p(95)=229.07ms p(99.9)=486.8ms - http_reqs......................: 13793 170.457631/s - iteration_duration.............: avg=219.62ms min=158.73ms med=218.6ms max=602.51ms p(90)=226.86ms p(95)=229.4ms p(99.9)=517.39ms - iterations.....................: 13693 169.221804/s - success_rate...................: 100.00% ✓ 13693 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `cosmo` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 40017 ✗ 0 - data_received..................: 1.2 GB 15 MB/s - data_sent......................: 16 MB 193 kB/s - http_req_blocked...............: avg=24.31µs min=1.29µs med=2.74µs max=11.98ms p(90)=4.38µs p(95)=5.36µs p(99.9)=8.04ms - http_req_connecting............: avg=19.82µs min=0s med=0s max=10.78ms p(90)=0s p(95)=0s p(99.9)=7.8ms - http_req_duration..............: avg=224.81ms min=131.8ms med=223.6ms max=651.69ms p(90)=243.72ms p(95)=250.07ms p(99.9)=539.56ms - { expected_response:true }...: avg=224.81ms min=131.8ms med=223.6ms max=651.69ms p(90)=243.72ms p(95)=250.07ms p(99.9)=539.56ms - http_req_failed................: 0.00% ✓ 0 ✗ 13439 - http_req_receiving.............: avg=515.4µs min=32.26µs med=74.26µs max=236.31ms p(90)=385.55µs p(95)=791.71µs p(99.9)=28.63ms - http_req_sending...............: avg=91.45µs min=6.07µs med=11.46µs max=309.41ms p(90)=32.33µs p(95)=126.09µs p(99.9)=4ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=224.2ms min=131.63ms med=223.12ms max=635.15ms p(90)=242.99ms p(95)=249.46ms p(99.9)=525.58ms - http_reqs......................: 13439 165.616519/s - iteration_duration.............: avg=225.26ms min=132.03ms med=223.95ms max=680.67ms p(90)=244.06ms p(95)=250.38ms p(99.9)=568.68ms - iterations.....................: 13339 164.384162/s - success_rate...................: 100.00% ✓ 13339 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-gateway` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 36795 ✗ 0 - data_received..................: 1.1 GB 14 MB/s - data_sent......................: 14 MB 188 kB/s - http_req_blocked...............: avg=27.28µs min=1.17µs med=2.77µs max=12.18ms p(90)=4.58µs p(95)=6.29µs p(99.9)=8.63ms - http_req_connecting............: avg=23.62µs min=0s med=0s max=12.13ms p(90)=0s p(95)=0s p(99.9)=8.58ms - http_req_duration..............: avg=243.96ms min=140.66ms med=236.47ms max=696.38ms p(90)=263.8ms p(95)=304.29ms p(99.9)=586.56ms - { expected_response:true }...: avg=243.96ms min=140.66ms med=236.47ms max=696.38ms p(90)=263.8ms p(95)=304.29ms p(99.9)=586.56ms - http_req_failed................: 0.00% ✓ 0 ✗ 12365 - http_req_receiving.............: avg=98.44µs min=26.38µs med=50.41µs max=17.37ms p(90)=117.32µs p(95)=260.89µs p(99.9)=4.9ms - http_req_sending...............: avg=94.64µs min=5.65µs med=11.47µs max=143.13ms p(90)=33.96µs p(95)=132.05µs p(99.9)=4.66ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=243.77ms min=136.23ms med=236.33ms max=695.67ms p(90)=263.55ms p(95)=302.1ms p(99.9)=585.2ms - http_reqs......................: 12365 161.615905/s - iteration_duration.............: avg=244.96ms min=140.89ms med=236.85ms max=726.18ms p(90)=264.3ms p(95)=306.23ms p(99.9)=649.94ms - iterations.....................: 12265 160.308862/s - success_rate...................: 100.00% ✓ 12265 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-gateway-bun` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 36258 ✗ 0 - data_received..................: 1.1 GB 14 MB/s - data_sent......................: 14 MB 185 kB/s - http_req_blocked...............: avg=34.47µs min=1.16µs med=2.67µs max=13.17ms p(90)=4.49µs p(95)=6.1µs p(99.9)=10.46ms - http_req_connecting............: avg=30.2µs min=0s med=0s max=13.13ms p(90)=0s p(95)=0s p(99.9)=10.43ms - http_req_duration..............: avg=247.39ms min=146.55ms med=241.49ms max=834.1ms p(90)=271.86ms p(95)=289.98ms p(99.9)=698.89ms - { expected_response:true }...: avg=247.39ms min=146.55ms med=241.49ms max=834.1ms p(90)=271.86ms p(95)=289.98ms p(99.9)=698.89ms - http_req_failed................: 0.00% ✓ 0 ✗ 12186 - http_req_receiving.............: avg=97.14µs min=26.68µs med=49.44µs max=20.83ms p(90)=117.79µs p(95)=249.02µs p(99.9)=4.66ms - http_req_sending...............: avg=118.56µs min=5.3µs med=11.32µs max=295.64ms p(90)=33.69µs p(95)=124.74µs p(99.9)=4.54ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=247.17ms min=146.47ms med=241.39ms max=833.12ms p(90)=271.64ms p(95)=289.51ms p(99.9)=698.07ms - http_reqs......................: 12186 158.786247/s - iteration_duration.............: avg=248.4ms min=146.71ms med=241.87ms max=866.99ms p(90)=272.15ms p(95)=290.32ms p(99.9)=715.91ms - iterations.....................: 12086 157.483225/s - success_rate...................: 100.00% ✓ 12086 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `apollo-router` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 32292 ✗ 0 - data_received..................: 953 MB 12 MB/s - data_sent......................: 13 MB 155 kB/s - http_req_blocked...............: avg=66.11µs min=1.43µs med=2.92µs max=21.13ms p(90)=4.38µs p(95)=5.81µs p(99.9)=15.51ms - http_req_connecting............: avg=60.92µs min=0s med=0s max=21.07ms p(90)=0s p(95)=0s p(99.9)=15.31ms - http_req_duration..............: avg=277.85ms min=166.45ms med=278.47ms max=689.17ms p(90)=313.34ms p(95)=323.55ms p(99.9)=581.99ms - { expected_response:true }...: avg=277.85ms min=166.45ms med=278.47ms max=689.17ms p(90)=313.34ms p(95)=323.55ms p(99.9)=581.99ms - http_req_failed................: 0.00% ✓ 0 ✗ 10864 - http_req_receiving.............: avg=144.91µs min=32.55µs med=57.37µs max=165.04ms p(90)=170.93µs p(95)=471µs p(99.9)=5.02ms - http_req_sending...............: avg=102.66µs min=6.62µs med=11.51µs max=216.46ms p(90)=87.35µs p(95)=149.69µs p(99.9)=4.32ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=277.6ms min=166.36ms med=278.27ms max=677.75ms p(90)=313.09ms p(95)=323.1ms p(99.9)=576.01ms - http_reqs......................: 10864 133.343366/s - iteration_duration.............: avg=278.87ms min=166.61ms med=279.13ms max=705.99ms p(90)=313.78ms p(95)=323.97ms p(99.9)=628.93ms - iterations.....................: 10764 132.115978/s - success_rate...................: 100.00% ✓ 10764 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `apollo-gateway` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 29991 ✗ 0 - data_received..................: 887 MB 11 MB/s - data_sent......................: 12 MB 144 kB/s - http_req_blocked...............: avg=38.06µs min=1.21µs med=3.59µs max=12.92ms p(90)=5.71µs p(95)=6.75µs p(99.9)=10.04ms - http_req_connecting............: avg=33.09µs min=0s med=0s max=12.86ms p(90)=0s p(95)=0s p(99.9)=10.02ms - http_req_duration..............: avg=299.47ms min=212.11ms med=297.67ms max=840.42ms p(90)=324.76ms p(95)=333.91ms p(99.9)=736.77ms - { expected_response:true }...: avg=299.47ms min=212.11ms med=297.67ms max=840.42ms p(90)=324.76ms p(95)=333.91ms p(99.9)=736.77ms - http_req_failed................: 0.00% ✓ 0 ✗ 10097 - http_req_receiving.............: avg=130.49µs min=28.3µs med=77.84µs max=311.63ms p(90)=139.51µs p(95)=174.33µs p(99.9)=2.09ms - http_req_sending...............: avg=52.86µs min=5.86µs med=14.63µs max=111.47ms p(90)=28.6µs p(95)=44.19µs p(99.9)=2.24ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=299.28ms min=211.98ms med=297.53ms max=833.06ms p(90)=324.59ms p(95)=333.73ms p(99.9)=725.89ms - http_reqs......................: 10097 123.603626/s - iteration_duration.............: avg=300.8ms min=222.17ms med=298.17ms max=873.48ms p(90)=325.2ms p(95)=334.37ms p(99.9)=797.97ms - iterations.....................: 9997 122.379465/s - success_rate...................: 100.00% ✓ 9997 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
\ No newline at end of file diff --git a/constant-vus-subgraphs-delay_result.md b/constant-vus-subgraphs-delay_result.md deleted file mode 100644 index 684cc28f4..000000000 --- a/constant-vus-subgraphs-delay_result.md +++ /dev/null @@ -1,376 +0,0 @@ -## Overview for: `constant-vus-subgraphs-delay` - - -This scenario runs 4 subgraphs and a GraphQL gateway with Federation spec, and runs a heavy query. It's being executed with a constant amount of VUs over a fixed amount of time. It measure things like memory usage, CPU usage, average RPS. It also includes a summary of the entire execution, and metrics information about HTTP execution times. - - -This scenario was running 50 VUs over 60s - - -### Comparison - - -Comparison - - -| Gateway | RPS ⬇️ | Requests | Duration | Notes | -| :--------------- | :----: | :-------------------: | :--------------------: | :---- | -| grafbase | 172 | 13983 total, 0 failed | avg: 216ms, p95: 227ms | ✅ | -| hive-router | 167 | 13540 total, 0 failed | avg: 224ms, p95: 234ms | ✅ | -| cosmo | 157 | 12747 total, 0 failed | avg: 237ms, p95: 263ms | ✅ | -| hive-gateway | 152 | 11664 total, 0 failed | avg: 259ms, p95: 338ms | ✅ | -| hive-gateway-bun | 147 | 11274 total, 0 failed | avg: 268ms, p95: 355ms | ✅ | -| apollo-router | 122 | 9984 total, 0 failed | avg: 303ms, p95: 349ms | ✅ | -| apollo-gateway | 84 | 6909 total, 0 failed | avg: 438ms, p95: 489ms | ✅ | - - - -
- Summary for: `grafbase` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 41649 ✗ 0 - data_received..................: 1.2 GB 15 MB/s - data_sent......................: 16 MB 201 kB/s - http_req_blocked...............: avg=49.41µs min=1.23µs med=2µs max=19.36ms p(90)=3.59µs p(95)=5.14µs p(99.9)=15.2ms - http_req_connecting............: avg=46.47µs min=0s med=0s max=19.33ms p(90)=0s p(95)=0s p(99.9)=15.15ms - http_req_duration..............: avg=215.88ms min=158.41ms med=215.12ms max=576.43ms p(90)=224.55ms p(95)=227.35ms p(99.9)=493.52ms - { expected_response:true }...: avg=215.88ms min=158.41ms med=215.12ms max=576.43ms p(90)=224.55ms p(95)=227.35ms p(99.9)=493.52ms - http_req_failed................: 0.00% ✓ 0 ✗ 13983 - http_req_receiving.............: avg=78.58µs min=28.25µs med=45.79µs max=12.37ms p(90)=91.47µs p(95)=253.3µs p(99.9)=2.41ms - http_req_sending...............: avg=141.35µs min=5.67µs med=8.96µs max=355.83ms p(90)=33.42µs p(95)=94.07µs p(99.9)=6.79ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=215.66ms min=158.3ms med=215.01ms max=572.28ms p(90)=224.41ms p(95)=227.14ms p(99.9)=470.52ms - http_reqs......................: 13983 172.902977/s - iteration_duration.............: avg=216.18ms min=158.59ms med=215.35ms max=601.3ms p(90)=224.76ms p(95)=227.53ms p(99.9)=514.99ms - iterations.....................: 13883 171.666454/s - success_rate...................: 100.00% ✓ 13883 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-router` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 40320 ✗ 0 - data_received..................: 1.2 GB 15 MB/s - data_sent......................: 16 MB 194 kB/s - http_req_blocked...............: avg=40.11µs min=1.19µs med=2.23µs max=15.2ms p(90)=3.32µs p(95)=4.38µs p(99.9)=12.5ms - http_req_connecting............: avg=37.39µs min=0s med=0s max=15.17ms p(90)=0s p(95)=0s p(99.9)=12.48ms - http_req_duration..............: avg=223.51ms min=158.99ms med=222.94ms max=594.28ms p(90)=231.35ms p(95)=233.77ms p(99.9)=499.06ms - { expected_response:true }...: avg=223.51ms min=158.99ms med=222.94ms max=594.28ms p(90)=231.35ms p(95)=233.77ms p(99.9)=499.06ms - http_req_failed................: 0.00% ✓ 0 ✗ 13540 - http_req_receiving.............: avg=79.59µs min=26.37µs med=44.09µs max=12.73ms p(90)=91.53µs p(95)=254.72µs p(99.9)=3.65ms - http_req_sending...............: avg=79.9µs min=5.61µs med=9.45µs max=331.29ms p(90)=30.43µs p(95)=96.16µs p(99.9)=6.04ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=223.35ms min=156.98ms med=222.86ms max=590.29ms p(90)=231.22ms p(95)=233.62ms p(99.9)=487.69ms - http_reqs......................: 13540 167.163696/s - iteration_duration.............: avg=223.87ms min=159.22ms med=223.18ms max=615.08ms p(90)=231.53ms p(95)=233.96ms p(99.9)=517.82ms - iterations.....................: 13440 165.929104/s - success_rate...................: 100.00% ✓ 13440 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `cosmo` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 37941 ✗ 0 - data_received..................: 1.1 GB 14 MB/s - data_sent......................: 15 MB 183 kB/s - http_req_blocked...............: avg=24.43µs min=1.59µs med=2.59µs max=10.93ms p(90)=4.02µs p(95)=5.01µs p(99.9)=7.94ms - http_req_connecting............: avg=21.16µs min=0s med=0s max=10.89ms p(90)=0s p(95)=0s p(99.9)=7.92ms - http_req_duration..............: avg=237.18ms min=171.35ms med=236.92ms max=662.69ms p(90)=256.76ms p(95)=262.87ms p(99.9)=552.59ms - { expected_response:true }...: avg=237.18ms min=171.35ms med=236.92ms max=662.69ms p(90)=256.76ms p(95)=262.87ms p(99.9)=552.59ms - http_req_failed................: 0.00% ✓ 0 ✗ 12747 - http_req_receiving.............: avg=416.45µs min=32.51µs med=70.49µs max=227.79ms p(90)=217.85µs p(95)=478.04µs p(99.9)=33.75ms - http_req_sending...............: avg=68.4µs min=6.63µs med=11.04µs max=159.71ms p(90)=29.26µs p(95)=118.33µs p(99.9)=3.33ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=236.69ms min=170.22ms med=236.53ms max=662.56ms p(90)=256.11ms p(95)=262.29ms p(99.9)=551.4ms - http_reqs......................: 12747 157.138682/s - iteration_duration.............: avg=237.73ms min=171.58ms med=237.25ms max=683.68ms p(90)=257.07ms p(95)=263.16ms p(99.9)=581.47ms - iterations.....................: 12647 155.905932/s - success_rate...................: 100.00% ✓ 12647 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-gateway` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 34692 ✗ 0 - data_received..................: 1.0 GB 13 MB/s - data_sent......................: 14 MB 178 kB/s - http_req_blocked...............: avg=32.86µs min=1.11µs med=2.66µs max=12.82ms p(90)=4.23µs p(95)=5.83µs p(99.9)=10.17ms - http_req_connecting............: avg=29.19µs min=0s med=0s max=12.77ms p(90)=0s p(95)=0s p(99.9)=10.11ms - http_req_duration..............: avg=258.67ms min=150.59ms med=250.06ms max=700.71ms p(90)=278.22ms p(95)=338.12ms p(99.9)=583.88ms - { expected_response:true }...: avg=258.67ms min=150.59ms med=250.06ms max=700.71ms p(90)=278.22ms p(95)=338.12ms p(99.9)=583.88ms - http_req_failed................: 0.00% ✓ 0 ✗ 11664 - http_req_receiving.............: avg=94.43µs min=24.82µs med=45.48µs max=33.77ms p(90)=107.61µs p(95)=361.75µs p(99.9)=3.81ms - http_req_sending...............: avg=133.65µs min=5.45µs med=11.03µs max=266.19ms p(90)=37.5µs p(95)=137.4µs p(99.9)=5.12ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=258.44ms min=145.38ms med=249.95ms max=698.46ms p(90)=277.62ms p(95)=337.74ms p(99.9)=582.72ms - http_reqs......................: 11664 152.592083/s - iteration_duration.............: avg=259.84ms min=150.78ms med=250.36ms max=723.57ms p(90)=279.16ms p(95)=338.68ms p(99.9)=618.78ms - iterations.....................: 11564 151.283852/s - success_rate...................: 100.00% ✓ 11564 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `hive-gateway-bun` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 33522 ✗ 0 - data_received..................: 990 MB 13 MB/s - data_sent......................: 13 MB 171 kB/s - http_req_blocked...............: avg=34.82µs min=1.18µs med=2.75µs max=13.26ms p(90)=4.43µs p(95)=5.99µs p(99.9)=10.49ms - http_req_connecting............: avg=30.65µs min=0s med=0s max=13.23ms p(90)=0s p(95)=0s p(99.9)=10.46ms - http_req_duration..............: avg=267.55ms min=132.38ms med=259.07ms max=763.53ms p(90)=289.61ms p(95)=355.02ms p(99.9)=663.3ms - { expected_response:true }...: avg=267.55ms min=132.38ms med=259.07ms max=763.53ms p(90)=289.61ms p(95)=355.02ms p(99.9)=663.3ms - http_req_failed................: 0.00% ✓ 0 ✗ 11274 - http_req_receiving.............: avg=100.24µs min=27.22µs med=49.48µs max=26.9ms p(90)=119.25µs p(95)=383.49µs p(99.9)=2.94ms - http_req_sending...............: avg=108.42µs min=5.58µs med=11.39µs max=230.23ms p(90)=38.6µs p(95)=142.42µs p(99.9)=6.29ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=267.34ms min=132.32ms med=258.91ms max=762.89ms p(90)=289.28ms p(95)=354.83ms p(99.9)=662.31ms - http_reqs......................: 11274 147.035074/s - iteration_duration.............: avg=268.91ms min=132.61ms med=259.41ms max=792.31ms p(90)=290.15ms p(95)=355.88ms p(99.9)=736.48ms - iterations.....................: 11174 145.730878/s - success_rate...................: 100.00% ✓ 11174 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `apollo-router` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 29652 ✗ 0 - data_received..................: 876 MB 11 MB/s - data_sent......................: 12 MB 143 kB/s - http_req_blocked...............: avg=26.14µs min=1.81µs med=2.87µs max=9.39ms p(90)=4.28µs p(95)=5.33µs p(99.9)=7.44ms - http_req_connecting............: avg=22.63µs min=0s med=0s max=9.35ms p(90)=0s p(95)=0s p(99.9)=7.42ms - http_req_duration..............: avg=303.01ms min=186.34ms med=305.1ms max=740ms p(90)=339.85ms p(95)=349.08ms p(99.9)=642.55ms - { expected_response:true }...: avg=303.01ms min=186.34ms med=305.1ms max=740ms p(90)=339.85ms p(95)=349.08ms p(99.9)=642.55ms - http_req_failed................: 0.00% ✓ 0 ✗ 9984 - http_req_receiving.............: avg=107.21µs min=33.75µs med=53.15µs max=125.32ms p(90)=105.97µs p(95)=233.46µs p(99.9)=1.43ms - http_req_sending...............: avg=110.65µs min=7.89µs med=11.39µs max=248.41ms p(90)=29.22µs p(95)=139.98µs p(99.9)=3.82ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=302.8ms min=186.25ms med=304.98ms max=723.47ms p(90)=339.64ms p(95)=348.84ms p(99.9)=641.48ms - http_reqs......................: 9984 122.606202/s - iteration_duration.............: avg=304.27ms min=186.51ms med=305.58ms max=764.16ms p(90)=340.19ms p(95)=349.49ms p(99.9)=657.87ms - iterations.....................: 9884 121.378175/s - success_rate...................: 100.00% ✓ 9884 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
- -
- Summary for: `apollo-gateway` - - **K6 Output** - - - - -``` - ✓ response code was 200 - ✓ no graphql errors - ✓ valid response structure - - checks.........................: 100.00% ✓ 20427 ✗ 0 - data_received..................: 607 MB 7.4 MB/s - data_sent......................: 8.0 MB 98 kB/s - http_req_blocked...............: avg=49.28µs min=1.38µs med=3.07µs max=12.15ms p(90)=4.68µs p(95)=5.6µs p(99.9)=10.5ms - http_req_connecting............: avg=45.56µs min=0s med=0s max=12.12ms p(90)=0s p(95)=0s p(99.9)=10.47ms - http_req_duration..............: avg=437.94ms min=211.86ms med=438.98ms max=1.04s p(90)=476.01ms p(95)=489.46ms p(99.9)=970.26ms - { expected_response:true }...: avg=437.94ms min=211.86ms med=438.98ms max=1.04s p(90)=476.01ms p(95)=489.46ms p(99.9)=970.26ms - http_req_failed................: 0.00% ✓ 0 ✗ 6909 - http_req_receiving.............: avg=73.68µs min=32.66µs med=54.45µs max=22.21ms p(90)=100.33µs p(95)=120.6µs p(99.9)=1.02ms - http_req_sending...............: avg=71.58µs min=6.55µs med=12.62µs max=165.81ms p(90)=20.57µs p(95)=29.72µs p(99.9)=3.55ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=437.79ms min=211.77ms med=438.91ms max=1.04s p(90)=475.89ms p(95)=489.2ms p(99.9)=968.97ms - http_reqs......................: 6909 84.442255/s - iteration_duration.............: avg=441.93ms min=274.19ms med=439.64ms max=1.07s p(90)=476.54ms p(95)=489.89ms p(99.9)=1.05s - iterations.....................: 6809 83.220048/s - success_rate...................: 100.00% ✓ 6809 ✗ 0 - vus............................: 50 min=0 max=50 - vus_max........................: 50 min=50 max=50 -``` - - -**Performance Overview** - - -Performance Overview - - - - -**HTTP Overview** - - -HTTP Overview - - -
\ No newline at end of file diff --git a/gateways/grafbase/install.sh b/gateways/grafbase/install.sh index 31e3ff5f7..21ffc38e3 100755 --- a/gateways/grafbase/install.sh +++ b/gateways/grafbase/install.sh @@ -5,7 +5,7 @@ set -euo pipefail # to the current directory instead of /usr/local/bin # https://github.com/grafbase/grafbase/releases -VERSION="0.49.0" +VERSION="0.50.1" error() { echo -e "${Red}error${Color_Off}:" "$@" >&2 diff --git a/gateways/hive-gateway-bun/.gitignore b/gateways/hive-gateway-bun/.gitignore deleted file mode 100644 index b512c09d4..000000000 --- a/gateways/hive-gateway-bun/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules \ No newline at end of file diff --git a/gateways/hive-gateway-bun/package.json b/gateways/hive-gateway-bun/package.json deleted file mode 100644 index 81a626e29..000000000 --- a/gateways/hive-gateway-bun/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "hive-gateway-bun", - "version": "0.0.0", - "dependencies": { - "@graphql-hive/gateway": "2.1.14", - "graphql": "16.12.0" - }, - "devDependencies": { - "bun": "1.3.2" - } -} diff --git a/gateways/hive-gateway-bun/run.sh b/gateways/hive-gateway-bun/run.sh deleted file mode 100755 index fdd3554c7..000000000 --- a/gateways/hive-gateway-bun/run.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# -NODE_ENV=production JIT=true npx bun hive-gateway supergraph supergraph.graphql > ./gateway_log.txt 2>&1 diff --git a/gateways/hive-gateway-router-runtime/.gitignore b/gateways/hive-gateway-router-runtime/.gitignore new file mode 100644 index 000000000..c9a968825 --- /dev/null +++ b/gateways/hive-gateway-router-runtime/.gitignore @@ -0,0 +1 @@ +hive-gateway \ No newline at end of file diff --git a/gateways/hive-gateway-router-runtime/gateway.config.ts b/gateways/hive-gateway-router-runtime/gateway.config.ts new file mode 100644 index 000000000..ad547fcbb --- /dev/null +++ b/gateways/hive-gateway-router-runtime/gateway.config.ts @@ -0,0 +1,6 @@ +import { defineConfig } from "@graphql-hive/gateway"; +import { unifiedGraphHandler } from "@graphql-hive/router-runtime"; + +export const gatewayConfig = defineConfig({ + unifiedGraphHandler, +}); diff --git a/gateways/hive-gateway-bun/install.sh b/gateways/hive-gateway-router-runtime/install.sh similarity index 100% rename from gateways/hive-gateway-bun/install.sh rename to gateways/hive-gateway-router-runtime/install.sh diff --git a/gateways/hive-gateway-router-runtime/package.json b/gateways/hive-gateway-router-runtime/package.json new file mode 100644 index 000000000..06286d252 --- /dev/null +++ b/gateways/hive-gateway-router-runtime/package.json @@ -0,0 +1,12 @@ +{ + "name": "hive-gateway-router-runtime", + "version": "0.0.0", + "scripts": { + "start": "hive-gateway supergraph supergraph.graphql" + }, + "dependencies": { + "@graphql-hive/gateway": "2.1.16", + "@graphql-hive/router-runtime": "1.0.0", + "graphql": "16.12.0" + } +} diff --git a/gateways/hive-gateway-router-runtime/run.sh b/gateways/hive-gateway-router-runtime/run.sh new file mode 100755 index 000000000..2a145a6f8 --- /dev/null +++ b/gateways/hive-gateway-router-runtime/run.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +NODE_ENV=production npm start > ./gateway_log.txt 2>&1 diff --git a/gateways/hive-gateway-bun/supergraph.graphql b/gateways/hive-gateway-router-runtime/supergraph.graphql similarity index 100% rename from gateways/hive-gateway-bun/supergraph.graphql rename to gateways/hive-gateway-router-runtime/supergraph.graphql diff --git a/gateways/hive-gateway/package.json b/gateways/hive-gateway/package.json index 8bc26e032..3c0935d69 100644 --- a/gateways/hive-gateway/package.json +++ b/gateways/hive-gateway/package.json @@ -5,7 +5,7 @@ "start": "hive-gateway supergraph supergraph.graphql --jit" }, "dependencies": { - "@graphql-hive/gateway": "2.1.14", + "@graphql-hive/gateway": "2.1.16", "graphql": "16.12.0" } } diff --git a/package-lock.json b/package-lock.json index 7ed27a78d..de95f38bf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -39,14 +39,35 @@ "gateways/hive-gateway": { "version": "0.0.0", "dependencies": { - "@graphql-hive/gateway": "2.1.14", + "@graphql-hive/gateway": "2.1.16", "graphql": "16.12.0" } }, "gateways/hive-gateway-bun": { "version": "0.0.0", + "extraneous": true, "dependencies": { - "@graphql-hive/gateway": "2.1.14", + "@graphql-hive/gateway": "2.1.16", + "graphql": "16.12.0" + }, + "devDependencies": { + "bun": "1.3.2" + } + }, + "gateways/hive-gateway-router-runtime": { + "version": "0.0.0", + "dependencies": { + "@graphql-hive/gateway": "2.1.16", + "@graphql-hive/router-runtime": "1.0.0", + "graphql": "16.12.0" + } + }, + "gateways/hive-gateway-router-runtime-bun": { + "version": "0.0.0", + "extraneous": true, + "dependencies": { + "@graphql-hive/gateway": "2.1.16", + "@graphql-hive/router-runtime": "1.0.0", "graphql": "16.12.0" }, "devDependencies": { @@ -611,23 +632,23 @@ } }, "node_modules/@aws-sdk/client-sso": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.927.0.tgz", - "integrity": "sha512-O+e+jo6ei7U/BA7lhT4mmPCWmeR9dFgGUHVwCwJ5c/nCaSaHQ+cb7j2h8WPXERu0LhPSFyj1aD5dk3jFIwNlbg==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.928.0.tgz", + "integrity": "sha512-Efenb8zV2fJJDXmp2NE4xj8Ymhp4gVJCkQ6ixhdrpfQXgd2PODO7a20C2+BhFM6aGmN3m6XWYJ64ZyhXF4pAyQ==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/middleware-host-header": "3.922.0", "@aws-sdk/middleware-logger": "3.922.0", "@aws-sdk/middleware-recursion-detection": "3.922.0", - "@aws-sdk/middleware-user-agent": "3.927.0", + "@aws-sdk/middleware-user-agent": "3.928.0", "@aws-sdk/region-config-resolver": "3.925.0", "@aws-sdk/types": "3.922.0", "@aws-sdk/util-endpoints": "3.922.0", "@aws-sdk/util-user-agent-browser": "3.922.0", - "@aws-sdk/util-user-agent-node": "3.927.0", + "@aws-sdk/util-user-agent-node": "3.928.0", "@smithy/config-resolver": "^4.4.2", "@smithy/core": "^3.17.2", "@smithy/fetch-http-handler": "^5.3.5", @@ -660,24 +681,24 @@ } }, "node_modules/@aws-sdk/client-sts": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.927.0.tgz", - "integrity": "sha512-m/pjqGF6nfkAYshoH56dzL70yDVlBtAFh/9mHIqHCGrcUfLP3dD//9JhOcFVrIePSYsPaBSalkbpw03Is2nh/w==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.928.0.tgz", + "integrity": "sha512-ZAObdMNvvv2KKthKp1P22Ddk/tkgkE9kOPrqBMOuUEIo63tv9KdZ6gOu4IO5FFMxBJEVjkxQ0sHZgsFPLEos3g==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.927.0", - "@aws-sdk/credential-provider-node": "3.927.0", + "@aws-sdk/core": "3.928.0", + "@aws-sdk/credential-provider-node": "3.928.0", "@aws-sdk/middleware-host-header": "3.922.0", "@aws-sdk/middleware-logger": "3.922.0", "@aws-sdk/middleware-recursion-detection": "3.922.0", - "@aws-sdk/middleware-user-agent": "3.927.0", + "@aws-sdk/middleware-user-agent": "3.928.0", "@aws-sdk/region-config-resolver": "3.925.0", "@aws-sdk/types": "3.922.0", "@aws-sdk/util-endpoints": "3.922.0", "@aws-sdk/util-user-agent-browser": "3.922.0", - "@aws-sdk/util-user-agent-node": "3.927.0", + "@aws-sdk/util-user-agent-node": "3.928.0", "@smithy/config-resolver": "^4.4.2", "@smithy/core": "^3.17.2", "@smithy/fetch-http-handler": "^5.3.5", @@ -710,9 +731,9 @@ } }, "node_modules/@aws-sdk/core": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.927.0.tgz", - "integrity": "sha512-QOtR9QdjNeC7bId3fc/6MnqoEezvQ2Fk+x6F+Auf7NhOxwYAtB1nvh0k3+gJHWVGpfxN1I8keahRZd79U68/ag==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.928.0.tgz", + "integrity": "sha512-e28J2uKjy2uub4u41dNnmzAu0AN3FGB+LRcLN2Qnwl9Oq3kIcByl5sM8ZD+vWpNG+SFUrUasBCq8cMnHxwXZ4w==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.922.0", @@ -734,12 +755,12 @@ } }, "node_modules/@aws-sdk/credential-provider-env": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.927.0.tgz", - "integrity": "sha512-bAllBpmaWINpf0brXQWh/hjkBctapknZPYb3FJRlBHytEGHi7TpgqBXi8riT0tc6RVWChhnw58rQz22acOmBuw==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.928.0.tgz", + "integrity": "sha512-tB8F9Ti0/NFyFVQX8UQtgRik88evtHpyT6WfXOB4bAY6lEnEHA0ubJZmk9y+aUeoE+OsGLx70dC3JUsiiCPJkQ==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/property-provider": "^4.2.4", "@smithy/types": "^4.8.1", @@ -750,12 +771,12 @@ } }, "node_modules/@aws-sdk/credential-provider-http": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.927.0.tgz", - "integrity": "sha512-jEvb8C7tuRBFhe8vZY9vm9z6UQnbP85IMEt3Qiz0dxAd341Hgu0lOzMv5mSKQ5yBnTLq+t3FPKgD9tIiHLqxSQ==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.928.0.tgz", + "integrity": "sha512-67ynC/8UW9Y8Gn1ZZtC3OgcQDGWrJelHmkbgpmmxYUrzVhp+NINtz3wiTzrrBFhPH/8Uy6BxvhMfXhn0ptcMEQ==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/fetch-http-handler": "^5.3.5", "@smithy/node-http-handler": "^4.4.4", @@ -771,18 +792,18 @@ } }, "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.927.0.tgz", - "integrity": "sha512-WvliaKYT7bNLiryl/FsZyUwRGBo/CWtboekZWvSfloAb+0SKFXWjmxt3z+Y260aoaPm/LIzEyslDHfxqR9xCJQ==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/core": "3.927.0", - "@aws-sdk/credential-provider-env": "3.927.0", - "@aws-sdk/credential-provider-http": "3.927.0", - "@aws-sdk/credential-provider-process": "3.927.0", - "@aws-sdk/credential-provider-sso": "3.927.0", - "@aws-sdk/credential-provider-web-identity": "3.927.0", - "@aws-sdk/nested-clients": "3.927.0", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.928.0.tgz", + "integrity": "sha512-WVWYyj+jox6mhKYp11mu8x1B6Xa2sLbXFHAv5K3Jg8CHvXYpePgTcYlCljq3d4XHC4Jl4nCcsdMtBahSpU9bAA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/core": "3.928.0", + "@aws-sdk/credential-provider-env": "3.928.0", + "@aws-sdk/credential-provider-http": "3.928.0", + "@aws-sdk/credential-provider-process": "3.928.0", + "@aws-sdk/credential-provider-sso": "3.928.0", + "@aws-sdk/credential-provider-web-identity": "3.928.0", + "@aws-sdk/nested-clients": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/credential-provider-imds": "^4.2.4", "@smithy/property-provider": "^4.2.4", @@ -795,17 +816,17 @@ } }, "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.927.0.tgz", - "integrity": "sha512-M6BLrI+WHQ7PUY1aYu2OkI/KEz9aca+05zyycACk7cnlHlZaQ3vTFd0xOqF+A1qaenQBuxApOTs7Z21pnPUo9Q==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.928.0.tgz", + "integrity": "sha512-SdXVjxZOIXefIR/NJx+lyXOrn4m0ScTAU2JXpLsFCkW2Cafo6vTqHUghyO8vak/XQ8PpPqpLXVpGbAYFuIPW6Q==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/credential-provider-env": "3.927.0", - "@aws-sdk/credential-provider-http": "3.927.0", - "@aws-sdk/credential-provider-ini": "3.927.0", - "@aws-sdk/credential-provider-process": "3.927.0", - "@aws-sdk/credential-provider-sso": "3.927.0", - "@aws-sdk/credential-provider-web-identity": "3.927.0", + "@aws-sdk/credential-provider-env": "3.928.0", + "@aws-sdk/credential-provider-http": "3.928.0", + "@aws-sdk/credential-provider-ini": "3.928.0", + "@aws-sdk/credential-provider-process": "3.928.0", + "@aws-sdk/credential-provider-sso": "3.928.0", + "@aws-sdk/credential-provider-web-identity": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/credential-provider-imds": "^4.2.4", "@smithy/property-provider": "^4.2.4", @@ -818,12 +839,12 @@ } }, "node_modules/@aws-sdk/credential-provider-process": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.927.0.tgz", - "integrity": "sha512-rvqdZIN3TRhLKssufN5G2EWLMBct3ZebOBdwr0tuOoPEdaYflyXYYUScu+Beb541CKfXaFnEOlZokq12r7EPcQ==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.928.0.tgz", + "integrity": "sha512-XL0juran8yhqwn0mreV+NJeHJOkcRBaExsvVn9fXWW37A4gLh4esSJxM2KbSNh0t+/Bk3ehBI5sL9xad+yRDuw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/property-provider": "^4.2.4", "@smithy/shared-ini-file-loader": "^4.3.4", @@ -835,14 +856,14 @@ } }, "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.927.0.tgz", - "integrity": "sha512-XrCuncze/kxZE6WYEWtNMGtrJvJtyhUqav4xQQ9PJcNjxCUYiIRv7Gwkt7cuwJ1HS+akQj+JiZmljAg97utfDw==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.928.0.tgz", + "integrity": "sha512-md/y+ePDsO1zqPJrsOyPs4ciKmdpqLL7B0dln1NhqZPnKIS5IBfTqZJ5tJ9eTezqc7Tn4Dbg6HiuemcGvZTeFA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/client-sso": "3.927.0", - "@aws-sdk/core": "3.927.0", - "@aws-sdk/token-providers": "3.927.0", + "@aws-sdk/client-sso": "3.928.0", + "@aws-sdk/core": "3.928.0", + "@aws-sdk/token-providers": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/property-provider": "^4.2.4", "@smithy/shared-ini-file-loader": "^4.3.4", @@ -854,13 +875,13 @@ } }, "node_modules/@aws-sdk/credential-provider-web-identity": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.927.0.tgz", - "integrity": "sha512-Oh/aFYjZQsIiZ2PQEgTNvqEE/mmOYxZKZzXV86qrU3jBUfUUBvprUZc684nBqJbSKPwM5jCZtxiRYh+IrZDE7A==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.928.0.tgz", + "integrity": "sha512-rd97nLY5e/nGOr73ZfsXD+H44iZ9wyGZTKt/2QkiBN3hot/idhgT9+XHsWhRi+o/dThQbpL8RkpAnpF+0ZGthw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", - "@aws-sdk/nested-clients": "3.927.0", + "@aws-sdk/core": "3.928.0", + "@aws-sdk/nested-clients": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/property-provider": "^4.2.4", "@smithy/shared-ini-file-loader": "^4.3.4", @@ -917,12 +938,12 @@ } }, "node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.927.0.tgz", - "integrity": "sha512-sv6St9EgEka6E7y19UMCsttFBZ8tsmz2sstgRd7LztlX3wJynpeDUhq0gtedguG1lGZY/gDf832k5dqlRLUk7g==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.928.0.tgz", + "integrity": "sha512-ESvcfLx5PtpdUM3ptCwb80toBTd3y5I4w5jaeOPHihiZr7jkRLE/nsaCKzlqscPs6UQ8xI0maav04JUiTskcHw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/types": "3.922.0", "@aws-sdk/util-endpoints": "3.922.0", "@smithy/core": "^3.17.2", @@ -935,23 +956,23 @@ } }, "node_modules/@aws-sdk/nested-clients": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.927.0.tgz", - "integrity": "sha512-Oy6w7+fzIdr10DhF/HpfVLy6raZFTdiE7pxS1rvpuj2JgxzW2y6urm2sYf3eLOpMiHyuG4xUBwFiJpU9CCEvJA==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.928.0.tgz", + "integrity": "sha512-kXzfJkq2cD65KAHDe4hZCsnxcGGEWD5pjHqcZplwG4VFMa/iVn/mWrUY9QdadD2GBpXFNQbgOiKG3U2NkKu+4Q==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "3.927.0", + "@aws-sdk/core": "3.928.0", "@aws-sdk/middleware-host-header": "3.922.0", "@aws-sdk/middleware-logger": "3.922.0", "@aws-sdk/middleware-recursion-detection": "3.922.0", - "@aws-sdk/middleware-user-agent": "3.927.0", + "@aws-sdk/middleware-user-agent": "3.928.0", "@aws-sdk/region-config-resolver": "3.925.0", "@aws-sdk/types": "3.922.0", "@aws-sdk/util-endpoints": "3.922.0", "@aws-sdk/util-user-agent-browser": "3.922.0", - "@aws-sdk/util-user-agent-node": "3.927.0", + "@aws-sdk/util-user-agent-node": "3.928.0", "@smithy/config-resolver": "^4.4.2", "@smithy/core": "^3.17.2", "@smithy/fetch-http-handler": "^5.3.5", @@ -1000,13 +1021,13 @@ } }, "node_modules/@aws-sdk/token-providers": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.927.0.tgz", - "integrity": "sha512-JRdaprkZjZ6EY4WVwsZaEjPUj9W9vqlSaFDm4oD+IbwlY4GjAXuUQK6skKcvVyoOsSTvJp/CaveSws2FiWUp9Q==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.928.0.tgz", + "integrity": "sha512-533NpTdUJNDi98zBwRp4ZpZoqULrAVfc0YgIy+8AZHzk0v7N+v59O0d2Du3YO6zN4VU8HU8766DgKiyEag6Dzg==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "3.927.0", - "@aws-sdk/nested-clients": "3.927.0", + "@aws-sdk/core": "3.928.0", + "@aws-sdk/nested-clients": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/property-provider": "^4.2.4", "@smithy/shared-ini-file-loader": "^4.3.4", @@ -1071,12 +1092,12 @@ } }, "node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.927.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.927.0.tgz", - "integrity": "sha512-5Ty+29jBTHg1mathEhLJavzA7A7vmhephRYGenFzo8rApLZh+c+MCAqjddSjdDzcf5FH+ydGGnIrj4iIfbZIMQ==", + "version": "3.928.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.928.0.tgz", + "integrity": "sha512-s0jP67nQLLWVWfBtqTkZUkSWK5e6OI+rs+wFya2h9VLyWBFir17XSDI891s8HZKIVCEl8eBrup+hhywm4nsIAA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/middleware-user-agent": "3.927.0", + "@aws-sdk/middleware-user-agent": "3.928.0", "@aws-sdk/types": "3.922.0", "@smithy/node-config-provider": "^4.3.4", "@smithy/types": "^4.8.1", @@ -2167,9 +2188,9 @@ } }, "node_modules/@graphql-hive/core": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@graphql-hive/core/-/core-0.13.0.tgz", - "integrity": "sha512-ucK3q4BRY4nJhlsAKf4FujkNjENOyQJikY5B+P32IqkpGH09wcW60l5Mx4jsGh8YppZ1hu4j264kLGmi8/HqXg==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/@graphql-hive/core/-/core-0.13.1.tgz", + "integrity": "sha512-JdwURX4AzDMc+ibttQ+7uRQ6v4sxMBCbQ8Hxyt4k2yrPcuqlMVWpvtcLVkQ7u7WnT3xvAP6j+YXTE1cjk+r/Qg==", "license": "MIT", "dependencies": { "@graphql-tools/utils": "^10.0.0", @@ -2187,9 +2208,9 @@ } }, "node_modules/@graphql-hive/gateway": { - "version": "2.1.14", - "resolved": "https://registry.npmjs.org/@graphql-hive/gateway/-/gateway-2.1.14.tgz", - "integrity": "sha512-nt+TZ/cNIUFZCmE95upPULiWDpBbBA73GLHbxUbByAE9J1Q9ZXFsd14NLMuqi80yc4zD0dMJLPdYKBo7FKJnBw==", + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/@graphql-hive/gateway/-/gateway-2.1.16.tgz", + "integrity": "sha512-Jox6CtlQdkxdBRywhdIXZf02VomLqhLBX/V2XOYXgPMmFh58grFWn7MfxDdQqashR+6+R6425XSX4qg6nxBPKA==", "license": "MIT", "dependencies": { "@commander-js/extra-typings": "^14.0.0", @@ -2197,29 +2218,29 @@ "@escape.tech/graphql-armor-block-field-suggestions": "^3.0.0", "@escape.tech/graphql-armor-max-depth": "^2.4.2", "@escape.tech/graphql-armor-max-tokens": "^2.5.0", - "@graphql-hive/gateway-runtime": "^2.3.2", + "@graphql-hive/gateway-runtime": "^2.3.4", "@graphql-hive/importer": "^2.0.0", "@graphql-hive/logger": "^1.0.8", - "@graphql-hive/plugin-aws-sigv4": "^2.0.14", - "@graphql-hive/plugin-opentelemetry": "^1.1.0", + "@graphql-hive/plugin-aws-sigv4": "^2.0.16", + "@graphql-hive/plugin-opentelemetry": "^1.1.2", "@graphql-hive/pubsub": "^2.1.1", - "@graphql-mesh/cache-cfw-kv": "^0.105.15", - "@graphql-mesh/cache-localforage": "^0.105.16", - "@graphql-mesh/cache-redis": "^0.105.1", - "@graphql-mesh/cache-upstash-redis": "^0.1.15", + "@graphql-mesh/cache-cfw-kv": "^0.105.16", + "@graphql-mesh/cache-localforage": "^0.105.17", + "@graphql-mesh/cache-redis": "^0.105.2", + "@graphql-mesh/cache-upstash-redis": "^0.1.16", "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/hmac-upstream-signature": "^2.0.6", - "@graphql-mesh/plugin-http-cache": "^0.105.16", - "@graphql-mesh/plugin-jit": "^0.2.15", - "@graphql-mesh/plugin-jwt-auth": "^2.0.8", - "@graphql-mesh/plugin-prometheus": "^2.1.0", - "@graphql-mesh/plugin-rate-limit": "^0.105.4", - "@graphql-mesh/plugin-snapshot": "^0.104.15", - "@graphql-mesh/transport-http": "^1.0.10", - "@graphql-mesh/transport-http-callback": "^1.0.10", - "@graphql-mesh/transport-ws": "^2.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/hmac-upstream-signature": "^2.0.7", + "@graphql-mesh/plugin-http-cache": "^0.105.17", + "@graphql-mesh/plugin-jit": "^0.2.16", + "@graphql-mesh/plugin-jwt-auth": "^2.0.9", + "@graphql-mesh/plugin-prometheus": "^2.1.2", + "@graphql-mesh/plugin-rate-limit": "^0.105.5", + "@graphql-mesh/plugin-snapshot": "^0.104.16", + "@graphql-mesh/transport-http": "^1.0.11", + "@graphql-mesh/transport-http-callback": "^1.0.11", + "@graphql-mesh/transport-ws": "^2.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/code-file-loader": "^8.1.24", "@graphql-tools/graphql-file-loader": "^8.1.4", "@graphql-tools/load": "^8.1.4", @@ -2256,9 +2277,9 @@ } }, "node_modules/@graphql-hive/gateway-runtime": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@graphql-hive/gateway-runtime/-/gateway-runtime-2.3.2.tgz", - "integrity": "sha512-IQVidtDiXV3SITkO8QIc27kAbwe1c14EWwLd34+HKEv4mLnNh/HQpbfuHGqgJxqflmosutdTlWP0rCZccfe08w==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@graphql-hive/gateway-runtime/-/gateway-runtime-2.3.4.tgz", + "integrity": "sha512-Eej8Q+N78iYBYTk5CT9Wd57OBzy58wFJ9swkji5j9fpMuQ4HYpN0q4ynMUHovyhD5DE9n+1NMxmNxePvJ+htaQ==", "license": "MIT", "dependencies": { "@envelop/core": "^5.4.0", @@ -2271,12 +2292,12 @@ "@graphql-hive/signal": "^2.0.0", "@graphql-hive/yoga": "^0.42.2", "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/fusion-runtime": "^1.4.2", - "@graphql-mesh/hmac-upstream-signature": "^2.0.6", - "@graphql-mesh/plugin-response-cache": "^0.104.17", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/fusion-runtime": "^1.5.0", + "@graphql-mesh/hmac-upstream-signature": "^2.0.7", + "@graphql-mesh/plugin-response-cache": "^0.104.18", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/batch-delegate": "^10.0.4", "@graphql-tools/delegate": "^11.1.2", "@graphql-tools/executor-common": "^1.0.4", @@ -2358,13 +2379,13 @@ } }, "node_modules/@graphql-hive/plugin-aws-sigv4": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/@graphql-hive/plugin-aws-sigv4/-/plugin-aws-sigv4-2.0.14.tgz", - "integrity": "sha512-yWMZnrHsnSd4mgZKJDWKniITVXo3VraLl+730qnPyOJmrKcU8ICr5EJPwnr9fxK+eiygLD01i5rwD5g5sjoDcw==", + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/@graphql-hive/plugin-aws-sigv4/-/plugin-aws-sigv4-2.0.16.tgz", + "integrity": "sha512-/+Sg3+fJhbilRmQ27+Drz8wDBRojrbqEAQzZqH++qV9ISi0rMdky8kRJ0isqMHafCRMfPN/yhoAjL24OIRUEZw==", "license": "MIT", "dependencies": { - "@aws-sdk/client-sts": "^3.926.0", - "@graphql-mesh/fusion-runtime": "^1.4.2", + "@aws-sdk/client-sts": "^3.927.0", + "@graphql-mesh/fusion-runtime": "^1.5.0", "@whatwg-node/promise-helpers": "^1.3.2", "aws4": "1.13.2", "tslib": "^2.8.1" @@ -2377,18 +2398,18 @@ } }, "node_modules/@graphql-hive/plugin-opentelemetry": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@graphql-hive/plugin-opentelemetry/-/plugin-opentelemetry-1.1.0.tgz", - "integrity": "sha512-ex+aoB85Aq24ve0dkFyeWfvKCGG3bCnRalpdURJ4gwUYa7DlHPHtSwo3RhDTw2TtJZSe6Wgvda746/LtdlZ1sw==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@graphql-hive/plugin-opentelemetry/-/plugin-opentelemetry-1.1.2.tgz", + "integrity": "sha512-p3WljCR96GUZE7qjiWNh1I5jZsQfjHSLzSfqCuyuK95L1I2C/lZa6UBM4mip5YekrK6wPp8zrlFfvNolYTfKfQ==", "license": "MIT", "dependencies": { "@graphql-hive/core": "^0.13.0", - "@graphql-hive/gateway-runtime": "^2.3.2", + "@graphql-hive/gateway-runtime": "^2.3.4", "@graphql-hive/logger": "^1.0.8", "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/utils": "^10.10.1", "@opentelemetry/api": "^1.9.0", "@opentelemetry/api-logs": "^0.208.0", @@ -2439,6 +2460,39 @@ } } }, + "node_modules/@graphql-hive/router-query-planner": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@graphql-hive/router-query-planner/-/router-query-planner-0.0.3.tgz", + "integrity": "sha512-aDE8KORt/DFAr6CQauvm9aIxfCUsIHlOu5cbTWExJW3eVMl1kT+DJ1+nyPHYGjRN/wprZgN0Y8J/QRlEkfiGiQ==", + "license": "MIT", + "engines": { + "bun": "^1", + "node": ">=20" + } + }, + "node_modules/@graphql-hive/router-runtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@graphql-hive/router-runtime/-/router-runtime-1.0.0.tgz", + "integrity": "sha512-Jt4Sbm+71a7yTJZvGmB5i2DaVn84z1CTUD+eBi13+c3dgDbgebzUYLSteI1ZoMH5dA3XPdHAxQsiK6MxRkGJgA==", + "license": "MIT", + "dependencies": { + "@envelop/core": "^5.4.0", + "@graphql-hive/router-query-planner": "^0.0.3", + "@graphql-mesh/fusion-runtime": "^1.5.0", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-tools/executor": "^1.4.11", + "@graphql-tools/executor-common": "^1.0.4", + "@graphql-tools/federation": "^4.2.2", + "@graphql-tools/utils": "^10.9.1", + "@whatwg-node/promise-helpers": "^1.3.2" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, "node_modules/@graphql-hive/signal": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@graphql-hive/signal/-/signal-2.0.0.tgz", @@ -2449,12 +2503,12 @@ } }, "node_modules/@graphql-hive/yoga": { - "version": "0.42.2", - "resolved": "https://registry.npmjs.org/@graphql-hive/yoga/-/yoga-0.42.2.tgz", - "integrity": "sha512-LTHhoBVcx/oDLXKkATb2q88z8TOE1vSetBFhTuzSBCTSVdejaC0j80xuIsQ+ASxGvUkRjr6+0fnqIowvo/OKMQ==", + "version": "0.42.3", + "resolved": "https://registry.npmjs.org/@graphql-hive/yoga/-/yoga-0.42.3.tgz", + "integrity": "sha512-SCHk2yG603SifRqOjrPPRg8g7HKSd1M27obL+jM60EGX+sw1WErOgZNGI6K+FliDILlVt9+5NR7SKQoh5n24cw==", "license": "MIT", "dependencies": { - "@graphql-hive/core": "0.13.0", + "@graphql-hive/core": "0.13.1", "@graphql-yoga/plugin-persisted-operations": "^3.9.0" }, "engines": { @@ -2578,18 +2632,18 @@ } }, "node_modules/@graphql-mesh/fusion-runtime": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@graphql-mesh/fusion-runtime/-/fusion-runtime-1.4.2.tgz", - "integrity": "sha512-D8BG892kxMMs4Ltc5Jxc6uAcCfalVibjJpPtkchy/qyfa1npt+IOAaaYndSQjDAqaiYQBlO/fGiSohSfRkiYpg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@graphql-mesh/fusion-runtime/-/fusion-runtime-1.5.0.tgz", + "integrity": "sha512-p0cu3tli6+Xi+/9hwiUm7/+LnVkNjp4FdXnvjsCLJqKhBM9GGtjTcIT5S4o3yQS1SykFUYp3tHdz4psRN6JGhg==", "license": "MIT", "dependencies": { "@envelop/core": "^5.4.0", "@envelop/instrumentation": "^1.0.0", "@graphql-hive/logger": "^1.0.8", "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/batch-execute": "^10.0.3", "@graphql-tools/delegate": "^11.1.2", "@graphql-tools/executor": "^1.4.11", @@ -2612,14 +2666,14 @@ } }, "node_modules/@graphql-mesh/hmac-upstream-signature": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@graphql-mesh/hmac-upstream-signature/-/hmac-upstream-signature-2.0.6.tgz", - "integrity": "sha512-gyLaBXXCkeLzlM2o9Vpq5gVM8XVcIboa3pZGFlR3EXxN+kGp9Xqn7Zjy7XeNH+WHlzhDNPjU3yEO6d0Rm5CAfA==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@graphql-mesh/hmac-upstream-signature/-/hmac-upstream-signature-2.0.7.tgz", + "integrity": "sha512-hChBUlBAYastRM/xVS3mrfZS1TBIGq9jMBVMgDGbYKjBwVCcz40Cwe6ncX/hfSNcDIWXN6Y0s+wKbvrSqqAbRg==", "license": "MIT", "dependencies": { "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/executor-common": "^1.0.4", "@graphql-tools/utils": "^10.10.1", "@whatwg-node/promise-helpers": "^1.3.2", @@ -2673,13 +2727,13 @@ } }, "node_modules/@graphql-mesh/plugin-jwt-auth": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@graphql-mesh/plugin-jwt-auth/-/plugin-jwt-auth-2.0.8.tgz", - "integrity": "sha512-EUxoLx/asNayYf45koCDvLFa8JcHukX9L8rC3cexncw5HJzJAbM/bgXp8nUVeBMhEPuRXb7H6eo2ETwQDaWhVA==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@graphql-mesh/plugin-jwt-auth/-/plugin-jwt-auth-2.0.9.tgz", + "integrity": "sha512-SLMlHOTmAHSSbABaMDp8a6SkrmFzOlWSH0C+ygZ2/gJuyUvQ3VmwCzd+91C5yP6Jwh9VUwksyR4cgXDfEJImHA==", "license": "MIT", "dependencies": { - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-yoga/plugin-jwt": "^3.10.2", "tslib": "^2.4.0" }, @@ -2691,16 +2745,16 @@ } }, "node_modules/@graphql-mesh/plugin-prometheus": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@graphql-mesh/plugin-prometheus/-/plugin-prometheus-2.1.0.tgz", - "integrity": "sha512-LypltNSqYGK/QGyHu49umoyrWjrtZ0dnVrfS1wuXS19HtTlff4FwY7wNuXN9Tz0hg8CTIFgRGN1AIl0AQwvOTg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@graphql-mesh/plugin-prometheus/-/plugin-prometheus-2.1.2.tgz", + "integrity": "sha512-WpMkcMy7/1tmLUK8HqoQTvyE89ZVQ3QF7OHpPp6BlMYpFbZNzxjztYEPyk3R8y+znPDCbi5WiUqY/0wpAEZY9A==", "license": "MIT", "dependencies": { - "@graphql-hive/gateway-runtime": "^2.3.2", + "@graphql-hive/gateway-runtime": "^2.3.4", "@graphql-hive/logger": "^1.0.8", "@graphql-mesh/cross-helpers": "^0.4.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/utils": "^10.10.1", "@graphql-yoga/plugin-prometheus": "^6.11.2", "prom-client": "^15.0.0", @@ -2802,16 +2856,16 @@ } }, "node_modules/@graphql-mesh/transport-common": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-common/-/transport-common-1.0.10.tgz", - "integrity": "sha512-wAA9IyfyxP11UhwRn8XauaKYSMkRpCSKOUvRu7+HN0VL7AU/YQ0BbxyBvaMCybt9spZUkuusHuxxs6j0POSSAA==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-common/-/transport-common-1.0.11.tgz", + "integrity": "sha512-+/MddMOLyN1MumRH5rsaYHWwJWqsbyKqMoWYuqLeA8q/zHf3lSH2EK3TqcVVjMgz/yBMRV92wb198LYL16sCNg==", "license": "MIT", "dependencies": { "@envelop/core": "^5.4.0", "@graphql-hive/logger": "^1.0.8", "@graphql-hive/pubsub": "^2.1.1", "@graphql-hive/signal": "^2.0.0", - "@graphql-mesh/types": "^0.104.15", + "@graphql-mesh/types": "^0.104.16", "@graphql-tools/executor": "^1.4.11", "@graphql-tools/executor-common": "^1.0.4", "@graphql-tools/utils": "^10.10.1", @@ -2825,16 +2879,16 @@ } }, "node_modules/@graphql-mesh/transport-http": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-http/-/transport-http-1.0.10.tgz", - "integrity": "sha512-a5a3aNEY18uwxurQEchvrtDDesHQovp6zkpErMDTcyQ5+1bTCJz+zqsaA8mepM4SfbJBPqlwPk9yvJBylP8oqA==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-http/-/transport-http-1.0.11.tgz", + "integrity": "sha512-beHJ2eUfkQ8BzgaK7RJdTp8NBriF8RD3xGB/JXY0D28gq1oyZpYw+IhPUszBCCGikPobLW5WwQtdlBUsbZarsA==", "license": "MIT", "dependencies": { "@graphql-mesh/cross-helpers": "^0.4.10", "@graphql-mesh/string-interpolation": "^0.5.9", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/executor-http": "^3.0.6", "@graphql-tools/utils": "^10.10.1", "@whatwg-node/promise-helpers": "^1.3.2", @@ -2848,17 +2902,17 @@ } }, "node_modules/@graphql-mesh/transport-http-callback": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-http-callback/-/transport-http-callback-1.0.10.tgz", - "integrity": "sha512-Utm4/a48/OlMHQXoi1QK/M21e95MWnpFnnJpMCHPzn3eOKLS0nq2NQ0ykZezHOzAcAVwNbMkE8KYx6KCkF0JFw==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-http-callback/-/transport-http-callback-1.0.11.tgz", + "integrity": "sha512-dSgqaA/kMLL6D8tw7LtSLezXTuQngpEMZLNor8KqKEqwO/ozVr5LM8ez6wcEt3VR9bmupL2vgIXqWbGv7FpBcA==", "license": "MIT", "dependencies": { "@graphql-hive/signal": "^2.0.0", "@graphql-mesh/cross-helpers": "^0.4.10", "@graphql-mesh/string-interpolation": "^0.5.9", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/executor-common": "^1.0.4", "@graphql-tools/utils": "^10.10.1", "@repeaterjs/repeater": "^3.0.6", @@ -2874,16 +2928,16 @@ } }, "node_modules/@graphql-mesh/transport-ws": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-ws/-/transport-ws-2.0.10.tgz", - "integrity": "sha512-jPDzBNINGj0vvxD9d41Dj6CEHLfHHombNDJUMcOMU6v6QdhEIyHLfU00QhAKoSQtvFlbvDbYEDRRLRSoHg2+/A==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@graphql-mesh/transport-ws/-/transport-ws-2.0.11.tgz", + "integrity": "sha512-UEBZ1/63pfRcsx4K6vUidCcKB6tzKX3r+kQzPth27hR8bJh8kj7BvgK8RXcmC/llr9L6ebAjEdNfnrSTGgiqGA==", "license": "MIT", "dependencies": { "@graphql-mesh/cross-helpers": "^0.4.10", "@graphql-mesh/string-interpolation": "^0.5.9", - "@graphql-mesh/transport-common": "^1.0.10", - "@graphql-mesh/types": "^0.104.15", - "@graphql-mesh/utils": "^0.104.15", + "@graphql-mesh/transport-common": "^1.0.11", + "@graphql-mesh/types": "^0.104.16", + "@graphql-mesh/utils": "^0.104.16", "@graphql-tools/executor-graphql-ws": "^3.1.2", "@graphql-tools/utils": "^10.10.1", "graphql-ws": "^6.0.6", @@ -5248,160 +5302,6 @@ "@opentelemetry/api": "^1.1.0" } }, - "node_modules/@oven/bun-darwin-aarch64": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-darwin-aarch64/-/bun-darwin-aarch64-1.3.2.tgz", - "integrity": "sha512-licBDIbbLP5L5/S0+bwtJynso94XD3KyqSP48K59Sq7Mude6C7dR5ZujZm4Ut4BwZqUFfNOfYNMWBU5nlL7t1A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@oven/bun-darwin-x64": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64/-/bun-darwin-x64-1.3.2.tgz", - "integrity": "sha512-hn8lLzsYyyh6ULo2E8v2SqtrWOkdQKJwapeVy1rDw7juTTeHY3KDudGWf4mVYteC9riZU6HD88Fn3nGwyX0eIg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@oven/bun-darwin-x64-baseline": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64-baseline/-/bun-darwin-x64-baseline-1.3.2.tgz", - "integrity": "sha512-UHxdtbyxdtNJUNcXtIrjx3Lmq8ji3KywlXtIHV/0vn9A8W5mulqOcryqUWMFVH9JTIIzmNn6Q/qVmXHTME63Ww==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@oven/bun-linux-aarch64": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64/-/bun-linux-aarch64-1.3.2.tgz", - "integrity": "sha512-5uZzxzvHU/z+3cZwN/A0H8G+enQ+9FkeJVZkE2fwK2XhiJZFUGAuWajCpy7GepvOWlqV7VjPaKi2+Qmr4IX7nQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-linux-aarch64-musl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64-musl/-/bun-linux-aarch64-musl-1.3.2.tgz", - "integrity": "sha512-OD9DYkjes7WXieBn4zQZGXWhRVZhIEWMDGCetZ3H4vxIuweZ++iul/CNX5jdpNXaJ17myb1ROMvmRbrqW44j3w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-linux-x64": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64/-/bun-linux-x64-1.3.2.tgz", - "integrity": "sha512-EoEuRP9bxAxVKuvi6tZ0ZENjueP4lvjz0mKsMzdG0kwg/2apGKiirH1l0RIcdmvfDGGuDmNiv/XBpkoXq1x8ug==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-linux-x64-baseline": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-baseline/-/bun-linux-x64-baseline-1.3.2.tgz", - "integrity": "sha512-m9Ov9YH8KjRLui87eNtQQFKVnjGsNk3xgbrR9c8d2FS3NfZSxmVjSeBvEsDjzNf1TXLDriHb/NYOlpiMf/QzDg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-linux-x64-musl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl/-/bun-linux-x64-musl-1.3.2.tgz", - "integrity": "sha512-3TuOsRVoG8K+soQWRo+Cp5ACpRs6rTFSu5tAqc/6WrqwbNWmqjov/eWJPTgz3gPXnC7uNKVG7RxxAmV8r2EYTQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-linux-x64-musl-baseline": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl-baseline/-/bun-linux-x64-musl-baseline-1.3.2.tgz", - "integrity": "sha512-q8Hto8hcpofPJjvuvjuwyYvhOaAzPw1F5vRUUeOJDmDwZ4lZhANFM0rUwchMzfWUJCD6jg8/EVQ8MiixnZWU0A==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@oven/bun-windows-x64": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64/-/bun-windows-x64-1.3.2.tgz", - "integrity": "sha512-nZJUa5NprPYQ4Ii4cMwtP9PzlJJTp1XhxJ+A9eSn1Jfr6YygVWyN2KLjenyI93IcuBouBAaepDAVZZjH2lFBhg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@oven/bun-windows-x64-baseline": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64-baseline/-/bun-windows-x64-baseline-1.3.2.tgz", - "integrity": "sha512-s00T99MjB+xLOWq+t+wVaVBrry+oBOZNiTJijt+bmkp/MJptYS3FGvs7a+nkjLNzoNDoWQcXgKew6AaHES37Bg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -5905,12 +5805,12 @@ "license": "MIT" }, "node_modules/@smithy/abort-controller": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.2.4.tgz", - "integrity": "sha512-Z4DUr/AkgyFf1bOThW2HwzREagee0sB5ycl+hDiSZOfRLW8ZgrOjDi6g8mHH19yyU5E2A/64W3z6SMIf5XiUSQ==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.2.5.tgz", + "integrity": "sha512-j7HwVkBw68YW8UmFRcjZOmssE77Rvk0GWAIN1oFBhsaovQmZWYCIcGa9/pwRB0ExI8Sk9MWNALTjftjHZea7VA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -5918,16 +5818,16 @@ } }, "node_modules/@smithy/config-resolver": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-4.4.2.tgz", - "integrity": "sha512-4Jys0ni2tB2VZzgslbEgszZyMdTkPOFGA8g+So/NjR8oy6Qwaq4eSwsrRI+NMtb0Dq4kqCzGUu/nGUx7OM/xfw==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-4.4.3.tgz", + "integrity": "sha512-ezHLe1tKLUxDJo2LHtDuEDyWXolw8WGOR92qb4bQdWq/zKenO5BvctZGrVJBK08zjezSk7bmbKFOXIVyChvDLw==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^4.3.4", - "@smithy/types": "^4.8.1", + "@smithy/node-config-provider": "^4.3.5", + "@smithy/types": "^4.9.0", "@smithy/util-config-provider": "^4.2.0", - "@smithy/util-endpoints": "^3.2.4", - "@smithy/util-middleware": "^4.2.4", + "@smithy/util-endpoints": "^3.2.5", + "@smithy/util-middleware": "^4.2.5", "tslib": "^2.6.2" }, "engines": { @@ -5935,18 +5835,18 @@ } }, "node_modules/@smithy/core": { - "version": "3.17.2", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.17.2.tgz", - "integrity": "sha512-n3g4Nl1Te+qGPDbNFAYf+smkRVB+JhFsGy9uJXXZQEufoP4u0r+WLh6KvTDolCswaagysDc/afS1yvb2jnj1gQ==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.18.0.tgz", + "integrity": "sha512-vGSDXOJFZgOPTatSI1ly7Gwyy/d/R9zh2TO3y0JZ0uut5qQ88p9IaWaZYIWSSqtdekNM4CGok/JppxbAff4KcQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-serde": "^4.2.4", - "@smithy/protocol-http": "^5.3.4", - "@smithy/types": "^4.8.1", + "@smithy/middleware-serde": "^4.2.5", + "@smithy/protocol-http": "^5.3.5", + "@smithy/types": "^4.9.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", - "@smithy/util-middleware": "^4.2.4", - "@smithy/util-stream": "^4.5.5", + "@smithy/util-middleware": "^4.2.5", + "@smithy/util-stream": "^4.5.6", "@smithy/util-utf8": "^4.2.0", "@smithy/uuid": "^1.1.0", "tslib": "^2.6.2" @@ -5956,15 +5856,15 @@ } }, "node_modules/@smithy/credential-provider-imds": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.4.tgz", - "integrity": "sha512-YVNMjhdz2pVto5bRdux7GMs0x1m0Afz3OcQy/4Yf9DH4fWOtroGH7uLvs7ZmDyoBJzLdegtIPpXrpJOZWvUXdw==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.5.tgz", + "integrity": "sha512-BZwotjoZWn9+36nimwm/OLIcVe+KYRwzMjfhd4QT7QxPm9WY0HiOV8t/Wlh+HVUif0SBVV7ksq8//hPaBC/okQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^4.3.4", - "@smithy/property-provider": "^4.2.4", - "@smithy/types": "^4.8.1", - "@smithy/url-parser": "^4.2.4", + "@smithy/node-config-provider": "^4.3.5", + "@smithy/property-provider": "^4.2.5", + "@smithy/types": "^4.9.0", + "@smithy/url-parser": "^4.2.5", "tslib": "^2.6.2" }, "engines": { @@ -5972,14 +5872,14 @@ } }, "node_modules/@smithy/fetch-http-handler": { - "version": "5.3.5", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.5.tgz", - "integrity": "sha512-mg83SM3FLI8Sa2ooTJbsh5MFfyMTyNRwxqpKHmE0ICRIa66Aodv80DMsTQI02xBLVJ0hckwqTRr5IGAbbWuFLQ==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.6.tgz", + "integrity": "sha512-3+RG3EA6BBJ/ofZUeTFJA7mHfSYrZtQIrDP9dI8Lf7X6Jbos2jptuLrAAteDiFVrmbEmLSuRG/bUKzfAXk7dhg==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^5.3.4", - "@smithy/querystring-builder": "^4.2.4", - "@smithy/types": "^4.8.1", + "@smithy/protocol-http": "^5.3.5", + "@smithy/querystring-builder": "^4.2.5", + "@smithy/types": "^4.9.0", "@smithy/util-base64": "^4.3.0", "tslib": "^2.6.2" }, @@ -5988,12 +5888,12 @@ } }, "node_modules/@smithy/hash-node": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-4.2.4.tgz", - "integrity": "sha512-kKU0gVhx/ppVMntvUOZE7WRMFW86HuaxLwvqileBEjL7PoILI8/djoILw3gPQloGVE6O0oOzqafxeNi2KbnUJw==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-4.2.5.tgz", + "integrity": "sha512-DpYX914YOfA3UDT9CN1BM787PcHfWRBB43fFGCYrZFUH0Jv+5t8yYl+Pd5PW4+QzoGEDvn5d5QIO4j2HyYZQSA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "@smithy/util-buffer-from": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" @@ -6003,12 +5903,12 @@ } }, "node_modules/@smithy/invalid-dependency": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-4.2.4.tgz", - "integrity": "sha512-z6aDLGiHzsMhbS2MjetlIWopWz//K+mCoPXjW6aLr0mypF+Y7qdEh5TyJ20Onf9FbWHiWl4eC+rITdizpnXqOw==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-4.2.5.tgz", + "integrity": "sha512-2L2erASEro1WC5nV+plwIMxrTXpvpfzl4e+Nre6vBVRR2HKeGGcvpJyyL3/PpiSg+cJG2KpTmZmq934Olb6e5A==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6028,13 +5928,13 @@ } }, "node_modules/@smithy/middleware-content-length": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-4.2.4.tgz", - "integrity": "sha512-hJRZuFS9UsElX4DJSJfoX4M1qXRH+VFiLMUnhsWvtOOUWRNvvOfDaUSdlNbjwv1IkpVjj/Rd/O59Jl3nhAcxow==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-4.2.5.tgz", + "integrity": "sha512-Y/RabVa5vbl5FuHYV2vUCwvh/dqzrEY/K2yWPSqvhFUwIY0atLqO4TienjBXakoy4zrKAMCZwg+YEqmH7jaN7A==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^5.3.4", - "@smithy/types": "^4.8.1", + "@smithy/protocol-http": "^5.3.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6042,18 +5942,18 @@ } }, "node_modules/@smithy/middleware-endpoint": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.3.6.tgz", - "integrity": "sha512-PXehXofGMFpDqr933rxD8RGOcZ0QBAWtuzTgYRAHAL2BnKawHDEdf/TnGpcmfPJGwonhginaaeJIKluEojiF/w==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/core": "^3.17.2", - "@smithy/middleware-serde": "^4.2.4", - "@smithy/node-config-provider": "^4.3.4", - "@smithy/shared-ini-file-loader": "^4.3.4", - "@smithy/types": "^4.8.1", - "@smithy/url-parser": "^4.2.4", - "@smithy/util-middleware": "^4.2.4", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.3.7.tgz", + "integrity": "sha512-i8Mi8OuY6Yi82Foe3iu7/yhBj1HBRoOQwBSsUNYglJTNSFaWYTNM2NauBBs/7pq2sqkLRqeUXA3Ogi2utzpUlQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^3.18.0", + "@smithy/middleware-serde": "^4.2.5", + "@smithy/node-config-provider": "^4.3.5", + "@smithy/shared-ini-file-loader": "^4.4.0", + "@smithy/types": "^4.9.0", + "@smithy/url-parser": "^4.2.5", + "@smithy/util-middleware": "^4.2.5", "tslib": "^2.6.2" }, "engines": { @@ -6061,18 +5961,18 @@ } }, "node_modules/@smithy/middleware-retry": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.6.tgz", - "integrity": "sha512-OhLx131znrEDxZPAvH/OYufR9d1nB2CQADyYFN4C3V/NQS7Mg4V6uvxHC/Dr96ZQW8IlHJTJ+vAhKt6oxWRndA==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^4.3.4", - "@smithy/protocol-http": "^5.3.4", - "@smithy/service-error-classification": "^4.2.4", - "@smithy/smithy-client": "^4.9.2", - "@smithy/types": "^4.8.1", - "@smithy/util-middleware": "^4.2.4", - "@smithy/util-retry": "^4.2.4", + "version": "4.4.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.7.tgz", + "integrity": "sha512-E7Vc6WHCHlzDRTx1W0jZ6J1L6ziEV0PIWcUdmfL4y+c8r7WYr6I+LkQudaD8Nfb7C5c4P3SQ972OmXHtv6m/OA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^4.3.5", + "@smithy/protocol-http": "^5.3.5", + "@smithy/service-error-classification": "^4.2.5", + "@smithy/smithy-client": "^4.9.3", + "@smithy/types": "^4.9.0", + "@smithy/util-middleware": "^4.2.5", + "@smithy/util-retry": "^4.2.5", "@smithy/uuid": "^1.1.0", "tslib": "^2.6.2" }, @@ -6081,13 +5981,13 @@ } }, "node_modules/@smithy/middleware-serde": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.4.tgz", - "integrity": "sha512-jUr3x2CDhV15TOX2/Uoz4gfgeqLrRoTQbYAuhLS7lcVKNev7FeYSJ1ebEfjk+l9kbb7k7LfzIR/irgxys5ZTOg==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.5.tgz", + "integrity": "sha512-La1ldWTJTZ5NqQyPqnCNeH9B+zjFhrNoQIL1jTh4zuqXRlmXhxYHhMtI1/92OlnoAtp6JoN7kzuwhWoXrBwPqg==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^5.3.4", - "@smithy/types": "^4.8.1", + "@smithy/protocol-http": "^5.3.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6095,12 +5995,12 @@ } }, "node_modules/@smithy/middleware-stack": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-4.2.4.tgz", - "integrity": "sha512-Gy3TKCOnm9JwpFooldwAboazw+EFYlC+Bb+1QBsSi5xI0W5lX81j/P5+CXvD/9ZjtYKRgxq+kkqd/KOHflzvgA==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-4.2.5.tgz", + "integrity": "sha512-bYrutc+neOyWxtZdbB2USbQttZN0mXaOyYLIsaTbJhFsfpXyGWUxJpEuO1rJ8IIJm2qH4+xJT0mxUSsEDTYwdQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6108,14 +6008,14 @@ } }, "node_modules/@smithy/node-config-provider": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-4.3.4.tgz", - "integrity": "sha512-3X3w7qzmo4XNNdPKNS4nbJcGSwiEMsNsRSunMA92S4DJLLIrH5g1AyuOA2XKM9PAPi8mIWfqC+fnfKNsI4KvHw==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-4.3.5.tgz", + "integrity": "sha512-UTurh1C4qkVCtqggI36DGbLB2Kv8UlcFdMXDcWMbqVY2uRg0XmT9Pb4Vj6oSQ34eizO1fvR0RnFV4Axw4IrrAg==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^4.2.4", - "@smithy/shared-ini-file-loader": "^4.3.4", - "@smithy/types": "^4.8.1", + "@smithy/property-provider": "^4.2.5", + "@smithy/shared-ini-file-loader": "^4.4.0", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6123,15 +6023,15 @@ } }, "node_modules/@smithy/node-http-handler": { - "version": "4.4.4", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.4.4.tgz", - "integrity": "sha512-VXHGfzCXLZeKnFp6QXjAdy+U8JF9etfpUXD1FAbzY1GzsFJiDQRQIt2CnMUvUdz3/YaHNqT3RphVWMUpXTIODA==", + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.4.5.tgz", + "integrity": "sha512-CMnzM9R2WqlqXQGtIlsHMEZfXKJVTIrqCNoSd/QpAyp+Dw0a1Vps13l6ma1fH8g7zSPNsA59B/kWgeylFuA/lw==", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^4.2.4", - "@smithy/protocol-http": "^5.3.4", - "@smithy/querystring-builder": "^4.2.4", - "@smithy/types": "^4.8.1", + "@smithy/abort-controller": "^4.2.5", + "@smithy/protocol-http": "^5.3.5", + "@smithy/querystring-builder": "^4.2.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6139,12 +6039,12 @@ } }, "node_modules/@smithy/property-provider": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-4.2.4.tgz", - "integrity": "sha512-g2DHo08IhxV5GdY3Cpt/jr0mkTlAD39EJKN27Jb5N8Fb5qt8KG39wVKTXiTRCmHHou7lbXR8nKVU14/aRUf86w==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-4.2.5.tgz", + "integrity": "sha512-8iLN1XSE1rl4MuxvQ+5OSk/Zb5El7NJZ1td6Tn+8dQQHIjp59Lwl6bd0+nzw6SKm2wSSriH2v/I9LPzUic7EOg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6152,12 +6052,12 @@ } }, "node_modules/@smithy/protocol-http": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-5.3.4.tgz", - "integrity": "sha512-3sfFd2MAzVt0Q/klOmjFi3oIkxczHs0avbwrfn1aBqtc23WqQSmjvk77MBw9WkEQcwbOYIX5/2z4ULj8DuxSsw==", + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-5.3.5.tgz", + "integrity": "sha512-RlaL+sA0LNMp03bf7XPbFmT5gN+w3besXSWMkA8rcmxLSVfiEXElQi4O2IWwPfxzcHkxqrwBFMbngB8yx/RvaQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6165,12 +6065,12 @@ } }, "node_modules/@smithy/querystring-builder": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-4.2.4.tgz", - "integrity": "sha512-KQ1gFXXC+WsbPFnk7pzskzOpn4s+KheWgO3dzkIEmnb6NskAIGp/dGdbKisTPJdtov28qNDohQrgDUKzXZBLig==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-4.2.5.tgz", + "integrity": "sha512-y98otMI1saoajeik2kLfGyRp11e5U/iJYH/wLCh3aTV/XutbGT9nziKGkgCaMD1ghK7p6htHMm6b6scl9JRUWg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "@smithy/util-uri-escape": "^4.2.0", "tslib": "^2.6.2" }, @@ -6179,12 +6079,12 @@ } }, "node_modules/@smithy/querystring-parser": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-4.2.4.tgz", - "integrity": "sha512-aHb5cqXZocdzEkZ/CvhVjdw5l4r1aU/9iMEyoKzH4eXMowT6M0YjBpp7W/+XjkBnY8Xh0kVd55GKjnPKlCwinQ==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-4.2.5.tgz", + "integrity": "sha512-031WCTdPYgiQRYNPXznHXof2YM0GwL6SeaSyTH/P72M1Vz73TvCNH2Nq8Iu2IEPq9QP2yx0/nrw5YmSeAi/AjQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6192,24 +6092,24 @@ } }, "node_modules/@smithy/service-error-classification": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-4.2.4.tgz", - "integrity": "sha512-fdWuhEx4+jHLGeew9/IvqVU/fxT/ot70tpRGuOLxE3HzZOyKeTQfYeV1oaBXpzi93WOk668hjMuuagJ2/Qs7ng==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-4.2.5.tgz", + "integrity": "sha512-8fEvK+WPE3wUAcDvqDQG1Vk3ANLR8Px979te96m84CbKAjBVf25rPYSzb4xU4hlTyho7VhOGnh5i62D/JVF0JQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1" + "@smithy/types": "^4.9.0" }, "engines": { "node": ">=18.0.0" } }, "node_modules/@smithy/shared-ini-file-loader": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.3.4.tgz", - "integrity": "sha512-y5ozxeQ9omVjbnJo9dtTsdXj9BEvGx2X8xvRgKnV+/7wLBuYJQL6dOa/qMY6omyHi7yjt1OA97jZLoVRYi8lxA==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.4.0.tgz", + "integrity": "sha512-5WmZ5+kJgJDjwXXIzr1vDTG+RhF9wzSODQBfkrQ2VVkYALKGvZX1lgVSxEkgicSAFnFhPj5rudJV0zoinqS0bA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6217,16 +6117,16 @@ } }, "node_modules/@smithy/signature-v4": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.3.4.tgz", - "integrity": "sha512-ScDCpasxH7w1HXHYbtk3jcivjvdA1VICyAdgvVqKhKKwxi+MTwZEqFw0minE+oZ7F07oF25xh4FGJxgqgShz0A==", + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.3.5.tgz", + "integrity": "sha512-xSUfMu1FT7ccfSXkoLl/QRQBi2rOvi3tiBZU2Tdy3I6cgvZ6SEi9QNey+lqps/sJRnogIS+lq+B1gxxbra2a/w==", "license": "Apache-2.0", "dependencies": { "@smithy/is-array-buffer": "^4.2.0", - "@smithy/protocol-http": "^5.3.4", - "@smithy/types": "^4.8.1", + "@smithy/protocol-http": "^5.3.5", + "@smithy/types": "^4.9.0", "@smithy/util-hex-encoding": "^4.2.0", - "@smithy/util-middleware": "^4.2.4", + "@smithy/util-middleware": "^4.2.5", "@smithy/util-uri-escape": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" @@ -6236,17 +6136,17 @@ } }, "node_modules/@smithy/smithy-client": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.9.2.tgz", - "integrity": "sha512-gZU4uAFcdrSi3io8U99Qs/FvVdRxPvIMToi+MFfsy/DN9UqtknJ1ais+2M9yR8e0ASQpNmFYEKeIKVcMjQg3rg==", + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.9.3.tgz", + "integrity": "sha512-8tlueuTgV5n7inQCkhyptrB3jo2AO80uGrps/XTYZivv5MFQKKBj3CIWIGMI2fRY5LEduIiazOhAWdFknY1O9w==", "license": "Apache-2.0", "dependencies": { - "@smithy/core": "^3.17.2", - "@smithy/middleware-endpoint": "^4.3.6", - "@smithy/middleware-stack": "^4.2.4", - "@smithy/protocol-http": "^5.3.4", - "@smithy/types": "^4.8.1", - "@smithy/util-stream": "^4.5.5", + "@smithy/core": "^3.18.0", + "@smithy/middleware-endpoint": "^4.3.7", + "@smithy/middleware-stack": "^4.2.5", + "@smithy/protocol-http": "^5.3.5", + "@smithy/types": "^4.9.0", + "@smithy/util-stream": "^4.5.6", "tslib": "^2.6.2" }, "engines": { @@ -6254,9 +6154,9 @@ } }, "node_modules/@smithy/types": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.8.1.tgz", - "integrity": "sha512-N0Zn0OT1zc+NA+UVfkYqQzviRh5ucWwO7mBV3TmHHprMnfcJNfhlPicDkBHi0ewbh+y3evR6cNAW0Raxvb01NA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.9.0.tgz", + "integrity": "sha512-MvUbdnXDTwykR8cB1WZvNNwqoWVaTRA0RLlLmf/cIFNMM2cKWz01X4Ly6SMC4Kks30r8tT3Cty0jmeWfiuyHTA==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" @@ -6266,13 +6166,13 @@ } }, "node_modules/@smithy/url-parser": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-4.2.4.tgz", - "integrity": "sha512-w/N/Iw0/PTwJ36PDqU9PzAwVElo4qXxCC0eCTlUtIz/Z5V/2j/cViMHi0hPukSBHp4DVwvUlUhLgCzqSJ6plrg==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-4.2.5.tgz", + "integrity": "sha512-VaxMGsilqFnK1CeBX+LXnSuaMx4sTL/6znSZh2829txWieazdVxr54HmiyTsIbpOTLcf5nYpq9lpzmwRdxj6rQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/querystring-parser": "^4.2.4", - "@smithy/types": "^4.8.1", + "@smithy/querystring-parser": "^4.2.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6343,14 +6243,14 @@ } }, "node_modules/@smithy/util-defaults-mode-browser": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.5.tgz", - "integrity": "sha512-GwaGjv/QLuL/QHQaqhf/maM7+MnRFQQs7Bsl6FlaeK6lm6U7mV5AAnVabw68cIoMl5FQFyKK62u7RWRzWL25OQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.6.tgz", + "integrity": "sha512-kbpuXbEf2YQ9zEE6eeVnUCQWO0e1BjMnKrXL8rfXgiWA0m8/E0leU4oSNzxP04WfCmW8vjEqaDeXWxwE4tpOjQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^4.2.4", - "@smithy/smithy-client": "^4.9.2", - "@smithy/types": "^4.8.1", + "@smithy/property-provider": "^4.2.5", + "@smithy/smithy-client": "^4.9.3", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6358,17 +6258,17 @@ } }, "node_modules/@smithy/util-defaults-mode-node": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.8.tgz", - "integrity": "sha512-gIoTf9V/nFSIZ0TtgDNLd+Ws59AJvijmMDYrOozoMHPJaG9cMRdqNO50jZTlbM6ydzQYY8L/mQ4tKSw/TB+s6g==", + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.9.tgz", + "integrity": "sha512-dgyribrVWN5qE5usYJ0m5M93mVM3L3TyBPZWe1Xl6uZlH2gzfQx3dz+ZCdW93lWqdedJRkOecnvbnoEEXRZ5VQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/config-resolver": "^4.4.2", - "@smithy/credential-provider-imds": "^4.2.4", - "@smithy/node-config-provider": "^4.3.4", - "@smithy/property-provider": "^4.2.4", - "@smithy/smithy-client": "^4.9.2", - "@smithy/types": "^4.8.1", + "@smithy/config-resolver": "^4.4.3", + "@smithy/credential-provider-imds": "^4.2.5", + "@smithy/node-config-provider": "^4.3.5", + "@smithy/property-provider": "^4.2.5", + "@smithy/smithy-client": "^4.9.3", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6376,13 +6276,13 @@ } }, "node_modules/@smithy/util-endpoints": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-3.2.4.tgz", - "integrity": "sha512-f+nBDhgYRCmUEDKEQb6q0aCcOTXRDqH5wWaFHJxt4anB4pKHlgGoYP3xtioKXH64e37ANUkzWf6p4Mnv1M5/Vg==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-3.2.5.tgz", + "integrity": "sha512-3O63AAWu2cSNQZp+ayl9I3NapW1p1rR5mlVHcF6hAB1dPZUQFfRPYtplWX/3xrzWthPGj5FqB12taJJCfH6s8A==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^4.3.4", - "@smithy/types": "^4.8.1", + "@smithy/node-config-provider": "^4.3.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6402,12 +6302,12 @@ } }, "node_modules/@smithy/util-middleware": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-4.2.4.tgz", - "integrity": "sha512-fKGQAPAn8sgV0plRikRVo6g6aR0KyKvgzNrPuM74RZKy/wWVzx3BMk+ZWEueyN3L5v5EDg+P582mKU+sH5OAsg==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-4.2.5.tgz", + "integrity": "sha512-6Y3+rvBF7+PZOc40ybeZMcGln6xJGVeY60E7jy9Mv5iKpMJpHgRE6dKy9ScsVxvfAYuEX4Q9a65DQX90KaQ3bA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^4.8.1", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6415,13 +6315,13 @@ } }, "node_modules/@smithy/util-retry": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-4.2.4.tgz", - "integrity": "sha512-yQncJmj4dtv/isTXxRb4AamZHy4QFr4ew8GxS6XLWt7sCIxkPxPzINWd7WLISEFPsIan14zrKgvyAF+/yzfwoA==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-4.2.5.tgz", + "integrity": "sha512-GBj3+EZBbN4NAqJ/7pAhsXdfzdlznOh8PydUijy6FpNIMnHPSMO2/rP4HKu+UFeikJxShERk528oy7GT79YiJg==", "license": "Apache-2.0", "dependencies": { - "@smithy/service-error-classification": "^4.2.4", - "@smithy/types": "^4.8.1", + "@smithy/service-error-classification": "^4.2.5", + "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, "engines": { @@ -6429,14 +6329,14 @@ } }, "node_modules/@smithy/util-stream": { - "version": "4.5.5", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.5.tgz", - "integrity": "sha512-7M5aVFjT+HPilPOKbOmQfCIPchZe4DSBc1wf1+NvHvSoFTiFtauZzT+onZvCj70xhXd0AEmYnZYmdJIuwxOo4w==", + "version": "4.5.6", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.6.tgz", + "integrity": "sha512-qWw/UM59TiaFrPevefOZ8CNBKbYEP6wBAIlLqxn3VAIo9rgnTNc4ASbVrqDmhuwI87usnjhdQrxodzAGFFzbRQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/fetch-http-handler": "^5.3.5", - "@smithy/node-http-handler": "^4.4.4", - "@smithy/types": "^4.8.1", + "@smithy/fetch-http-handler": "^5.3.6", + "@smithy/node-http-handler": "^4.4.5", + "@smithy/types": "^4.9.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-buffer-from": "^4.2.0", "@smithy/util-hex-encoding": "^4.2.0", @@ -7849,40 +7749,6 @@ "node": ">= 0.10.x" } }, - "node_modules/bun": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/bun/-/bun-1.3.2.tgz", - "integrity": "sha512-x75mPJiEfhO1j4Tfc65+PtW6ZyrAB6yTZInydnjDZXF9u9PRAnr6OK3v0Q9dpDl0dxRHkXlYvJ8tteJxc8t4Sw==", - "cpu": [ - "arm64", - "x64" - ], - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "os": [ - "darwin", - "linux", - "win32" - ], - "bin": { - "bun": "bin/bun.exe", - "bunx": "bin/bunx.exe" - }, - "optionalDependencies": { - "@oven/bun-darwin-aarch64": "1.3.2", - "@oven/bun-darwin-x64": "1.3.2", - "@oven/bun-darwin-x64-baseline": "1.3.2", - "@oven/bun-linux-aarch64": "1.3.2", - "@oven/bun-linux-aarch64-musl": "1.3.2", - "@oven/bun-linux-x64": "1.3.2", - "@oven/bun-linux-x64-baseline": "1.3.2", - "@oven/bun-linux-x64-musl": "1.3.2", - "@oven/bun-linux-x64-musl-baseline": "1.3.2", - "@oven/bun-windows-x64": "1.3.2", - "@oven/bun-windows-x64-baseline": "1.3.2" - } - }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", @@ -9963,8 +9829,8 @@ "resolved": "gateways/hive-gateway", "link": true }, - "node_modules/hive-gateway-bun": { - "resolved": "gateways/hive-gateway-bun", + "node_modules/hive-gateway-router-runtime": { + "resolved": "gateways/hive-gateway-router-runtime", "link": true }, "node_modules/http-cache-semantics": { diff --git a/ramping-vus_result.md b/ramping-vus_result.md index d28ad8282..5bc35eeee 100644 --- a/ramping-vus_result.md +++ b/ramping-vus_result.md @@ -10,23 +10,23 @@ This scenario was running 500 VUs over 60s ### Comparison -Comparison +Comparison -| Gateway | RPS ⬇️ | Requests | Duration | Notes | -| :--------------- | :----: | :--------------------: | :----------------------: | :----------------------------- | -| hive-router | 1977 | 123290 total, 0 failed | avg: 113ms, p95: 274ms | ✅ | -| grafbase | 1553 | 98507 total, 0 failed | avg: 141ms, p95: 339ms | ✅ | -| cosmo | 679 | 43331 total, 0 failed | avg: 324ms, p95: 737ms | ✅ | -| apollo-router | 370 | 24871 total, 0 failed | avg: 567ms, p95: 1283ms | ❌ 14 unexpected GraphQL errors | -| hive-gateway-bun | 284 | 19761 total, 0 failed | avg: 712ms, p95: 1521ms | ✅ | -| hive-gateway | 250 | 17459 total, 0 failed | avg: 802ms, p95: 1701ms | ✅ | -| apollo-gateway | 153 | 10540 total, 0 failed | avg: 1233ms, p95: 2577ms | ✅ | +| Gateway | RPS ⬇️ | Requests | Duration | Notes | +| :-------------------------- | :----: | :--------------------: | :----------------------: | :--------------------------------------- | +| hive-router | 1774 | 110685 total, 0 failed | avg: 126ms, p95: 303ms | ✅ | +| grafbase | 1480 | 93871 total, 0 failed | avg: 148ms, p95: 349ms | ✅ | +| cosmo | 684 | 43762 total, 0 failed | avg: 321ms, p95: 703ms | ✅ | +| hive-gateway-router-runtime | 603 | 39756 total, 0 failed | avg: 353ms, p95: 719ms | ❌ non-compatible response structure (3) | +| apollo-router | 395 | 26524 total, 0 failed | avg: 531ms, p95: 1193ms | ❌ 22 unexpected GraphQL errors | +| hive-gateway | 264 | 18160 total, 0 failed | avg: 772ms, p95: 1704ms | ✅ | +| apollo-gateway | 155 | 10702 total, 0 failed | avg: 1218ms, p95: 2566ms | ✅ |
- Summary for: `hive-router` + Summary for: hive-router **K6 Output** @@ -38,31 +38,31 @@ This scenario was running 500 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 366870 ✗ 0 - data_received..................: 11 GB 174 MB/s - data_sent......................: 143 MB 2.3 MB/s - http_req_blocked...............: avg=377.22µs min=1.09µs med=2.49µs max=292.29ms p(90)=3.88µs p(95)=4.66µs p(99.9)=139.98ms - http_req_connecting............: avg=373.04µs min=0s med=0s max=292.21ms p(90)=0s p(95)=0s p(99.9)=139.83ms - http_req_duration..............: avg=112.99ms min=1.63ms med=100.44ms max=418.03ms p(90)=230.67ms p(95)=274.04ms p(99.9)=378.85ms - { expected_response:true }...: avg=112.99ms min=1.63ms med=100.44ms max=418.03ms p(90)=230.67ms p(95)=274.04ms p(99.9)=378.85ms - http_req_failed................: 0.00% ✓ 0 ✗ 123290 - http_req_receiving.............: avg=468.55µs min=21.98µs med=41.11µs max=150.56ms p(90)=168.2µs p(95)=382.81µs p(99.9)=69.39ms - http_req_sending...............: avg=335.58µs min=5.23µs med=10.03µs max=139.33ms p(90)=29.62µs p(95)=124.09µs p(99.9)=56.87ms + checks.........................: 100.00% ✓ 329055 ✗ 0 + data_received..................: 9.7 GB 156 MB/s + data_sent......................: 129 MB 2.1 MB/s + http_req_blocked...............: avg=493.69µs min=1.19µs med=2.48µs max=356.19ms p(90)=3.9µs p(95)=4.7µs p(99.9)=176.66ms + http_req_connecting............: avg=489.02µs min=0s med=0s max=339.23ms p(90)=0s p(95)=0s p(99.9)=176.62ms + http_req_duration..............: avg=125.79ms min=1.93ms med=113.78ms max=450.19ms p(90)=255.84ms p(95)=302.6ms p(99.9)=402.79ms + { expected_response:true }...: avg=125.79ms min=1.93ms med=113.78ms max=450.19ms p(90)=255.84ms p(95)=302.6ms p(99.9)=402.79ms + http_req_failed................: 0.00% ✓ 0 ✗ 110685 + http_req_receiving.............: avg=538.02µs min=23.23µs med=42.31µs max=143.92ms p(90)=117.55µs p(95)=392.69µs p(99.9)=75.35ms + http_req_sending...............: avg=453.94µs min=5.2µs med=10.19µs max=172.68ms p(90)=27.1µs p(95)=128.41µs p(99.9)=72.92ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=112.18ms min=1.59ms med=99.69ms max=402.84ms p(90)=228.84ms p(95)=272.25ms p(99.9)=375.91ms - http_reqs......................: 123290 1977.39041/s - iteration_duration.............: avg=114.54ms min=1.74ms med=101.74ms max=679.12ms p(90)=232.73ms p(95)=276.16ms p(99.9)=396.21ms - iterations.....................: 122290 1961.35188/s - success_rate...................: 100.00% ✓ 122290 ✗ 0 - vus............................: 74 min=0 max=495 - vus_max........................: 500 min=500 max=500 + http_req_waiting...............: avg=124.79ms min=1.77ms med=112.94ms max=433.57ms p(90)=253.66ms p(95)=300.74ms p(99.9)=399.75ms + http_reqs......................: 110685 1774.7843/s + iteration_duration.............: avg=127.73ms min=2.06ms med=115.39ms max=799.13ms p(90)=258.33ms p(95)=305.07ms p(99.9)=432.64ms + iterations.....................: 109685 1758.749749/s + success_rate...................: 100.00% ✓ 109685 ✗ 0 + vus............................: 76 min=0 max=494 + vus_max........................: 500 min=500 max=500 ``` **Performance Overview** -Performance Overview +Performance Overview @@ -70,13 +70,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `grafbase` + Summary for: grafbase **K6 Output** @@ -88,23 +88,23 @@ This scenario was running 500 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 292521 ✗ 0 - data_received..................: 8.7 GB 137 MB/s - data_sent......................: 115 MB 1.8 MB/s - http_req_blocked...............: avg=604.24µs min=1.26µs med=3.18µs max=393.03ms p(90)=5.04µs p(95)=7.2µs p(99.9)=196.38ms - http_req_connecting............: avg=596.19µs min=0s med=0s max=392.84ms p(90)=0s p(95)=0s p(99.9)=195.61ms - http_req_duration..............: avg=141.3ms min=2.72ms med=128.85ms max=502.05ms p(90)=282.22ms p(95)=338.63ms p(99.9)=447.32ms - { expected_response:true }...: avg=141.3ms min=2.72ms med=128.85ms max=502.05ms p(90)=282.22ms p(95)=338.63ms p(99.9)=447.32ms - http_req_failed................: 0.00% ✓ 0 ✗ 98507 - http_req_receiving.............: avg=634.96µs min=27.27µs med=50.52µs max=149.36ms p(90)=252.21µs p(95)=468.33µs p(99.9)=85.87ms - http_req_sending...............: avg=514.87µs min=5.81µs med=12.19µs max=144.83ms p(90)=37.47µs p(95)=147.97µs p(99.9)=80.85ms + checks.........................: 100.00% ✓ 278613 ✗ 0 + data_received..................: 8.3 GB 130 MB/s + data_sent......................: 109 MB 1.7 MB/s + http_req_blocked...............: avg=733.18µs min=1.24µs med=3.01µs max=419.79ms p(90)=4.62µs p(95)=5.86µs p(99.9)=233.65ms + http_req_connecting............: avg=726.38µs min=0s med=0s max=419.73ms p(90)=0s p(95)=0s p(99.9)=231.33ms + http_req_duration..............: avg=148.2ms min=2.58ms med=137.27ms max=498.22ms p(90)=296.28ms p(95)=349.18ms p(99.9)=444.62ms + { expected_response:true }...: avg=148.2ms min=2.58ms med=137.27ms max=498.22ms p(90)=296.28ms p(95)=349.18ms p(99.9)=444.62ms + http_req_failed................: 0.00% ✓ 0 ✗ 93871 + http_req_receiving.............: avg=653.16µs min=26.02µs med=48.42µs max=141.82ms p(90)=113.26µs p(95)=449.49µs p(99.9)=90.31ms + http_req_sending...............: avg=623.13µs min=5.29µs med=11.94µs max=191.39ms p(90)=31.4µs p(95)=144.63µs p(99.9)=89.05ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=140.15ms min=2.68ms med=127.72ms max=476.68ms p(90)=279.32ms p(95)=336.66ms p(99.9)=443.29ms - http_reqs......................: 98507 1553.835129/s - iteration_duration.............: avg=143.72ms min=2.88ms med=130.73ms max=882.19ms p(90)=285.53ms p(95)=342.34ms p(99.9)=497.01ms - iterations.....................: 97507 1538.061274/s - success_rate...................: 100.00% ✓ 97507 ✗ 0 - vus............................: 78 min=0 max=493 + http_req_waiting...............: avg=146.92ms min=2.53ms med=136.13ms max=459.35ms p(90)=293.44ms p(95)=346.69ms p(99.9)=438.02ms + http_reqs......................: 93871 1480.790035/s + iteration_duration.............: avg=150.95ms min=2.87ms med=139.33ms max=910.69ms p(90)=300.04ms p(95)=352.93ms p(99.9)=550.92ms + iterations.....................: 92871 1465.015301/s + success_rate...................: 100.00% ✓ 92871 ✗ 0 + vus............................: 75 min=0 max=493 vus_max........................: 500 min=500 max=500 ``` @@ -112,7 +112,7 @@ This scenario was running 500 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -120,13 +120,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `cosmo` + Summary for: cosmo **K6 Output** @@ -138,31 +138,31 @@ This scenario was running 500 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 126993 ✗ 0 + checks.........................: 100.00% ✓ 128286 ✗ 0 data_received..................: 3.8 GB 60 MB/s - data_sent......................: 51 MB 791 kB/s - http_req_blocked...............: avg=108.1µs min=1.25µs med=2.84µs max=189.95ms p(90)=4.29µs p(95)=6.51µs p(99.9)=34.13ms - http_req_connecting............: avg=103.32µs min=0s med=0s max=189.83ms p(90)=0s p(95)=0s p(99.9)=34.06ms - http_req_duration..............: avg=324.26ms min=2.86ms med=303.9ms max=1.34s p(90)=639.53ms p(95)=736.97ms p(99.9)=1.14s - { expected_response:true }...: avg=324.26ms min=2.86ms med=303.9ms max=1.34s p(90)=639.53ms p(95)=736.97ms p(99.9)=1.14s - http_req_failed................: 0.00% ✓ 0 ✗ 43331 - http_req_receiving.............: avg=830.86µs min=25.75µs med=62.56µs max=323.57ms p(90)=218.08µs p(95)=507.26µs p(99.9)=144.55ms - http_req_sending...............: avg=148.81µs min=6.05µs med=11.54µs max=114.27ms p(90)=31.95µs p(95)=133.11µs p(99.9)=26.46ms + data_sent......................: 51 MB 797 kB/s + http_req_blocked...............: avg=124.83µs min=1.3µs med=2.83µs max=197.26ms p(90)=4.45µs p(95)=6.41µs p(99.9)=40.14ms + http_req_connecting............: avg=120.36µs min=0s med=0s max=197.2ms p(90)=0s p(95)=0s p(99.9)=40.09ms + http_req_duration..............: avg=320.87ms min=2.92ms med=306.66ms max=1.14s p(90)=625.73ms p(95)=702.78ms p(99.9)=981.3ms + { expected_response:true }...: avg=320.87ms min=2.92ms med=306.66ms max=1.14s p(90)=625.73ms p(95)=702.78ms p(99.9)=981.3ms + http_req_failed................: 0.00% ✓ 0 ✗ 43762 + http_req_receiving.............: avg=801.06µs min=28.76µs med=61.43µs max=168.35ms p(90)=189.41µs p(95)=496.77µs p(99.9)=141.05ms + http_req_sending...............: avg=179.91µs min=5.82µs med=11.3µs max=132.17ms p(90)=32.54µs p(95)=132.58µs p(99.9)=32.9ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=323.28ms min=2.78ms med=303.18ms max=1.34s p(90)=637.2ms p(95)=735.12ms p(99.9)=1.14s - http_reqs......................: 43331 679.36853/s - iteration_duration.............: avg=332.39ms min=3.06ms med=312.36ms max=1.34s p(90)=643.64ms p(95)=740.41ms p(99.9)=1.14s - iterations.....................: 42331 663.68995/s - success_rate...................: 100.00% ✓ 42331 ✗ 0 - vus............................: 99 min=0 max=500 - vus_max........................: 500 min=500 max=500 + http_req_waiting...............: avg=319.89ms min=2.81ms med=305.93ms max=1.14s p(90)=623.08ms p(95)=698.93ms p(99.9)=980.02ms + http_reqs......................: 43762 684.621523/s + iteration_duration.............: avg=328.94ms min=3.18ms med=314.99ms max=1.3s p(90)=629.51ms p(95)=705.89ms p(99.9)=985.32ms + iterations.....................: 42762 668.977322/s + success_rate...................: 100.00% ✓ 42762 ✗ 0 + vus............................: 62 min=0 max=499 + vus_max........................: 500 min=500 max=500 ``` **Performance Overview** -Performance Overview +Performance Overview @@ -170,13 +170,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `apollo-router` + Summary for: hive-gateway-router-runtime **K6 Output** @@ -185,27 +185,27 @@ This scenario was running 500 VUs over 60s ``` ✓ response code was 200 - ✗ no graphql errors - ↳ 99% — ✓ 23857 / ✗ 14 - ✓ valid response structure - - checks.........................: 99.98% ✓ 71599 ✗ 14 - data_received..................: 2.2 GB 33 MB/s - data_sent......................: 29 MB 432 kB/s - http_req_blocked...............: avg=115.59µs min=1.67µs med=3.2µs max=189.9ms p(90)=5.06µs p(95)=7.96µs p(99.9)=27.54ms - http_req_connecting............: avg=108.82µs min=0s med=0s max=189.81ms p(90)=0s p(95)=0s p(99.9)=26.84ms - http_req_duration..............: avg=566.73ms min=6.16ms med=532.81ms max=2.15s p(90)=1.14s p(95)=1.28s p(99.9)=1.83s - { expected_response:true }...: avg=566.73ms min=6.16ms med=532.81ms max=2.15s p(90)=1.14s p(95)=1.28s p(99.9)=1.83s - http_req_failed................: 0.00% ✓ 0 ✗ 24871 - http_req_receiving.............: avg=124.9µs min=31.85µs med=56.98µs max=69.59ms p(90)=112.96µs p(95)=194.85µs p(99.9)=8.47ms - http_req_sending...............: avg=124.41µs min=6.26µs med=12.05µs max=117.66ms p(90)=30.71µs p(95)=119.47µs p(99.9)=21.7ms + ✓ no graphql errors + ✗ valid response structure + ↳ 99% — ✓ 38753 / ✗ 3 + + checks.........................: 99.99% ✓ 116265 ✗ 3 + data_received..................: 3.5 GB 53 MB/s + data_sent......................: 46 MB 702 kB/s + http_req_blocked...............: avg=159.39µs min=1.33µs med=2.88µs max=174.22ms p(90)=4.56µs p(95)=6.28µs p(99.9)=49.34ms + http_req_connecting............: avg=154.25µs min=0s med=0s max=174.14ms p(90)=0s p(95)=0s p(99.9)=49.19ms + http_req_duration..............: avg=353.32ms min=4.81ms med=350.09ms max=1.12s p(90)=671.97ms p(95)=719.1ms p(99.9)=1s + { expected_response:true }...: avg=353.32ms min=4.81ms med=350.09ms max=1.12s p(90)=671.97ms p(95)=719.1ms p(99.9)=1s + http_req_failed................: 0.00% ✓ 0 ✗ 39756 + http_req_receiving.............: avg=231.03µs min=26.14µs med=45.36µs max=121.01ms p(90)=95.74µs p(95)=380.82µs p(99.9)=36.62ms + http_req_sending...............: avg=272.78µs min=5.67µs med=11.02µs max=133.69ms p(90)=29.17µs p(95)=134.22µs p(99.9)=49.46ms http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=566.48ms min=6.05ms med=532.73ms max=2.15s p(90)=1.13s p(95)=1.28s p(99.9)=1.83s - http_reqs......................: 24871 370.264505/s - iteration_duration.............: avg=590.96ms min=6.5ms med=562.03ms max=2.15s p(90)=1.15s p(95)=1.29s p(99.9)=1.83s - iterations.....................: 23871 355.377105/s - success_rate...................: 99.94% ✓ 23857 ✗ 14 - vus............................: 70 min=0 max=497 + http_req_waiting...............: avg=352.82ms min=4.76ms med=349.56ms max=1.12s p(90)=671.37ms p(95)=718.44ms p(99.9)=997.2ms + http_reqs......................: 39756 603.019298/s + iteration_duration.............: avg=363.04ms min=5.31ms med=360.54ms max=1.23s p(90)=675.17ms p(95)=722.29ms p(99.9)=1.03s + iterations.....................: 38756 587.851291/s + success_rate...................: 99.99% ✓ 38753 ✗ 3 + vus............................: 59 min=0 max=498 vus_max........................: 500 min=500 max=500 ``` @@ -213,7 +213,7 @@ This scenario was running 500 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -221,13 +221,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `hive-gateway-bun` + Summary for: apollo-router **K6 Output** @@ -236,34 +236,35 @@ This scenario was running 500 VUs over 60s ``` ✓ response code was 200 - ✓ no graphql errors + ✗ no graphql errors + ↳ 99% — ✓ 25502 / ✗ 22 ✓ valid response structure - checks.........................: 100.00% ✓ 56283 ✗ 0 - data_received..................: 1.7 GB 25 MB/s - data_sent......................: 23 MB 333 kB/s - http_req_blocked...............: avg=107.15µs min=1.21µs med=2.75µs max=111.18ms p(90)=4.65µs p(95)=7.42µs p(99.9)=29.51ms - http_req_connecting............: avg=102.13µs min=0s med=0s max=111.13ms p(90)=0s p(95)=0s p(99.9)=29.47ms - http_req_duration..............: avg=711.62ms min=6.58ms med=648.16ms max=3.98s p(90)=1.39s p(95)=1.52s p(99.9)=3.33s - { expected_response:true }...: avg=711.62ms min=6.58ms med=648.16ms max=3.98s p(90)=1.39s p(95)=1.52s p(99.9)=3.33s - http_req_failed................: 0.00% ✓ 0 ✗ 19761 - http_req_receiving.............: avg=177.77µs min=24.74µs med=44.42µs max=103.7ms p(90)=99.89µs p(95)=330.69µs p(99.9)=24.79ms - http_req_sending...............: avg=178.98µs min=5.66µs med=10.98µs max=105.02ms p(90)=33.44µs p(95)=123.65µs p(99.9)=31.23ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=711.27ms min=6.53ms med=647.77ms max=3.97s p(90)=1.39s p(95)=1.51s p(99.9)=3.33s - http_reqs......................: 19761 284.587004/s - iteration_duration.............: avg=749.82ms min=8.36ms med=693.53ms max=4.06s p(90)=1.41s p(95)=1.53s p(99.9)=3.36s - iterations.....................: 18761 270.185557/s - success_rate...................: 100.00% ✓ 18761 ✗ 0 - vus............................: 81 min=0 max=500 - vus_max........................: 500 min=500 max=500 + checks.........................: 99.97% ✓ 76550 ✗ 22 + data_received..................: 2.3 GB 35 MB/s + data_sent......................: 31 MB 461 kB/s + http_req_blocked...............: avg=81.02µs min=1.34µs med=2.97µs max=149.8ms p(90)=4.81µs p(95)=6.89µs p(99.9)=19.8ms + http_req_connecting............: avg=75.67µs min=0s med=0s max=149.73ms p(90)=0s p(95)=0s p(99.9)=19.75ms + http_req_duration..............: avg=531.18ms min=6.19ms med=489.91ms max=1.89s p(90)=1.07s p(95)=1.19s p(99.9)=1.75s + { expected_response:true }...: avg=531.18ms min=6.19ms med=489.91ms max=1.89s p(90)=1.07s p(95)=1.19s p(99.9)=1.75s + http_req_failed................: 0.00% ✓ 0 ✗ 26524 + http_req_receiving.............: avg=114.13µs min=30.49µs med=53.34µs max=97.39ms p(90)=103.96µs p(95)=177.44µs p(99.9)=8.07ms + http_req_sending...............: avg=97.3µs min=5.93µs med=11.74µs max=71.53ms p(90)=30.7µs p(95)=121.75µs p(99.9)=14.05ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=530.97ms min=6.15ms med=489.75ms max=1.89s p(90)=1.07s p(95)=1.19s p(99.9)=1.75s + http_reqs......................: 26524 395.063992/s + iteration_duration.............: avg=552.44ms min=6.57ms med=508.51ms max=1.89s p(90)=1.07s p(95)=1.19s p(99.9)=1.75s + iterations.....................: 25524 380.169406/s + success_rate...................: 99.91% ✓ 25502 ✗ 22 + vus............................: 73 min=0 max=495 + vus_max........................: 500 min=500 max=500 ``` **Performance Overview** -Performance Overview +Performance Overview @@ -271,13 +272,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `hive-gateway` + Summary for: hive-gateway **K6 Output** @@ -289,23 +290,23 @@ This scenario was running 500 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 49377 ✗ 0 - data_received..................: 1.5 GB 22 MB/s - data_sent......................: 21 MB 294 kB/s - http_req_blocked...............: avg=106.08µs min=1.26µs med=2.94µs max=143.91ms p(90)=5.42µs p(95)=8.06µs p(99.9)=29.98ms - http_req_connecting............: avg=100.66µs min=0s med=0s max=143.72ms p(90)=0s p(95)=0s p(99.9)=29.93ms - http_req_duration..............: avg=802.41ms min=6.72ms med=762.2ms max=5.54s p(90)=1.54s p(95)=1.7s p(99.9)=4.6s - { expected_response:true }...: avg=802.41ms min=6.72ms med=762.2ms max=5.54s p(90)=1.54s p(95)=1.7s p(99.9)=4.6s - http_req_failed................: 0.00% ✓ 0 ✗ 17459 - http_req_receiving.............: avg=157.97µs min=26.69µs med=47.78µs max=107.17ms p(90)=105.94µs p(95)=169.92µs p(99.9)=21.6ms - http_req_sending...............: avg=142.38µs min=5.56µs med=11.57µs max=75.08ms p(90)=32.34µs p(95)=113.92µs p(99.9)=19.68ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=802.11ms min=6.64ms med=762.07ms max=5.54s p(90)=1.54s p(95)=1.7s p(99.9)=4.6s - http_reqs......................: 17459 250.971024/s - iteration_duration.............: avg=851.41ms min=9.1ms med=810.08ms max=5.55s p(90)=1.56s p(95)=1.71s p(99.9)=4.63s - iterations.....................: 16459 236.596145/s - success_rate...................: 100.00% ✓ 16459 ✗ 0 - vus............................: 91 min=0 max=500 + checks.........................: 100.00% ✓ 51480 ✗ 0 + data_received..................: 1.6 GB 23 MB/s + data_sent......................: 21 MB 310 kB/s + http_req_blocked...............: avg=132.08µs min=1.37µs med=2.85µs max=97.54ms p(90)=5.14µs p(95)=8.3µs p(99.9)=36.22ms + http_req_connecting............: avg=125.86µs min=0s med=0s max=97.49ms p(90)=0s p(95)=0s p(99.9)=36.18ms + http_req_duration..............: avg=772.12ms min=6.39ms med=702.17ms max=5.2s p(90)=1.53s p(95)=1.7s p(99.9)=4.07s + { expected_response:true }...: avg=772.12ms min=6.39ms med=702.17ms max=5.2s p(90)=1.53s p(95)=1.7s p(99.9)=4.07s + http_req_failed................: 0.00% ✓ 0 ✗ 18160 + http_req_receiving.............: avg=194.08µs min=27.47µs med=47.08µs max=226.65ms p(90)=98.75µs p(95)=176.46µs p(99.9)=25.69ms + http_req_sending...............: avg=212.81µs min=5.8µs med=11.35µs max=254.28ms p(90)=32.34µs p(95)=128.5µs p(99.9)=29.84ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=771.72ms min=6.32ms med=702.04ms max=5.18s p(90)=1.53s p(95)=1.7s p(99.9)=4.07s + http_reqs......................: 18160 264.254723/s + iteration_duration.............: avg=817.56ms min=8.09ms med=749.14ms max=5.21s p(90)=1.55s p(95)=1.71s p(99.9)=4.13s + iterations.....................: 17160 249.703252/s + success_rate...................: 100.00% ✓ 17160 ✗ 0 + vus............................: 107 min=0 max=500 vus_max........................: 500 min=500 max=500 ``` @@ -313,7 +314,7 @@ This scenario was running 500 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -321,13 +322,13 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
- Summary for: `apollo-gateway` + Summary for: apollo-gateway **K6 Output** @@ -339,23 +340,23 @@ This scenario was running 500 VUs over 60s ✓ no graphql errors ✓ valid response structure - checks.........................: 100.00% ✓ 28620 ✗ 0 - data_received..................: 926 MB 14 MB/s - data_sent......................: 13 MB 183 kB/s - http_req_blocked...............: avg=47.02µs min=1.43µs med=3.55µs max=32.91ms p(90)=5.89µs p(95)=14.57µs p(99.9)=6.43ms - http_req_connecting............: avg=40.39µs min=0s med=0s max=32.86ms p(90)=0s p(95)=0s p(99.9)=6.37ms - http_req_duration..............: avg=1.23s min=7.59ms med=1.17s max=15.89s p(90)=2.2s p(95)=2.57s p(99.9)=14.63s - { expected_response:true }...: avg=1.23s min=7.59ms med=1.17s max=15.89s p(90)=2.2s p(95)=2.57s p(99.9)=14.63s - http_req_failed................: 0.00% ✓ 0 ✗ 10540 - http_req_receiving.............: avg=85.56µs min=27.65µs med=59.01µs max=21.73ms p(90)=111.93µs p(95)=148.2µs p(99.9)=2.04ms - http_req_sending...............: avg=47.7µs min=6.33µs med=13.35µs max=32.68ms p(90)=33.48µs p(95)=52.87µs p(99.9)=7.57ms - http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s - http_req_waiting...............: avg=1.23s min=7.54ms med=1.17s max=15.89s p(90)=2.2s p(95)=2.57s p(99.9)=14.63s - http_reqs......................: 10540 153.191092/s - iteration_duration.............: avg=1.36s min=8.63ms med=1.32s max=15.92s p(90)=2.25s p(95)=2.66s p(99.9)=14.71s - iterations.....................: 9540 138.656833/s - success_rate...................: 100.00% ✓ 9540 ✗ 0 - vus............................: 62 min=0 max=500 + checks.........................: 100.00% ✓ 29106 ✗ 0 + data_received..................: 940 MB 14 MB/s + data_sent......................: 13 MB 186 kB/s + http_req_blocked...............: avg=29.44µs min=1.28µs med=3.12µs max=20.15ms p(90)=5.05µs p(95)=11.54µs p(99.9)=3.29ms + http_req_connecting............: avg=23.6µs min=0s med=0s max=20.09ms p(90)=0s p(95)=0s p(99.9)=3.22ms + http_req_duration..............: avg=1.21s min=7.55ms med=1.16s max=15.59s p(90)=2.17s p(95)=2.56s p(99.9)=14.46s + { expected_response:true }...: avg=1.21s min=7.55ms med=1.16s max=15.59s p(90)=2.17s p(95)=2.56s p(99.9)=14.46s + http_req_failed................: 0.00% ✓ 0 ✗ 10702 + http_req_receiving.............: avg=77.41µs min=27.32µs med=52.33µs max=11.03ms p(90)=99.77µs p(95)=126.83µs p(99.9)=2.82ms + http_req_sending...............: avg=39.47µs min=5.98µs med=12.5µs max=23.07ms p(90)=31.08µs p(95)=51.55µs p(99.9)=5.14ms + http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s p(99.9)=0s + http_req_waiting...............: avg=1.21s min=7.5ms med=1.16s max=15.59s p(90)=2.17s p(95)=2.56s p(99.9)=14.46s + http_reqs......................: 10702 155.816272/s + iteration_duration.............: avg=1.34s min=7.92ms med=1.3s max=15.6s p(90)=2.22s p(95)=2.65s p(99.9)=14.57s + iterations.....................: 9702 141.256725/s + success_rate...................: 100.00% ✓ 9702 ✗ 0 + vus............................: 108 min=0 max=500 vus_max........................: 500 min=500 max=500 ``` @@ -363,7 +364,7 @@ This scenario was running 500 VUs over 60s **Performance Overview** -Performance Overview +Performance Overview @@ -371,7 +372,7 @@ This scenario was running 500 VUs over 60s **HTTP Overview** -HTTP Overview +HTTP Overview
\ No newline at end of file diff --git a/scripts/generate-report.ts b/scripts/generate-report.ts index 9e17ea0bd..9872ec74f 100644 --- a/scripts/generate-report.ts +++ b/scripts/generate-report.ts @@ -271,7 +271,7 @@ async function generateReport(artifactsRootPath: string) { validReportsData .map((info) => formatSummary( - `Summary for: \`${info.name}\``, + `Summary for: ${info.name}`, [ "**K6 Output**", NEWLINE, diff --git a/website/constant-data.csv b/website/constant-data.csv index b77b99d13..852257fd6 100644 --- a/website/constant-data.csv +++ b/website/constant-data.csv @@ -1,1407 +1,1393 @@ Gateway,Seconds,VUs,RPS,P95_ms,Req_success_rate,Total_CPU,Total_RSS_KB -hive-router,2,50,918.8451995564254,185.2807964999991,1,106.00,48240 -hive-router,2,50,1158.3306971025625,65.6818504999997,1,108.00,48368 -hive-router,2,50,1263.4708362746742,54.484236500000016,1,110.00,48368 -hive-router,3,50,1321.6690660562997,52.088142,1,112.00,48368 -hive-router,3,50,1350.4385232494265,52.29814529999998,1,108.00,48368 -hive-router,3,50,1472.4278268252233,51.49428939999997,1,110.00,48368 -hive-router,3,50,1507.014685819517,50.90469729999996,1,111.00,48368 -hive-router,4,50,1501.0889683599244,49.90034955000001,1,113.00,48368 -hive-router,4,50,1559.6129476277997,48.6568725,1,110.00,48368 -hive-router,4,50,1576.682847404567,48.19398544999996,1,111.00,48368 -hive-router,4,50,1629.3564933923778,47.011204949999986,1,113.00,48368 -hive-router,5,50,1642.2535770917295,46.68076559999998,1,110.00,48368 -hive-router,5,50,1643.1804229284173,46.50509539999999,1,112.00,48368 -hive-router,5,50,1662.9959980689755,47.10029949999996,1,113.00,48368 -hive-router,6,50,1673.424689249707,48.37958959999998,1,115.00,48368 -hive-router,6,50,1679.676667116282,48.405870949999986,1,111.00,48368 -hive-router,6,50,1670.4392790199408,48.66152375,1,113.00,45856 -hive-router,6,50,1677.6960922175747,48.664895,1,114.00,46240 -hive-router,7,50,1676.4735661658594,48.53789589999998,1,111.00,46240 -hive-router,7,50,1688.7184116555788,48.528119,1,113.00,46240 -hive-router,7,50,1705.6665211230777,48.5245867,1,114.00,46240 -hive-router,8,50,1713.7180271973884,48.4480375,1,116.00,46240 -hive-router,8,50,1725.4465465636188,48.20946264999998,1,113.00,46240 -hive-router,8,50,1721.5912688626909,48.39789349999999,1,114.00,46240 -hive-router,8,50,1738.927877262501,48.625156600000004,1,116.00,46240 -hive-router,9,50,1745.3188937088867,48.444526999999994,1,113.00,46240 -hive-router,9,50,1755.736592686486,48.2430138,1,114.00,46240 -hive-router,9,50,1753.465239235234,48.454885000000004,1,116.00,46376 -hive-router,10,50,1761.2622243328817,48.303103999999976,1,117.00,46376 -hive-router,10,50,1770.828689473723,48.034816349999986,1,114.00,46376 -hive-router,10,50,1763.894151664967,48.03324904999998,1,116.00,46376 -hive-router,11,50,1777.0471356622477,48.06283879999999,1,117.00,46376 -hive-router,11,50,1768.685391192046,48.4983675,1,114.00,46376 -hive-router,11,50,1786.2461508849099,48.2115262,1,116.00,48496 -hive-router,11,50,1784.8264280900344,48.12750379999999,1,117.00,48496 -hive-router,12,50,1786.9368256240593,48.0727698,1,118.00,48388 -hive-router,12,50,1785.6540200934442,47.957145400000016,1,116.00,48388 -hive-router,12,50,1790.0940541623559,47.8964605,1,117.00,48388 -hive-router,13,50,1806.4342864087803,47.59717325,1,118.00,48388 -hive-router,13,50,1795.1811093927297,47.443615,1,116.00,50440 -hive-router,13,50,1807.4998185624859,47.46126845,1,117.00,50440 -hive-router,13,50,1805.7074541177947,47.3119254,1,118.00,50440 -hive-router,14,50,1805.1250386073727,47.291898499999995,1,119.00,50440 -hive-router,14,50,1813.3373979769174,47.099119899999984,1,117.00,50440 -hive-router,14,50,1815.952668949238,47.11888679999999,1,118.00,50440 -hive-router,15,50,1809.0541103133442,47.330688299999956,1,119.00,50440 -hive-router,15,50,1815.5355330010323,47.636213399999995,1,117.00,50440 -hive-router,15,50,1811.6383502158842,47.5909705,1,118.00,50440 -hive-router,15,50,1810.1011072217952,47.87806769999998,1,119.00,50440 -hive-router,16,50,1818.5193816579088,48.047429,1,116.00,50440 -hive-router,16,50,1811.1164572633409,48.100885899999994,1,118.00,50440 -hive-router,16,50,1811.3005506992477,48.0488645,1,119.00,50440 -hive-router,17,50,1814.5333438336013,48.03324904999998,1,120.00,50440 -hive-router,17,50,1814.26229290904,48.19113205,1,117.00,50440 -hive-router,17,50,1826.7114604318572,48.0463706,1,119.00,50440 -hive-router,18,50,1824.453692425177,48.0711406,1,120.00,45576 -hive-router,18,50,1826.4411675235203,47.939325,1,117.00,47880 -hive-router,18,50,1829.4301549475015,48.004488,1,119.00,48008 -hive-router,18,50,1824.733052891271,48.00085865,1,120.00,48008 -hive-router,19,50,1832.9685509405879,48.00542045,1,117.00,48008 -hive-router,19,50,1830.1954093798695,47.99771189999999,1,119.00,48008 -hive-router,19,50,1837.5168068371042,47.899517799999984,1,120.00,43216 -hive-router,20,50,1834.3505649195076,48.070366500000006,1,121.00,45880 -hive-router,20,50,1832.8263815636285,48.070366500000006,1,119.00,45880 -hive-router,20,50,1831.3162948749493,48.057050800000006,1,120.00,45880 -hive-router,21,50,1831.967399123968,48.18630369999998,1,121.00,48044 -hive-router,21,50,1832.5067895074849,48.07859404999998,1,119.00,48300 -hive-router,21,50,1837.1790352044413,48.01143899999997,1,120.00,48300 -hive-router,22,50,1841.3827728070353,47.914055600000005,1,121.00,48300 -hive-router,22,50,1837.7314815718469,48.00272,1,119.00,48300 -hive-router,22,50,1841.016412393607,48.00547530000001,1,120.00,48300 -hive-router,22,50,1842.6556544683854,47.91043869999998,1,121.00,48300 -hive-router,23,50,1841.1043262009894,47.94295740000001,1,119.00,48300 -hive-router,23,50,1847.5846180091346,47.74215849999999,1,120.00,48300 -hive-router,23,50,1847.302385587523,47.869904999999996,1,121.00,48300 -hive-router,24,50,1841.0385229687854,47.86516535,1,122.00,48300 -hive-router,24,50,1846.1781583763814,47.88995,1,120.00,43712 -hive-router,24,50,1842.225495944233,47.99528120000001,1,121.00,46208 -hive-router,25,50,1845.0548715923806,48.003128000000004,1,122.00,46208 -hive-router,25,50,1843.8364518362516,48.0009286,1,120.00,46208 -hive-router,25,50,1847.1805327780403,47.9687534,1,121.00,46208 -hive-router,26,50,1842.7730746614002,47.94679,1,122.00,43704 -hive-router,26,50,1845.8854893951855,47.96151079999993,1,120.00,45240 -hive-router,26,50,1845.425587741679,47.93157884999998,1,121.00,45496 -hive-router,27,50,1843.821907967546,47.9565875,1,122.00,46008 -hive-router,27,50,1846.1234844494672,47.91348775,1,120.00,46136 -hive-router,27,50,1843.8620302303611,47.92026339999998,1,121.00,46136 -hive-router,27,50,1844.9507399420443,47.916273,1,122.00,46136 -hive-router,28,50,1845.6825604541657,47.8897652,1,120.00,46136 -hive-router,28,50,1852.8678173367073,47.864953549999996,1,121.00,46136 -hive-router,28,50,1847.4620758963576,47.857922,1,122.00,46136 -hive-router,29,50,1850.684233999962,47.79578139999999,1,120.00,48380 -hive-router,29,50,1849.497654797253,47.98656549999995,1,121.00,48380 -hive-router,29,50,1847.3667755816293,47.997279649999996,1,122.00,48380 -hive-router,30,50,1850.212209205037,47.939335,1,120.00,48380 -hive-router,30,50,1846.0785242991615,47.939335,1,121.00,48380 -hive-router,30,50,1849.3467226924868,47.9908794,1,122.00,48380 -hive-router,31,50,1847.1883008136374,48.165702499999995,1,123.00,48380 -hive-router,31,50,1846.390890853871,48.23832974999998,1,121.00,48380 -hive-router,31,50,1851.907595407372,48.2200908,1,122.00,48380 -hive-router,32,50,1850.838335093912,48.25039579999998,1,123.00,48380 -hive-router,32,50,1848.9572554316937,48.33358579999999,1,121.00,48380 -hive-router,32,50,1847.5020542562786,48.289369549999975,1,122.00,48380 -hive-router,33,50,1847.5968591673245,48.243579,1,123.00,48380 -hive-router,33,50,1853.5933285390724,48.190359,1,121.00,48380 -hive-router,33,50,1849.692168425842,48.11026839999999,1,122.00,48380 -hive-router,34,50,1850.9445381248452,48.06627459999999,1,123.00,48380 -hive-router,34,50,1850.3712407110602,48.0817912,1,121.00,48380 -hive-router,34,50,1851.5908447603647,48.0970567,1,122.00,44904 -hive-router,35,50,1848.9938057637316,48.213565,1,121.00,45672 -hive-router,35,50,1851.6786894690722,48.31600199999997,1,122.00,45536 -hive-router,35,50,1850.0654462703483,48.32403409999997,1,122.00,45728 -hive-router,36,50,1845.681383469499,48.400653,1,121.00,45856 -hive-router,36,50,1849.7306077519784,48.43559799999997,1,122.00,46112 -hive-router,36,50,1850.280102512634,48.39964299999999,1,122.00,46112 -hive-router,37,50,1850.763088688337,48.354518399999996,1,121.00,46112 -hive-router,37,50,1848.4059571031644,48.34780519999999,1,122.00,46112 -hive-router,37,50,1851.6727682926667,48.306696749999986,1,123.00,46112 -hive-router,38,50,1846.5736304141765,48.389925049999995,1,121.00,46112 -hive-router,38,50,1848.4483913326787,48.45409799999998,1,122.00,46112 -hive-router,38,50,1847.2900447795193,48.457784350000004,1,123.00,46112 -hive-router,39,50,1846.141629418702,48.39696760000001,1,121.00,46112 -hive-router,39,50,1847.7083096945178,48.363988799999966,1,122.00,48328 -hive-router,40,50,1847.8209975351176,48.260822399999995,1,123.00,45512 -hive-router,40,50,1850.516691190412,48.25650000000002,1,122.00,48368 -hive-router,40,50,1847.050730107489,48.3460286,1,123.00,48368 -hive-router,41,50,1847.3673054683786,48.27146249999998,1,123.00,48368 -hive-router,41,50,1849.7092173350866,48.225353500000004,1,122.00,48368 -hive-router,41,50,1847.3818869738363,48.19173225,1,123.00,48368 -hive-router,42,50,1848.8767714777139,48.336451,1,121.00,48368 -hive-router,42,50,1848.5877153019599,48.34549184999997,1,122.00,48368 -hive-router,42,50,1848.953723661731,48.35268079999999,1,123.00,48368 -hive-router,43,50,1850.9877830833886,48.27336374999998,1,122.00,48368 -hive-router,43,50,1848.0021495306653,48.247165800000005,1,122.00,48368 -hive-router,43,50,1848.3680378766544,48.30447995000001,1,123.00,48368 -hive-router,44,50,1846.267151970682,48.32886619999997,1,122.00,48368 -hive-router,44,50,1848.4285414239694,48.27047825,1,123.00,48368 -hive-router,45,50,1845.6979437065245,48.38599209999998,1,123.00,48220 -hive-router,45,50,1844.4154295176513,48.5163761,1,122.00,48348 -hive-router,45,50,1844.4738790862466,48.44791729999999,1,123.00,48348 -hive-router,46,50,1842.7397413652366,48.41062259999999,1,124.00,44760 -hive-router,46,50,1842.3166870657587,48.43901364999999,1,122.00,45400 -hive-router,46,50,1844.0213612003597,48.412486799999996,1,123.00,45912 -hive-router,47,50,1844.7235796677421,48.451927799999986,1,122.00,46040 -hive-router,47,50,1845.1033540189183,48.38948719999999,1,123.00,46040 -hive-router,47,50,1845.332963357706,48.367602399999946,1,123.00,48376 -hive-router,48,50,1841.5346684349115,48.391848499999995,1,122.00,48376 -hive-router,48,50,1845.739868819452,48.35362109999999,1,123.00,48376 -hive-router,49,50,1841.7274231154918,48.353322,1,123.00,48376 -hive-router,49,50,1842.883071134911,48.31211334999998,1,122.00,48376 -hive-router,49,50,1841.5000147275207,48.27091669999998,1,123.00,48376 -hive-router,50,50,1840.250384623977,48.35067154999998,1,124.00,48376 -hive-router,50,50,1841.7460115128406,48.39145799999999,1,122.00,48376 -hive-router,50,50,1840.174903810706,48.426522,1,123.00,48376 -hive-router,51,50,1839.9857523914663,48.45589150000001,1,122.00,48376 -hive-router,51,50,1840.7760813345578,48.451650199999996,1,123.00,48376 -hive-router,52,50,1838.9579512339308,48.425868,1,123.00,48376 -hive-router,52,50,1839.2894246732046,48.42927199999999,1,122.00,45648 -hive-router,52,50,1838.3950622779143,48.412145100000004,1,123.00,45648 -hive-router,53,50,1838.2302064559126,48.350235799999986,1,124.00,45648 -hive-router,53,50,1842.206964306333,48.29683329999998,1,123.00,46032 -hive-router,53,50,1839.6381980648237,48.30642920000001,1,123.00,46160 -hive-router,54,50,1840.6606267753907,48.25747909999999,1,122.00,46160 -hive-router,54,50,1841.2825739880575,48.32783299999997,1,123.00,46160 -hive-router,55,50,1840.8809908792796,48.38617479999999,1,124.00,46160 -hive-router,55,50,1840.1468006823018,48.4319515,1,123.00,46212 -hive-router,55,50,1837.3451332427562,48.451650199999996,1,123.00,46212 -hive-router,56,50,1838.8279585438106,48.570398499999996,1,122.00,46212 -hive-router,56,50,1837.059490230915,48.62443375,1,123.00,48420 -hive-router,57,50,1835.546790734216,48.62335139999999,1,124.00,48420 -hive-router,57,50,1835.4617598902976,48.6603676,1,123.00,48420 -hive-router,57,50,1836.5888814966863,48.6637065,1,123.00,48420 -hive-router,58,50,1834.7369278002218,48.73147769999999,1,122.00,48420 -hive-router,58,50,1833.445486335103,48.75828275,1,123.00,48420 -hive-router,59,50,1833.5660805267926,48.7591735,1,124.00,48420 -hive-router,59,50,1833.967401847032,48.77126399999998,1,123.00,48420 -hive-router,59,50,1833.3913246686118,48.792722749999996,1,123.00,48420 -hive-router,60,50,1834.2388643617026,48.84078479999996,1,122.00,48420 -hive-router,60,50,1834.1485240753639,48.87660499999998,1,123.00,48420 -hive-router,61,50,1833.1826349428677,48.940735699999955,1,124.00,45240 -hive-gateway-bun,3,50,101.06999624432515,661.88819,1,198.70,1381912 -hive-gateway-bun,3,50,124.35686078450028,611.0630735999998,1,191.20,1381912 -hive-gateway-bun,3,50,142.63703660268496,573.0857315999992,1,194.40,1381912 -hive-gateway-bun,4,50,149.1870259280623,523.2848411999998,1,197.30,1381912 -hive-gateway-bun,4,50,157.99032085854284,489.519689,1,200.30,1381936 -hive-gateway-bun,4,50,164.24656638551377,460.9364226000004,1,193.30,1381936 -hive-gateway-bun,4,50,171.14121766962475,417.3418567999998,1,196.20,1381936 -hive-gateway-bun,5,50,175.44227644976934,412.5634826,1,198.90,1381936 -hive-gateway-bun,5,50,189.01120635133185,408.3696198,1,192.20,1381936 -hive-gateway-bun,5,50,197.97751846575827,407.32555479999996,1,194.60,1381936 -hive-gateway-bun,5,50,199.60218202196268,406.70383619999996,1,197.30,1381936 -hive-gateway-bun,6,50,209.28280360307403,404.9057122,1,199.80,1385520 -hive-gateway-bun,6,50,201.664061550856,406.3502711,1,193.20,1398008 -hive-gateway-bun,6,50,207.82922439985896,406.554747,1,195.70,1398136 -hive-gateway-bun,7,50,212.9145895322078,405.0089486,1,198.20,1398136 -hive-gateway-bun,7,50,218.99559312816527,403.3023686,1,191.90,1398136 -hive-gateway-bun,7,50,223.04070708675565,394.3810576,1,194.40,1398264 -hive-gateway-bun,7,50,225.07331222062433,393.11032449999993,1,196.80,1398264 -hive-gateway-bun,8,50,228.34166328105957,385.6952953999998,1,199.20,1398264 -hive-gateway-bun,8,50,234.03468250453446,370.20216869999996,1,193.00,1398264 -hive-gateway-bun,8,50,237.94368078180264,354.8119568499999,1,195.40,1398264 -hive-gateway-bun,9,50,240.42947405836918,332.2185832,1,197.70,1398264 -hive-gateway-bun,9,50,243.93572140546934,330.4412865,1,200.00,1398264 -hive-gateway-bun,9,50,246.53573942228283,326.5756397999999,1,194.20,1398264 -hive-gateway-bun,9,50,245.47890405827738,324.86872420000003,1,196.30,1404304 -hive-gateway-bun,10,50,244.62652374567963,344.90472950000014,1,198.60,1403436 -hive-gateway-bun,10,50,246.6041022403884,338.2665475,1,192.90,1403436 -hive-gateway-bun,10,50,247.95734138853302,337.3184838999999,1,195.00,1403436 -hive-gateway-bun,10,50,249.70266682448167,333.25636299999934,1,197.00,1403436 -hive-gateway-bun,11,50,252.65114896811681,331.8039625,1,199.10,1403436 -hive-gateway-bun,11,50,256.23928962428516,331.30449000000004,1,193.70,1403436 -hive-gateway-bun,11,50,254.79486685605082,330.93926270000003,1,195.70,1402540 -hive-gateway-bun,12,50,257.3294828521448,330.4620432,1,197.80,1402668 -hive-gateway-bun,12,50,260.7345352306907,329.74444355,1,192.70,1402668 -hive-gateway-bun,12,50,262.15542613980284,329.15641819999996,1,194.70,1402668 -hive-gateway-bun,12,50,262.0051496183002,326.25463079999963,1,196.70,1402668 -hive-gateway-bun,13,50,261.64969618655164,324.8529378,1,198.70,1404332 -hive-gateway-bun,13,50,259.64901321576855,330.27690569999993,1,193.80,1404308 -hive-gateway-bun,13,50,262.9747601460699,332.32300879999997,1,195.60,1404308 -hive-gateway-bun,14,50,263.05101031946674,331.7965796,1,197.50,1404308 -hive-gateway-bun,14,50,265.3799505397304,331.342647,1,199.50,1404308 -hive-gateway-bun,14,50,265.96173426803244,330.89584955,1,194.70,1404308 -hive-gateway-bun,14,50,266.9848742000977,330.51687344999993,1,196.50,1404308 -hive-gateway-bun,15,50,269.1463550626088,329.907259,1,198.40,1404308 -hive-gateway-bun,15,50,268.6655083770708,329.3733434,1,193.60,1404352 -hive-gateway-bun,15,50,269.48665137399615,331.329382,1,195.30,1404352 -hive-gateway-bun,16,50,269.86431051371267,330.85876034999995,1,197.10,1404352 -hive-gateway-bun,16,50,271.758384092584,330.3754902,1,198.90,1404352 -hive-gateway-bun,16,50,270.41684783300127,330.06460814999997,1,194.50,1404580 -hive-gateway-bun,16,50,271.70342336310586,331.3639942,1,196.20,1404580 -hive-gateway-bun,17,50,271.24921548018534,331.14381239999994,1,197.90,1404576 -hive-gateway-bun,17,50,271.89582900750514,335.0345545,1,193.70,1404576 -hive-gateway-bun,17,50,273.7991244933263,334.32725259999995,1,195.30,1404576 -hive-gateway-bun,17,50,274.3528986629857,333.92099365,1,197.00,1404576 -hive-gateway-bun,18,50,275.3760214919862,332.45647809999997,1,198.60,1404576 -hive-gateway-bun,18,50,276.3711937407814,331.91506890000005,1,194.30,1404576 -hive-gateway-bun,18,50,277.20274194326277,331.37892339999996,1,196.10,1404576 -hive-gateway-bun,19,50,277.4421090015645,331.223101,1,197.70,1404972 -hive-gateway-bun,19,50,277.4428206653724,331.9248255,1,199.40,1404972 -hive-gateway-bun,19,50,277.86300506949806,331.698646,1,195.30,1404972 -hive-gateway-bun,19,50,277.3634134624907,331.52915919999987,1,196.80,1404972 -hive-gateway-bun,20,50,277.65330134996145,331.30404065,1,198.40,1404972 -hive-gateway-bun,20,50,279.13181599242046,330.76800019999996,1,194.50,1404972 -hive-gateway-bun,20,50,279.38641720001095,330.418179,1,196.00,1404780 -hive-gateway-bun,21,50,278.88928890449125,330.12459615,1,197.60,1404780 -hive-gateway-bun,21,50,279.96928971298473,329.44733060000004,1,199.00,1404780 -hive-gateway-bun,21,50,280.92769654953753,328.9259285499998,1,195.10,1404780 -hive-gateway-bun,21,50,282.27749654170884,327.51062075,1,196.70,1404908 -hive-gateway-bun,22,50,281.2867399254347,325.99782359999926,1,198.10,1404908 -hive-gateway-bun,22,50,283.60988373634825,324.3167765,1,194.40,1405036 -hive-gateway-bun,22,50,280.6363233235559,324.3009355,1,195.80,1405776 -hive-gateway-bun,22,50,280.6425753281,330.29679179999994,1,197.30,1405776 -hive-gateway-bun,23,50,281.985690566915,329.99052025,1,198.70,1405776 -hive-gateway-bun,23,50,283.0879708501098,329.53571675,1,195.10,1405776 -hive-gateway-bun,23,50,283.5949418637451,329.25631549999997,1,196.50,1405776 -hive-gateway-bun,24,50,284.5375194964952,328.8570057999999,1,198.00,1405776 -hive-gateway-bun,24,50,284.4844729010914,328.45014614999997,1,194.40,1405540 -hive-gateway-bun,24,50,284.3715310636158,328.6761638999999,1,195.80,1405540 -hive-gateway-bun,24,50,284.5985486079283,328.32968995,1,197.10,1405540 -hive-gateway-bun,25,50,285.7579198558809,327.1080315,1,198.50,1405540 -hive-gateway-bun,25,50,285.20207084580977,326.65094645,1,195.00,1405540 -hive-gateway-bun,25,50,286.7297658926454,325.83660434999996,1,196.30,1405540 -hive-gateway-bun,26,50,284.8673003109537,325.59537589999996,1,197.70,1405924 -hive-gateway-bun,26,50,285.02798662792236,327.6086973999998,1,199.10,1405560 -hive-gateway-bun,26,50,285.74057740182354,328.4041451,1,195.50,1405560 -hive-gateway-bun,26,50,285.24715769508305,327.52463169999976,1,196.90,1405560 -hive-gateway-bun,27,50,286.13213313231466,326.656918,1,198.30,1405560 -hive-gateway-bun,27,50,287.1341001788438,325.89649099999997,1,195.00,1405688 -hive-gateway-bun,27,50,286.7841972589512,325.5852847,1,196.30,1405688 -hive-gateway-bun,28,50,286.4820192656742,325.3806428,1,197.60,1405736 -hive-gateway-bun,28,50,287.1199781280683,328.699512,1,198.90,1405736 -hive-gateway-bun,28,50,287.7251851453345,328.3009776,1,195.70,1405736 -hive-gateway-bun,28,50,288.33507838844275,327.4160386,1,196.90,1405736 -hive-gateway-bun,29,50,287.98692369377153,326.8358682,1,198.10,1405736 -hive-gateway-bun,29,50,287.5715224368414,326.2463289999999,1,194.90,1405736 -hive-gateway-bun,29,50,288.18045903180234,325.7818246999999,1,196.20,1428008 -hive-gateway-bun,30,50,286.9788781471125,326.839968,1,197.40,1405832 -hive-gateway-bun,30,50,288.4463383507339,325.9761294,1,198.60,1405832 -hive-gateway-bun,30,50,289.509028480005,325.5774054,1,195.50,1405832 -hive-gateway-bun,30,50,289.06021041452715,325.3806428,1,196.80,1405832 -hive-gateway-bun,31,50,290.23860373993205,324.961706,1,198.10,1405832 -hive-gateway-bun,31,50,290.6816255276252,324.61080259999994,1,194.90,1405832 -hive-gateway-bun,31,50,290.2165709632518,324.33450089999997,1,196.20,1406716 -hive-gateway-bun,32,50,289.7607437800258,324.931768,1,197.30,1406716 -hive-gateway-bun,32,50,289.63606050415694,324.8698518,1,198.50,1406716 -hive-gateway-bun,32,50,289.4986022484232,325.18612579999996,1,195.50,1406716 -hive-gateway-bun,32,50,290.3649098778456,324.8923876,1,196.70,1406716 -hive-gateway-bun,33,50,290.77722955520767,324.64620655,1,197.80,1406716 -hive-gateway-bun,33,50,291.3448139044681,324.34490739999995,1,194.90,1406716 -hive-gateway-bun,33,50,291.1146807080329,324.295278,1,196.00,1405880 -hive-gateway-bun,33,50,290.95133383425014,324.87548710000004,1,197.20,1405880 -hive-gateway-bun,34,50,291.3593876936193,324.6654602,1,198.30,1405880 -hive-gateway-bun,34,50,292.1329884883516,324.3918294999999,1,195.40,1405880 -hive-gateway-bun,34,50,292.92517127397053,324.28306,1,196.60,1405880 -hive-gateway-bun,35,50,292.7369709164404,324.0794288,1,197.70,1405880 -hive-gateway-bun,35,50,291.7952050913152,323.839407,1,195.00,1417912 -hive-gateway-bun,35,50,291.4342667390134,325.1578689999999,1,196.10,1405896 -hive-gateway-bun,35,50,291.54142266072205,325.37088609999995,1,197.10,1405896 -hive-gateway-bun,36,50,292.5787945679171,325.07907939999996,1,198.30,1405896 -hive-gateway-bun,36,50,292.84654741856866,324.9318992,1,195.50,1406024 -hive-gateway-bun,36,50,292.7157197083284,324.7769618,1,196.60,1406024 -hive-gateway-bun,37,50,292.53056759661024,324.61984709999996,1,197.70,1406024 -hive-gateway-bun,37,50,293.5723273106553,324.32773955,1,195.00,1406536 -hive-gateway-bun,37,50,292.62148698342185,324.49517445,1,196.10,1406664 -hive-gateway-bun,37,50,293.41139332744353,325.35555904999995,1,197.10,1406664 -hive-gateway-bun,38,50,293.64119372471936,325.12759750000004,1,198.20,1406664 -hive-gateway-bun,38,50,293.01104414015435,325.01522869999997,1,195.40,1406664 -hive-gateway-bun,38,50,293.10504226927515,324.88055725000004,1,196.50,1406664 -hive-gateway-bun,39,50,293.615170051073,324.6569338,1,197.60,1406664 -hive-gateway-bun,39,50,293.6939512028242,324.45009075,1,198.50,1406424 -hive-gateway-bun,39,50,293.71782012870955,324.3135848,1,196.00,1406424 -hive-gateway-bun,39,50,293.3431677243586,324.231152,1,197.10,1406424 -hive-gateway-bun,40,50,294.4255009158874,323.78823234999993,1,198.10,1406424 -hive-gateway-bun,40,50,295.152236886816,323.11178545,1,195.50,1406424 -hive-gateway-bun,40,50,294.9987297039356,322.696374,1,196.60,1406424 -hive-gateway-bun,41,50,295.58653872977885,322.359334,1,197.60,1426136 -hive-gateway-bun,41,50,294.7305744437454,324.2842818,1,198.70,1406176 -hive-gateway-bun,41,50,294.1013022221398,324.8277437,1,195.90,1406176 -hive-gateway-bun,41,50,294.31485724544893,324.62310014999997,1,196.90,1406176 -hive-gateway-bun,42,50,295.11306053779,324.3558215,1,197.90,1406176 -hive-gateway-bun,42,50,295.77789569138355,324.24702799999994,1,195.60,1406176 -hive-gateway-bun,42,50,295.5785192306463,323.99819924999997,1,196.50,1406176 -hive-gateway-bun,43,50,295.64833724183933,323.76091584999995,1,197.40,1406176 -hive-gateway-bun,43,50,295.4243937477247,323.853399,1,198.50,1406176 -hive-gateway-bun,43,50,295.8807204877953,323.5873006,1,196.00,1406176 -hive-gateway-bun,43,50,296.3239434398613,323.10813004999994,1,196.90,1406176 -hive-gateway-bun,44,50,296.8142881748206,322.6251450999999,1,197.80,1406176 -hive-gateway-bun,44,50,296.12749901939776,322.4899832,1,195.60,1406176 -hive-gateway-bun,44,50,296.0620059766445,322.38009354999997,1,196.50,1420000 -hive-gateway-bun,45,50,296.11556091557884,324.1227243999999,1,197.50,1406140 -hive-gateway-bun,45,50,296.0873529725053,323.855731,1,198.30,1406140 -hive-gateway-bun,45,50,296.14349044658576,323.64225189999996,1,196.10,1406140 -hive-gateway-bun,45,50,296.85353924470627,323.11275094999996,1,197.00,1406140 -hive-gateway-bun,46,50,296.9697253533588,322.83960779999995,1,197.90,1406140 -hive-gateway-bun,46,50,297.3958546873886,322.47298494999995,1,195.60,1406140 -hive-gateway-bun,46,50,297.26853678198967,322.37951365,1,196.60,1406140 -hive-gateway-bun,47,50,297.34242157063835,323.84873500000003,1,197.40,1406140 -hive-gateway-bun,47,50,297.7141051614323,323.58268219999997,1,198.40,1406140 -hive-gateway-bun,47,50,296.91338548510913,323.32954899999976,1,196.10,1406140 -hive-gateway-bun,47,50,297.0988120695371,324.233798,1,197.00,1406140 -hive-gateway-bun,48,50,297.5923339142663,323.856897,1,197.90,1406140 -hive-gateway-bun,48,50,297.4357051008493,323.67871,1,195.80,1406140 -hive-gateway-bun,48,50,297.43512539904896,323.27666399999976,1,196.60,1406788 -hive-gateway-bun,49,50,297.5878961901674,324.65267059999996,1,197.60,1406788 -hive-gateway-bun,49,50,297.619758244763,324.5507805,1,198.50,1406788 -hive-gateway-bun,49,50,298.0089990537325,324.3230825,1,196.20,1406788 -hive-gateway-bun,49,50,297.9431553645399,324.24173599999995,1,197.00,1406788 -hive-gateway-bun,50,50,298.7199317112942,323.84290500000003,1,198.00,1406788 -hive-gateway-bun,50,50,298.37734390097904,323.6706082,1,195.80,1406088 -hive-gateway-bun,50,50,297.6959899845816,324.9189036,1,196.70,1406088 -hive-gateway-bun,51,50,297.8408078774264,324.72945749999997,1,197.50,1406088 -hive-gateway-bun,51,50,298.3034871026251,324.57130889999996,1,198.30,1406088 -hive-gateway-bun,51,50,298.4001331333957,324.3469887,1,196.30,1406088 -hive-gateway-bun,51,50,298.9242674803693,324.233798,1,197.10,1406088 -hive-gateway-bun,52,50,298.90148243546724,323.9053330999998,1,197.90,1409288 -hive-gateway-bun,52,50,298.66917112100487,325.0444305,1,195.80,1406116 -hive-gateway-bun,52,50,298.62165674289747,324.91403025,1,196.70,1406116 -hive-gateway-bun,53,50,299.05175091796485,324.682513,1,197.50,1406116 -hive-gateway-bun,53,50,299.5403900970977,324.52754819999996,1,198.30,1406116 -hive-gateway-bun,53,50,299.49635190187433,324.32722210000003,1,196.20,1406116 -hive-gateway-bun,53,50,298.92879332023233,324.62743259999996,1,197.00,1406116 -hive-gateway-bun,54,50,299.2792146404528,324.46317494999994,1,197.90,1419300 -hive-gateway-bun,54,50,298.4412990443137,324.35132049999993,1,195.90,1406116 -hive-gateway-bun,54,50,298.9692905038141,325.19337905,1,196.70,1406116 -hive-gateway-bun,55,50,299.5785851927713,324.99157914999995,1,197.50,1406116 -hive-gateway-bun,55,50,299.44564522355745,324.8619586,1,198.30,1406244 -hive-gateway-bun,55,50,299.86333697658324,324.62598844999997,1,196.30,1406244 -hive-gateway-bun,55,50,299.93325259024294,324.50157435,1,197.10,1412004 -hive-gateway-bun,56,50,299.9224749755143,325.2221795,1,197.90,1428644 -hive-gateway-bun,56,50,300.2583597848496,325.06083279999996,1,196.00,1428644 -hive-gateway-bun,56,50,299.8496333372184,324.9780222999999,1,196.60,1428644 -hive-gateway-bun,57,50,299.2984573899968,325.43401804999996,1,197.40,1428644 -hive-gateway-bun,57,50,299.8553702779519,325.24570775,1,198.20,1428644 -hive-gateway-bun,57,50,299.7435473382517,325.16982925,1,196.40,1428644 -hive-gateway-bun,57,50,299.54636941654843,325.016965,1,197.10,1407220 -hive-gateway-bun,58,50,299.9926725347629,325.54588479999995,1,197.90,1407220 -hive-gateway-bun,58,50,300.1104356956013,325.4191085,1,196.10,1407220 -hive-gateway-bun,58,50,300.21862991677983,325.27082094999986,1,196.80,1407220 -hive-gateway-bun,59,50,300.3219236370427,325.16609945,1,197.50,1407220 -hive-gateway-bun,59,50,300.46050212783155,324.9908497999999,1,198.30,1407220 -hive-gateway-bun,59,50,300.56359234764585,324.85982624999997,1,196.50,1406352 -hive-gateway-bun,59,50,299.97495565316166,324.87886720000006,1,197.20,1406480 -hive-gateway-bun,60,50,299.080473365764,325.37536479999994,1,197.90,1406480 -hive-gateway-bun,60,50,299.5774542750931,325.79740964999996,1,196.00,1406608 -hive-gateway-bun,60,50,299.54821579044875,325.5934838,1,196.70,1406608 -hive-gateway-bun,61,50,299.5676200594954,325.4714431,1,197.40,1406736 -hive-gateway-bun,61,50,299.8226637722446,325.33097669999995,1,198.20,1406864 -hive-gateway-bun,61,50,299.69886593368335,325.21352705,1,196.40,1406908 -hive-gateway-bun,61,50,299.5234199994437,326.2714094,1,197.10,1406908 -hive-gateway-bun,62,50,299.93679208498077,325.95610124999996,1,197.80,1406908 -hive-gateway,2,50,124.62787315421086,522.7733212499998,1,191.80,1261592 -hive-gateway,2,50,149.98499264950803,485.51116200000007,1,185.00,1261592 -hive-gateway,3,50,163.5552531627513,466.6579439999998,1,187.70,1262616 -hive-gateway,3,50,166.96745294475514,454.77138855,1,190.30,1261864 -hive-gateway,3,50,182.80617439222368,409.8432433999999,1,193.10,1261864 -hive-gateway,3,50,176.3224067898764,405.7143077999999,1,186.60,1285048 -hive-gateway,4,50,191.24923917913932,377.74687190000014,1,189.20,1285048 -hive-gateway,4,50,199.6086118475952,362.0775734,1,191.80,1285048 -hive-gateway,4,50,207.81639291005874,357.7280522999998,1,185.60,1285048 -hive-gateway,4,50,213.85853964644906,344.548571,1,188.10,1285048 -hive-gateway,5,50,222.35283044476103,341.74727125,1,190.60,1285048 -hive-gateway,5,50,224.95840736702345,340.5299917,1,193.10,1283852 -hive-gateway,5,50,227.26869396729845,339.1551123,1,187.00,1283980 -hive-gateway,6,50,229.64296424541425,335.27481350000005,1,189.40,1283980 -hive-gateway,6,50,232.2183544965179,327.18086025,1,191.80,1283980 -hive-gateway,6,50,233.59780205024876,321.5290892499999,1,194.20,1283980 -hive-gateway,6,50,235.73843830505163,312.680719,1,188.60,1283980 -hive-gateway,7,50,239.87888104201005,309.9308548,1,190.80,1283980 -hive-gateway,7,50,244.290852707852,307.21048225,1,193.10,1283980 -hive-gateway,7,50,242.6751326802061,305.6559580499999,1,187.50,1284792 -hive-gateway,8,50,240.43112536525715,327.1397318499999,1,189.90,1284792 -hive-gateway,8,50,240.25987580250782,323.4828627,1,191.90,1284792 -hive-gateway,8,50,244.28915978892357,316.84690355,1,194.10,1284792 -hive-gateway,8,50,245.57727036960227,315.26338565,1,188.80,1284792 -hive-gateway,9,50,249.97764488081123,314.22250935000005,1,190.90,1284792 -hive-gateway,9,50,249.6008135241308,313.6648694,1,193.00,1284792 -hive-gateway,9,50,256.64911038866694,312.46529960000004,1,187.80,1284920 -hive-gateway,9,50,253.99800318796434,311.67095980000005,1,189.70,1284144 -hive-gateway,10,50,252.3634345853125,319.15815460000033,1,191.80,1284144 -hive-gateway,10,50,255.30359999066522,316.76688695,1,193.80,1284144 -hive-gateway,10,50,255.9708346389187,315.2116375999999,1,188.80,1284144 -hive-gateway,11,50,257.8311407626155,314.3358313,1,190.80,1284144 -hive-gateway,11,50,258.86368494409106,313.65690255,1,192.90,1284144 -hive-gateway,11,50,260.4239074121119,312.79014655000003,1,188.30,1284144 -hive-gateway,11,50,263.000742163092,311.1663999499999,1,190.20,1289392 -hive-gateway,12,50,263.34171092396866,309.2831571999999,1,192.10,1322920 -hive-gateway,12,50,260.82963065464793,315.2836092,1,193.80,1320220 -hive-gateway,12,50,260.9617372696119,324.3663305,1,189.30,1320348 -hive-gateway,13,50,261.22189235707407,323.5416347,1,191.20,1320348 -hive-gateway,13,50,261.79786929918635,322.68795915,1,193.00,1320604 -hive-gateway,13,50,262.81081611743576,321.368752,1,195.00,1320604 -hive-gateway,13,50,263.1230802545608,317.39959249999924,1,190.50,1320604 -hive-gateway,14,50,265.017778741944,315.2816264,1,192.30,1320604 -hive-gateway,14,50,265.9440007871091,314.3480204,1,194.00,1327644 -hive-gateway,14,50,265.58058267762914,313.681564,1,189.70,1353240 -hive-gateway,15,50,266.09855530540534,315.00464539999996,1,191.50,1328036 -hive-gateway,15,50,266.0382351237117,314.3446961,1,193.20,1328036 -hive-gateway,15,50,267.5892406619881,313.64441895,1,195.00,1328036 -hive-gateway,15,50,268.2555384086732,312.79726995,1,190.70,1328036 -hive-gateway,16,50,269.3179755234675,311.4136291999999,1,192.50,1328036 -hive-gateway,16,50,268.16977557181394,310.2493576,1,194.10,1328036 -hive-gateway,16,50,269.4743428705421,307.24340474999997,1,190.10,1328036 -hive-gateway,16,50,266.4636375431265,307.1542633,1,191.70,1328036 -hive-gateway,17,50,266.50683961029404,314.459129,1,193.30,1328056 -hive-gateway,17,50,267.8994586300306,321.9716506000001,1,194.90,1328056 -hive-gateway,17,50,268.67597793857084,320.11924439999984,1,191.00,1328056 -hive-gateway,18,50,268.06737140197055,316.54684129999976,1,192.40,1328056 -hive-gateway,18,50,269.4585897091882,314.54011239999977,1,194.00,1328056 -hive-gateway,18,50,270.5734214932456,313.79039830000005,1,190.20,1328056 -hive-gateway,18,50,271.42598629392353,313.29683524999996,1,191.70,1328056 -hive-gateway,19,50,270.32605893603306,312.78658485,1,193.20,1353732 -hive-gateway,19,50,270.5989491343512,311.50348235000007,1,194.80,1328456 -hive-gateway,19,50,270.9163202561012,309.7275029499999,1,191.00,1328456 -hive-gateway,20,50,271.80402146566445,307.6745894,1,192.50,1328456 -hive-gateway,20,50,271.76607748353797,307.10370435,1,194.10,1328456 -hive-gateway,20,50,272.8174442386136,306.3955764,1,190.50,1328456 -hive-gateway,20,50,273.9119526791719,305.843974,1,191.80,1328456 -hive-gateway,21,50,272.3442113564459,305.75033945,1,193.30,1328456 -hive-gateway,21,50,271.62379769130723,310.47920775,1,194.80,1328584 -hive-gateway,21,50,271.61120222002194,308.17780400000004,1,191.40,1328688 -hive-gateway,22,50,272.55545664884914,312.0116495,1,192.80,1328688 -hive-gateway,22,50,272.0188592249396,311.0793517,1,194.20,1328688 -hive-gateway,22,50,274.23283770617724,309.1942880500001,1,195.70,1332656 -hive-gateway,22,50,273.4947144288748,307.866059,1,192.10,1356208 -hive-gateway,23,50,275.0050162557015,307.09969065,1,193.50,1378480 -hive-gateway,23,50,276.00679533356214,306.48447749999997,1,194.90,1410284 -hive-gateway,23,50,274.8514404785389,306.21856205,1,191.60,1428076 -hive-gateway,24,50,274.703629497916,306.1340676,1,193.00,1452152 -hive-gateway,24,50,273.6796354498629,310.15185639999976,1,194.20,1473528 -hive-gateway,24,50,275.02431555218755,307.9541124499998,1,195.50,1496696 -hive-gateway,24,50,275.74882054085856,307.15130899999997,1,192.20,1517048 -hive-gateway,25,50,275.8916634223542,306.67091079999994,1,193.40,1540472 -hive-gateway,25,50,276.29790990190986,306.22801429999987,1,194.80,1551992 -hive-gateway,25,50,274.32944154259746,306.17764059999996,1,191.60,1525696 -hive-gateway,25,50,274.816312991097,310.33630315,1,192.90,1525824 -hive-gateway,26,50,274.8747608762897,308.55706059999966,1,194.20,1527488 -hive-gateway,26,50,274.47453341183217,307.73247839999993,1,195.50,1527664 -hive-gateway,26,50,274.619060279574,309.6386337999996,1,192.30,1527664 -hive-gateway,27,50,275.48944535592256,307.73247839999993,1,193.60,1527664 -hive-gateway,27,50,275.0011539546235,307.15426329999997,1,194.90,1527664 -hive-gateway,27,50,276.4867236200522,306.60984399999995,1,191.80,1527664 -hive-gateway,27,50,276.2611414286808,306.365353,1,193.10,1548776 -hive-gateway,28,50,276.24787795127946,306.4206129999999,1,194.30,1548776 -hive-gateway,28,50,276.9859225529226,306.22568629999995,1,195.50,1548776 -hive-gateway,28,50,275.9158198419691,306.1264135,1,192.30,1548136 -hive-gateway,29,50,276.7034440387674,307.85945875,1,193.60,1548136 -hive-gateway,29,50,276.552243365927,307.24340474999997,1,194.80,1548136 -hive-gateway,29,50,278.20179581906694,306.69865754999995,1,191.90,1548136 -hive-gateway,29,50,277.89996838684095,306.3902956,1,193.10,1548136 -hive-gateway,30,50,277.7591977278045,306.24687635,1,194.20,1548264 -hive-gateway,30,50,277.0446708458938,307.47120799999993,1,195.30,1548264 -hive-gateway,30,50,277.9924628975519,306.95620339999994,1,192.40,1548264 -hive-gateway,31,50,278.48994311019464,306.61618819999995,1,193.60,1548648 -hive-gateway,31,50,277.6828369561587,306.402366,1,194.80,1551000 -hive-gateway,31,50,277.95781265838946,308.3614887499999,1,192.00,1551000 -hive-gateway,31,50,278.6140911274494,307.65237759999997,1,193.20,1551000 -hive-gateway,32,50,278.734368714603,307.2104822499999,1,194.30,1551128 -hive-gateway,32,50,278.87197414399077,306.94608659999994,1,195.50,1551128 -hive-gateway,32,50,278.14551563539527,309.78999775,1,192.70,1551128 -hive-gateway,33,50,278.21590782144597,309.1143609999999,1,193.80,1551128 -hive-gateway,33,50,278.788695300417,308.24372599999975,1,195.00,1551128 -hive-gateway,33,50,279.36032654166246,307.64370879999996,1,192.30,1551640 -hive-gateway,33,50,279.0796502200966,307.73150549999997,1,193.40,1551764 -hive-gateway,34,50,279.6486356767285,309.76045224999996,1,194.50,1551764 -hive-gateway,34,50,280.1413489331438,308.741088,1,195.60,1551764 -hive-gateway,34,50,279.5411592361913,308.38765825,1,193.00,1551764 -hive-gateway,35,50,279.1946409189775,308.509113,1,194.10,1551764 -hive-gateway,35,50,279.65524711064836,309.949343,1,195.20,1551892 -hive-gateway,35,50,279.64915784954457,309.489991,1,192.60,1551892 -hive-gateway,35,50,279.7435988123788,308.5061784,1,193.70,1551892 -hive-gateway,36,50,279.50824993438977,311.5777533500001,1,194.70,1551248 -hive-gateway,36,50,279.8892211219204,311.11463484999996,1,195.80,1551248 -hive-gateway,36,50,279.7145228842144,310.3376827,1,193.20,1551248 -hive-gateway,37,50,280.2590156423048,309.76111749999995,1,194.30,1551248 -hive-gateway,37,50,279.6011362657539,310.2435886,1,195.30,1551248 -hive-gateway,37,50,279.4742596885019,312.88219754999994,1,192.90,1551248 -hive-gateway,38,50,279.2695935249052,312.49379100000016,1,193.90,1551248 -hive-gateway,38,50,279.594435332462,311.46307504999965,1,194.90,1551248 -hive-gateway,38,50,280.145181832776,310.33776385,1,195.90,1552016 -hive-gateway,38,50,279.61032772683774,311.18288190000015,1,193.30,1551324 -hive-gateway,39,50,280.16226172495726,313.29558260000005,1,194.20,1551324 -hive-gateway,39,50,280.11014423824315,312.9224570999998,1,195.30,1551324 -hive-gateway,39,50,279.3025076090958,312.76919125000006,1,192.90,1551032 -hive-gateway,40,50,279.8049729457708,314.3480204,1,193.90,1551032 -hive-gateway,40,50,280.1917162283684,313.97037960000006,1,194.90,1551032 -hive-gateway,40,50,280.6507267913073,313.6265694,1,195.90,1551032 -hive-gateway,40,50,281.0180939915536,313.27358,1,193.50,1551032 -hive-gateway,41,50,281.11790145391296,312.820421,1,194.50,1551032 -hive-gateway,41,50,280.53572717618545,313.36643919999995,1,195.60,1551092 -hive-gateway,41,50,280.64531447822026,314.32051659999996,1,193.20,1551092 -hive-gateway,42,50,280.67060259076527,314.43301400000007,1,194.10,1551092 -hive-gateway,42,50,280.49928733862555,314.018228,1,195.00,1551092 -hive-gateway,42,50,280.95191593968684,313.676767,1,196.00,1551092 -hive-gateway,42,50,281.41273986652527,313.359002,1,193.70,1551092 -hive-gateway,43,50,281.8012251119849,312.88219754999994,1,194.70,1551092 -hive-gateway,43,50,281.70190801123766,312.37696100000016,1,195.60,1563196 -hive-gateway,43,50,281.5027029385774,314.2102456999997,1,193.30,1575564 -hive-gateway,44,50,281.79112594845196,313.986855,1,194.30,1575564 -hive-gateway,44,50,281.327317084345,313.6758518,1,195.20,1575564 -hive-gateway,44,50,281.4738662058345,314.43301399999984,1,196.20,1575564 -hive-gateway,44,50,281.49425325968065,314.0145704,1,194.00,1575564 -hive-gateway,45,50,281.4456526376091,313.68396249999995,1,194.80,1575564 -hive-gateway,45,50,282.22374651003605,313.3343389,1,195.80,1575564 -hive-gateway,45,50,282.2012018131798,313.0163960499999,1,193.50,1575692 -hive-gateway,46,50,282.0870176837389,312.5405229999995,1,194.50,1575692 -hive-gateway,46,50,282.4965643106966,311.38066529999963,1,195.40,1575692 -hive-gateway,46,50,282.3870537156849,310.5579324499998,1,196.30,1575692 -hive-gateway,46,50,281.99692492697267,310.19070304999957,1,194.00,1575692 -hive-gateway,47,50,282.4085906892228,309.4496109999996,1,195.00,1575692 -hive-gateway,47,50,282.8100938749992,308.5061784,1,195.80,1575692 -hive-gateway,47,50,283.8724402217431,307.6832485,1,193.70,1575692 -hive-gateway,48,50,283.0301178298031,307.83125559999996,1,194.70,1551052 -hive-gateway,48,50,283.34840954660956,309.50334774999976,1,195.60,1551052 -hive-gateway,48,50,283.21177946860183,308.9175931999996,1,193.50,1551436 -hive-gateway,48,50,283.1821082916816,309.8013724499998,1,194.30,1551436 -hive-gateway,49,50,283.4671369649271,309.18430909999995,1,195.30,1551436 -hive-gateway,49,50,284.14455001629807,308.4786089,1,196.10,1551436 -hive-gateway,49,50,284.3210180321973,307.93112459999963,1,194.10,1551436 -hive-gateway,50,50,284.6143427762829,307.6581594,1,194.90,1576420 -hive-gateway,50,50,284.0239876713049,307.5886678,1,195.70,1551688 -hive-gateway,50,50,284.6641500965379,307.84229809999994,1,193.60,1551688 -hive-gateway,50,50,284.28330973794544,308.22844,1,194.50,1551688 -hive-gateway,51,50,283.89782360158785,309.9589701,1,195.30,1551688 -hive-gateway,51,50,284.19636829027485,309.69417374999966,1,196.30,1551688 -hive-gateway,51,50,284.3575037988007,309.01019939999986,1,194.30,1551688 -hive-gateway,52,50,284.7204291946593,308.27336839999975,1,195.10,1551688 -hive-gateway,52,50,284.72510320764485,307.84097805,1,195.80,1576128 -hive-gateway,52,50,284.9331763564544,309.8127471499999,1,193.80,1576128 -hive-gateway,53,50,285.01048198577837,309.489991,1,194.60,1576128 -hive-gateway,53,50,284.55054082833624,309.10807299999993,1,195.50,1576128 -hive-gateway,53,50,284.49866161047873,311.1688177999999,1,196.30,1576128 -hive-gateway,53,50,284.836583761263,310.58216639999995,1,194.20,1576128 -hive-gateway,54,50,285.1920847394215,310.2056928,1,195.00,1576128 -hive-gateway,54,50,284.69659378485426,309.9012202499999,1,195.80,1576128 -hive-gateway,54,50,285.2142799471088,309.4496109999996,1,193.90,1576768 -hive-gateway,55,50,285.36506240390247,308.87752449999977,1,194.70,1551916 -hive-gateway,55,50,285.62435376981443,308.32952889999973,1,195.50,1551916 -hive-gateway,55,50,285.12071343437566,308.14040650000004,1,196.30,1551916 -hive-gateway,55,50,285.4374184795412,309.7245025,1,194.40,1551916 -hive-gateway,56,50,285.7235000271088,309.148945,1,195.30,1551916 -hive-gateway,56,50,286.0282402121609,308.80264539999996,1,196.00,1551916 -hive-gateway,56,50,286.4499136235311,308.4713155,1,194.10,1551916 -hive-gateway,57,50,286.0059995767061,308.59901539999987,1,194.80,1551616 -hive-gateway,57,50,286.2913254068917,308.22588069999995,1,195.60,1551616 -hive-gateway,57,50,286.5897061578043,307.84682009999995,1,196.40,1551616 -hive-gateway,57,50,286.58797150312853,307.65855965,1,194.50,1551744 -hive-gateway,58,50,286.4637109096453,308.5223241,1,195.20,1551744 -hive-gateway,58,50,286.7824298018795,308.38568939999976,1,196.00,1551744 -hive-gateway,58,50,286.4343268786995,308.12879799999996,1,194.20,1551744 -hive-gateway,59,50,286.6583494361271,307.8372988,1,194.90,1551768 -hive-gateway,59,50,286.3293159707566,309.0907227,1,195.70,1551768 -hive-gateway,59,50,286.56155166106606,308.71993059999994,1,194.00,1551768 -hive-gateway,59,50,286.58325157931586,308.5149846,1,194.80,1551768 -hive-gateway,60,50,286.6088956621388,308.45855205,1,195.50,1551896 -hive-gateway,60,50,286.71869085884146,308.23892125,1,196.20,1551896 -hive-gateway,60,50,286.7434525968722,308.06344639999986,1,194.50,1551896 -hive-gateway,61,50,287.26870124318975,307.80513799999983,1,195.20,1551896 -hive-gateway,61,50,286.57271084145043,307.68885919999997,1,195.90,1551748 -grafbase,1,50,724.3184446888364,230.8553326999996,1,138.00,69752 -grafbase,2,50,937.4253706845631,110.42129789999983,1,141.00,70392 -grafbase,2,50,1048.6205211614176,63.555357199999996,1,144.00,71032 -grafbase,2,50,1142.8425166275429,61.971492,1,146.00,71160 -grafbase,3,50,1212.0091424855782,61.938543200000026,1,141.00,71216 -grafbase,3,50,1262.3042066494365,57.06132039999998,1,144.00,70672 -grafbase,3,50,1298.6241582859777,57.98389259999999,1,147.00,71188 -grafbase,3,50,1331.9716307945548,56.3997085,1,142.00,72080 -grafbase,4,50,1359.048432832548,56.57944499999998,1,145.00,73488 -grafbase,4,50,1387.497989558967,56.16738250000001,1,147.00,74384 -grafbase,4,50,1385.9992771507827,55.37594579999998,1,149.00,71792 -grafbase,5,50,1423.5549968449873,55.3011013,1,145.00,72176 -grafbase,5,50,1442.0194384629935,54.818208999999996,1,148.00,72244 -grafbase,5,50,1452.1266700794192,54.702682,1,150.00,73268 -grafbase,6,50,1449.3857200304722,54.695577699999994,1,146.00,71984 -grafbase,6,50,1481.572620189414,54.28543939999991,1,148.00,71984 -grafbase,6,50,1477.4458757815858,54.246405,1,150.00,71296 -grafbase,6,50,1498.1208322276693,53.798097999999996,1,146.00,71424 -grafbase,7,50,1496.032403483481,53.575232,1,148.00,71524 -grafbase,7,50,1514.837435581989,53.65594775,1,150.00,72548 -grafbase,7,50,1527.007140265128,53.13505629999997,1,153.00,73188 -grafbase,8,50,1527.716329129154,53.000402900000005,1,149.00,73828 -grafbase,8,50,1531.2778356555798,53.16942809999999,1,151.00,73292 -grafbase,8,50,1534.684634944139,52.983388649999995,1,153.00,71156 -grafbase,9,50,1539.1253000529482,53.05637819999998,1,149.00,71796 -grafbase,9,50,1552.5671985037434,53.27694119999997,1,151.00,72052 -grafbase,9,50,1545.9938303077472,53.25399649999999,1,153.00,72308 -grafbase,9,50,1550.72376532588,53.11760359999998,1,150.00,72436 -grafbase,10,50,1555.9444045903756,52.8328785,1,152.00,72136 -grafbase,10,50,1559.8811982779537,52.83497719999998,1,153.00,71940 -grafbase,10,50,1561.3924462700159,52.85076064999998,1,150.00,71648 -grafbase,11,50,1570.741956371979,52.94625789999994,1,152.00,72032 -grafbase,11,50,1568.254330836891,52.841801,1,153.00,72816 -grafbase,11,50,1570.4073079811687,52.621549,1,155.00,73196 -grafbase,12,50,1572.7165475622967,52.50323729999998,1,152.00,70784 -grafbase,12,50,1576.336515732159,52.4248923,1,154.00,71296 -grafbase,12,50,1577.8934488089067,52.217835999999984,1,155.00,71680 -grafbase,12,50,1583.5033853258824,52.32170239999994,1,152.00,71808 -grafbase,13,50,1583.6892679926789,52.3752336,1,154.00,72064 -grafbase,13,50,1589.8793418968553,52.38577535,1,156.00,72004 -grafbase,13,50,1591.8367664801174,52.39302449999998,1,152.00,72252 -grafbase,14,50,1586.5740732681766,52.49798084999998,1,154.00,72636 -grafbase,14,50,1586.773687886931,52.633880250000004,1,156.00,73276 -grafbase,14,50,1589.7456367421173,52.586029999999994,1,157.00,73660 -grafbase,15,50,1594.0080781693264,52.4222517,1,154.00,71424 -grafbase,15,50,1585.3414997685877,52.640636,1,156.00,71552 -grafbase,15,50,1595.1171592547435,52.981956049999994,1,157.00,71808 -grafbase,16,50,1591.526226092707,53.0866998,1,154.00,70804 -grafbase,16,50,1596.3197654086125,53.109853799999996,1,156.00,72468 -grafbase,16,50,1603.1935385179227,53.113185349999995,1,157.00,73364 -grafbase,16,50,1597.3444838998005,53.11516225,1,154.00,72336 -grafbase,17,50,1597.8537663572138,52.98856075,1,156.00,72464 -grafbase,17,50,1599.844433306515,53.10973865,1,157.00,73228 -grafbase,17,50,1602.8410754344927,53.08847325,1,155.00,73356 -grafbase,18,50,1594.1998557451946,53.02246599999999,1,156.00,74376 -grafbase,18,50,1599.8052588699525,53.12072619999999,1,158.00,73260 -grafbase,18,50,1599.7297434049274,53.21423525,1,155.00,73260 -grafbase,19,50,1597.508585013551,53.4275592,1,156.00,71832 -grafbase,19,50,1595.7912360263128,53.40150989999998,1,158.00,72216 -grafbase,19,50,1593.5868872343542,53.51340229999996,1,159.00,72344 -grafbase,20,50,1602.7757145870155,53.48544895,1,156.00,72984 -grafbase,20,50,1597.661374461784,53.4271986,1,158.00,72984 -grafbase,20,50,1601.4475054991851,53.457933849999996,1,159.00,72828 -grafbase,21,50,1597.8633039436777,53.566087450000005,1,157.00,72616 -grafbase,21,50,1598.9903718976375,53.46822964999999,1,158.00,72616 -grafbase,21,50,1606.3976710492045,53.371090699999996,1,159.00,71692 -grafbase,22,50,1600.6415327729999,53.340433,1,157.00,71820 -grafbase,22,50,1607.094834166226,53.406166199999994,1,158.00,70816 -grafbase,22,50,1600.9493380603449,53.36484839999996,1,159.00,71712 -grafbase,22,50,1604.1276307177452,53.41582355,1,157.00,71744 -grafbase,23,50,1603.6570812560674,53.425278399999996,1,158.00,71872 -grafbase,23,50,1603.7325687750367,53.405272,1,160.00,72640 -grafbase,23,50,1608.9091102321236,53.36028439999998,1,157.00,71344 -grafbase,24,50,1606.2935913236443,53.3379085,1,159.00,71344 -grafbase,24,50,1605.6173538346054,53.2715198,1,160.00,71344 -grafbase,24,50,1609.8970058649995,53.314703199999975,1,158.00,72112 -grafbase,25,50,1607.4819797804291,53.334498699999976,1,159.00,73392 -grafbase,25,50,1606.048441449677,53.366960999999996,1,160.00,74416 -grafbase,25,50,1610.6314742966356,53.27628664999999,1,158.00,73976 -grafbase,26,50,1609.0180084068973,53.304407449999985,1,159.00,74488 -grafbase,26,50,1608.9385046464295,53.2616636,1,160.00,74616 -grafbase,26,50,1612.4966109941056,53.396593,1,158.00,72712 -grafbase,27,50,1607.865625480838,53.31155499999999,1,159.00,73608 -grafbase,27,50,1613.7040992889795,53.367295999999996,1,161.00,73992 -grafbase,28,50,1615.8492384028445,53.29097884999998,1,159.00,72924 -grafbase,28,50,1611.3107465850887,53.39280699999999,1,160.00,71860 -grafbase,28,50,1608.8125891425104,53.41295775,1,161.00,72756 -grafbase,29,50,1612.7355510271052,53.41239105,1,159.00,73644 -grafbase,29,50,1614.8719945659793,53.458049349999996,1,160.00,73516 -grafbase,29,50,1614.1785007509598,53.589674,1,161.00,76016 -grafbase,30,50,1613.9304147065104,53.57088555,1,159.00,73152 -grafbase,30,50,1615.6934371969992,53.50562600000001,1,160.00,72504 -grafbase,30,50,1613.288216316542,53.505488,1,162.00,73144 -grafbase,31,50,1612.3482018631805,53.477661599999955,1,159.00,73388 -grafbase,31,50,1616.3330946549538,53.537653,1,161.00,72808 -grafbase,31,50,1614.1035614190473,53.42979179999999,1,162.00,73704 -grafbase,32,50,1617.623685243803,53.4285014,1,160.00,74396 -grafbase,32,50,1617.9660154913622,53.416306799999994,1,161.00,74908 -grafbase,32,50,1618.5945551437255,53.356037999999984,1,162.00,77296 -grafbase,33,50,1620.9329918859653,53.2546075,1,160.00,74692 -grafbase,33,50,1616.9012281028965,53.2722922,1,161.00,77096 -grafbase,33,50,1618.595058381395,53.296275,1,163.00,76876 -grafbase,34,50,1619.1736120015742,53.312844999999996,1,161.00,72092 -grafbase,34,50,1620.8039904035702,53.366623999999995,1,162.00,74652 -grafbase,34,50,1614.8501305413467,53.411497,1,160.00,75164 -grafbase,35,50,1617.7040348869873,53.491125499999995,1,161.00,72680 -grafbase,35,50,1620.5089104980284,53.457680499999995,1,162.00,72072 -grafbase,35,50,1620.243047603762,53.49506154999993,1,160.00,72328 -grafbase,36,50,1621.7954186077445,53.41853204999999,1,161.00,72712 -grafbase,36,50,1619.0564252181982,53.434128449999974,1,163.00,72152 -grafbase,37,50,1619.6163013561281,53.4277728,1,161.00,70984 -grafbase,37,50,1620.6328691293986,53.474508,1,162.00,70880 -grafbase,37,50,1619.690513813667,53.4279732,1,163.00,71648 -grafbase,38,50,1620.416944216548,53.41201325,1,161.00,70088 -grafbase,38,50,1620.9782340165314,53.3963293,1,162.00,68144 -grafbase,38,50,1622.0052126618984,53.33884,1,161.00,70192 -grafbase,39,50,1622.4280288631398,53.310248449999996,1,162.00,69680 -grafbase,39,50,1622.1458669761687,53.392534799999964,1,163.00,70192 -grafbase,39,50,1621.534599496117,53.43793589999996,1,161.00,71600 -grafbase,40,50,1620.8367383982734,53.4560665,1,162.00,70500 -grafbase,40,50,1618.6553978568104,53.4291114,1,163.00,71268 -grafbase,41,50,1619.0814887293227,53.41900379999999,1,162.00,72676 -grafbase,41,50,1621.1684288173622,53.41582355,1,163.00,72708 -grafbase,41,50,1623.787856441044,53.360865899999986,1,164.00,73160 -grafbase,42,50,1623.9963405490137,53.40569,1,162.00,73780 -grafbase,42,50,1622.3945847413124,53.360481750000005,1,163.00,73780 -grafbase,42,50,1622.752778102599,53.29389574999998,1,162.00,73780 -grafbase,43,50,1621.7891141972516,53.37434434999999,1,163.00,73916 -grafbase,43,50,1621.1809666524332,53.353093399999985,1,164.00,74140 -grafbase,44,50,1622.1172202842133,53.36143199999999,1,162.00,74884 -grafbase,44,50,1623.3218388332466,53.3542489,1,163.00,75396 -grafbase,44,50,1622.3083508879506,53.422339850000014,1,164.00,73976 -grafbase,45,50,1622.7982027269857,53.428501399999995,1,163.00,73928 -grafbase,45,50,1622.0401922716223,53.3965637,1,164.00,75720 -grafbase,46,50,1622.4928491696678,53.452895199999986,1,162.00,73560 -grafbase,46,50,1622.8976485035107,53.391670000000005,1,163.00,71216 -grafbase,46,50,1620.9858373472312,53.43074405000002,1,164.00,73264 -grafbase,47,50,1624.0979045651297,53.39606559999999,1,163.00,73064 -grafbase,47,50,1621.2092288009924,53.35397785,1,164.00,71392 -grafbase,47,50,1623.6494853136942,53.363370499999995,1,162.00,73256 -grafbase,48,50,1619.8031533334033,53.55711925,1,163.00,74276 -grafbase,48,50,1618.5370551778178,53.493364,1,164.00,72120 -grafbase,49,50,1619.716999685904,53.45548989999997,1,163.00,73272 -grafbase,49,50,1620.2290581758036,53.410153799999996,1,164.00,72060 -grafbase,49,50,1621.032431615199,53.377754249999995,1,162.00,72304 -grafbase,50,50,1620.0753878829066,53.39268499999998,1,163.00,72020 -grafbase,50,50,1619.7403313433672,53.425634349999996,1,164.00,72728 -grafbase,51,50,1620.6010165498064,53.405639199999996,1,163.00,72728 -grafbase,51,50,1621.433206032274,53.46499004999999,1,164.00,71716 -grafbase,51,50,1620.7004533686843,53.4256096,1,162.00,70372 -grafbase,52,50,1621.0175780076404,53.41816525,1,163.00,71508 -grafbase,52,50,1620.456102402737,53.456899400000005,1,164.00,72148 -grafbase,53,50,1618.6909104758597,53.454465,1,163.00,72276 -grafbase,53,50,1619.443056211656,53.42179755000001,1,164.00,71752 -grafbase,53,50,1620.2402356390112,53.37994289999998,1,165.00,72392 -grafbase,54,50,1620.0126495492655,53.3598415,1,163.00,72780 -grafbase,54,50,1619.6459880231275,53.318136,1,164.00,74044 -grafbase,55,50,1620.7060551866687,53.35352520000001,1,163.00,74360 -grafbase,55,50,1619.6644727238684,53.4273052,1,164.00,71220 -grafbase,55,50,1619.1227482013337,53.462928,1,163.00,71604 -grafbase,56,50,1618.670728588691,53.492458,1,164.00,71732 -grafbase,56,50,1620.2165503498954,53.4772552,1,164.00,71908 -grafbase,56,50,1619.722016738256,53.45897005,1,163.00,72036 -grafbase,57,50,1618.45630821565,53.424180799999995,1,164.00,71104 -grafbase,57,50,1621.059273055154,53.4279732,1,165.00,70372 -grafbase,58,50,1619.0604717697224,53.45103915,1,164.00,72020 -grafbase,58,50,1618.0309228957206,53.5399015,1,164.00,70076 -grafbase,59,50,1619.6445706919556,53.571168,1,163.00,69972 -grafbase,59,50,1618.3504061072438,53.6177424,1,164.00,71636 -grafbase,59,50,1618.0689155671187,53.6221831,1,163.00,71508 -grafbase,60,50,1617.7003080287404,53.651671,1,164.00,73556 -grafbase,60,50,1617.2916137501734,53.64933725,1,165.00,75732 -cosmo,1,50,247.30327227968846,435.6631984999998,1,161.00,106380 -cosmo,2,50,313.5011268179168,391.15826639999995,1,155.00,104552 -cosmo,2,50,333.32078312666835,353.77051484999987,1,159.00,113044 -cosmo,2,50,372.74073372433617,321.98558969999993,1,161.00,107236 -cosmo,2,50,410.33261352555684,254.01552474999932,1,156.00,106972 -cosmo,3,50,423.94871470514715,219.02562299999943,1,159.00,104896 -cosmo,3,50,419.16059005186344,174.43491524999976,1,161.00,108920 -cosmo,3,50,445.77379556348177,149.96235289999993,1,156.00,106800 -cosmo,4,50,454.29424722503336,144.23517489999998,1,159.00,112852 -cosmo,4,50,467.99008098820576,141.216769,1,161.00,108104 -cosmo,4,50,491.9554471714683,138.01449699999998,1,164.00,102660 -cosmo,4,50,500.8560717738757,136.301276,1,159.00,107916 -cosmo,5,50,520.897371045366,134.5519747,1,161.00,108780 -cosmo,5,50,524.5823098816579,131.823381,1,164.00,103060 -cosmo,5,50,538.5621354602056,130.16006484999988,1,166.00,106000 -cosmo,6,50,542.6630655235376,127.83346279999982,1,162.00,109712 -cosmo,6,50,547.6070421598675,126.6979241,1,164.00,109140 -cosmo,6,50,555.2832203086535,126.43400419999998,1,166.00,112956 -cosmo,6,50,566.3857770957625,124.5691822999999,1,162.00,101308 -cosmo,7,50,573.5426248488017,122.98493694999998,1,164.00,112272 -cosmo,7,50,576.6378049280805,122.62052479999997,1,166.00,110140 -cosmo,7,50,578.8484266879526,121.6545778,1,168.00,110384 -cosmo,7,50,579.8452613647903,120.916083,1,164.00,109180 -cosmo,8,50,590.7670267961673,119.80987975,1,166.00,114756 -cosmo,8,50,590.3240630578524,119.14172685000001,1,168.00,107240 -cosmo,8,50,600.4182911235692,118.14018765000002,1,170.00,98168 -cosmo,9,50,596.7088623360048,117.86215200000002,1,166.00,115132 -cosmo,9,50,602.6589091455671,117.2745242,1,168.00,112452 -cosmo,9,50,606.3114131822963,117.04634039999999,1,170.00,115204 -cosmo,9,50,607.4303547249677,116.58552944999994,1,166.00,108204 -cosmo,10,50,615.368363667952,116.75269629999998,1,168.00,106220 -cosmo,10,50,613.3407333487115,116.82506719999992,1,170.00,107052 -cosmo,10,50,614.6166850474133,116.32887639999998,1,171.00,106448 -cosmo,11,50,620.4390529178942,115.98456749999998,1,167.00,104896 -cosmo,11,50,618.8813899708119,115.75547059999998,1,169.00,106500 -cosmo,11,50,625.4915683660599,115.1983626,1,171.00,113408 -cosmo,11,50,626.7897032071224,114.8986865,1,167.00,109884 -cosmo,12,50,625.4315244799217,114.6948356,1,169.00,101896 -cosmo,12,50,625.9327433869444,114.810389,1,171.00,109924 -cosmo,12,50,629.8425477123174,114.652301,1,173.00,108664 -cosmo,13,50,629.9898379308798,114.23989599999996,1,169.00,110344 -cosmo,13,50,631.2460771924498,114.4471334,1,171.00,115708 -cosmo,13,50,631.1635143174578,114.02077109999999,1,173.00,102868 -cosmo,13,50,633.1073252800588,113.63739629999998,1,169.00,105972 -cosmo,14,50,633.1357961182636,114.07331774999999,1,171.00,100072 -cosmo,14,50,638.7280157166823,113.69366974999998,1,173.00,113596 -cosmo,14,50,637.511413852407,113.4269387,1,174.00,106144 -cosmo,15,50,642.0592333358918,113.01403099999995,1,171.00,108952 -cosmo,15,50,641.8818497442165,112.67952489999993,1,172.00,103228 -cosmo,15,50,643.7663734382013,112.17375575,1,174.00,112224 -cosmo,15,50,643.0125692308626,111.960409,1,171.00,101284 -cosmo,16,50,644.3809275235823,111.75597029999996,1,172.00,114984 -cosmo,16,50,646.3412073940581,111.52933679999998,1,174.00,102080 -cosmo,16,50,646.2950452841519,111.27985849999999,1,175.00,109104 -cosmo,17,50,648.4598438205242,111.10777180000002,1,172.00,103288 -cosmo,17,50,646.3879006650436,111.07078664999999,1,174.00,111272 -cosmo,17,50,650.8930674818189,110.74419044999998,1,175.00,100924 -cosmo,17,50,649.8741284505309,110.67688120000001,1,172.00,106196 -cosmo,18,50,651.9722478579765,110.44752495,1,174.00,107376 -cosmo,18,50,653.9842458360622,110.44752495,1,175.00,105612 -cosmo,18,50,651.2642430635804,110.36317605000002,1,177.00,111152 -cosmo,18,50,653.9230088249012,110.0908896,1,173.00,109824 -cosmo,19,50,654.2011274443987,109.84927739999999,1,175.00,106092 -cosmo,19,50,655.734401646538,109.784202,1,176.00,113924 -cosmo,19,50,657.1297385143413,109.58834879999995,1,173.00,114328 -cosmo,20,50,656.5543093256535,109.29390995,1,175.00,108916 -cosmo,20,50,655.6704183967022,109.156666,1,176.00,115692 -cosmo,20,50,657.9878476416334,109.6504078,1,178.00,105036 -cosmo,20,50,659.3386684529451,109.4206025,1,174.00,106352 -cosmo,21,50,659.3049779979908,109.29576234999999,1,176.00,113592 -cosmo,21,50,659.8334624238287,109.2946046,1,177.00,112432 -cosmo,21,50,660.5634736292952,109.24044364999995,1,174.00,112040 -cosmo,22,50,660.5902249261837,108.978743,1,176.00,109808 -cosmo,22,50,663.0663727046527,108.8399567,1,177.00,110252 -cosmo,22,50,660.6257064832376,109.16400744999999,1,178.00,109040 -cosmo,22,50,661.822516881753,109.15076450000001,1,175.00,108508 -cosmo,23,50,664.5621735272796,109.120318,1,177.00,101556 -cosmo,23,50,662.7136907535127,109.08401069999998,1,178.00,112036 -cosmo,23,50,664.3347125470881,109.028591,1,175.00,107924 -cosmo,24,50,663.6365164238765,108.94199909999999,1,177.00,112304 -cosmo,24,50,665.9696929959429,108.82869575,1,178.00,108616 -cosmo,24,50,664.9053030489845,108.8416274,1,179.00,102048 -cosmo,24,50,664.7407863247579,108.76668289999999,1,176.00,106520 -cosmo,25,50,665.2713428168453,108.6696398,1,178.00,108192 -cosmo,25,50,666.0670673613932,108.6337097,1,179.00,110736 -cosmo,25,50,667.945888822182,108.45585215,1,176.00,108176 -cosmo,26,50,668.8526970816157,108.30562239999999,1,178.00,107984 -cosmo,26,50,669.7735782984762,108.22141379999997,1,179.00,109648 -cosmo,26,50,669.067860252701,108.22780019999998,1,180.00,104968 -cosmo,27,50,668.2955478116055,108.1733856,1,177.00,106904 -cosmo,27,50,668.9238824128455,108.03225999999998,1,179.00,106904 -cosmo,27,50,669.5746312300406,108.02717724999997,1,180.00,110444 -cosmo,27,50,670.0604952241109,107.98890739999999,1,177.00,117408 -cosmo,28,50,671.5136928784855,107.84679160000002,1,178.00,105892 -cosmo,28,50,671.086964856385,107.7506444,1,180.00,106304 -cosmo,28,50,669.768877203593,107.74152739999998,1,181.00,101368 -cosmo,29,50,672.434762176744,107.66490410000002,1,178.00,106744 -cosmo,29,50,671.907096503615,107.51879620000001,1,180.00,101936 -cosmo,29,50,674.034718697456,107.3724923,1,181.00,103404 -cosmo,29,50,672.2272187363228,107.3643845,1,178.00,108960 -cosmo,30,50,672.6423712066819,107.40121445,1,179.00,100992 -cosmo,30,50,674.8744618952924,107.2915011,1,181.00,108044 -cosmo,30,50,674.090131329432,107.19938719999999,1,182.00,109300 -cosmo,31,50,675.4968619493935,107.1801346,1,179.00,117728 -cosmo,31,50,673.5631028550962,107.16083569999999,1,180.00,107832 -cosmo,31,50,674.9549383749866,107.1055142,1,182.00,105268 -cosmo,31,50,674.0769184275069,106.99597625,1,179.00,103212 -cosmo,32,50,675.5546857589362,106.853765,1,180.00,109800 -cosmo,32,50,674.787675893261,106.901528,1,181.00,111088 -cosmo,32,50,676.0409734224008,106.85091669999998,1,182.00,110280 -cosmo,33,50,674.254710508949,106.819858,1,180.00,103972 -cosmo,33,50,674.6944415501905,106.87705639999997,1,181.00,111152 -cosmo,33,50,674.9868427307158,106.83990944999995,1,182.00,109736 -cosmo,33,50,675.715037054821,106.84952335,1,180.00,119796 -cosmo,34,50,676.8696342377549,106.78640425,1,181.00,111352 -cosmo,34,50,677.0753512496238,106.8006852,1,182.00,109908 -cosmo,34,50,677.2652179242316,106.77239900000001,1,180.00,106540 -cosmo,35,50,676.9279620351904,106.71633624999998,1,181.00,113844 -cosmo,35,50,677.8527137102037,106.66740874999999,1,182.00,102536 -cosmo,35,50,677.1934366626587,106.6947612,1,183.00,108088 -cosmo,36,50,678.3600302763834,106.6568535,1,181.00,107968 -cosmo,36,50,677.7783001090376,106.60434365000002,1,182.00,104896 -cosmo,36,50,677.33857789059,106.570345,1,183.00,107812 -cosmo,36,50,678.5743485869526,106.51829579999999,1,180.00,109684 -cosmo,37,50,678.45932260631,106.44523954999995,1,181.00,110296 -cosmo,37,50,678.5642803488851,106.4030399,1,183.00,108492 -cosmo,37,50,680.0689923711,106.47367409999998,1,184.00,109972 -cosmo,38,50,679.2236074868172,106.421756,1,181.00,110304 -cosmo,38,50,679.9656446862389,106.35980084999998,1,182.00,104740 -cosmo,38,50,680.0346676709134,106.27591699999998,1,183.00,111284 -cosmo,38,50,680.4670435318549,106.16712989999999,1,181.00,104652 -cosmo,39,50,680.4878433650291,106.13412,1,182.00,105800 -cosmo,39,50,680.0589504467508,106.116126,1,183.00,104780 -cosmo,39,50,681.1786263393159,106.1248895,1,181.00,111112 -cosmo,40,50,681.5847686056417,106.11579569999998,1,182.00,113344 -cosmo,40,50,682.1231983563517,106.00296675000001,1,183.00,105988 -cosmo,40,50,681.1846160678784,105.96353369999999,1,184.00,111588 -cosmo,41,50,681.366088017666,105.9576816,1,182.00,109364 -cosmo,41,50,682.4359664870395,105.93262895,1,183.00,111088 -cosmo,41,50,682.6078934778786,105.90458459999999,1,184.00,110256 -cosmo,41,50,681.9410445636059,105.8723204,1,182.00,105440 -cosmo,42,50,682.8459392976862,105.8711198,1,183.00,110816 -cosmo,42,50,682.4397615178176,105.85614435,1,184.00,109072 -cosmo,42,50,682.7345929183301,105.7929348,1,185.00,106704 -cosmo,43,50,681.9230416056524,105.79608689999999,1,183.00,106604 -cosmo,43,50,681.9166592090897,105.737478,1,184.00,106972 -cosmo,43,50,682.1081603810204,105.705806,1,185.00,107444 -cosmo,44,50,682.1516566913853,105.71332,1,183.00,106260 -cosmo,44,50,682.8130908508684,105.6818452,1,184.00,108744 -cosmo,44,50,682.2980206946704,105.655825,1,184.00,109280 -cosmo,44,50,682.2806511089442,105.60769124999996,1,182.00,112368 -cosmo,45,50,682.7822491340113,105.59023114999998,1,183.00,102248 -cosmo,45,50,683.7722291226236,105.5953422,1,184.00,105672 -cosmo,45,50,683.3721826279044,105.5702214,1,185.00,107064 -cosmo,46,50,684.2846100047041,105.62637,1,183.00,110940 -cosmo,46,50,683.3889689052809,105.61137249999996,1,184.00,107460 -cosmo,46,50,683.6582118458483,105.5956346,1,185.00,105912 -cosmo,46,50,684.7115338180962,105.5749765,1,183.00,109712 -cosmo,47,50,684.3682522835518,105.5577987,1,184.00,103424 -cosmo,47,50,684.2466565271859,105.57713879999999,1,185.00,106932 -cosmo,47,50,684.1835041992268,105.5759138,1,183.00,112368 -cosmo,48,50,684.4046316659958,105.60695499999997,1,184.00,111732 -cosmo,48,50,685.2000418245822,105.58567339999999,1,185.00,107780 -cosmo,48,50,684.6511069813798,105.5868802,1,186.00,110444 -cosmo,49,50,684.7779876107469,105.58998885,1,184.00,113620 -cosmo,49,50,684.9169443187421,105.5870834,1,185.00,104940 -cosmo,49,50,685.007021982491,105.5725085,1,186.00,105260 -cosmo,49,50,684.9710639035804,105.5954884,1,184.00,114712 -cosmo,50,50,685.1170513927367,105.575837,1,185.00,109460 -cosmo,50,50,684.956007812902,105.57741625,1,185.00,104040 -cosmo,50,50,685.0590512023099,105.61830420000001,1,184.00,105320 -cosmo,51,50,685.4590267400429,105.59797379999999,1,184.00,110848 -cosmo,51,50,684.753281193164,105.68597894999999,1,185.00,109592 -cosmo,51,50,685.081964592856,105.62996189999994,1,186.00,107008 -cosmo,52,50,685.3720827685585,105.63295514999994,1,184.00,109712 -cosmo,52,50,685.5238511103449,105.6878469,1,185.00,99608 -cosmo,52,50,686.6217783804559,105.620631,1,186.00,108988 -cosmo,53,50,686.4741180328697,105.75097269999999,1,184.00,108424 -cosmo,53,50,685.8903641839372,105.71019995,1,185.00,98492 -cosmo,53,50,686.6840266788437,105.65435034999997,1,186.00,105692 -cosmo,53,50,686.1785267442343,105.65533344999996,1,184.00,107516 -cosmo,54,50,686.7412637850443,105.62561359999998,1,185.00,110332 -cosmo,54,50,686.2851436286325,105.6459506,1,186.00,111056 -cosmo,54,50,686.7345994669821,105.64595680000001,1,184.00,105444 -cosmo,55,50,686.7459094837717,105.61791639999998,1,185.00,110640 -cosmo,55,50,686.9628837678221,105.62277709999998,1,186.00,108008 -cosmo,55,50,686.8369620306368,105.5867786,1,187.00,109924 -cosmo,56,50,686.7384934920843,105.57176125000001,1,185.00,106464 -cosmo,56,50,686.9837760340596,105.553603,1,186.00,106632 -cosmo,56,50,686.848990141793,105.52087399999999,1,186.00,105932 -cosmo,57,50,687.7523684385897,105.45186894999999,1,185.00,111048 -cosmo,57,50,686.9492126094801,105.421353,1,186.00,109140 -cosmo,57,50,687.6781388266503,105.41842694999998,1,186.00,106732 -cosmo,57,50,687.1144935261048,105.36993675,1,185.00,116044 -cosmo,58,50,687.98465816312,105.36896575,1,186.00,103036 -cosmo,58,50,687.6258650586094,105.3074925,1,186.00,99432 -cosmo,58,50,687.623414832631,105.303775,1,187.00,106168 -cosmo,59,50,687.969299947805,105.27120049999999,1,185.00,111504 -cosmo,59,50,688.8139601990754,105.2480493,1,186.00,106196 -cosmo,59,50,688.8892241000724,105.27560650000001,1,187.00,105520 -cosmo,60,50,688.813915026395,105.34569239999999,1,185.00,107196 -cosmo,60,50,688.2487700741432,105.30776700000001,1,186.00,107524 -cosmo,60,50,688.7650843031747,105.35138429999998,1,187.00,109600 -apollo-router,2,50,171.69490510444294,460.3198091999998,1,154.00,159140 -apollo-router,3,50,198.71904993379934,427.88634,1,157.00,161420 -apollo-router,3,50,222.49851056059686,405.1497812999999,1,159.00,162444 -apollo-router,3,50,238.19405679515873,373.65650080000023,1,162.00,164748 -apollo-router,4,50,253.68362339283735,341.06256659999934,1,157.00,172592 -apollo-router,4,50,270.7073894495222,313.53001584999976,1,160.00,172024 -apollo-router,4,50,274.2537875702385,286.35626659999934,1,162.00,175600 -apollo-router,4,50,277.66790448784377,269.2802665,1,158.00,176240 -apollo-router,5,50,284.1620896999258,242.69121869999938,1,160.00,170400 -apollo-router,5,50,293.7946128459466,227.04414025,1,162.00,172724 -apollo-router,5,50,300.2633201852961,212.123153,1,165.00,176504 -apollo-router,5,50,302.7775776480651,202.83087545,1,160.00,179388 -apollo-router,6,50,308.4399462829317,196.19081799999998,1,163.00,177040 -apollo-router,6,50,305.6847764293407,193.6931060999998,1,165.00,173820 -apollo-router,6,50,311.9010816947844,188.80732245,1,161.00,173160 -apollo-router,7,50,317.9501960068454,187.91275749999997,1,163.00,172760 -apollo-router,7,50,315.76236847188886,187.41704899999993,1,165.00,174756 -apollo-router,7,50,315.8972333633533,186.91572349999998,1,167.00,175892 -apollo-router,7,50,323.8356967923344,185.97639479999998,1,163.00,173248 -apollo-router,8,50,322.14039994447546,185.51021289999994,1,165.00,168684 -apollo-router,8,50,324.5012269358718,185.40918294999997,1,167.00,168684 -apollo-router,8,50,326.07244209907117,185.2013195,1,163.00,171872 -apollo-router,9,50,327.4552703061444,184.35813425000003,1,165.00,162932 -apollo-router,9,50,329.6846268309258,183.54871845000002,1,167.00,164432 -apollo-router,9,50,329.5865070423211,182.535932,1,169.00,164304 -apollo-router,9,50,331.7579811227997,181.7596668,1,165.00,161876 -apollo-router,10,50,331.2867728790236,180.8954291999999,1,167.00,160640 -apollo-router,10,50,334.033033005699,180.48613699999999,1,169.00,162516 -apollo-router,10,50,333.81546993345535,180.63217099999991,1,171.00,159740 -apollo-router,11,50,336.19036762262715,180.35454825,1,167.00,158504 -apollo-router,11,50,335.7796724001506,179.95075559999995,1,169.00,156188 -apollo-router,11,50,337.44955127017283,179.63865299999998,1,171.00,155236 -apollo-router,11,50,337.98367534031956,179.8936454,1,167.00,154696 -apollo-router,12,50,340.03744657071604,179.8766847,1,169.00,154568 -apollo-router,12,50,337.3712669920138,179.86890735,1,171.00,159564 -apollo-router,12,50,341.28358145921436,179.551923,1,173.00,157544 -apollo-router,12,50,340.04808040770024,179.53141349999999,1,169.00,154424 -apollo-router,13,50,342.00202414086084,179.75099699999998,1,171.00,154480 -apollo-router,13,50,343.7128248962732,179.86248684999998,1,173.00,157092 -apollo-router,13,50,342.2780155008092,179.7008035,1,169.00,155148 -apollo-router,14,50,343.6443675104168,179.550444,1,171.00,155276 -apollo-router,14,50,344.66155807710976,179.4150795,1,173.00,155764 -apollo-router,14,50,344.03776179893595,179.51428605,1,174.00,155944 -apollo-router,14,50,344.8608769586704,179.87429665,1,171.00,159400 -apollo-router,15,50,345.1148901097985,179.81252025,1,172.00,163552 -apollo-router,15,50,344.90269782494596,179.75414279999998,1,174.00,163544 -apollo-router,15,50,345.77146754419067,179.7156818,1,171.00,163844 -apollo-router,16,50,346.364380921768,179.5390257,1,172.00,164344 -apollo-router,16,50,346.3803866666283,179.34222509999998,1,174.00,164732 -apollo-router,16,50,346.9305564164051,178.92835439999993,1,176.00,164732 -apollo-router,16,50,347.1659992944848,179.3223125,1,172.00,163304 -apollo-router,17,50,347.6979622419569,178.83597615,1,174.00,162356 -apollo-router,17,50,348.1142956926844,178.7507034,1,176.00,162096 -apollo-router,17,50,348.57466607031796,178.56534495,1,172.00,162984 -apollo-router,18,50,348.14043562732616,178.3327685,1,174.00,165216 -apollo-router,18,50,349.005760725716,178.2246555,1,175.00,168076 -apollo-router,18,50,349.82543146856034,178.1810439,1,177.00,173324 -apollo-router,18,50,349.5444103259238,177.992132,1,174.00,173296 -apollo-router,19,50,350.49086763427397,178.064107,1,175.00,169700 -apollo-router,19,50,350.82913923049927,177.96209964999997,1,177.00,169820 -apollo-router,19,50,350.6767315846581,177.79671199999999,1,173.00,164916 -apollo-router,20,50,350.98445106561985,177.94881,1,175.00,174132 -apollo-router,20,50,351.1626735020247,177.86360749999997,1,176.00,173976 -apollo-router,20,50,351.27657048250944,177.62606529999996,1,178.00,170704 -apollo-router,20,50,351.8887865508347,177.59154839999997,1,175.00,169952 -apollo-router,21,50,352.0024981652017,177.39070299999997,1,176.00,171372 -apollo-router,21,50,352.1357619182586,177.195031,1,178.00,171372 -apollo-router,21,50,352.53156626338404,177.16882749999994,1,179.00,169268 -apollo-router,22,50,352.69815506174297,177.0031714,1,176.00,169000 -apollo-router,22,50,353.48145966121496,176.92433035,1,177.00,169000 -apollo-router,22,50,353.51658228041305,177.37189255,1,179.00,169000 -apollo-router,22,50,352.9136567617559,177.7151245,1,176.00,167592 -apollo-router,23,50,353.50216911001644,177.55590399999997,1,177.00,164892 -apollo-router,23,50,353.77170634392,178.1909773,1,179.00,164892 -apollo-router,23,50,354.82537480754786,178.023282,1,180.00,163464 -apollo-router,24,50,354.58467963495303,177.933,1,177.00,166024 -apollo-router,24,50,354.36046241550304,177.74929200000003,1,178.00,162968 -apollo-router,24,50,354.7831144537213,177.55590399999997,1,180.00,162600 -apollo-router,24,50,355.10935536846534,177.23835699999995,1,177.00,159728 -apollo-router,25,50,355.38854735762186,177.2251499,1,178.00,159728 -apollo-router,25,50,355.02864635425703,177.22656395,1,180.00,159868 -apollo-router,25,50,355.34819488097884,177.34557804999994,1,177.00,159104 -apollo-router,26,50,355.49001972106606,177.36981999999998,1,178.00,158776 -apollo-router,26,50,353.9616944516968,177.43763410000003,1,179.00,157164 -apollo-router,26,50,354.45709047912857,177.85166614999997,1,181.00,157300 -apollo-router,26,50,355.2190025230208,177.96159735,1,178.00,156884 -apollo-router,27,50,355.2964431666874,177.92878399999998,1,179.00,154704 -apollo-router,27,50,355.1763003828145,177.89068599999996,1,181.00,159440 -apollo-router,27,50,355.03080337557316,177.935108,1,178.00,161212 -apollo-router,28,50,354.6535083392464,178.08367159999997,1,179.00,166900 -apollo-router,28,50,355.06522421193273,177.9693064,1,180.00,169400 -apollo-router,28,50,355.2916285019665,177.9593481,1,182.00,169400 -apollo-router,28,50,355.49109764031203,177.8772945,1,179.00,169400 -apollo-router,29,50,355.89855884084193,177.9593481,1,180.00,167124 -apollo-router,29,50,355.3229511222959,177.941432,1,181.00,168544 -apollo-router,29,50,355.33141622382175,178.31294555000002,1,179.00,168544 -apollo-router,30,50,355.4187989392271,178.21551579999993,1,180.00,170196 -apollo-router,30,50,354.4548314110864,178.1803496,1,181.00,171860 -apollo-router,30,50,355.45797294696075,178.15265245,1,182.00,170504 -apollo-router,30,50,355.81433105268263,178.1782667,1,180.00,168944 -apollo-router,31,50,355.8053432588311,178.08412225,1,181.00,169072 -apollo-router,31,50,355.778202084641,178.06152275,1,182.00,168420 -apollo-router,31,50,355.8414226518018,177.96067305,1,180.00,172044 -apollo-router,32,50,356.1227779542387,177.90689274999997,1,181.00,167204 -apollo-router,32,50,356.1937045310629,177.7810562,1,182.00,162924 -apollo-router,32,50,356.21015077669546,177.947756,1,183.00,163052 -apollo-router,32,50,356.2876719792358,177.91615375,1,181.00,166584 -apollo-router,33,50,356.6197507492169,177.9678798,1,182.00,167992 -apollo-router,33,50,356.4987548168133,178.28540155,1,183.00,168368 -apollo-router,33,50,356.2143715055292,178.56354800000003,1,180.00,168008 -apollo-router,34,50,356.21241309669284,178.540392,1,182.00,167740 -apollo-router,34,50,356.2103944741459,178.503663,1,183.00,164964 -apollo-router,34,50,356.86915835776824,178.24848519999998,1,184.00,167012 -apollo-router,34,50,357.06763572510516,178.3146732,1,181.00,171784 -apollo-router,35,50,356.84261718001795,178.19572259999998,1,182.00,164848 -apollo-router,35,50,356.95122281734626,178.186232,1,184.00,162808 -apollo-router,35,50,356.8373872485241,178.83909690000002,1,181.00,162808 -apollo-router,36,50,356.6556036271562,178.83597615,1,182.00,162216 -apollo-router,36,50,357.04337157830827,178.7504228,1,183.00,164076 -apollo-router,36,50,357.11826898481985,178.747524,1,184.00,162388 -apollo-router,37,50,357.1536738470205,178.70793399999997,1,182.00,159692 -apollo-router,37,50,357.08923472798705,178.59111259999995,1,183.00,160844 -apollo-router,37,50,356.673108921681,178.563801,1,184.00,160524 -apollo-router,37,50,357.04796370893155,178.41138914999996,1,182.00,162788 -apollo-router,38,50,357.9319667367125,178.2040524,1,183.00,162280 -apollo-router,38,50,357.2014741179893,178.262955,1,184.00,162020 -apollo-router,38,50,357.7322583356625,178.1869099,1,185.00,162364 -apollo-router,39,50,357.8217310453336,178.08767625,1,183.00,164924 -apollo-router,39,50,357.712414690046,178.16404395,1,184.00,164924 -apollo-router,39,50,358.1051339587608,178.089009,1,185.00,164892 -apollo-router,39,50,358.39744118606467,178.15265245,1,182.00,164848 -apollo-router,40,50,358.76452845991616,178.15379159999998,1,183.00,160732 -apollo-router,40,50,358.7349176186029,178.02647519999994,1,184.00,166236 -apollo-router,40,50,358.6874310206606,177.94939545,1,185.00,166364 -apollo-router,41,50,358.53562382278693,177.930892,1,183.00,167260 -apollo-router,41,50,358.22091256074333,178.19504469999998,1,184.00,167000 -apollo-router,41,50,358.870952715687,178.08059419999998,1,185.00,165788 -apollo-router,41,50,359.13256910117286,178.1902994,1,183.00,165588 -apollo-router,42,50,358.21248928326594,178.28358384999999,1,184.00,161692 -apollo-router,42,50,358.4136556499238,178.38262859999995,1,185.00,161900 -apollo-router,42,50,359.0846037259222,178.560009,1,183.00,161616 -apollo-router,43,50,358.9393607765801,178.54969409999998,1,184.00,168876 -apollo-router,43,50,358.94694967534633,178.5554086,1,185.00,168704 -apollo-router,43,50,359.2068139440811,178.48753829999993,1,186.00,169856 -apollo-router,43,50,359.043245744546,178.564054,1,184.00,170560 -apollo-router,44,50,359.26502529538107,178.59111259999995,1,185.00,170560 -apollo-router,44,50,358.79180206494027,178.5407646,1,186.00,165796 -apollo-router,44,50,358.87651996870983,178.6431596,1,184.00,162676 -apollo-router,45,50,358.6786093092877,178.57477479999997,1,185.00,160860 -apollo-router,45,50,359.0161849602178,178.5554086,1,185.00,164312 -apollo-router,45,50,359.43062471834537,178.56354800000003,1,186.00,167128 -apollo-router,46,50,359.02305587780955,178.563295,1,184.00,166768 -apollo-router,46,50,359.0337928954622,178.5641046,1,185.00,166768 -apollo-router,46,50,359.18616359277127,178.51468169999995,1,186.00,163936 -apollo-router,46,50,359.6448888341559,178.42144274999998,1,184.00,161080 -apollo-router,47,50,359.91689175198195,178.3464405,1,185.00,163316 -apollo-router,47,50,359.4929785738819,178.26063499999998,1,186.00,166208 -apollo-router,47,50,359.62889506978684,178.17965529999998,1,187.00,166208 -apollo-router,48,50,360.049111144164,178.17687809999998,1,185.00,165692 -apollo-router,48,50,359.70485666428937,178.204526,1,186.00,167612 -apollo-router,48,50,360.1800445582748,178.08856475,1,187.00,169472 -apollo-router,48,50,360.02869392612035,178.00139105,1,185.00,169180 -apollo-router,49,50,360.1716222331457,178.0808846,1,186.00,170080 -apollo-router,49,50,360.3380767176538,178.01416634999998,1,186.00,164732 -apollo-router,49,50,360.70620553539834,177.937216,1,187.00,159192 -apollo-router,50,50,360.15894790406065,177.86523199999996,1,185.00,160252 -apollo-router,50,50,359.9390271122591,177.8146005,1,186.00,159856 -apollo-router,50,50,360.44256325165566,177.7839372,1,187.00,160752 -apollo-router,50,50,360.7143397759236,177.80898299999998,1,185.00,160752 -apollo-router,51,50,360.798633827579,177.7704246,1,186.00,159816 -apollo-router,51,50,360.18387552286845,177.7760384,1,187.00,161392 -apollo-router,51,50,360.08225281676914,177.775865,1,185.00,161324 -apollo-router,52,50,360.59993007411174,177.70292819999997,1,186.00,162348 -apollo-router,52,50,360.79394545460224,177.80256300000002,1,187.00,162052 -apollo-router,52,50,360.8109625343809,177.790776,1,187.00,162052 -apollo-router,52,50,360.5197361805801,177.7713512,1,186.00,160288 -apollo-router,53,50,360.17630739031557,177.7781752,1,186.00,158832 -apollo-router,53,50,360.73523069354604,177.7753448,1,187.00,162672 -apollo-router,53,50,360.3053757657441,177.70388739999999,1,185.00,161452 -apollo-router,54,50,360.93043217801534,177.56814885,1,186.00,163884 -apollo-router,54,50,360.664726477578,177.48040354999998,1,187.00,163648 -apollo-router,54,50,360.60591488877816,177.47932125,1,188.00,164824 -apollo-router,54,50,360.74956211854567,177.45103809999998,1,186.00,161424 -apollo-router,55,50,360.7524413840008,177.44589149999996,1,187.00,159888 -apollo-router,55,50,360.93396397348755,177.4488987,1,188.00,159980 -apollo-router,55,50,361.0360104494272,177.507186,1,186.00,161076 -apollo-router,56,50,360.80476625896875,177.5217247,1,187.00,170292 -apollo-router,56,50,360.8955248687256,177.45745630000002,1,188.00,169568 -apollo-router,56,50,361.0469336825411,177.51633429999995,1,188.00,168480 -apollo-router,57,50,360.91190128607013,177.57147404999998,1,187.00,167116 -apollo-router,57,50,360.8547386998624,177.65483330000004,1,187.00,168908 -apollo-router,57,50,361.01877513272086,177.51633429999995,1,188.00,168780 -apollo-router,57,50,361.1617113115755,177.66802504999993,1,186.00,167460 -apollo-router,58,50,361.42877697002007,177.7787514,1,187.00,167460 -apollo-router,58,50,361.1504521724077,177.71738929999998,1,188.00,165640 -apollo-router,58,50,361.22140607650414,177.777599,1,186.00,165096 -apollo-router,59,50,360.8636087920592,177.7769054,1,187.00,166812 -apollo-router,59,50,361.24450662707284,177.74472325000005,1,188.00,163960 -apollo-router,59,50,361.3749021522054,177.704134,1,189.00,163680 -apollo-router,59,50,361.32024105021674,177.78451339999998,1,187.00,161860 -apollo-router,60,50,361.3790844484364,177.83600269999997,1,188.00,161860 -apollo-router,60,50,361.29963745694573,177.88605549999994,1,188.00,161488 -apollo-router,60,50,361.2168004841651,177.96645319999996,1,187.00,164476 -apollo-router,61,50,361.02363305962876,178.15198775,1,187.00,164696 -apollo-router,61,50,360.8908802903416,178.16381310000003,1,188.00,162364 -apollo-router,61,50,360.9441812033976,178.29267234999998,1,189.00,159976 -apollo-router,62,50,361.00760392628126,178.20405239999997,1,187.00,160232 -apollo-gateway,2,50,82.70942531513543,427.9488664,1,110.30,799236 -apollo-gateway,2,50,85.97428664739171,733.8698442000001,1,106.00,799236 -apollo-gateway,3,50,92.83830940197478,714.2979171499998,1,108.00,799364 -apollo-gateway,3,50,100.13878107954461,693.2221294999999,1,109.00,799364 -apollo-gateway,3,50,95.64543302983411,685.4020385,1,110.00,799364 -apollo-gateway,3,50,102.38476146898546,659.9220502500002,1,106.70,799364 -apollo-gateway,4,50,107.3798827558594,639.2959604,1,107.70,799364 -apollo-gateway,4,50,103.72700422990877,635.7756335999998,1,109.70,799168 -apollo-gateway,4,50,106.2944022422378,606.4539687500001,1,110.70,799168 -apollo-gateway,5,50,106.92040389103407,591.80864825,1,106.50,799168 -apollo-gateway,5,50,107.30384128087452,587.5229519999997,1,108.50,799424 -apollo-gateway,5,50,109.7534684167503,580.2210316,1,109.50,799424 -apollo-gateway,5,50,108.20213679371705,578.212488,1,110.50,799424 -apollo-gateway,6,50,109.18044691289717,572.4217851,1,107.40,799424 -apollo-gateway,6,50,111.18466188091642,568.71941185,1,108.40,799424 -apollo-gateway,6,50,109.06394946743688,568.174162,1,109.40,799424 -apollo-gateway,6,50,110.9813093377308,552.9981625,1,110.40,799424 -apollo-gateway,7,50,111.60015829626687,545.3643296000001,1,107.00,799424 -apollo-gateway,7,50,109.82715375844067,540.7168087999999,1,108.00,799424 -apollo-gateway,7,50,110.91843056211188,539.2126716500001,1,110.00,798928 -apollo-gateway,7,50,112.25074235516823,529.9146943000001,1,106.90,798928 -apollo-gateway,8,50,111.532318494031,528.9838939,1,107.90,799184 -apollo-gateway,8,50,112.144603586848,528.931439,1,108.90,799184 -apollo-gateway,8,50,113.4193467316173,523.8795189499998,1,109.90,799184 -apollo-gateway,8,50,112.39500070503014,520.8713927499999,1,106.70,799184 -apollo-gateway,9,50,112.42609322666152,519.2591627999998,1,107.70,799184 -apollo-gateway,9,50,111.90844114457792,517.4337095999999,1,108.70,799184 -apollo-gateway,9,50,113.03232899861533,515.9680902,1,109.70,799184 -apollo-gateway,10,50,113.37335987885918,513.1308629999999,1,106.60,799184 -apollo-gateway,10,50,113.51290147069781,510.5447678999999,1,107.60,799184 -apollo-gateway,10,50,113.65522286357763,509.4482,1,108.60,799184 -apollo-gateway,10,50,112.42748616625357,509.523003,1,109.60,799184 -apollo-gateway,11,50,112.92388332941424,509.286244,1,107.50,799184 -apollo-gateway,11,50,113.33183758189219,509.25193,1,108.50,799184 -apollo-gateway,11,50,113.39481079763769,509.2284848,1,109.50,799184 -apollo-gateway,11,50,113.65822798478831,508.47094165,1,106.20,799184 -apollo-gateway,12,50,113.58787497132508,508.28916549999997,1,107.20,799184 -apollo-gateway,12,50,114.06591503846902,507.56958690000005,1,108.20,799184 -apollo-gateway,12,50,114.0728553819093,507.0407268,1,109.20,799184 -apollo-gateway,12,50,114.53568806817059,505.2580421999998,1,106.10,799184 -apollo-gateway,13,50,114.43819023513991,504.2335485000001,1,107.10,799184 -apollo-gateway,13,50,114.75532380179796,502.8703335,1,108.10,799184 -apollo-gateway,13,50,114.48042886432633,501.9715026999999,1,109.10,799184 -apollo-gateway,14,50,114.02195657422163,504.5899784999999,1,107.00,799184 -apollo-gateway,14,50,114.535831502504,504.6298335,1,108.00,799184 -apollo-gateway,14,50,114.51612370880713,506.11177325,1,108.00,799184 -apollo-gateway,14,50,114.53844125616112,506.82815300000004,1,109.00,799184 -apollo-gateway,15,50,114.07932563507333,506.18482235,1,106.90,799184 -apollo-gateway,15,50,115.2107215554942,504.43055849999996,1,107.90,799184 -apollo-gateway,15,50,114.51814933130657,502.8703335,1,108.90,799184 -apollo-gateway,15,50,114.5444663257635,502.34054075,1,108.90,799184 -apollo-gateway,16,50,114.57360583834534,502.2493265,1,106.80,799184 -apollo-gateway,16,50,115.47939903972262,502.104696,1,107.80,799184 -apollo-gateway,16,50,115.05213216269428,502.2178192,1,108.80,799184 -apollo-gateway,16,50,115.10575732122575,502.2493265,1,106.70,799184 -apollo-gateway,17,50,114.61354417043283,502.37008180000004,1,106.70,799184 -apollo-gateway,17,50,114.4908529480486,502.34054075,1,107.70,799184 -apollo-gateway,17,50,114.42362606225149,502.2916199,1,108.70,799184 -apollo-gateway,17,50,114.84837101869567,502.1612576,1,106.50,799184 -apollo-gateway,18,50,115.01332861735784,502.34054075,1,107.50,799184 -apollo-gateway,18,50,114.76177367099457,502.30792685,1,107.50,799184 -apollo-gateway,18,50,114.92339646080325,502.2178192,1,108.50,799184 -apollo-gateway,19,50,114.95994393445133,502.03416899999996,1,106.40,799184 -apollo-gateway,19,50,115.05071315260668,502.07178339999996,1,107.40,799184 -apollo-gateway,19,50,114.88499186890232,502.140047,1,108.40,799184 -apollo-gateway,19,50,114.9221425556933,502.2036788,1,108.40,799184 -apollo-gateway,20,50,115.31238476431975,502.3459764,1,106.30,799184 -apollo-gateway,20,50,115.29817428124319,502.3939965,1,107.30,799184 -apollo-gateway,20,50,114.87548962421705,502.4475462,1,108.30,799184 -apollo-gateway,20,50,114.81890030857492,502.40978475000003,1,109.30,799184 -apollo-gateway,21,50,115.2489586046476,502.3803206,1,107.20,799184 -apollo-gateway,21,50,115.23195396047365,502.2916199,1,107.20,799184 -apollo-gateway,21,50,115.21836337908927,502.21781919999995,1,108.20,799184 -apollo-gateway,21,50,115.20600745952203,502.14711719999997,1,106.20,799184 -apollo-gateway,22,50,115.13276101697882,501.97150270000003,1,107.20,799184 -apollo-gateway,22,50,115.40070213672041,501.05042469999995,1,107.20,799184 -apollo-gateway,22,50,115.39361317815475,500.91214399999996,1,108.20,799184 -apollo-gateway,22,50,115.21104748997308,500.84643500000004,1,106.10,799184 -apollo-gateway,23,50,115.14094271369513,500.27043979999996,1,107.10,799184 -apollo-gateway,23,50,115.44436432456027,500.28341194999996,1,108.10,799184 -apollo-gateway,23,50,115.42959378533453,500.1413714,1,108.10,799184 -apollo-gateway,24,50,115.77813609443061,499.857059,1,106.00,799184 -apollo-gateway,24,50,115.3105523198048,499.857059,1,107.00,799184 -apollo-gateway,24,50,115.64124536295877,499.51829169999996,1,108.00,799184 -apollo-gateway,24,50,115.60669624257638,499.46214339999995,1,108.00,799184 -apollo-gateway,25,50,115.88702279848363,498.87163725,1,107.00,799184 -apollo-gateway,25,50,115.9553935544037,498.78803595000005,1,107.00,799184 -apollo-gateway,25,50,115.92999164665098,498.71594445000005,1,108.00,799184 -apollo-gateway,25,50,115.68424026265001,497.99937359999996,1,109.00,799184 -apollo-gateway,26,50,115.89840209794455,498.14963939999984,1,106.90,799184 -apollo-gateway,26,50,115.33019220167022,497.8443132,1,107.00,799184 -apollo-gateway,26,50,115.70128208558943,498.7519902,1,108.00,799184 -apollo-gateway,26,50,115.88780364704537,499.40573715,1,105.80,799184 -apollo-gateway,27,50,115.64534639488578,499.38063495,1,106.80,799184 -apollo-gateway,27,50,115.5904944965034,498.971049,1,107.80,799184 -apollo-gateway,27,50,115.78213292032862,498.7231536,1,107.80,799184 -apollo-gateway,27,50,115.87176613087048,498.3538935,1,106.80,799184 -apollo-gateway,28,50,115.73863113538687,498.11559704999974,1,106.80,799184 -apollo-gateway,28,50,115.72474603791609,497.77065899999997,1,107.80,799184 -apollo-gateway,28,50,115.99490081193186,497.70246,1,107.80,799184 -apollo-gateway,29,50,115.96909203954168,497.38152919999993,1,106.70,799184 -apollo-gateway,29,50,115.75833275713448,497.285072,1,106.70,799184 -apollo-gateway,29,50,115.77359510850555,497.2472864,1,107.70,799184 -apollo-gateway,29,50,115.90351398572264,497.5396996999999,1,108.70,799184 -apollo-gateway,30,50,115.95272888926503,497.64429599999994,1,106.70,799184 -apollo-gateway,30,50,116.21868296693397,497.34989509999997,1,107.70,799184 -apollo-gateway,30,50,116.08012277150961,497.30996375,1,107.70,799184 -apollo-gateway,30,50,116.21840012818755,497.285072,1,106.60,799184 -apollo-gateway,31,50,115.9852734051999,497.30996375,1,106.60,799184 -apollo-gateway,31,50,115.8188207577095,497.76163199999996,1,107.60,799184 -apollo-gateway,31,50,115.60478374057593,497.66368399999993,1,107.60,799184 -apollo-gateway,31,50,115.91654889510173,497.4131632999999,1,106.50,799184 -apollo-gateway,32,50,115.92717502868707,497.30996375,1,106.50,799184 -apollo-gateway,32,50,115.83682886631416,497.29668815,1,107.50,799184 -apollo-gateway,32,50,115.72095663819228,497.634602,1,107.50,799184 -apollo-gateway,33,50,115.59080476382076,497.5396996999999,1,106.50,799184 -apollo-gateway,33,50,115.76310400843407,497.3149421,1,106.50,799184 -apollo-gateway,33,50,115.97650945263784,497.28673145,1,107.50,799184 -apollo-gateway,33,50,115.78784703857055,497.20260365,1,108.50,799184 -apollo-gateway,34,50,115.70000654104767,497.0835472,1,106.40,799184 -apollo-gateway,34,50,116.04190665768535,497.0328947,1,107.40,799184 -apollo-gateway,34,50,116.02049751705962,496.9988436,1,107.40,799184 -apollo-gateway,34,50,115.85501870807549,497.0496702,1,106.40,799184 -apollo-gateway,35,50,115.94984716905533,496.9988436,1,106.40,799184 -apollo-gateway,35,50,116.09912668356569,496.94249479999996,1,107.40,799184 -apollo-gateway,35,50,116.01555109324053,496.77865195,1,107.40,799184 -apollo-gateway,35,50,115.8689859686776,496.86569134999996,1,106.30,799184 -apollo-gateway,36,50,115.71917426438792,496.94601659999995,1,106.30,799184 -apollo-gateway,36,50,115.83246348941576,496.86569134999996,1,107.30,799184 -apollo-gateway,36,50,116.00792738147028,496.7257675,1,107.30,799184 -apollo-gateway,37,50,115.9362284726374,496.6973847,1,106.30,799184 -apollo-gateway,37,50,116.07162061514315,496.49495099999996,1,107.30,799184 -apollo-gateway,37,50,116.07804814216195,496.0924271999999,1,107.30,799184 -apollo-gateway,37,50,115.97264206628299,495.9125379,1,108.30,799184 -apollo-gateway,38,50,115.99532117372601,495.9145818,1,106.30,799184 -apollo-gateway,38,50,116.13027902068026,495.93720989999986,1,107.30,799184 -apollo-gateway,38,50,115.87173693588603,495.910494,1,107.30,799184 -apollo-gateway,38,50,116.16966700557516,495.85744299999993,1,108.30,799184 -apollo-gateway,39,50,116.06881187676724,495.8929107,1,106.20,799184 -apollo-gateway,39,50,115.84812093531053,496.5099769999999,1,107.20,799184 -apollo-gateway,39,50,116.3090352491098,495.91480889999997,1,107.20,799184 -apollo-gateway,39,50,116.19066870300362,495.8968181,1,106.20,799184 -apollo-gateway,40,50,116.01906405907042,495.79454649999997,1,106.20,799184 -apollo-gateway,40,50,115.98964296055824,495.69137075000003,1,107.20,799184 -apollo-gateway,40,50,116.37130572050246,495.6587412,1,107.20,799184 -apollo-gateway,41,50,116.13610402199353,495.61222559999993,1,106.20,799184 -apollo-gateway,41,50,116.09098130915596,495.56390865,1,107.20,799184 -apollo-gateway,41,50,116.37378015071819,495.497016,1,107.20,799184 -apollo-gateway,41,50,116.18131098020493,495.33797715,1,108.20,799184 -apollo-gateway,42,50,116.25056149540288,495.5585400999999,1,106.10,799184 -apollo-gateway,42,50,116.140506043728,495.5376456,1,107.10,799184 -apollo-gateway,42,50,116.0723366935829,495.4032737999999,1,107.10,799184 -apollo-gateway,42,50,116.33249281160015,495.3277037,1,108.10,799184 -apollo-gateway,43,50,116.24698412462762,495.31995509999996,1,106.00,799184 -apollo-gateway,43,50,116.37684548504355,495.2856367,1,107.00,799184 -apollo-gateway,43,50,116.41351396538467,495.300651,1,107.00,799184 -apollo-gateway,43,50,116.37638903909696,495.34859085000005,1,106.00,799184 -apollo-gateway,44,50,116.29300586655219,495.45014489999994,1,107.00,799184 -apollo-gateway,44,50,116.11287041670977,495.42670935,1,107.00,799184 -apollo-gateway,44,50,116.52112124373683,495.2834918,1,107.00,799184 -apollo-gateway,44,50,116.24668473519093,495.23489745,1,106.00,799184 -apollo-gateway,45,50,116.2406522434729,495.26095895,1,107.00,799184 -apollo-gateway,45,50,116.26105971006643,495.60061,1,107.00,799184 -apollo-gateway,45,50,116.01301879740907,495.8733737,1,108.00,799184 -apollo-gateway,46,50,116.08114140350582,495.7084522,1,106.00,799184 -apollo-gateway,46,50,116.30108925484686,495.91208370000004,1,107.00,799184 -apollo-gateway,46,50,116.12839447272869,495.9111753,1,107.00,799184 -apollo-gateway,46,50,116.09080433925125,495.8987718,1,108.00,799184 -apollo-gateway,47,50,116.48310297777374,495.7665925,1,105.90,799184 -apollo-gateway,47,50,116.2663736032481,495.7007196,1,106.90,799184 -apollo-gateway,47,50,116.25464937960366,495.71811795,1,106.90,799184 -apollo-gateway,47,50,116.48939869122948,495.71425165,1,105.90,799184 -apollo-gateway,48,50,116.39129252630015,495.66874325000003,1,106.90,799184 -apollo-gateway,48,50,116.3540820248668,495.6442612,1,106.90,799184 -apollo-gateway,48,50,116.23940782219356,495.80852350000004,1,106.90,799184 -apollo-gateway,48,50,116.56613635105363,495.8811885,1,105.90,799184 -apollo-gateway,49,50,116.35458421941861,495.8792348,1,106.90,799184 -apollo-gateway,49,50,116.36387183112255,495.71811795,1,106.90,799184 -apollo-gateway,49,50,116.3350858087882,495.667127,1,107.90,799184 -apollo-gateway,50,50,116.57693512576839,495.6554484,1,105.90,799184 -apollo-gateway,50,50,116.43425967131664,495.64698939999994,1,106.90,799184 -apollo-gateway,50,50,116.47004038568667,495.65627159999997,1,106.90,799184 -apollo-gateway,50,50,116.56928187279034,495.5689258,1,107.90,799184 -apollo-gateway,51,50,116.51172981770885,495.547803,1,106.90,799184 -apollo-gateway,51,50,116.56510848736566,495.5122521,1,106.90,799184 -apollo-gateway,51,50,116.39173486601791,495.55572405,1,106.90,799184 -apollo-gateway,51,50,116.49560861976197,495.56628544999995,1,105.80,799184 -apollo-gateway,52,50,116.64848717433523,495.5689258,1,106.80,799184 -apollo-gateway,52,50,116.45056700415665,495.51479144999996,1,106.80,799184 -apollo-gateway,52,50,116.43365748776446,495.4745792999999,1,106.80,799184 -apollo-gateway,52,50,116.37718632304714,495.51987015,1,105.80,799184 -apollo-gateway,53,50,116.4305909390524,495.34577325,1,106.80,799184 -apollo-gateway,53,50,116.55908991933076,495.4671004,1,106.80,799184 -apollo-gateway,53,50,116.44185264931893,495.4371847999999,1,107.80,799184 -apollo-gateway,54,50,116.39970682071275,495.36987469999997,1,105.80,799184 -apollo-gateway,54,50,116.32596128708556,495.3370432,1,106.80,799184 -apollo-gateway,54,50,116.57187060956647,495.57948719999996,1,106.80,799184 -apollo-gateway,54,50,116.48469520834763,495.614251,1,107.80,799184 -apollo-gateway,55,50,116.42462550894336,495.6601132,1,106.80,799184 -apollo-gateway,55,50,116.407112134917,495.6197074,1,106.80,799184 -apollo-gateway,55,50,116.35938920756747,495.6603876,1,106.80,799184 -apollo-gateway,55,50,116.34308569944683,495.67520825,1,105.80,799184 -apollo-gateway,56,50,116.38277404693504,495.65929,1,106.80,799184 -apollo-gateway,56,50,116.66051213605553,495.6251638,1,106.80,799184 -apollo-gateway,56,50,116.58898761518496,495.55044334999997,1,107.80,799184 -apollo-gateway,56,50,116.45843994384822,495.59268894999997,1,105.60,799184 -apollo-gateway,57,50,116.5167193440433,495.50463404999994,1,106.60,799184 -apollo-gateway,57,50,116.23448271462779,495.51733079999997,1,106.60,799184 -apollo-gateway,57,50,116.52754964602336,495.60061,1,107.60,799184 -apollo-gateway,58,50,116.47914688195151,495.6333484,1,106.60,799184 -apollo-gateway,58,50,116.42589374779463,495.6115228,1,106.60,799184 -apollo-gateway,58,50,116.5241520297253,495.51733079999997,1,106.60,799184 -apollo-gateway,58,50,116.51918636363607,495.4820581999999,1,107.60,799184 -apollo-gateway,59,50,116.46879048561328,495.41474809999994,1,106.60,799184 -apollo-gateway,59,50,116.40155998432407,495.55308369999995,1,106.60,799184 -apollo-gateway,59,50,116.54364736646032,495.50463404999994,1,106.60,799184 -apollo-gateway,59,50,116.44474478706759,495.4820581999999,1,105.60,799184 -apollo-gateway,60,50,116.49772412882777,495.3421108,1,106.60,799184 -apollo-gateway,60,50,116.40612712226584,495.34710505,1,106.60,799184 -apollo-gateway,60,50,116.4035947228035,495.3434426,1,106.60,799184 -apollo-gateway,60,50,116.46674592077404,495.32238015,1,106.60,799184 -apollo-gateway,61,50,116.50196470182964,495.497016,1,106.60,799184 -apollo-gateway,61,50,116.40687681251359,495.53510625,1,106.60,799184 -apollo-gateway,61,50,116.31998154330068,495.6576436,1,107.60,799184 -apollo-gateway,62,50,116.31181786120118,495.6601132,1,106.50,799184 -apollo-gateway,62,42,116.40910135148745,495.69492015,1,106.50,799184 \ No newline at end of file +hive-router,1,50,662.3071393032308,264.9705368999999,1,102.00,54040 +hive-router,2,50,814.1172204969603,164.72479799999934,1,104.00,54040 +hive-router,2,50,881.0675451829067,91.28503354999846,1,100.00,54040 +hive-router,2,50,915.7362358224827,73.242518,1,102.00,54040 +hive-router,2,50,990.516212994417,67.57967779999994,1,103.00,54040 +hive-router,3,50,1039.730604988358,63.8260738,1,105.00,54040 +hive-router,3,50,1078.9276991218169,63.7582811,1,101.00,54040 +hive-router,3,50,1106.2694214501423,62.056543,1,103.00,54040 +hive-router,4,50,1153.5136425808348,60.13720034999998,1,105.00,54040 +hive-router,4,50,1168.716646478357,59.07800949999999,1,101.00,54040 +hive-router,4,50,1173.9528657201613,58.736133,1,103.00,54040 +hive-router,4,50,1194.8227171825313,58.34695334999999,1,104.00,54040 +hive-router,5,50,1197.523580447577,58.09307889999999,1,106.00,54040 +hive-router,5,50,1229.6522357509532,57.24441539999999,1,103.00,54040 +hive-router,5,50,1246.5860268630345,57.0684707,1,104.00,54040 +hive-router,6,50,1248.2839107516388,57.026048,1,106.00,54040 +hive-router,6,50,1246.9801816375195,56.72830025,1,103.00,54040 +hive-router,6,50,1269.5871038027344,56.24665599999997,1,104.00,54040 +hive-router,6,50,1259.2704550261024,55.917345,1,105.00,54040 +hive-router,7,50,1287.67775773756,55.7215078,1,103.00,54040 +hive-router,7,50,1290.083955169678,55.775923399999954,1,104.00,54040 +hive-router,7,50,1305.7137140446189,55.573445,1,106.00,54040 +hive-router,8,50,1326.900378490268,55.2623428,1,107.00,54040 +hive-router,8,50,1333.3655927180168,55.1484718,1,105.00,54040 +hive-router,8,50,1363.1403124797823,54.79996425,1,106.00,54040 +hive-router,8,50,1367.738088530335,54.91192170000001,1,108.00,54040 +hive-router,9,50,1378.4625242422135,54.6927354,1,105.00,54040 +hive-router,9,50,1393.643855492255,54.36778869999999,1,106.00,54040 +hive-router,9,50,1396.5546770154283,54.0761555,1,108.00,54040 +hive-router,10,50,1417.535882108441,53.815951299999995,1,109.00,54040 +hive-router,10,50,1419.4257369145182,54.0018883,1,107.00,54040 +hive-router,10,50,1423.2525988059756,53.717242,1,108.00,54040 +hive-router,10,50,1435.750800932235,53.614848249999994,1,109.00,54040 +hive-router,11,50,1446.0596786541175,53.497217,1,111.00,54040 +hive-router,11,50,1461.6099191418643,53.3217425,1,108.00,54040 +hive-router,11,50,1460.9798494482668,53.24536345,1,110.00,54040 +hive-router,12,50,1462.3862642015126,53.01362949999999,1,111.00,54040 +hive-router,12,50,1472.4184741016325,53.019390699999995,1,109.00,54040 +hive-router,12,50,1484.5339170860198,52.905503599999975,1,110.00,54040 +hive-router,12,50,1494.857769909331,52.919215599999994,1,111.00,54040 +hive-router,13,50,1492.398105536395,52.8488458,1,112.00,54040 +hive-router,13,50,1511.3709921980003,52.71703094999999,1,110.00,54040 +hive-router,13,50,1506.3259320196605,52.6125368,1,111.00,54040 +hive-router,14,50,1511.3253721880697,52.663860299999996,1,113.00,54040 +hive-router,14,50,1518.8797089976965,52.52775115000003,1,110.00,54040 +hive-router,14,50,1525.4399815226836,52.5300014,1,111.00,54040 +hive-router,14,50,1531.1382330463518,52.384043199999994,1,113.00,54040 +hive-router,15,50,1534.2080187824654,52.447887999999985,1,114.00,54040 +hive-router,15,50,1534.3986066144796,52.453036000000004,1,112.00,54040 +hive-router,15,50,1536.9978371766485,52.6806961,1,113.00,54040 +hive-router,16,50,1541.7853397379606,52.53025575,1,114.00,54040 +hive-router,16,50,1538.692399342469,52.4065142,1,112.00,54040 +hive-router,16,50,1550.021743597866,52.47805195,1,113.00,54040 +hive-router,16,50,1557.7725126848795,52.36253999999997,1,114.00,54040 +hive-router,17,50,1552.6173666835225,52.27916344999999,1,112.00,54040 +hive-router,17,50,1556.2297633996166,52.37031764999999,1,113.00,54040 +hive-router,17,50,1557.3654960596589,52.354644,1,114.00,54040 +hive-router,18,50,1547.6393877249811,52.47983069999998,1,115.00,54040 +hive-router,18,50,1547.1830608826547,52.805938049999995,1,113.00,54040 +hive-router,18,50,1542.9555462550654,52.914219499999994,1,114.00,54040 +hive-router,19,50,1546.1943708033043,52.9915138,1,115.00,54040 +hive-router,19,50,1544.641425337746,53.183901,1,112.00,54040 +hive-router,19,50,1544.1331770334712,53.14095124999999,1,113.00,54040 +hive-router,20,50,1539.5400999820267,53.16816794999998,1,114.00,54040 +hive-router,20,50,1540.3466672162197,53.008691999999996,1,112.00,54040 +hive-router,20,50,1540.6939889628313,52.95786019999999,1,113.00,54168 +hive-router,20,50,1533.6012001692368,52.95205169999999,1,114.00,54168 +hive-router,21,50,1540.2946303198905,52.8460226,1,112.00,54168 +hive-router,21,50,1542.2645181397538,52.742559,1,114.00,54168 +hive-router,21,50,1549.483069262586,52.660209,1,115.00,54168 +hive-router,22,50,1546.6064941486898,52.756746,1,116.00,54168 +hive-router,22,50,1553.5500800329112,52.75597749999999,1,114.00,54168 +hive-router,22,50,1550.5998661637943,52.83952725,1,115.00,54168 +hive-router,23,50,1557.697225471097,52.703304500000016,1,116.00,54168 +hive-router,23,50,1555.5718838255134,52.829993,1,114.00,54168 +hive-router,23,50,1560.4169346572726,52.74290379999999,1,115.00,54168 +hive-router,24,50,1559.0347097335623,52.73623479999999,1,116.00,54168 +hive-router,24,50,1562.4941116628177,52.83179,1,114.00,54168 +hive-router,24,50,1564.8237280965725,52.774512599999994,1,115.00,54168 +hive-router,24,50,1565.9873346162046,52.7416464,1,116.00,54168 +hive-router,25,50,1568.8340704054897,52.69855525,1,115.00,54168 +hive-router,25,50,1572.1794687255767,52.66751,1,115.00,54168 +hive-router,25,50,1576.375641395619,52.69859665,1,116.00,54168 +hive-router,26,50,1573.6782823901058,52.633551049999994,1,117.00,54168 +hive-router,26,50,1579.1087995705534,52.59275819999999,1,116.00,54168 +hive-router,26,50,1578.9001680834879,52.55964585,1,117.00,54168 +hive-router,27,50,1580.7425546089635,52.4343224,1,118.00,54168 +hive-router,27,50,1581.5960201261173,52.416111699999995,1,116.00,54168 +hive-router,27,50,1582.8470248438987,52.364309,1,117.00,54168 +hive-router,28,50,1582.2672400039114,52.2906282,1,118.00,54168 +hive-router,28,50,1584.166635124902,52.365888,1,116.00,54168 +hive-router,28,50,1587.84764237653,52.28055225000001,1,117.00,54168 +hive-router,29,50,1585.682427121292,52.40556875,1,118.00,54168 +hive-router,29,50,1585.7936853120136,52.4748685,1,116.00,54168 +hive-router,29,50,1589.4510728842354,52.488006,1,117.00,54168 +hive-router,30,50,1586.4331274398935,52.595907450000006,1,118.00,54168 +hive-router,30,50,1589.6882420918596,52.61161475,1,116.00,54168 +hive-router,30,50,1587.0964651914549,52.83289879999999,1,117.00,54168 +hive-router,31,50,1589.999675507599,52.80682095,1,118.00,54168 +hive-router,31,50,1593.199479741905,52.790032000000004,1,117.00,54168 +hive-router,31,50,1590.8379364575799,52.736463699999995,1,118.00,54168 +hive-router,31,50,1595.571843061305,52.67761979999999,1,118.00,54168 +hive-router,32,50,1595.5925119278565,52.69855525,1,119.00,54168 +hive-router,32,50,1595.10842006484,52.760057,1,118.00,54168 +hive-router,32,50,1594.8828683580502,52.78370389999996,1,118.00,54680 +hive-router,33,50,1592.874006695717,52.91267,1,119.00,54680 +hive-router,33,50,1594.987467555139,52.875442099999965,1,118.00,54680 +hive-router,33,50,1596.052636747182,52.8438338,1,119.00,54680 +hive-router,34,50,1598.9130787617473,52.86793939999999,1,119.00,54680 +hive-router,34,50,1597.841320198815,52.9128426,1,118.00,54808 +hive-router,34,50,1600.746066423715,52.946012399999994,1,119.00,54808 +hive-router,35,50,1600.43155698182,52.966775399999975,1,120.00,54808 +hive-router,35,50,1602.2623150076731,52.95235439999999,1,118.00,54808 +hive-router,35,50,1603.530102910303,52.953750449999994,1,119.00,54808 +hive-router,36,50,1603.4285215286632,52.965005000000005,1,118.00,54808 +hive-router,36,50,1604.6740493596672,52.9457282,1,119.00,54808 +hive-router,36,50,1607.5675065922642,52.9415543,1,119.00,54808 +hive-router,37,50,1603.5343930948445,52.890289,1,120.00,54808 +hive-router,37,50,1610.1385077164573,52.86774179999999,1,119.00,54808 +hive-router,37,50,1609.0579762354503,52.88533059999998,1,120.00,54808 +hive-router,38,50,1608.9869327964584,52.9530776,1,118.00,54808 +hive-router,38,50,1608.7400489303984,53.05181999999999,1,119.00,54808 +hive-router,39,50,1609.533550800798,53.08743999999999,1,120.00,54808 +hive-router,39,50,1609.9237954438959,53.135805749999996,1,119.00,54808 +hive-router,39,50,1607.9668922673209,53.0283795,1,119.00,54808 +hive-router,40,50,1609.1248376494477,53.00566675,1,120.00,54808 +hive-router,40,50,1613.3338152880654,52.916287449999984,1,119.00,54808 +hive-router,40,50,1614.2272341069759,52.888390099999995,1,120.00,54808 +hive-router,41,50,1612.2552385887468,52.8885935,1,121.00,54808 +hive-router,41,50,1612.2767062786763,52.873193,1,119.00,54808 +hive-router,41,50,1614.4311479011512,52.8808601,1,120.00,54808 +hive-router,42,50,1612.3971651868108,52.9319095,1,121.00,54808 +hive-router,42,50,1614.0111992023371,52.95349804999999,1,120.00,54808 +hive-router,42,50,1614.0440478334613,52.9130152,1,120.00,54808 +hive-router,43,50,1614.9973085665142,52.84622,1,121.00,54808 +hive-router,43,50,1616.9683064151325,52.842865400000015,1,120.00,54808 +hive-router,43,50,1616.5367135315819,52.83372259999997,1,121.00,54808 +hive-router,44,50,1617.326434728512,52.76443885000001,1,121.00,54808 +hive-router,44,50,1616.9542318782185,52.76222494999996,1,120.00,54808 +hive-router,44,50,1619.8785434613208,52.73738679999999,1,121.00,54808 +hive-router,45,50,1619.0321659169579,52.75575799999998,1,120.00,54808 +hive-router,45,50,1616.6546670843404,52.76598445000002,1,121.00,54808 +hive-router,46,50,1616.9190917096926,52.7369865,1,121.00,54808 +hive-router,46,50,1619.1885479378586,52.68338275,1,120.00,54808 +hive-router,46,50,1617.9431536287964,52.67985775,1,121.00,54808 +hive-router,47,50,1618.655835782162,52.65238775,1,122.00,54808 +hive-router,47,50,1619.5918069547909,52.66514610000001,1,121.00,54808 +hive-router,47,50,1620.2339476110922,52.632253,1,121.00,54808 +hive-router,48,50,1619.7416198891967,52.591836,1,122.00,54808 +hive-router,48,50,1621.7554384660982,52.529843,1,121.00,54808 +hive-router,48,50,1623.2037786116728,52.4872782,1,122.00,54808 +hive-router,49,50,1621.3941570593229,52.544212349999995,1,121.00,54808 +hive-router,49,50,1624.5868550946893,52.59440065,1,121.00,54808 +hive-router,50,50,1622.0107750773975,52.55970175,1,122.00,54808 +hive-router,50,50,1624.5490205436704,52.49469095,1,121.00,54808 +hive-router,50,50,1627.2394638501785,52.44130935,1,122.00,54808 +hive-router,51,50,1626.0846231842647,52.387069,1,122.00,54808 +hive-router,51,50,1624.6350513370169,52.44036949999996,1,121.00,54808 +hive-router,51,50,1624.606380150926,52.39025260000002,1,122.00,54808 +hive-router,52,50,1625.830024672424,52.3767837,1,121.00,54808 +hive-router,52,50,1627.0016653386115,52.32687859999999,1,122.00,54808 +hive-router,52,50,1628.0119816922468,52.34545599999998,1,122.00,54808 +hive-router,53,50,1626.0214009240296,52.332603799999994,1,121.00,54808 +hive-router,53,50,1629.8027063750353,52.2896907,1,122.00,54808 +hive-router,54,50,1627.916954622957,52.28926809999998,1,123.00,54808 +hive-router,54,50,1628.5389537213741,52.281443,1,122.00,54808 +hive-router,54,50,1629.4132141001326,52.238269200000005,1,122.00,54808 +hive-router,55,50,1631.1317872775148,52.1639225,1,121.00,54808 +hive-router,55,50,1629.782031136452,52.17015085000001,1,122.00,54808 +hive-router,55,50,1631.309201994615,52.16157159999998,1,123.00,54808 +hive-router,56,50,1631.5363666443484,52.134711,1,122.00,54808 +hive-router,56,50,1632.8265732337327,52.138783,1,122.00,54808 +hive-router,57,50,1629.5756720271097,52.1427932,1,123.00,54808 +hive-router,57,50,1632.87083620931,52.16935109999999,1,122.00,54808 +hive-router,57,50,1631.2756534132116,52.148648,1,123.00,54808 +hive-router,58,50,1631.5051872563058,52.076265250000006,1,122.00,54808 +hive-router,58,50,1633.1642466962503,52.037066200000005,1,122.00,54808 +hive-router,59,50,1633.166057426855,52.050342,1,123.00,54808 +hive-router,59,50,1634.1450276922055,52.0473755,1,122.00,54808 +hive-router,59,50,1634.3888095598827,52.0577752,1,123.00,54808 +hive-router,60,50,1631.8767222087956,52.027280999999995,1,123.00,54808 +hive-router,60,50,1632.2521109246986,52.009909,1,122.00,54808 +hive-gateway-router-runtime,2,50,127.58598789614626,534.6930944999998,1,182.30,1447268 +hive-gateway-router-runtime,2,50,184.19885960097378,483.51186825,1,176.50,1449828 +hive-gateway-router-runtime,2,50,227.3179538743851,440.4563106,1,179.10,1458788 +hive-gateway-router-runtime,3,50,274.8350509060409,401.66809954999985,1,181.80,1464932 +hive-gateway-router-runtime,3,50,310.20182180261463,350.9092822999996,1,176.20,1473892 +hive-gateway-router-runtime,3,50,317.6180660768662,318.56950559999973,1,178.80,1486564 +hive-gateway-router-runtime,4,50,328.2370815332424,270.76736139999946,1,181.40,1486564 +hive-gateway-router-runtime,4,50,340.97810922539486,254.19076859999953,1,184.10,1486564 +hive-gateway-router-runtime,4,50,359.6983530562817,226.91781120000007,1,178.40,1486564 +hive-gateway-router-runtime,5,50,364.96584415009545,201.04152324999998,1,180.90,1486564 +hive-gateway-router-runtime,5,50,382.8800327491326,193.455764,1,183.30,1486564 +hive-gateway-router-runtime,5,50,390.3940895117768,178.7348485,1,178.00,1486564 +hive-gateway-router-runtime,5,50,393.7369851113987,177.40500399999996,1,180.40,1486564 +hive-gateway-router-runtime,6,50,404.4028721524088,174.46824994999992,1,182.70,1486564 +hive-gateway-router-runtime,6,50,411.5699257644477,166.69870919999994,1,177.70,1486564 +hive-gateway-router-runtime,6,50,408.4559405230619,175.80718319999997,1,179.90,1486564 +hive-gateway-router-runtime,7,50,417.28475428078576,173.0732257999999,1,182.20,1486564 +hive-gateway-router-runtime,7,50,420.94183074645184,165.53929039999878,1,184.50,1486564 +hive-gateway-router-runtime,7,50,424.5471413199939,160.70122199999997,1,179.60,1486564 +hive-gateway-router-runtime,8,50,428.42516028862264,156.95548864999978,1,181.90,1486564 +hive-gateway-router-runtime,8,50,439.75187120355156,152.06764499999997,1,184.10,1486564 +hive-gateway-router-runtime,8,50,439.00857587858667,143.74736159999986,1,179.60,1486564 +hive-gateway-router-runtime,9,50,444.2071883669205,140.98364800000002,1,181.80,1486564 +hive-gateway-router-runtime,9,50,449.4974308441099,138.23287564999998,1,184.20,1486564 +hive-gateway-router-runtime,9,50,447.54147449352416,136.85583589999993,1,179.80,1486564 +hive-gateway-router-runtime,9,50,451.8670468076235,134.42803519999998,1,181.80,1486564 +hive-gateway-router-runtime,10,50,453.3435188781357,133.3905635,1,184.00,1486820 +hive-gateway-router-runtime,10,50,455.3054941245176,133.50580109999999,1,179.80,1486820 +hive-gateway-router-runtime,10,50,461.49902068388474,136.74338419999998,1,181.40,1486820 +hive-gateway-router-runtime,11,50,466.945576190895,134.7609882,1,183.40,1486820 +hive-gateway-router-runtime,11,50,466.78330356530404,133.83150180000004,1,185.30,1486820 +hive-gateway-router-runtime,11,50,472.6643746833916,133.10957760000002,1,181.00,1486820 +hive-gateway-router-runtime,12,50,480.97657361467895,132.5468792,1,182.80,1486820 +hive-gateway-router-runtime,12,50,485.9860842770874,132.0407072,1,184.70,1488100 +hive-gateway-router-runtime,12,50,487.85348921413316,131.25328910000002,1,180.60,1496292 +hive-gateway-router-runtime,12,50,491.95448327982615,130.6386606,1,182.50,1502820 +hive-gateway-router-runtime,13,50,489.55094178995756,131.90759400000002,1,184.20,1502820 +hive-gateway-router-runtime,13,50,494.8099990746568,131.06716269999993,1,186.00,1502820 +hive-gateway-router-runtime,13,50,497.36865746184714,130.60084765,1,182.00,1502948 +hive-gateway-router-runtime,14,50,504.8535652176226,130.0268635,1,183.70,1502948 +hive-gateway-router-runtime,14,50,506.6273249924999,129.71358894999997,1,185.40,1502948 +hive-gateway-router-runtime,14,50,511.1219043583369,129.18389859999996,1,181.60,1502948 +hive-gateway-router-runtime,14,50,512.3903226181976,129.01690639999998,1,183.30,1502948 +hive-gateway-router-runtime,15,50,514.1382696702872,128.61849225,1,185.00,1502948 +hive-gateway-router-runtime,15,50,518.0589386657052,128.1548648,1,186.60,1502948 +hive-gateway-router-runtime,15,50,519.464032638844,128.9987746,1,182.80,1502948 +hive-gateway-router-runtime,16,50,518.1010128948316,128.6436736,1,184.50,1502948 +hive-gateway-router-runtime,16,50,524.5142522632306,128.147228,1,186.10,1502948 +hive-gateway-router-runtime,16,50,527.8730216606021,127.55157799999999,1,182.30,1502948 +hive-gateway-router-runtime,16,50,528.4906530988244,127.30424989999999,1,184.00,1502948 +hive-gateway-router-runtime,17,50,530.7955993474621,126.8829638,1,185.60,1502948 +hive-gateway-router-runtime,17,50,534.4065912834002,126.52235875000002,1,187.10,1502948 +hive-gateway-router-runtime,17,50,534.3886695397325,126.3138775,1,183.50,1502948 +hive-gateway-router-runtime,18,50,535.6959815089258,126.016474,1,185.00,1502948 +hive-gateway-router-runtime,18,50,540.574114066583,125.50425875,1,186.60,1502948 +hive-gateway-router-runtime,18,50,542.931034151793,125.27073394999998,1,182.90,1502948 +hive-gateway-router-runtime,18,50,543.6636456598042,125.156107,1,184.50,1502948 +hive-gateway-router-runtime,19,50,545.6241147233335,124.85207529999998,1,186.10,1502948 +hive-gateway-router-runtime,19,50,547.7439028979675,124.58938160000001,1,187.60,1502948 +hive-gateway-router-runtime,19,50,548.765130701865,124.24332749999999,1,184.10,1502948 +hive-gateway-router-runtime,20,50,548.783814537731,124.00769149999996,1,185.70,1502948 +hive-gateway-router-runtime,20,50,551.1006912310854,123.78052594999998,1,187.10,1502948 +hive-gateway-router-runtime,20,50,552.4110744456198,123.53758539999998,1,183.90,1502948 +hive-gateway-router-runtime,20,50,553.0221474586125,123.0883954,1,185.30,1502948 +hive-gateway-router-runtime,21,50,553.3695876975056,123.25736895000003,1,186.90,1502948 +hive-gateway-router-runtime,21,50,555.1846330551944,123.08687780000001,1,188.30,1502948 +hive-gateway-router-runtime,21,50,557.2396737401077,122.85109685000002,1,185.00,1502948 +hive-gateway-router-runtime,22,50,558.9352802326936,122.6356851,1,186.50,1502948 +hive-gateway-router-runtime,22,50,559.2270756648361,122.32758955000001,1,187.90,1502948 +hive-gateway-router-runtime,22,50,560.6665403232677,122.07360274999999,1,184.60,1502948 +hive-gateway-router-runtime,22,50,562.4916947113054,121.7937045,1,186.00,1502948 +hive-gateway-router-runtime,23,50,564.0300429252602,121.54797525000001,1,187.40,1502948 +hive-gateway-router-runtime,23,50,566.347260100812,121.344006,1,188.80,1502948 +hive-gateway-router-runtime,23,50,567.8807840856797,121.12018039999998,1,185.70,1502948 +hive-gateway-router-runtime,24,50,565.0985969537552,121.1563516,1,187.00,1506776 +hive-gateway-router-runtime,24,50,566.6706776559978,121.552976,1,188.30,1506776 +hive-gateway-router-runtime,24,50,567.3968972160918,121.38089744999992,1,185.30,1506776 +hive-gateway-router-runtime,24,50,569.3814537990747,121.1566982,1,186.70,1506776 +hive-gateway-router-runtime,25,50,567.5272721446703,120.98534975000001,1,187.90,1506776 +hive-gateway-router-runtime,25,50,570.3183163796347,120.7795902,1,185.00,1506776 +hive-gateway-router-runtime,25,50,572.0960190632904,120.72786055,1,186.20,1506776 +hive-gateway-router-runtime,26,50,573.2982177563616,120.42305239999999,1,187.60,1506776 +hive-gateway-router-runtime,26,50,574.5039488309952,120.17345904999999,1,188.80,1506776 +hive-gateway-router-runtime,26,50,574.653967755879,119.97594269999999,1,185.80,1506776 +hive-gateway-router-runtime,27,50,574.040009069444,120.21093114999996,1,187.10,1506776 +hive-gateway-router-runtime,27,50,575.1292381943905,120.00167279999987,1,188.30,1506776 +hive-gateway-router-runtime,27,50,577.6345753663788,119.85774905,1,185.50,1506776 +hive-gateway-router-runtime,27,50,578.999663004492,119.59714505,1,186.80,1506776 +hive-gateway-router-runtime,28,50,580.1966938303163,119.41932169999997,1,188.00,1506776 +hive-gateway-router-runtime,28,50,579.9433358214015,119.28263299999999,1,189.30,1506776 +hive-gateway-router-runtime,28,50,580.0378081813469,119.2201786,1,186.60,1506776 +hive-gateway-router-runtime,29,50,582.4668048035168,119.0353402,1,187.70,1506776 +hive-gateway-router-runtime,29,50,583.26284612285,118.9472122,1,189.00,1510744 +hive-gateway-router-runtime,29,50,582.4930113246812,119.36271450000001,1,186.30,1511128 +hive-gateway-router-runtime,29,50,582.1669824270981,119.157939,1,187.50,1511128 +hive-gateway-router-runtime,30,50,582.9812382120522,119.024609,1,188.70,1511128 +hive-gateway-router-runtime,30,50,585.0189250960786,118.89446865,1,189.80,1511384 +hive-gateway-router-runtime,30,50,584.8988915239071,118.90979819999997,1,187.10,1511384 +hive-gateway-router-runtime,31,50,584.8386565068171,118.73782299999999,1,188.30,1511384 +hive-gateway-router-runtime,31,50,587.136273143861,118.6202374,1,189.50,1511384 +hive-gateway-router-runtime,31,50,587.9718946201014,118.34859849999997,1,186.90,1511384 +hive-gateway-router-runtime,32,50,588.9494638041998,118.2384316,1,188.10,1511384 +hive-gateway-router-runtime,32,50,587.7781343589295,118.321819,1,189.30,1510168 +hive-gateway-router-runtime,32,50,589.3716020649223,118.36077099999997,1,186.60,1510168 +hive-gateway-router-runtime,32,50,589.8712996556593,118.24524600000001,1,187.80,1510168 +hive-gateway-router-runtime,33,50,590.9630037261297,118.11215480000001,1,188.90,1510168 +hive-gateway-router-runtime,33,50,591.798899129105,117.99794200000001,1,190.00,1510168 +hive-gateway-router-runtime,33,50,592.552446382162,117.88562714999999,1,187.50,1510168 +hive-gateway-router-runtime,34,50,591.3775670053045,117.7544919,1,188.60,1510168 +hive-gateway-router-runtime,34,50,592.8753761287073,117.60919219999998,1,189.70,1510168 +hive-gateway-router-runtime,34,50,593.6792316452156,117.51243909999997,1,187.30,1510168 +hive-gateway-router-runtime,34,50,593.2849547540959,117.40622644999999,1,188.40,1510168 +hive-gateway-router-runtime,35,50,595.3661752315072,117.26164125,1,189.50,1510168 +hive-gateway-router-runtime,35,50,596.3471313686726,117.094448,1,187.00,1510168 +hive-gateway-router-runtime,35,50,596.6948998317886,117.01879429999993,1,188.20,1510168 +hive-gateway-router-runtime,36,50,597.1782839340771,117.02294739999999,1,189.20,1510168 +hive-gateway-router-runtime,36,50,597.9078661644745,116.85674715,1,190.30,1510168 +hive-gateway-router-runtime,36,50,598.5098138087246,116.786237,1,188.00,1510168 +hive-gateway-router-runtime,37,50,599.3748715936978,116.621261,1,189.00,1510168 +hive-gateway-router-runtime,37,50,599.77108190928,116.4454315,1,190.10,1510168 +hive-gateway-router-runtime,37,50,599.0964982887496,116.73784469999998,1,187.70,1507796 +hive-gateway-router-runtime,37,50,598.8731741405577,116.712341,1,188.70,1507796 +hive-gateway-router-runtime,38,50,598.37592568299,116.57395324999999,1,189.80,1507796 +hive-gateway-router-runtime,38,50,599.8360678336413,116.386298,1,190.80,1507796 +hive-gateway-router-runtime,38,50,600.2651461919183,116.21816824999999,1,188.60,1507796 +hive-gateway-router-runtime,39,50,600.489908689005,116.143355,1,189.60,1507796 +hive-gateway-router-runtime,39,50,601.0217043998472,116.1529624,1,190.60,1507796 +hive-gateway-router-runtime,39,50,601.4445328673718,116.050281,1,188.30,1507796 +hive-gateway-router-runtime,40,50,602.5200397181394,115.84480729999994,1,189.40,1507796 +hive-gateway-router-runtime,40,50,601.3853496050331,116.1516402,1,190.40,1507796 +hive-gateway-router-runtime,40,50,602.8883567056338,115.9981306,1,188.20,1507796 +hive-gateway-router-runtime,40,50,602.4459128247285,115.83567049999999,1,189.30,1507796 +hive-gateway-router-runtime,41,50,603.8248590633601,115.64492639999999,1,190.20,1507796 +hive-gateway-router-runtime,41,50,604.2699114565139,115.55493319999998,1,191.30,1507796 +hive-gateway-router-runtime,41,50,604.7591240118177,115.33422604999997,1,189.10,1507796 +hive-gateway-router-runtime,42,50,604.5114053412393,115.2043738999999,1,190.00,1507796 +hive-gateway-router-runtime,42,50,604.4779152155736,115.170965,1,191.10,1507796 +hive-gateway-router-runtime,42,50,604.6266700356383,115.023655,1,188.90,1507796 +hive-gateway-router-runtime,43,50,604.7878240962416,114.86838164999995,1,189.90,1507796 +hive-gateway-router-runtime,43,50,604.3768017683236,115.06305249999997,1,190.80,1507796 +hive-gateway-router-runtime,43,50,603.6704337129121,114.97873150000001,1,188.80,1507796 +hive-gateway-router-runtime,43,50,604.3643233974144,114.91254984999988,1,189.80,1507796 +hive-gateway-router-runtime,44,50,604.907689747317,114.65924789999997,1,190.80,1507796 +hive-gateway-router-runtime,44,50,605.2087395531912,114.50020399999994,1,188.60,1507796 +hive-gateway-router-runtime,44,50,605.7436771626543,114.33151879999997,1,189.60,1507796 +hive-gateway-router-runtime,45,50,605.9901823102282,114.24227559999999,1,190.60,1507796 +hive-gateway-router-runtime,45,50,605.7583650025165,114.122744,1,191.50,1507796 +hive-gateway-router-runtime,45,50,604.7317168653774,114.3507392,1,189.50,1507796 +hive-gateway-router-runtime,46,50,605.7602187868155,114.24455479999999,1,190.50,1507796 +hive-gateway-router-runtime,46,50,606.314108819541,114.1138916,1,191.50,1507796 +hive-gateway-router-runtime,46,50,606.48282504794,114.01929745,1,189.30,1507796 +hive-gateway-router-runtime,47,50,606.8097934191662,113.80994529999995,1,190.20,1507796 +hive-gateway-router-runtime,47,50,607.7804701900824,113.64707604999998,1,191.20,1507796 +hive-gateway-router-runtime,47,50,608.2792951952077,113.51630199999994,1,189.30,1507796 +hive-gateway-router-runtime,47,50,608.5965634083235,113.30689039999999,1,190.20,1507796 +hive-gateway-router-runtime,48,50,608.2947134857795,113.15577119999996,1,191.10,1507796 +hive-gateway-router-runtime,48,50,608.6038058911568,113.47072759999999,1,189.20,1507796 +hive-gateway-router-runtime,48,50,608.007399425507,113.30447159999993,1,190.10,1507796 +hive-gateway-router-runtime,49,50,608.9547130923078,113.06534869999999,1,191.10,1507796 +hive-gateway-router-runtime,49,50,609.9320141066884,112.89823039999999,1,192.00,1507796 +hive-gateway-router-runtime,49,50,610.1408123411521,112.69116964999996,1,190.00,1507796 +hive-gateway-router-runtime,50,50,610.6446531411822,112.48059404999998,1,190.80,1507796 +hive-gateway-router-runtime,50,50,611.1253744673235,112.26158739999997,1,191.80,1507796 +hive-gateway-router-runtime,50,50,610.5138756911757,112.1588625,1,189.80,1507796 +hive-gateway-router-runtime,51,50,611.2077877542988,112.051042,1,190.80,1507796 +hive-gateway-router-runtime,51,50,611.2958766184065,111.83105899999998,1,191.60,1507796 +hive-gateway-router-runtime,51,50,612.5125823619724,111.63713399999992,1,189.80,1507796 +hive-gateway-router-runtime,51,50,612.4770398388018,111.50953724999995,1,190.60,1507796 +hive-gateway-router-runtime,52,50,613.099502743045,111.38043019999992,1,191.50,1507796 +hive-gateway-router-runtime,52,50,613.0333102948803,111.27739759999999,1,189.60,1507796 +hive-gateway-router-runtime,52,50,613.7202357606532,111.1176684,1,190.50,1507796 +hive-gateway-router-runtime,53,50,614.0644233163941,111.00731959999996,1,191.40,1507796 +hive-gateway-router-runtime,53,50,614.3958861380876,110.95377019999991,1,192.20,1510868 +hive-gateway-router-runtime,53,50,614.0673890373002,111.4675465,1,190.40,1513044 +hive-gateway-router-runtime,54,50,613.5391955714218,111.35431750000001,1,191.30,1514452 +hive-gateway-router-runtime,54,50,614.3043783560939,111.2143707,1,192.10,1515604 +hive-gateway-router-runtime,54,50,614.7490512464556,111.11433459999999,1,190.30,1517012 +hive-gateway-router-runtime,55,50,614.5617731864676,111.03757019999999,1,191.10,1518420 +hive-gateway-router-runtime,55,50,614.5619230832029,110.893631,1,192.00,1519444 +hive-gateway-router-runtime,55,50,615.3809349459113,110.98514519999999,1,190.10,1520468 +hive-gateway-router-runtime,55,50,614.8082738435062,110.88679835,1,190.90,1521364 +hive-gateway-router-runtime,56,50,614.9388154258481,110.76247325,1,191.80,1522260 +hive-gateway-router-runtime,56,50,615.0366041723702,111.01210199999997,1,189.90,1522260 +hive-gateway-router-runtime,56,50,615.5946978675136,111.0810688,1,190.80,1522516 +hive-gateway-router-runtime,57,50,616.0605846476908,110.91808979999988,1,191.60,1523156 +hive-gateway-router-runtime,57,50,615.350136163413,110.9820015,1,192.40,1524052 +hive-gateway-router-runtime,57,50,616.4396287657622,110.8920533,1,190.70,1524564 +hive-gateway-router-runtime,58,50,616.7847088892214,110.76650624999994,1,191.50,1524820 +hive-gateway-router-runtime,58,50,616.8687163629961,110.709036,1,192.30,1525076 +hive-gateway-router-runtime,58,50,617.6253414833067,110.6463506,1,190.60,1525588 +hive-gateway-router-runtime,59,50,617.8350217805561,110.55891700000001,1,191.50,1525588 +hive-gateway-router-runtime,59,50,618.113845716747,110.5578541,1,192.20,1525844 +hive-gateway-router-runtime,59,50,618.2299416201903,110.48873495,1,190.50,1525844 +hive-gateway-router-runtime,59,50,617.4689703674686,110.44030149999999,1,191.30,1526484 +hive-gateway-router-runtime,60,50,618.4198455192787,110.3774445,1,192.10,1526740 +hive-gateway-router-runtime,60,50,619.1838480001119,110.30726,1,190.40,1526996 +hive-gateway-router-runtime,60,50,618.5493317535874,110.251076,1,191.20,1529300 +hive-gateway-router-runtime,61,50,618.5927597226151,110.29124334999997,1,192.00,1536468 +hive-gateway-router-runtime,61,50,619.1411953050596,110.1778001,1,190.40,1544148 +hive-gateway,2,50,109.88995513896167,561.9030204999999,1,179.10,1596356 +hive-gateway,3,50,126.58515695643818,513.7538499999999,1,181.60,1596356 +hive-gateway,3,50,137.3867097599316,492.1033979499997,1,176.10,1596356 +hive-gateway,3,50,147.43576233460664,466.416041,1,178.70,1596356 +hive-gateway,3,50,165.1878013719891,424.33846104999935,1,181.20,1596356 +hive-gateway,4,50,181.18312749990287,402.81593189999995,1,183.60,1596356 +hive-gateway,4,50,185.50137129431755,397.4300717,1,178.50,1596356 +hive-gateway,4,50,191.69625877292927,395.06638119999997,1,180.50,1596356 +hive-gateway,5,50,194.65482125925502,387.24401999999964,1,182.90,1593032 +hive-gateway,5,50,197.8209837138073,454.46334079999997,1,185.20,1593160 +hive-gateway,5,50,203.82815577322904,443.33181,1,180.00,1593160 +hive-gateway,5,50,206.39846666395815,422.514852,1,182.20,1593160 +hive-gateway,6,50,211.66727626173866,407.32125274999913,1,184.30,1593160 +hive-gateway,6,50,209.0035204832549,402.28138275000003,1,179.30,1552416 +hive-gateway,6,50,215.5535661596389,423.18603019999995,1,181.50,1552416 +hive-gateway,7,50,220.75823387856664,421.473591,1,183.70,1552416 +hive-gateway,7,50,224.57532841512614,417.3822286999997,1,185.70,1552416 +hive-gateway,7,50,226.53848943796837,402.28138275000003,1,180.90,1552416 +hive-gateway,7,50,230.57202330747538,396.3997169999999,1,183.00,1552416 +hive-gateway,8,50,232.34071188499183,394.3831155,1,184.90,1552544 +hive-gateway,8,50,236.24440740133252,390.1466198499994,1,180.30,1569440 +hive-gateway,8,50,233.84548777325347,383.5683825999984,1,182.20,1607744 +hive-gateway,8,50,234.69026312904887,423.0714833999999,1,184.20,1607744 +hive-gateway,9,50,237.6019308237073,421.43222559999987,1,186.20,1607744 +hive-gateway,9,50,241.67881185128448,414.79715694999965,1,181.60,1607744 +hive-gateway,9,50,242.6331182933165,400.0630105,1,183.60,1607744 +hive-gateway,10,50,247.43137888230885,395.2097295999999,1,185.50,1607744 +hive-gateway,10,50,249.8612393742499,390.79906199999994,1,181.20,1607744 +hive-gateway,10,50,249.24106096934835,386.72497525,1,183.20,1607744 +hive-gateway,10,50,249.89043183755086,355.22391234999986,1,184.90,1611456 +hive-gateway,11,50,249.47742546050463,353.241777,1,186.80,1607684 +hive-gateway,11,50,250.01251039799587,394.9165327,1,182.50,1607684 +hive-gateway,11,50,250.64376217023678,390.79906199999994,1,184.30,1607684 +hive-gateway,12,50,249.8802507901181,393.818457,1,186.20,1607528 +hive-gateway,12,50,251.62313266397308,397.4375015,1,187.90,1607528 +hive-gateway,12,50,252.09560861300838,395.77362359999984,1,183.70,1607528 +hive-gateway,12,50,255.23843921153576,390.83131899999995,1,185.50,1607528 +hive-gateway,13,50,255.5484469644849,387.7692459999997,1,187.20,1607528 +hive-gateway,13,50,255.30386424824692,386.20591,1,183.30,1607528 +hive-gateway,13,50,258.82088909603925,383.42212659999996,1,184.90,1607528 +hive-gateway,14,50,259.72579863265423,382.1238789999997,1,186.60,1607528 +hive-gateway,14,50,261.6960982707119,355.1074293999998,1,188.30,1607528 +hive-gateway,14,50,263.0697943897934,349.6582037999998,1,184.50,1607528 +hive-gateway,14,50,262.8088124283371,324.6122529499983,1,186.00,1607528 +hive-gateway,15,50,262.55140439625694,306.84387739999835,1,187.70,1607656 +hive-gateway,15,50,262.7495685039136,386.7716915999999,1,184.00,1607656 +hive-gateway,15,50,264.51356770144423,384.15453255,1,185.50,1607656 +hive-gateway,16,50,262.5927860831683,383.3412973,1,187.20,1632544 +hive-gateway,16,50,261.90818847676036,382.52262804999987,1,188.90,1606780 +hive-gateway,16,50,261.57886872325685,390.38330475000004,1,185.20,1606780 +hive-gateway,16,50,264.2544702863609,385.6055763999996,1,186.80,1606780 +hive-gateway,17,50,264.0390417098052,384.1184482,1,188.40,1606780 +hive-gateway,17,50,265.2958664160267,382.55308775,1,184.80,1606780 +hive-gateway,17,50,267.7119677913675,355.1462570499996,1,186.30,1606780 +hive-gateway,18,50,267.335202892429,352.5809357999996,1,187.90,1606780 +hive-gateway,18,50,266.8729395414109,337.05013559999657,1,189.40,1606780 +hive-gateway,18,50,266.47335954206164,390.71088919999994,1,185.90,1606780 +hive-gateway,18,50,267.413529391454,386.9283665500001,1,187.40,1606780 +hive-gateway,19,50,268.5370136513646,384.2613909999996,1,188.80,1606780 +hive-gateway,19,50,269.09787208166676,383.29383425000003,1,185.40,1606780 +hive-gateway,19,50,269.9056068237582,380.60538599999995,1,186.80,1606780 +hive-gateway,20,50,271.1984164485514,354.14809099999985,1,188.20,1606780 +hive-gateway,20,50,271.1342258453702,345.78527099999883,1,189.70,1606908 +hive-gateway,20,50,272.94693702324764,312.76507644999504,1,186.20,1609084 +hive-gateway,20,50,270.82147236691037,298.594608,1,187.60,1606480 +hive-gateway,21,50,272.0445048037656,358.51782625,1,188.90,1606480 +hive-gateway,21,50,271.06468521586817,353.9404525,1,185.60,1606480 +hive-gateway,21,50,270.26832082248836,387.2320620500001,1,187.00,1606480 +hive-gateway,21,50,271.60500898868617,390.60837689999994,1,188.40,1606480 +hive-gateway,22,50,273.13076763347755,386.4707779000001,1,189.80,1606480 +hive-gateway,22,50,273.4452693712741,384.15453255,1,186.70,1606480 +hive-gateway,22,50,274.4690863518032,382.84922529999966,1,187.90,1606480 +hive-gateway,23,50,275.3748306916656,372.39206514999836,1,189.30,1606480 +hive-gateway,23,50,275.29229795377654,353.9848448499999,1,186.20,1606480 +hive-gateway,23,50,276.2297603810206,333.86818775,1,187.40,1606480 +hive-gateway,23,50,277.31702851564575,301.16555279999375,1,188.70,1606480 +hive-gateway,24,50,277.6768650940643,290.60586225,1,190.10,1606480 +hive-gateway,24,50,276.9304866563102,288.5242441999999,1,187.10,1606608 +hive-gateway,24,50,276.83627618249557,383.3225332,1,188.20,1606608 +hive-gateway,25,50,277.3455311752337,381.37102524999926,1,189.50,1606608 +hive-gateway,25,50,277.7505429280087,354.99094644999974,1,190.70,1619796 +hive-gateway,25,50,276.36716380552275,380.7961723999998,1,187.80,1609300 +hive-gateway,25,50,276.54266114520226,384.15453255,1,189.00,1609300 +hive-gateway,26,50,277.3934676864336,382.84922529999966,1,190.30,1609300 +hive-gateway,26,50,277.3133476227857,379.0381650499978,1,187.30,1609300 +hive-gateway,26,50,278.98699123807046,352.5809357999996,1,188.50,1609300 +hive-gateway,27,50,278.60472261028013,336.7311377999954,1,189.80,1609300 +hive-gateway,27,50,278.9644526567751,309.57673850000003,1,191.00,1609300 +hive-gateway,27,50,279.0056059752389,291.08418164999983,1,188.20,1609300 +hive-gateway,27,50,279.10491633571723,384.50983149999985,1,189.40,1609300 +hive-gateway,28,50,279.8164263764293,383.28421844999997,1,190.50,1609300 +hive-gateway,28,50,280.05399128732563,380.60538599999995,1,187.70,1609300 +hive-gateway,28,50,280.4459473330451,354.3668589999999,1,188.90,1609300 +hive-gateway,29,50,280.9809916724808,342.47309819999884,1,190.10,1609300 +hive-gateway,29,50,282.32399155114837,305.4774468499934,1,191.30,1609300 +hive-gateway,29,50,282.3697270771381,290.9568,1,188.50,1609300 +hive-gateway,29,50,281.7744968637697,289.00223289999974,1,189.60,1614292 +hive-gateway,30,50,281.2826758326663,287.4455144999999,1,190.70,1609084 +hive-gateway,30,50,281.0130576932453,326.7451214499926,1,188.10,1609084 +hive-gateway,30,50,280.75316888356735,309.57673850000003,1,189.20,1609084 +hive-gateway,31,50,281.2330719447606,386.5430145999999,1,190.30,1609084 +hive-gateway,31,50,281.4427611851445,384.1572922,1,191.40,1609084 +hive-gateway,31,50,281.98145583418676,383.03778669999974,1,188.80,1609084 +hive-gateway,31,50,282.6416204461928,373.76172520000335,1,189.90,1609084 +hive-gateway,32,50,282.6211989074119,353.9700474000001,1,191.00,1609084 +hive-gateway,32,50,283.5377201370159,326.7451214499926,1,188.40,1609084 +hive-gateway,32,50,283.65745188525403,303.3080067999938,1,189.50,1609084 +hive-gateway,32,50,284.4861888225829,290.0780137999997,1,190.60,1609084 +hive-gateway,33,50,284.29476086356726,287.9821245,1,191.70,1609084 +hive-gateway,33,50,284.51612167716127,285.74428520000026,1,189.20,1609084 +hive-gateway,33,50,284.33372180664395,359.16884349999054,1,190.30,1609084 +hive-gateway,34,50,284.95006458018656,353.8516677999997,1,191.30,1609212 +hive-gateway,34,50,284.12503263653,346.117846,1,188.80,1630680 +hive-gateway,34,50,283.3579697968834,355.10742939999943,1,189.90,1608676 +hive-gateway,35,50,284.06001370759003,371.1767004000002,1,190.90,1608676 +hive-gateway,35,50,284.14132171765254,361.7729125,1,191.90,1608676 +hive-gateway,35,50,284.5195393408964,351.16045839999845,1,189.50,1608676 +hive-gateway,35,50,284.74211799551273,322.524152599995,1,190.50,1608676 +hive-gateway,36,50,285.3612536302196,294.133445,1,191.60,1608676 +hive-gateway,36,50,285.357228054821,289.73074259999976,1,189.00,1608676 +hive-gateway,36,50,286.0011740914571,287.0349257999999,1,190.00,1608676 +hive-gateway,37,50,285.5814705280376,299.02309879999376,1,191.00,1608676 +hive-gateway,37,50,285.89659085644877,363.0749470000048,1,192.10,1608676 +hive-gateway,37,50,286.1940373364203,351.589674,1,189.70,1608676 +hive-gateway,37,50,286.51141702621624,322.98817489999664,1,190.70,1608676 +hive-gateway,38,50,286.3936726047395,299.88008039999687,1,191.70,1608676 +hive-gateway,38,50,286.40745024813384,290.6292580999997,1,189.40,1608676 +hive-gateway,38,50,287.21884553966265,287.3908620000002,1,190.50,1608676 +hive-gateway,39,50,286.54832986414965,286.15490239999923,1,191.40,1609444 +hive-gateway,39,50,286.0877753740849,290.14649199999997,1,192.40,1608784 +hive-gateway,39,50,286.3620329886103,309.2702451999996,1,190.00,1608784 +hive-gateway,39,50,286.1583482321285,306.2956101999993,1,190.90,1609808 +hive-gateway,40,50,285.53896204889327,318.55877779999815,1,191.90,1609808 +hive-gateway,40,50,285.747152900261,371.5395027999998,1,189.70,1609808 +hive-gateway,40,50,285.7996539034487,370.00010844999986,1,190.60,1609808 +hive-gateway,41,50,286.5278756839898,354.088427,1,191.60,1609808 +hive-gateway,41,50,286.9660226421808,336.41214,1,192.60,1609808 +hive-gateway,41,50,287.25906509517284,311.27385569999706,1,190.30,1610320 +hive-gateway,41,50,287.2449214616468,306.82749724999996,1,191.20,1627088 +hive-gateway,42,50,287.79798222918566,304.204679,1,192.00,1642320 +hive-gateway,42,50,287.4449809402528,293.10268029999895,1,189.90,1661008 +hive-gateway,42,50,288.2451595024139,288.3843861,1,190.80,1678032 +hive-gateway,43,50,288.30290639325415,286.78674339999935,1,191.70,1691216 +hive-gateway,43,50,287.68018705651,284.991879,1,192.60,1707728 +hive-gateway,43,50,287.8235608111405,319.31811034999635,1,190.50,1726032 +hive-gateway,43,50,288.18937554219787,307.8252864999985,1,191.40,1757368 +hive-gateway,44,50,288.32159572873866,305.40389984999865,1,192.30,1776440 +hive-gateway,44,50,288.2284104334445,296.04626719999976,1,190.20,1793208 +hive-gateway,44,50,288.7922248228978,289.73074259999976,1,191.10,1810872 +hive-gateway,45,50,289.16445407105874,287.062947,1,192.00,1829944 +hive-gateway,45,50,289.3496044994285,284.8032419999999,1,192.80,1845560 +hive-gateway,45,50,289.59771148077533,282.3279460999976,1,190.70,1865912 +hive-gateway,45,50,289.75033475522685,279.6284756,1,191.60,1881656 +hive-gateway,46,50,289.52402249826065,278.8429454499999,1,192.40,1899448 +hive-gateway,46,50,288.9206357446603,278.4863845,1,190.40,1918392 +hive-gateway,46,50,289.08999381710066,291.00312059999976,1,191.20,1937336 +hive-gateway,47,50,288.8030827170386,288.9339487999995,1,192.20,1955000 +hive-gateway,47,50,289.4134599121935,286.4516107999998,1,192.90,1971256 +hive-gateway,47,50,289.30957463643125,284.246721849999,1,190.90,2000484 +hive-gateway,47,50,289.5863482416577,280.62983659999975,1,191.80,2018404 +hive-gateway,48,50,289.7452250712739,279.58039825,1,192.70,2038884 +hive-gateway,48,50,289.9960089403465,278.62290075,1,190.60,2054756 +hive-gateway,48,50,290.6406643530878,277.7952372999997,1,191.40,2100576 +hive-gateway,49,50,290.5142948075697,277.238318,1,192.20,2120544 +hive-gateway,49,50,290.5444188864137,276.4427083499998,1,193.10,2138464 +hive-gateway,49,50,289.82663898309056,277.63673089999986,1,191.20,2156128 +hive-gateway,49,50,288.94222747702645,284.11417964999976,1,192.00,2159840 +hive-gateway,50,50,288.43539376246395,282.98572264999996,1,192.70,2201904 +hive-gateway,50,50,287.53013635029015,280.59253939999957,1,190.90,2198600 +hive-gateway,50,50,287.489992553936,287.02091519999993,1,191.70,2120556 +hive-gateway,51,50,287.2771997046371,287.05827679999993,1,192.40,2120556 +hive-gateway,51,50,287.9847324355898,284.04790854999953,1,193.30,2120556 +hive-gateway,51,50,288.57024756655,279.9335782499989,1,191.40,2120556 +hive-gateway,51,50,288.4843813744993,279.341658,1,192.20,2120556 +hive-gateway,52,50,288.9942540041967,278.1693810999997,1,192.90,2120556 +hive-gateway,52,50,288.2588987482724,278.0974128,1,190.90,2120556 +hive-gateway,52,50,288.6947831677298,288.7632385499995,1,191.70,2120556 +hive-gateway,53,50,288.5386192880505,287.0442661999999,1,192.50,2120556 +hive-gateway,53,50,288.9513036737186,284.41239959999905,1,193.30,2120556 +hive-gateway,53,50,289.4803152316041,280.3869232499992,1,191.50,2120556 +hive-gateway,53,50,289.7689566283801,279.0955289499998,1,192.30,2120556 +hive-gateway,54,50,289.918176533407,278.3278827999999,1,193.10,2120556 +hive-gateway,54,50,290.2471564660113,277.73579739999985,1,191.30,2120556 +hive-gateway,54,50,290.41279469462233,277.16265779999986,1,192.10,2120556 +hive-gateway,55,50,290.8857538088149,276.20033154999993,1,192.90,2120556 +hive-gateway,55,50,291.12957773449915,275.52655039999985,1,193.60,2120556 +hive-gateway,55,50,290.3402578144692,275.1373575999996,1,191.90,2120556 +hive-gateway,55,50,290.42006373724644,279.459877,1,192.60,2120684 +hive-gateway,56,50,290.64884590051264,278.5090275999997,1,193.40,2120684 +hive-gateway,56,50,290.724791133128,278.0009467,1,191.50,2120684 +hive-gateway,56,50,290.27343019760514,277.44734769999985,1,192.20,2130604 +hive-gateway,57,50,289.41608748105625,277.2357907999999,1,193.00,2151596 +hive-gateway,57,50,288.99519695431854,279.61262975,1,191.20,2151596 +hive-gateway,57,50,289.7828374109791,278.3278827999999,1,192.00,2151596 +hive-gateway,57,50,289.68698839675073,278.0100766,1,192.80,2151596 +hive-gateway,58,50,290.1567008973745,277.16265779999986,1,193.40,2151596 +hive-gateway,58,50,289.8572952451065,276.4427083499998,1,191.70,2151596 +hive-gateway,58,50,289.972257019291,275.739944,1,192.50,2151596 +hive-gateway,59,50,290.06746722100223,280.57389079999984,1,193.30,2151596 +hive-gateway,59,50,290.3934330620754,279.19979519999947,1,191.50,2151596 +hive-gateway,59,50,290.6472550638704,279.24708279999965,1,192.30,2151596 +hive-gateway,60,50,290.56474794869945,278.6322210499999,1,193.00,2151596 +hive-gateway,60,50,290.69969160154216,278.0329013499998,1,193.70,2151596 +hive-gateway,60,50,291.1156676746977,277.2105188,1,192.10,2151596 +hive-gateway,60,50,291.6232210453913,276.2539645,1,192.70,2151596 +hive-gateway,61,50,291.6841564771,275.671589,1,193.50,2151596 +hive-gateway,61,50,292.01658285894854,274.64991875,1,191.80,2151596 +hive-gateway,61,50,291.88251663450956,273.6950077999997,1,192.30,2151596 +grafbase,2,50,506.52361586151807,333.8511198,1,135.00,71292 +grafbase,2,50,810.4317099116673,187.112139,1,131.00,72188 +grafbase,2,50,926.4740432316884,107.77697519999923,1,134.00,74620 +grafbase,3,50,1032.7632459847391,61.37683454999998,1,136.00,71676 +grafbase,3,50,1122.2029632516212,58.212352599999946,1,139.00,72700 +grafbase,3,50,1199.0448495277412,56.0696325,1,135.00,73852 +grafbase,4,50,1227.4973391800756,55.96162925,1,138.00,72304 +grafbase,4,50,1279.4978818037212,55.67139725,1,140.00,73456 +grafbase,4,50,1294.3153082738584,55.24083289999997,1,136.00,72444 +grafbase,4,50,1330.8053733572165,54.3892034,1,139.00,73624 +grafbase,5,50,1350.4575949769592,54.25809975,1,141.00,71540 +grafbase,5,50,1359.610315644345,54.137751,1,137.00,69636 +grafbase,5,50,1367.8118210442994,54.22597925,1,140.00,70788 +grafbase,6,50,1386.6623703659156,54.38836679999999,1,142.00,72536 +grafbase,6,50,1393.7968520949007,54.697390999999996,1,144.00,72792 +grafbase,6,50,1414.0522402963295,54.68353689999999,1,140.00,71464 +grafbase,7,50,1424.4293030644048,54.673946999999984,1,142.00,71480 +grafbase,7,50,1433.53566526048,54.29426439999998,1,144.00,71608 +grafbase,7,50,1433.6285230295352,54.52690019999996,1,141.00,71608 +grafbase,7,50,1458.081089369359,54.61872844999996,1,143.00,71608 +grafbase,8,50,1449.37762550464,54.50993,1,145.00,71228 +grafbase,8,50,1474.6460453879827,54.56774225,1,141.00,70748 +grafbase,8,50,1465.7437785656102,54.459771599999996,1,143.00,71744 +grafbase,9,50,1480.186598501579,54.66277799999998,1,145.00,72496 +grafbase,9,50,1482.614588957879,54.71560834999999,1,147.00,72772 +grafbase,9,50,1486.6450616740406,54.46668609999999,1,144.00,74820 +grafbase,10,50,1500.4864672475453,54.19334059999999,1,146.00,75228 +grafbase,10,50,1495.4140991731413,54.35825544999998,1,148.00,77336 +grafbase,10,50,1501.399287699368,54.492414,1,144.00,73572 +grafbase,10,50,1505.6448734758271,54.64102984999996,1,146.00,74084 +grafbase,11,50,1506.1980745716914,55.019737,1,148.00,74468 +grafbase,11,50,1518.180832154235,54.77095444999998,1,144.00,75236 +grafbase,11,50,1509.8643318337774,55.0450665,1,146.00,75236 +grafbase,12,50,1514.8354802352073,54.854231799999965,1,148.00,75492 +grafbase,12,50,1525.6598677226664,54.76741519999998,1,150.00,76516 +grafbase,12,50,1518.321481834526,54.73253460000001,1,146.00,73860 +grafbase,13,50,1522.416813130909,54.62374975,1,148.00,73788 +grafbase,13,50,1526.2969630429002,54.6116741,1,150.00,74044 +grafbase,13,50,1530.5805751514258,54.4556772,1,147.00,74172 +grafbase,13,50,1535.6999272551816,54.22675465000001,1,149.00,74300 +grafbase,14,50,1534.8840936239087,54.307842,1,150.00,73160 +grafbase,14,50,1537.555208465567,54.24308510000001,1,147.00,73800 +grafbase,14,50,1533.8017249744844,54.34567214999995,1,149.00,73928 +grafbase,15,50,1541.9345373810763,54.30528899999999,1,151.00,73936 +grafbase,15,50,1548.512735702895,54.197717,1,148.00,73072 +grafbase,15,50,1542.0676493586257,54.372518799999995,1,149.00,74608 +grafbase,16,50,1548.6850391111086,54.20868979999997,1,151.00,73448 +grafbase,16,50,1540.5466214419428,54.4546,1,148.00,73532 +grafbase,16,50,1541.8670363237534,54.49189319999999,1,150.00,71016 +grafbase,17,50,1552.9086787743827,54.37493219999999,1,151.00,71528 +grafbase,17,50,1548.1505370192074,54.4940316,1,153.00,72032 +grafbase,17,50,1552.924838650059,54.49673769999996,1,150.00,72244 +grafbase,18,50,1546.5331380498562,54.61914899999999,1,152.00,73652 +grafbase,18,50,1550.602245439557,54.511265099999996,1,153.00,75824 +grafbase,18,50,1553.8759207245814,54.398704299999984,1,151.00,77036 +grafbase,19,50,1552.8842979092708,54.423418,1,152.00,78188 +grafbase,19,50,1555.7159134097765,54.3105,1,154.00,73804 +grafbase,19,50,1557.6910803608648,54.209922,1,151.00,74316 +grafbase,20,50,1554.404492036788,54.38522365,1,153.00,74956 +grafbase,20,50,1555.4899038415822,54.385480199999996,1,154.00,74956 +grafbase,20,50,1553.101726601714,54.31132414999999,1,152.00,73732 +grafbase,21,50,1556.839154350168,54.275857699999996,1,153.00,73820 +grafbase,21,50,1558.895279107167,54.209916,1,155.00,72492 +grafbase,21,50,1556.848514271712,54.214659499999996,1,152.00,72748 +grafbase,22,50,1558.6332505937442,54.2100844,1,154.00,73260 +grafbase,22,50,1563.60996785874,54.141623699999975,1,155.00,73000 +grafbase,22,50,1560.2016396477484,54.0558202,1,152.00,73192 +grafbase,22,50,1563.8105042063664,54.1476667,1,154.00,73048 +grafbase,23,50,1568.5600273085797,54.1091855,1,155.00,73048 +grafbase,23,50,1563.845312481213,54.019023149999995,1,153.00,73048 +grafbase,23,50,1570.567667633581,54.02077559999999,1,154.00,72920 +grafbase,24,50,1566.729058994801,53.97571709999999,1,156.00,72320 +grafbase,24,50,1569.5882717931227,54.000583500000005,1,153.00,72576 +grafbase,24,50,1566.2583051468105,54.02432060000001,1,155.00,72564 +grafbase,25,50,1567.1456768093378,54.01957755,1,156.00,72788 +grafbase,25,50,1569.1235917428862,54.119945899999976,1,153.00,68876 +grafbase,25,50,1571.8258772864103,54.18869829999999,1,155.00,70540 +grafbase,26,50,1572.6157842660318,54.47020205,1,156.00,71052 +grafbase,26,50,1570.4358134954834,54.423220849999986,1,154.00,71692 +grafbase,26,50,1572.5879669209244,54.38550375,1,155.00,69064 +grafbase,27,50,1570.0136771361556,54.323477499999996,1,157.00,69448 +grafbase,27,50,1570.3522111230718,54.309863,1,154.00,68912 +grafbase,27,50,1573.793600709016,54.2678365,1,156.00,69552 +grafbase,28,50,1572.1935874594367,54.217873,1,157.00,70192 +grafbase,28,50,1572.8517453976915,54.20805859999998,1,155.00,69004 +grafbase,28,50,1577.1917134163853,54.27390690000001,1,156.00,70284 +grafbase,29,50,1574.7719807851954,54.211678500000005,1,157.00,71032 +grafbase,29,50,1576.044679354634,54.21985299999999,1,155.00,72436 +grafbase,29,50,1577.6499917173965,54.12886134999998,1,156.00,72564 +grafbase,30,50,1579.0453077013156,54.186928,1,158.00,72820 +grafbase,30,50,1577.0009264968141,54.3705238,1,155.00,73292 +grafbase,31,50,1576.6304832990718,54.34838570000001,1,157.00,75460 +grafbase,31,50,1577.0165629931382,54.4537791,1,158.00,73196 +grafbase,31,50,1577.2600462740152,54.38569215,1,156.00,74860 +grafbase,32,50,1576.2281485616993,54.32554659999999,1,157.00,75448 +grafbase,32,50,1575.322131596422,54.373149850000004,1,155.00,73300 +grafbase,32,50,1576.0077695841167,54.35581159999997,1,157.00,74068 +grafbase,33,50,1574.8930265768386,54.37314565,1,158.00,75092 +grafbase,33,50,1575.1631776486752,54.295077,1,156.00,75328 +grafbase,33,50,1575.8982298909646,54.26871399999998,1,157.00,77504 +grafbase,34,50,1577.2459764148368,54.363259549999974,1,158.00,73688 +grafbase,34,50,1574.9010895510214,54.380245,1,156.00,74200 +grafbase,34,50,1575.2017051378068,54.44230825,1,158.00,71480 +grafbase,35,50,1579.6901869078922,54.464067,1,159.00,72376 +grafbase,35,50,1579.2743413715352,54.49551129999998,1,157.00,70544 +grafbase,36,50,1575.0285102872156,54.533552949999994,1,158.00,70800 +grafbase,36,50,1575.859693408625,54.6751065,1,159.00,72464 +grafbase,36,50,1578.0959057831717,54.63289919999999,1,157.00,72592 +grafbase,37,50,1576.985012068708,54.57884339999998,1,158.00,74636 +grafbase,37,50,1577.6449305840727,54.61979775,1,157.00,69464 +grafbase,37,50,1573.5504993969732,54.575146849999996,1,158.00,71384 +grafbase,38,50,1575.261286703903,54.55713059999998,1,159.00,72152 +grafbase,38,50,1575.3589983288066,54.51974975,1,157.00,71516 +grafbase,39,50,1576.9229067658064,54.487489549999985,1,158.00,72924 +grafbase,39,50,1577.8583985938665,54.467440549999964,1,160.00,70492 +grafbase,39,50,1576.4623878592708,54.5738828,1,158.00,70352 +grafbase,40,50,1573.1109037005253,54.68765849999999,1,159.00,70692 +grafbase,40,50,1575.4314197584486,54.7213292,1,157.00,71076 +grafbase,40,50,1574.1233079449,54.67523025,1,158.00,71204 +grafbase,41,50,1568.8329557502136,54.7566335,1,159.00,71716 +grafbase,41,50,1571.557404659284,54.84154529999999,1,158.00,70272 +grafbase,42,50,1571.0220204976824,54.82782,1,159.00,71040 +grafbase,42,50,1572.1710497247711,54.79760539999998,1,160.00,70464 +grafbase,42,50,1573.5316899820414,54.73679475,1,158.00,70716 +grafbase,43,50,1574.256198971067,54.77957745,1,159.00,70972 +grafbase,43,50,1572.0208523636438,54.742197299999994,1,158.00,68176 +grafbase,43,50,1571.5731602919047,54.702429699999996,1,159.00,69968 +grafbase,44,50,1575.6658164370301,54.7353689,1,160.00,70864 +grafbase,44,50,1573.9804273275652,54.75243639999998,1,158.00,71376 +grafbase,45,50,1574.9295423346655,54.74532625,1,159.00,71884 +grafbase,45,50,1575.2409451106057,54.7580574,1,160.00,71396 +grafbase,45,50,1570.7396338056155,54.86013205,1,159.00,72544 +grafbase,46,50,1571.5953806352995,54.945128,1,160.00,71912 +grafbase,46,50,1572.2235916703623,55.00630479999999,1,158.00,72888 +grafbase,47,50,1570.6844555096661,55.05414419999999,1,159.00,69124 +grafbase,47,50,1570.8114035210267,54.994736399999994,1,160.00,70660 +grafbase,47,50,1571.405107950183,54.98481644999996,1,159.00,71556 +grafbase,48,50,1569.215691785268,55.01859979999996,1,160.00,70120 +grafbase,48,50,1571.4465526155789,54.97398840000001,1,158.00,70372 +grafbase,48,50,1568.9097595696305,55.0123509,1,159.00,72920 +grafbase,49,50,1569.1114304737243,55.06879899999999,1,160.00,72588 +grafbase,49,50,1568.0731522291915,55.05634239999999,1,159.00,72388 +grafbase,50,50,1569.0924160218642,54.991116549999994,1,160.00,70736 +grafbase,50,50,1569.3836469677851,54.94592419999999,1,159.00,71000 +grafbase,50,50,1568.9341945579279,54.933720799999996,1,160.00,70096 +grafbase,51,50,1566.3258152020753,54.963481199999976,1,161.00,70352 +grafbase,51,50,1566.7518501153431,54.97276439999999,1,159.00,71116 +grafbase,52,50,1567.5265997819383,54.95753339999996,1,160.00,66056 +grafbase,52,50,1567.525203340746,54.97468679999998,1,159.00,67336 +grafbase,52,50,1566.8548765834014,54.953047,1,160.00,67464 +grafbase,53,50,1567.5419464291301,55.017855,1,161.00,68104 +grafbase,53,50,1566.9138561622822,55.01520699999999,1,160.00,68348 +grafbase,54,50,1567.002004993009,54.966421,1,160.00,68996 +grafbase,54,50,1566.497480601092,54.939277199999964,1,159.00,68248 +grafbase,54,50,1566.7619683427583,54.92664859999999,1,160.00,69656 +grafbase,55,50,1568.4462284795652,54.8888628,1,161.00,67384 +grafbase,55,50,1566.4417591089768,54.907649599999985,1,160.00,69208 +grafbase,56,50,1566.5262689732606,54.9481952,1,161.00,69976 +grafbase,56,50,1565.9144808864942,54.99469104999999,1,159.00,70264 +grafbase,56,50,1567.6594073362796,54.95799679999999,1,160.00,71416 +grafbase,57,50,1567.1183582145497,55.015259799999995,1,161.00,68728 +grafbase,57,50,1565.0167792323236,55.025968750000004,1,160.00,71160 +grafbase,58,50,1566.3769161868909,54.997328,1,161.00,72312 +grafbase,58,50,1565.590391822466,55.02038079999998,1,160.00,72796 +grafbase,59,50,1566.2389872162669,55.019737,1,161.00,74608 +grafbase,59,50,1566.0302127906405,55.04593779999999,1,162.00,73372 +grafbase,59,50,1565.5818251624225,55.0196478,1,161.00,70784 +grafbase,60,50,1566.3597051438678,54.99440524999999,1,162.00,72192 +grafbase,60,50,1567.1125630460958,54.924683599999994,1,160.00,72852 +grafbase,61,50,1565.8541022890179,54.91350719999999,1,161.00,73108 +cosmo,2,50,282.18621677809153,399.571232,1,161.00,105060 +cosmo,2,50,356.7080665667501,356.3307925999998,1,156.00,106676 +cosmo,2,50,373.39878371471303,330.0519501000002,1,159.00,108252 +cosmo,2,50,420.1309375292365,280.96662954999977,1,162.00,108092 +cosmo,3,50,448.5158080266505,244.96543259999982,1,156.00,98180 +cosmo,3,50,485.7053110429781,196.0016919999998,1,159.00,108532 +cosmo,3,50,508.70396653601557,150.51790999999997,1,162.00,108752 +cosmo,4,50,516.5071309456846,128.95688559999974,1,164.00,110132 +cosmo,4,50,528.2264279021233,126.20644879999996,1,159.00,105704 +cosmo,4,50,529.4690671325906,126.38672689999999,1,162.00,109920 +cosmo,4,50,552.3512857432011,124.07385289999998,1,164.00,108912 +cosmo,5,50,547.6951813936565,122.483527,1,167.00,103972 +cosmo,5,50,557.1918922336494,120.35021489999994,1,162.00,106024 +cosmo,5,50,576.1714105972931,119.7129813,1,164.00,106548 +cosmo,5,50,576.6718894354326,119.60544105000002,1,167.00,104984 +cosmo,6,50,586.116680478428,118.85571819999997,1,162.00,108512 +cosmo,6,50,577.9647865920863,117.88012950000001,1,164.00,100232 +cosmo,6,50,585.111038576745,116.97704169999999,1,167.00,114224 +cosmo,7,50,584.8555159766848,116.68695935,1,169.00,114168 +cosmo,7,50,591.5244219997476,115.93332789999998,1,164.00,112060 +cosmo,7,50,600.8931990661066,114.9519095,1,167.00,105416 +cosmo,7,50,596.6481329260912,114.57478559999997,1,169.00,104808 +cosmo,8,50,604.1846678075611,114.18990025,1,164.00,108136 +cosmo,8,50,599.2674578209463,114.09701639999997,1,166.00,102748 +cosmo,8,50,604.6769584533673,113.63140844999998,1,169.00,109924 +cosmo,9,50,612.0048480883881,113.04820840000001,1,171.00,108184 +cosmo,9,50,612.2430303524698,113.29891604999999,1,166.00,102460 +cosmo,9,50,611.2343327868808,112.9996726,1,169.00,101808 +cosmo,9,50,610.9121027807212,113.0163547,1,171.00,105912 +cosmo,10,50,616.8702469687963,113.03777729999999,1,166.00,105688 +cosmo,10,50,617.5872434154942,112.91480699999998,1,168.00,110216 +cosmo,10,50,616.1828627222828,112.67865559999998,1,170.00,105632 +cosmo,11,50,618.8503055152422,112.67694969999998,1,172.00,102016 +cosmo,11,50,618.6085639067751,112.87914914999999,1,168.00,104752 +cosmo,11,50,621.8690564398062,113.03731464999998,1,170.00,101932 +cosmo,11,50,623.2978007832305,113.19279099999997,1,172.00,107624 +cosmo,12,50,623.8211899323296,113.0350384,1,174.00,108092 +cosmo,12,50,622.3382865169244,113.18511099999999,1,170.00,114676 +cosmo,12,50,625.933602996032,112.87606844999998,1,172.00,108248 +cosmo,13,50,622.7208043378546,112.61501644999997,1,174.00,111076 +cosmo,13,50,627.4637212029323,112.2676427,1,170.00,104872 +cosmo,13,50,629.2112496769948,112.07121119999996,1,172.00,99036 +cosmo,13,50,628.5284551940623,111.94758559999998,1,174.00,111308 +cosmo,14,50,627.9194463720943,111.87730769999997,1,175.00,106008 +cosmo,14,50,631.3560784743476,112.3727822,1,172.00,104192 +cosmo,14,50,630.7288277065331,112.08421729999999,1,173.00,106860 +cosmo,14,50,632.4716024330339,112.26754505,1,175.00,108060 +cosmo,15,50,631.5191702375823,112.40644259999999,1,171.00,106944 +cosmo,15,50,629.6624903932704,112.27332039999999,1,173.00,104608 +cosmo,15,50,633.6749572780615,112.07169259999999,1,175.00,110336 +cosmo,16,50,635.3484253784305,112.4055368,1,177.00,108728 +cosmo,16,50,633.7517137425154,112.38712679999998,1,173.00,107680 +cosmo,16,50,634.8146680859606,112.4105187,1,175.00,106412 +cosmo,16,50,633.3471334080713,112.44723040000002,1,176.00,99736 +cosmo,17,50,632.6799055715277,112.55752489999998,1,173.00,106952 +cosmo,17,50,632.9007255299309,112.7213372,1,174.00,106108 +cosmo,17,50,632.3773372520858,112.81073525,1,176.00,106604 +cosmo,18,50,635.630171384876,112.525945,1,178.00,109640 +cosmo,18,50,635.0741160641018,112.40870709999999,1,174.00,107348 +cosmo,18,50,638.2598339579856,112.388597,1,176.00,110308 +cosmo,18,50,637.2941567211899,112.27332039999999,1,177.00,110504 +cosmo,19,50,637.964958045863,112.0866425,1,174.00,105292 +cosmo,19,50,638.8503122975671,112.26767525,1,175.00,103476 +cosmo,19,50,637.9995200931884,112.4526799,1,177.00,108124 +cosmo,20,50,639.2845428021087,112.365549,1,179.00,105712 +cosmo,20,50,638.3336807407015,112.12314084999998,1,175.00,101220 +cosmo,20,50,638.4424691913521,112.05764859999996,1,177.00,116836 +cosmo,20,50,638.1639959077962,111.87149109999996,1,178.00,105740 +cosmo,21,50,640.8345291566211,111.73802999999998,1,175.00,108252 +cosmo,21,50,641.030559508239,111.84064380000001,1,176.00,109188 +cosmo,21,50,638.407487949101,111.79326094999999,1,178.00,113300 +cosmo,22,50,641.0559741804261,111.7335006,1,179.00,106216 +cosmo,22,50,640.15682153219,111.68639489999998,1,176.00,111864 +cosmo,22,50,641.0992555957542,111.61449035,1,178.00,106100 +cosmo,22,50,642.2358937435658,111.566033,1,179.00,111036 +cosmo,23,50,642.7043766118157,111.57578625,1,176.00,117720 +cosmo,23,50,641.9116249132605,111.68931495,1,177.00,106580 +cosmo,23,50,642.2443788326198,111.6338372,1,179.00,110016 +cosmo,24,50,642.5804026597085,111.569865,1,180.00,96604 +cosmo,24,50,641.6456899256732,111.60405125,1,177.00,109012 +cosmo,24,50,643.8225426566651,111.61543264999999,1,179.00,108684 +cosmo,24,50,644.0238897933258,111.56679939999998,1,180.00,108640 +cosmo,25,50,642.6517688252438,111.45870374999998,1,177.00,102356 +cosmo,25,50,643.9132367274057,111.46134969999997,1,178.00,105656 +cosmo,25,50,644.5665818402362,111.66773065,1,180.00,108980 +cosmo,26,50,645.2623403977459,111.62810239999999,1,181.00,109920 +cosmo,26,50,644.1400151383324,111.59504539999999,1,178.00,109320 +cosmo,26,50,643.7668914431192,111.497087,1,180.00,109072 +cosmo,26,50,643.588699997718,111.5183081,1,181.00,106352 +cosmo,27,50,643.5570726226437,111.6113906,1,178.00,111316 +cosmo,27,50,643.9752848958867,111.738503,1,179.00,107940 +cosmo,27,50,641.9824717476511,111.8443868,1,181.00,100552 +cosmo,28,50,641.9047768458361,111.96095540000002,1,182.00,111808 +cosmo,28,50,642.4384622978276,112.1113148,1,179.00,107448 +cosmo,28,50,644.0178937651127,112.15863569999999,1,180.00,101644 +cosmo,29,50,643.0555723049924,112.37278219999997,1,182.00,107464 +cosmo,29,50,643.0682043589177,112.43174859999992,1,179.00,105792 +cosmo,29,50,641.451549715793,112.6820576,1,180.00,111728 +cosmo,29,50,642.9784893086792,112.72911715,1,181.00,112268 +cosmo,30,50,643.4575482418287,112.68217480000001,1,179.00,100796 +cosmo,30,50,643.7506224467696,112.66848159999998,1,180.00,102356 +cosmo,30,50,643.3180539931458,112.68112,1,181.00,101680 +cosmo,31,50,644.1650549581683,112.452712,1,182.00,111536 +cosmo,31,50,643.9694436940231,112.41653685,1,180.00,105564 +cosmo,31,50,643.5783429525172,112.3750029,1,181.00,108004 +cosmo,31,50,645.0265066940746,112.30572109999997,1,182.00,100836 +cosmo,32,50,645.1724643288227,112.26626209999999,1,180.00,98972 +cosmo,32,50,645.204005819002,112.26747995000001,1,181.00,106668 +cosmo,32,50,644.9876070357834,112.1169473,1,182.00,98964 +cosmo,33,50,645.1739520304678,112.1331055,1,183.00,104092 +cosmo,33,50,645.0838150278372,112.05077424999999,1,181.00,103860 +cosmo,33,50,645.5947914996708,111.94518624999995,1,182.00,106840 +cosmo,33,50,644.5259733025373,111.9149272,1,183.00,107092 +cosmo,34,50,645.780735302613,111.82374769999993,1,180.00,109372 +cosmo,34,50,646.5287017819725,111.86274069999999,1,182.00,110148 +cosmo,34,50,645.3837914565233,111.8588395,1,183.00,98932 +cosmo,35,50,645.4006081144804,111.9659652,1,184.00,107764 +cosmo,35,50,644.7194512597449,112.01269650000003,1,181.00,105772 +cosmo,35,50,645.1066441186126,111.9487666,1,182.00,109732 +cosmo,36,50,646.3410612638376,111.79654715,1,184.00,104808 +cosmo,36,50,647.0536664845407,111.8588395,1,181.00,108328 +cosmo,36,50,646.9288424264039,111.8421278,1,182.00,103364 +cosmo,36,50,646.6006967637795,111.836515,1,183.00,103508 +cosmo,37,50,644.916997490032,111.95404105,1,181.00,104696 +cosmo,37,50,645.7469069875104,111.9165396,1,182.00,105944 +cosmo,37,50,645.2412688328867,111.961145,1,183.00,104368 +cosmo,38,50,646.4700747695583,111.86600440000001,1,184.00,111108 +cosmo,38,50,646.6522332302663,111.85981479999998,1,182.00,105272 +cosmo,38,50,647.0166435225377,111.8425796,1,183.00,114036 +cosmo,38,50,645.8889147162083,111.78902049999998,1,184.00,115196 +cosmo,39,50,647.1094323953597,111.73659425,1,182.00,109424 +cosmo,39,50,647.6014161653252,111.72368039999999,1,183.00,111184 +cosmo,39,50,646.8400754539507,111.68326744999999,1,184.00,100320 +cosmo,40,50,647.0048355314465,111.68326744999999,1,185.00,110216 +cosmo,40,50,647.1151709177465,111.70401169999998,1,183.00,109816 +cosmo,40,50,647.1331348234144,111.74032049999998,1,184.00,105032 +cosmo,41,50,646.6927983583423,111.78282449999995,1,185.00,108736 +cosmo,41,50,646.6647820341154,111.7708598,1,182.00,114860 +cosmo,41,50,646.6507387395327,111.84038575000001,1,183.00,105132 +cosmo,41,50,646.5343814820807,111.76771819999999,1,184.00,101396 +cosmo,42,50,647.4613321311234,111.82713234999999,1,182.00,107340 +cosmo,42,50,647.5511718908175,111.75618009999998,1,183.00,104844 +cosmo,42,50,647.9172809228654,111.7135998,1,184.00,103368 +cosmo,43,50,647.3258746666426,111.70834405,1,185.00,106552 +cosmo,43,50,646.9508051762712,111.68732159999999,1,183.00,105412 +cosmo,43,50,647.3081745571584,111.65800459999998,1,184.00,102796 +cosmo,44,50,647.4078167932063,111.6339681,1,185.00,105268 +cosmo,44,50,648.0152145218593,111.68568475,1,183.00,102156 +cosmo,44,50,647.01451622735,111.68561475,1,184.00,104012 +cosmo,44,50,647.7692824074903,111.6845472,1,185.00,100536 +cosmo,45,50,646.800337847653,111.75875175,1,183.00,109964 +cosmo,45,50,647.038157381699,111.79243939999998,1,184.00,103748 +cosmo,45,50,646.389899306955,111.800037,1,185.00,95752 +cosmo,46,50,647.6504747142782,111.92262514999994,1,186.00,108628 +cosmo,46,50,647.682983987011,111.85760865,1,184.00,109632 +cosmo,46,50,647.5717684047868,111.8385794,1,185.00,112192 +cosmo,47,50,646.9139807738915,111.84529039999998,1,186.00,106784 +cosmo,47,50,647.0587293596905,111.90677319999999,1,184.00,109348 +cosmo,47,50,647.977356482985,111.90444679999999,1,185.00,107564 +cosmo,47,50,648.4122996200819,111.83579089999999,1,185.00,107212 +cosmo,48,50,648.2646482869857,111.83935355,1,184.00,104888 +cosmo,48,50,647.6114890810017,111.87684139999999,1,184.00,104336 +cosmo,48,50,647.5274360823678,111.88177819999999,1,185.00,105712 +cosmo,49,50,647.7160634208935,111.8265485,1,186.00,107008 +cosmo,49,50,647.7369826600774,111.823656,1,184.00,104692 +cosmo,49,50,648.4796769588703,111.76067775,1,185.00,105100 +cosmo,50,50,648.036375245393,111.727166,1,186.00,108604 +cosmo,50,50,648.9015478733943,111.72890879999997,1,184.00,104744 +cosmo,50,50,648.4694221842382,111.736976,1,185.00,112632 +cosmo,50,50,648.0734337776458,111.77261325,1,186.00,107480 +cosmo,51,50,648.7988487777103,111.727166,1,184.00,107740 +cosmo,51,50,648.9249977445271,111.79545175,1,185.00,98712 +cosmo,51,50,648.9602228900492,111.76513609999998,1,186.00,106040 +cosmo,52,50,648.8397955914595,111.7131046,1,187.00,108332 +cosmo,52,50,648.8292544308324,111.6948875,1,185.00,108876 +cosmo,52,50,648.9154221756967,111.6924344,1,186.00,109052 +cosmo,53,50,649.2975864821793,111.6671386,1,187.00,99668 +cosmo,53,50,648.6689721338787,111.67969025,1,185.00,106528 +cosmo,53,50,649.7337799839936,111.6857285,1,186.00,100460 +cosmo,54,50,649.7386396970581,111.68557974999999,1,187.00,105272 +cosmo,54,50,650.0158607643526,111.66615184999999,1,185.00,104864 +cosmo,54,50,649.8555135990971,111.6792055,1,186.00,105236 +cosmo,54,50,649.1615542712318,111.6620208,1,186.00,107892 +cosmo,55,50,649.818805264775,111.68352339999998,1,185.00,106544 +cosmo,55,50,649.5185056824935,111.68735995,1,185.00,99328 +cosmo,55,50,649.5972102733433,111.7666781,1,186.00,106092 +cosmo,56,50,649.3386786172674,111.83986965000001,1,187.00,107208 +cosmo,56,50,649.2223968747661,111.82791125,1,185.00,107780 +cosmo,56,50,648.7293255428906,111.79067284999995,1,186.00,106000 +cosmo,57,50,648.8914582992306,111.823656,1,187.00,108972 +cosmo,57,50,649.4608820947644,111.83391729999998,1,185.00,110056 +cosmo,57,50,648.869205470004,111.80255999999997,1,186.00,105464 +cosmo,57,50,649.0462389690649,111.823823,1,187.00,101384 +cosmo,58,50,649.6152794429378,111.83192149999999,1,185.00,110904 +cosmo,58,50,648.9574735253902,111.82362260000001,1,186.00,102096 +cosmo,58,50,649.5538185964027,111.76698384999999,1,187.00,98496 +cosmo,59,50,649.0952841179534,111.76102069999996,1,185.00,110336 +cosmo,59,50,649.4585879614092,111.80255999999997,1,186.00,105036 +cosmo,59,50,649.1888871953987,111.8236894,1,187.00,101912 +cosmo,60,50,649.9276004149377,111.7585778,1,188.00,105204 +cosmo,60,50,649.857821473338,111.75999185,1,186.00,105592 +cosmo,60,50,649.8879598319864,111.7973034,1,187.00,105672 +cosmo,61,50,649.2644460310727,111.791344,1,188.00,105820 +apollo-router,2,50,69.15283960126634,176.22806359999993,1,149.00,149164 +apollo-router,3,50,130.3877598316954,548.37022,1,152.00,152160 +apollo-router,3,50,152.36034450455335,519.3823065499997,1,155.00,154836 +apollo-router,3,50,166.00103574003174,488.79189794999996,1,150.00,157492 +apollo-router,4,50,182.9688724145757,467.07639305,1,153.00,160588 +apollo-router,4,50,189.0534571758831,448.304686,1,156.00,169520 +apollo-router,4,50,204.44032699622508,410.10434699999973,1,158.00,168708 +apollo-router,4,50,210.27244251614795,383.6286511,1,154.00,165984 +apollo-router,5,50,212.64151227895547,367.8735599999999,1,157.00,165984 +apollo-router,5,50,218.68237334371682,346.23131679999995,1,159.00,163604 +apollo-router,5,50,221.91663733711368,319.4261850499992,1,155.00,160924 +apollo-router,6,50,225.4182023894181,287.540377,1,157.00,160444 +apollo-router,6,50,229.52484180243772,258.243837,1,160.00,160572 +apollo-router,6,50,231.08374424117216,255.68200819999996,1,156.00,160572 +apollo-router,7,50,230.86351715857217,252.45334335000007,1,158.00,160316 +apollo-router,7,50,235.8431370729149,249.988052,1,160.00,161420 +apollo-router,7,50,232.71569857898265,249.0194475,1,156.00,160992 +apollo-router,8,50,236.8540580811342,247.73236939999995,1,159.00,159352 +apollo-router,8,50,235.88779492597368,247.9207458,1,161.00,160972 +apollo-router,8,50,239.5926024555692,247.67637119999995,1,163.00,159484 +apollo-router,8,50,240.915072590359,246.1178094999999,1,159.00,159228 +apollo-router,9,50,241.51087079969855,244.9979747,1,161.00,158088 +apollo-router,9,50,245.84360709375883,245.3372546,1,164.00,156564 +apollo-router,9,50,246.15894997724982,244.8513668999999,1,160.00,159124 +apollo-router,10,50,244.39984292613715,243.583343,1,162.00,159124 +apollo-router,10,50,247.27540175837555,242.35865,1,164.00,160608 +apollo-router,10,50,246.25472690161922,241.3754601999999,1,160.00,160132 +apollo-router,11,50,248.83661792936766,244.20853325000002,1,162.00,160228 +apollo-router,11,50,250.50960085616762,243.422139,1,164.00,159568 +apollo-router,11,50,250.90975898610944,242.101188,1,166.00,162416 +apollo-router,11,50,249.9643837006893,242.17928519999998,1,163.00,167436 +apollo-router,12,50,252.65429649693868,241.20769479999998,1,165.00,163980 +apollo-router,12,50,254.03444416871324,242.00698034999996,1,167.00,165132 +apollo-router,12,50,253.29787018147562,242.0584235,1,163.00,165132 +apollo-router,13,50,255.19455930973245,241.38178775,1,165.00,165132 +apollo-router,13,50,257.2739883458067,240.79298519999995,1,167.00,164268 +apollo-router,13,50,256.8079054588902,240.01085399999997,1,163.00,165804 +apollo-router,14,50,259.6408420704325,239.4741956999998,1,165.00,168420 +apollo-router,14,50,261.0360994272208,237.99917745,1,167.00,170084 +apollo-router,14,50,261.7463175048125,236.75459379999995,1,169.00,161220 +apollo-router,14,50,262.0526631579942,236.21261275,1,165.00,161220 +apollo-router,15,50,265.0033130174279,235.248091,1,167.00,163908 +apollo-router,15,50,265.0846256514299,234.7135051,1,169.00,163908 +apollo-router,15,50,266.53340195176116,234.08458379999996,1,165.00,163780 +apollo-router,16,50,268.25643911717765,233.341062,1,167.00,172100 +apollo-router,16,50,268.1722424690252,232.744256,1,169.00,171324 +apollo-router,16,50,269.58536044211115,232.20085314999992,1,170.00,173260 +apollo-router,16,50,271.28542809781834,231.584846,1,167.00,173516 +apollo-router,17,50,270.2156288859327,231.486633,1,169.00,173212 +apollo-router,17,50,271.7749377972735,230.9248462,1,170.00,172580 +apollo-router,17,50,273.4509033370717,231.2515053,1,167.00,173932 +apollo-router,18,50,273.07261765178697,230.89543179999998,1,169.00,174924 +apollo-router,18,50,273.21972999502765,230.56874959999996,1,170.00,177284 +apollo-router,18,50,274.8364062861216,230.22563025,1,172.00,177284 +apollo-router,18,50,274.9852525133978,230.66847729999995,1,169.00,178172 +apollo-router,19,50,276.19614055100254,229.83168049999983,1,170.00,173144 +apollo-router,19,50,277.26391180351584,228.99147244999997,1,172.00,176088 +apollo-router,19,50,278.88353702907364,228.76881674999998,1,169.00,175152 +apollo-router,20,50,280.0705429905813,228.33905285,1,170.00,174664 +apollo-router,20,50,278.774494225442,228.12435920000001,1,172.00,174664 +apollo-router,20,50,280.01619969688636,227.7417682,1,173.00,173456 +apollo-router,20,50,281.4389792545134,227.316507,1,170.00,173456 +apollo-router,21,50,281.5474208788993,227.11514434999995,1,172.00,168344 +apollo-router,21,50,282.4337577188997,226.83263909999997,1,173.00,174256 +apollo-router,21,50,283.3229344961007,226.30502079999997,1,170.00,170800 +apollo-router,22,50,284.00785388466755,225.98759289999998,1,172.00,170800 +apollo-router,22,50,283.67323682489405,225.78233375000002,1,173.00,172028 +apollo-router,22,50,284.88707485228105,225.35000889999998,1,175.00,185752 +apollo-router,22,50,285.78588816199533,225.1004615,1,172.00,176300 +apollo-router,23,50,285.1697356120992,225.0585335,1,173.00,175008 +apollo-router,23,50,286.06327444383163,224.8642139999999,1,174.00,175296 +apollo-router,23,50,286.76046629503037,224.4107667999999,1,172.00,167532 +apollo-router,24,50,286.02841156293886,224.11818559999998,1,173.00,166824 +apollo-router,24,50,287.11432261364456,223.959049,1,174.00,173736 +apollo-router,24,50,287.9907710023389,223.7074184,1,176.00,172260 +apollo-router,24,50,287.5767697074022,223.50749889999994,1,173.00,169236 +apollo-router,25,50,287.9600279164158,223.3724615,1,174.00,169404 +apollo-router,25,50,288.3717538929234,223.16792554999998,1,176.00,166736 +apollo-router,25,50,289.4689932229068,222.82099359999998,1,173.00,164956 +apollo-router,26,50,289.9994067339255,222.54367809999997,1,174.00,164956 +apollo-router,26,50,289.639443021071,222.311931,1,176.00,167004 +apollo-router,26,50,289.34975583379367,222.04155465,1,177.00,164824 +apollo-router,26,50,290.3703554870213,221.7070542,1,174.00,164824 +apollo-router,27,50,290.9138470097392,221.61628914999994,1,175.00,164824 +apollo-router,27,50,290.5168739300059,221.32473620000002,1,177.00,158480 +apollo-router,27,50,291.0536770524776,221.0724358,1,174.00,160252 +apollo-router,28,50,291.60145314995793,220.72789739999988,1,175.00,159716 +apollo-router,28,50,292.1960773255769,220.49284719999994,1,177.00,166704 +apollo-router,28,50,291.6315377260188,220.38056399999994,1,178.00,166156 +apollo-router,28,50,291.6039763262676,220.404384,1,175.00,164872 +apollo-router,29,50,292.42157348484454,220.212272,1,176.00,164992 +apollo-router,29,50,293.32158919076363,219.905778,1,178.00,165656 +apollo-router,29,50,293.379313084958,219.730887,1,175.00,162068 +apollo-router,30,50,293.70766640471,219.58688024999998,1,176.00,164884 +apollo-router,30,50,294.16991552953124,219.29328459999996,1,178.00,164360 +apollo-router,30,50,294.1523749129055,219.21808599999997,1,179.00,162104 +apollo-router,30,50,294.6574685953492,218.961702,1,176.00,162940 +apollo-router,31,50,295.0519423901536,218.75533134999998,1,177.00,164220 +apollo-router,31,50,294.6768098622575,218.77614204999992,1,179.00,163932 +apollo-router,31,50,295.0453464517338,218.53845389999987,1,176.00,161260 +apollo-router,32,50,295.1875029120238,218.31336579999987,1,177.00,165484 +apollo-router,32,50,295.3762507878225,218.1726337,1,178.00,164112 +apollo-router,32,50,295.74759014651926,218.17380590000002,1,180.00,167016 +apollo-router,32,50,295.43763183380645,218.00040064999996,1,177.00,166756 +apollo-router,33,50,295.81529499272324,217.9328085,1,178.00,169188 +apollo-router,33,50,296.33590635912975,217.62664325,1,179.00,170340 +apollo-router,33,50,297.1888111478042,217.58989129999995,1,177.00,170068 +apollo-router,34,50,296.70543959894195,217.3535543,1,178.00,170068 +apollo-router,34,50,297.13742769149786,217.16760620000002,1,179.00,169588 +apollo-router,34,50,297.16137575668574,217.101784,1,180.00,173812 +apollo-router,34,50,298.6515584493711,216.968128,1,178.00,166148 +apollo-router,35,50,298.04922399128384,216.70289029999998,1,179.00,167672 +apollo-router,35,50,298.74130960665735,216.57466424999998,1,180.00,169900 +apollo-router,35,50,298.81692185792656,216.36057619999997,1,178.00,171948 +apollo-router,36,50,299.1623194203905,216.1432678,1,179.00,173996 +apollo-router,36,50,299.58625050581395,215.92811575,1,180.00,173720 +apollo-router,36,50,299.8322465963523,215.770918,1,181.00,170748 +apollo-router,36,50,299.95001388181237,215.61530285,1,179.00,168320 +apollo-router,37,50,299.49047275882583,215.48919984999998,1,180.00,173288 +apollo-router,37,50,299.8994639372498,215.34568960000001,1,181.00,172408 +apollo-router,37,50,300.48574044809357,215.25808874999998,1,179.00,175252 +apollo-router,38,50,300.5897822317237,215.1642934,1,180.00,168328 +apollo-router,38,50,300.50471783554696,215.142012,1,181.00,168200 +apollo-router,38,50,300.972221590853,214.9917632,1,182.00,166812 +apollo-router,38,50,300.6936729242768,215.11328379999992,1,180.00,165740 +apollo-router,39,50,300.33074270243276,215.00808475,1,181.00,163488 +apollo-router,39,50,301.35039392767465,214.861819,1,182.00,158328 +apollo-router,39,50,301.47548387318744,214.6113180999999,1,180.00,157784 +apollo-router,40,50,301.55251413665684,214.49345395,1,181.00,159388 +apollo-router,40,50,301.8507134823103,214.4238267,1,182.00,159516 +apollo-router,40,50,302.1922941287109,214.2136155,1,182.00,159644 +apollo-router,40,50,302.59950046081485,213.96710345,1,180.00,157904 +apollo-router,41,50,302.4106919921446,213.8143875,1,181.00,158588 +apollo-router,41,50,302.897548927138,214.12348525000002,1,182.00,157788 +apollo-router,41,50,302.4547538250073,213.9231768,1,180.00,160748 +apollo-router,42,50,302.7646137425706,213.46605779999993,1,181.00,162412 +apollo-router,42,50,302.9683316836726,213.333711,1,182.00,162352 +apollo-router,42,50,303.1921875019717,213.1963685,1,180.00,160708 +apollo-router,43,50,303.7236141541085,213.06771,1,181.00,159024 +apollo-router,43,50,303.38521929867505,212.9452035,1,182.00,158184 +apollo-router,43,50,303.511519395354,212.93738175,1,183.00,159336 +apollo-router,43,50,303.7156596094555,212.88169339999996,1,181.00,163344 +apollo-router,44,50,303.55811312636837,212.7131968,1,182.00,159388 +apollo-router,44,50,303.24555746934465,212.669593,1,183.00,160156 +apollo-router,44,50,303.93376469128907,212.49073994999998,1,181.00,158768 +apollo-router,45,50,304.18853028921023,212.35214179999994,1,182.00,158384 +apollo-router,45,50,304.4676474335759,212.27524615,1,183.00,158568 +apollo-router,45,50,304.9776216957659,212.14908434999998,1,184.00,160448 +apollo-router,45,50,304.7705074408532,212.01032724999996,1,182.00,159356 +apollo-router,46,50,304.60947580386255,211.9662857,1,183.00,162908 +apollo-router,46,50,304.9754181558963,211.78105399999995,1,184.00,163036 +apollo-router,46,50,305.14683229218264,211.6834735,1,182.00,162476 +apollo-router,47,50,305.14423025276164,211.9328668,1,183.00,161960 +apollo-router,47,50,305.5672160529167,211.71725559999996,1,183.00,162700 +apollo-router,47,50,305.5285263732147,211.62576925,1,181.00,162428 +apollo-router,48,50,305.79716928011896,211.515105,1,182.00,162428 +apollo-router,48,50,306.0608332897774,211.427811,1,183.00,165580 +apollo-router,48,50,306.1792644700861,211.22473129999997,1,184.00,165580 +apollo-router,48,50,306.2031150115034,211.45080965,1,182.00,161288 +apollo-router,49,50,306.6166458739434,211.2710846999999,1,183.00,163332 +apollo-router,49,50,306.85476080277834,211.1574549,1,184.00,170188 +apollo-router,49,50,306.76758427019996,211.15365400000002,1,182.00,172108 +apollo-router,50,50,307.3407206547739,211.1371721,1,183.00,172272 +apollo-router,50,50,307.3665569015617,211.0759455,1,184.00,172040 +apollo-router,50,50,307.65945665613305,210.93400209999996,1,185.00,168396 +apollo-router,50,50,307.7421021783027,210.86969059999998,1,183.00,170188 +apollo-router,51,50,307.45532659935645,210.7804833,1,184.00,172108 +apollo-router,51,50,308.2582139946153,210.5931238,1,185.00,169608 +apollo-router,51,50,308.4944905642524,210.48599739999997,1,183.00,166180 +apollo-router,52,50,308.5260261706648,210.39151689999997,1,184.00,165924 +apollo-router,52,50,308.0740919656391,210.29972,1,184.00,167460 +apollo-router,52,50,308.65386687986586,210.1352953,1,185.00,167308 +apollo-router,52,50,309.11610596504835,210.01661799999997,1,183.00,163540 +apollo-router,53,50,308.59817996228264,209.88584799999992,1,184.00,165844 +apollo-router,53,50,309.16833243306843,209.6818272,1,185.00,160572 +apollo-router,53,50,309.3889922648919,209.58038535,1,183.00,162632 +apollo-router,54,50,309.58526913380246,209.54385335,1,184.00,165524 +apollo-router,54,50,309.83342443271545,209.4483053,1,185.00,163904 +apollo-router,54,50,309.97430082051596,209.20775974999995,1,183.00,163776 +apollo-router,55,50,309.9588342859684,209.1306135,1,184.00,163768 +apollo-router,55,50,310.3027094840305,209.080534,1,185.00,163768 +apollo-router,55,50,309.70478903040225,209.04296719999996,1,186.00,163768 +apollo-router,55,50,310.16694200818665,208.909767,1,184.00,161120 +apollo-router,56,50,310.142383370678,208.85609339999996,1,185.00,160772 +apollo-router,56,50,310.37970089064544,208.74606475,1,185.00,160772 +apollo-router,56,50,310.5718547956194,208.66521319999998,1,184.00,162608 +apollo-router,57,50,310.77516383011795,208.5676035,1,185.00,166936 +apollo-router,57,50,310.6638892435927,208.5075756,1,185.00,166348 +apollo-router,57,50,310.8625111106012,208.4410996,1,186.00,162216 +apollo-router,57,50,311.0684511918269,208.3991378,1,184.00,159636 +apollo-router,58,50,310.8373803425274,208.30006260000002,1,185.00,157284 +apollo-router,58,50,311.26185331495526,208.15813104999998,1,186.00,158152 +apollo-router,58,50,311.54361567621623,208.09099894999997,1,184.00,156956 +apollo-router,59,50,311.73670597181916,207.99584425,1,185.00,157876 +apollo-router,59,50,311.90270504688135,207.9173075,1,186.00,159412 +apollo-router,59,50,312.3262684864346,207.9051879499999,1,184.00,165636 +apollo-router,60,50,312.19290642765407,207.83037570000002,1,185.00,165208 +apollo-router,60,50,312.1307711201263,207.87808775,1,186.00,165208 +apollo-router,60,50,312.27194080280333,207.8617248,1,186.00,165248 +apollo-router,60,50,312.5145361617582,207.76324629999996,1,185.00,164988 +apollo-router,61,50,312.6236047232587,207.71988570000005,1,186.00,165128 +apollo-router,61,50,312.70673329361307,207.75170469999998,1,186.00,167292 +apollo-router,61,50,312.53321262637274,207.72385515,1,185.00,165880 +apollo-router,62,50,312.6570846850909,207.61901735,1,185.00,165300 +apollo-gateway,2,50,87.75075988318963,10.729488199999999,1,115.60,770208 +apollo-gateway,2,50,65.72937841903901,345.20870399999995,1,112.30,770208 +apollo-gateway,2,50,96.74402199264885,768.1897743,1,114.30,772384 +apollo-gateway,3,50,105.21200847692275,753.6418400999999,1,115.30,771960 +apollo-gateway,3,50,101.44991239619183,741.1002615999996,1,110.90,771960 +apollo-gateway,3,50,104.65996135545554,720.8992077999999,1,112.90,771960 +apollo-gateway,3,50,106.19788472368943,694.65718925,1,113.90,771960 +apollo-gateway,4,50,103.54988161406162,681.3536932000002,1,114.90,771960 +apollo-gateway,4,50,107.75566152689194,656.7469027499998,1,111.60,771960 +apollo-gateway,4,50,107.45412426847435,641.2490875000001,1,112.60,771960 +apollo-gateway,5,50,107.70648035704576,630.9574931999992,1,113.60,771960 +apollo-gateway,5,50,110.22292604327718,605.0117034499993,1,114.60,771960 +apollo-gateway,5,50,110.05866362795614,578.7694316999998,1,111.40,771960 +apollo-gateway,5,50,110.34134758533229,568.4649214,1,112.40,772472 +apollo-gateway,6,50,111.48978386878674,558.3649631999997,1,113.40,772472 +apollo-gateway,6,50,110.85146311321957,553.1252920000002,1,114.40,772472 +apollo-gateway,6,50,110.72977622646812,545.7513443999999,1,111.30,770540 +apollo-gateway,6,50,111.090804043025,542.0037261000001,1,112.30,770540 +apollo-gateway,7,50,111.45275784263815,538.5621967999997,1,113.30,770540 +apollo-gateway,7,50,112.10267988049985,532.6373550999999,1,115.30,770540 +apollo-gateway,7,50,111.51971011382315,529.3753507999999,1,111.00,770540 +apollo-gateway,7,50,111.68667384346594,525.6495441,1,112.00,770540 +apollo-gateway,8,50,112.85526423251756,522.674836,1,113.00,770540 +apollo-gateway,8,50,112.90081352464249,520.3805635,1,109.80,770540 +apollo-gateway,8,50,112.75480578142113,516.2744374999999,1,110.80,770540 +apollo-gateway,8,50,113.10987059067708,515.48399775,1,111.80,770540 +apollo-gateway,9,50,113.48877811288888,515.0195724,1,112.80,770540 +apollo-gateway,9,50,113.7920663901842,514.6653822000001,1,110.60,770540 +apollo-gateway,9,50,112.72958518744571,512.2156001999998,1,111.60,770540 +apollo-gateway,10,50,113.20952342029659,510.67591319999997,1,112.60,770540 +apollo-gateway,10,50,114.24648633472586,508.6007627999999,1,113.60,770540 +apollo-gateway,10,50,113.76657151674777,508.0907197999997,1,110.50,770540 +apollo-gateway,10,50,113.58368674857115,505.933052,1,111.50,770540 +apollo-gateway,11,50,114.6135151910621,505.36682420000005,1,112.50,770540 +apollo-gateway,11,50,114.50739710508908,504.974894,1,113.50,770540 +apollo-gateway,11,50,114.33121355946196,503.130901,1,110.40,770540 +apollo-gateway,11,50,113.70876228403219,502.84934965,1,111.40,770540 +apollo-gateway,12,50,114.78401496138275,502.84691050000004,1,112.40,770540 +apollo-gateway,12,50,115.01791903339686,501.2538213,1,109.20,770540 +apollo-gateway,12,50,114.54977120123779,501.13213579999996,1,110.20,769604 +apollo-gateway,12,50,114.63455608858388,501.196941,1,111.20,769604 +apollo-gateway,13,50,114.77566721501944,501.09973319999995,1,112.20,769604 +apollo-gateway,13,50,114.80266466060765,500.74803899999995,1,110.10,769604 +apollo-gateway,13,50,115.11253453168669,500.46191454999996,1,110.10,769604 +apollo-gateway,14,50,114.34640843459503,500.52759575,1,111.10,769604 +apollo-gateway,14,50,114.21838193153322,500.4289405,1,112.10,769604 +apollo-gateway,14,50,115.48624060789473,500.3472442,1,109.90,769604 +apollo-gateway,14,50,115.02377489929361,500.3327126,1,110.90,769604 +apollo-gateway,15,50,115.27207428208175,498.80859150000003,1,110.90,769604 +apollo-gateway,15,50,115.8305544158567,498.84383164999997,1,111.90,769604 +apollo-gateway,15,50,115.34442587059975,498.14093919999993,1,109.80,769604 +apollo-gateway,15,50,115.6045929517349,497.7115043999999,1,110.80,769604 +apollo-gateway,16,50,115.27565925344636,497.5304117999999,1,111.80,769604 +apollo-gateway,16,50,115.38779435191442,497.7718686,1,111.80,769604 +apollo-gateway,16,50,115.86110726349418,497.2304633999999,1,109.70,769604 +apollo-gateway,16,50,115.35646456925929,497.1719718,1,110.70,769604 +apollo-gateway,17,50,115.57788366710628,496.682341,1,111.70,769604 +apollo-gateway,17,50,115.56299514972119,497.0257428,1,108.60,769604 +apollo-gateway,17,50,115.81574921927002,497.1719718,1,109.60,769604 +apollo-gateway,17,50,115.75021525266071,497.9040495,1,110.60,769604 +apollo-gateway,18,50,115.2744564037209,497.4096833999999,1,111.60,769604 +apollo-gateway,18,50,116.07385876882995,496.681199,1,109.60,769604 +apollo-gateway,18,50,115.93681721038297,496.60035245,1,109.60,769604 +apollo-gateway,19,50,115.59733864282941,496.55543769999997,1,110.60,769604 +apollo-gateway,19,50,115.52562776827824,497.923137,1,111.60,769604 +apollo-gateway,19,50,115.6031078867079,498.71671059999994,1,109.40,769604 +apollo-gateway,19,50,115.81513264308542,498.82545009999996,1,110.40,769604 +apollo-gateway,20,50,115.88281414217947,498.60368965,1,110.40,769604 +apollo-gateway,20,50,115.49627393692738,498.93418959999997,1,111.40,769604 +apollo-gateway,20,50,115.82778904760161,498.3773772999999,1,109.30,769604 +apollo-gateway,20,50,116.21106549250044,497.9269545,1,110.30,769604 +apollo-gateway,21,50,115.81433277214919,498.3248355,1,110.30,769604 +apollo-gateway,21,50,115.70544262010318,497.90595825,1,108.30,769604 +apollo-gateway,21,50,116.16130856351973,496.90875959999994,1,109.30,769604 +apollo-gateway,21,50,116.22753654993586,496.698329,1,110.30,769604 +apollo-gateway,22,50,116.12119153427692,496.56442065,1,110.30,769604 +apollo-gateway,22,50,115.86791487014207,495.3577317999999,1,108.10,769604 +apollo-gateway,22,50,115.87841103195932,495.1635976,1,109.10,769604 +apollo-gateway,23,50,116.4435246621339,495.80254609999974,1,110.10,769604 +apollo-gateway,23,50,116.1440486940417,496.53747179999993,1,111.10,769604 +apollo-gateway,23,50,115.95240639798335,495.20550034999997,1,109.00,769604 +apollo-gateway,23,50,116.31653341937658,495.0779656,1,109.00,769604 +apollo-gateway,24,50,116.47154807714654,495.10982839999997,1,110.00,769604 +apollo-gateway,24,50,116.29937386575247,495.01796140000005,1,111.00,769604 +apollo-gateway,24,50,116.02018401274472,494.9278221999999,1,109.00,769604 +apollo-gateway,24,50,116.41906236924818,495.07381710000004,1,109.00,769604 +apollo-gateway,25,50,116.55117296405002,495.01796140000005,1,110.00,769604 +apollo-gateway,25,50,116.75709786430193,494.53426360000003,1,111.00,769604 +apollo-gateway,25,50,116.89102533095394,493.6914426,1,108.90,769604 +apollo-gateway,25,50,116.48945774932629,493.68945965,1,109.90,769604 +apollo-gateway,26,50,116.59578928672636,493.52451550000006,1,109.90,769604 +apollo-gateway,26,50,116.82074044702654,493.22920569999997,1,107.90,769604 +apollo-gateway,26,50,116.91018911678712,493.0904094,1,108.90,769604 +apollo-gateway,27,50,116.82361838744082,492.84400775,1,109.90,769604 +apollo-gateway,27,50,116.85178037190269,492.80700635,1,109.90,769604 +apollo-gateway,27,50,116.98924703148275,492.76337459999996,1,108.80,769604 +apollo-gateway,27,50,117.03697343319723,492.638429,1,108.80,769604 +apollo-gateway,28,50,116.92485516542227,492.47351949999995,1,109.80,769604 +apollo-gateway,28,50,116.74891623134509,492.46191,1,109.80,769604 +apollo-gateway,28,50,117.11605444573203,492.75412689999996,1,108.80,769604 +apollo-gateway,28,50,116.92466509641055,492.7314886,1,108.80,769604 +apollo-gateway,29,50,116.76000477098742,492.8162567,1,109.80,769604 +apollo-gateway,29,50,116.8783362124972,492.7850244,1,110.80,769604 +apollo-gateway,29,50,117.03018068368915,492.75035384999995,1,108.70,769604 +apollo-gateway,29,50,116.77174121385836,492.7390347,1,108.70,769604 +apollo-gateway,30,50,116.8929090047268,492.686212,1,109.70,769604 +apollo-gateway,30,50,116.77651759471175,492.481812,1,107.70,769604 +apollo-gateway,30,50,117.1251813634813,492.4801535,1,108.70,769604 +apollo-gateway,30,50,116.99995000356274,492.7625238,1,109.70,769604 +apollo-gateway,31,50,116.92935466121332,492.7648635,1,109.70,769604 +apollo-gateway,31,50,116.99623505232981,492.7691099,1,107.60,769604 +apollo-gateway,31,50,117.1360807873384,492.71262335,1,108.60,769604 +apollo-gateway,32,50,117.15125284343101,492.48844599999995,1,109.60,769604 +apollo-gateway,32,50,117.01403117750056,492.590646,1,109.60,769604 +apollo-gateway,32,50,117.05964734692137,492.4462178999999,1,108.50,769604 +apollo-gateway,32,50,117.28290533693645,492.304039,1,108.50,769604 +apollo-gateway,33,50,117.10548585097669,492.2570043,1,109.50,769604 +apollo-gateway,33,50,117.05551734812967,492.295603,1,109.50,769604 +apollo-gateway,33,50,117.05409658080123,492.2570043,1,108.50,769604 +apollo-gateway,33,50,117.15861818810411,492.173502,1,108.50,769604 +apollo-gateway,34,50,117.1970498165531,492.11066759999994,1,109.50,769604 +apollo-gateway,34,50,117.04534717436542,492.07401419999997,1,109.50,769604 +apollo-gateway,34,50,117.01957421811183,491.90832164999995,1,108.40,769604 +apollo-gateway,34,50,116.90144666149295,491.8756936,1,108.40,769604 +apollo-gateway,35,50,117.21422422541734,491.8663713,1,109.40,769604 +apollo-gateway,35,50,117.05181401917767,492.02021039999994,1,107.30,769604 +apollo-gateway,35,50,116.98443955675268,492.04857405,1,108.30,769604 +apollo-gateway,36,50,117.26270990932827,491.97649889999997,1,109.30,769604 +apollo-gateway,36,50,117.18694284991184,491.93628855,1,109.30,769604 +apollo-gateway,36,50,117.04426204520882,491.99835464999995,1,108.20,769604 +apollo-gateway,36,50,117.32085659810853,491.841806,1,108.20,769604 +apollo-gateway,37,50,117.34927729895676,491.5491603,1,109.20,769604 +apollo-gateway,37,50,117.2318202375685,491.5282371,1,109.20,769604 +apollo-gateway,37,50,117.41247191500896,491.46015409999995,1,108.20,769604 +apollo-gateway,37,50,117.4992163886313,491.326963,1,108.20,769604 +apollo-gateway,38,50,117.41182980200561,491.23382,1,109.20,769604 +apollo-gateway,38,50,117.22208229354631,491.27858679999997,1,109.20,769604 +apollo-gateway,38,50,117.37852318395213,491.43161315000003,1,108.20,769604 +apollo-gateway,38,50,117.5349754130803,491.5312374,1,108.20,769604 +apollo-gateway,39,50,117.17785943287811,491.4791814000001,1,109.20,769604 +apollo-gateway,39,50,117.42988432976448,491.3108376,1,107.20,769604 +apollo-gateway,39,50,117.69092549524606,491.173161,1,108.20,769604 +apollo-gateway,39,50,117.4146720395742,490.9511605,1,108.20,769604 +apollo-gateway,40,50,117.49001306235041,491.0606646999999,1,109.20,769604 +apollo-gateway,40,50,117.35293753137668,490.64694159999993,1,107.10,769604 +apollo-gateway,40,50,117.71521567202089,490.62163759999993,1,108.10,769604 +apollo-gateway,41,50,117.66482475090224,490.5229606,1,108.10,769604 +apollo-gateway,41,50,117.53276795639692,490.5062808999999,1,109.10,769604 +apollo-gateway,41,50,117.44402393147114,490.538586,1,108.10,769604 +apollo-gateway,41,50,117.70494081379279,490.4796593,1,108.10,769604 +apollo-gateway,42,50,117.68028038385388,490.43489364999994,1,108.10,769604 +apollo-gateway,42,50,117.60820464400415,490.13138235,1,109.10,769604 +apollo-gateway,42,50,117.44090735331486,490.0628309499998,1,108.10,769604 +apollo-gateway,42,50,117.77154139729694,489.7565155999999,1,108.10,769604 +apollo-gateway,43,50,117.7206558411976,489.7281891,1,108.10,769604 +apollo-gateway,43,50,117.58749612768808,489.6821784,1,109.10,769604 +apollo-gateway,43,50,117.58547852037648,489.6467331999999,1,108.00,769604 +apollo-gateway,43,50,117.74886977748271,489.5557032,1,108.00,769604 +apollo-gateway,44,50,117.74764898864763,489.3106007999999,1,109.00,769604 +apollo-gateway,44,50,117.61206186933097,489.4582343999999,1,107.00,769604 +apollo-gateway,44,50,117.89136567803025,489.2203325,1,108.00,769604 +apollo-gateway,44,50,117.72925415931465,489.2042145,1,108.00,769604 +apollo-gateway,45,50,117.7587892245702,489.15586049999996,1,109.00,769604 +apollo-gateway,45,50,117.6381468959671,489.1333944,1,107.00,769604 +apollo-gateway,45,50,117.86185421790444,489.0655582,1,108.00,769604 +apollo-gateway,46,50,117.8561444605354,488.9777355,1,108.00,769604 +apollo-gateway,46,50,117.750114282023,489.4183992999999,1,109.00,769604 +apollo-gateway,46,50,117.91535468230002,489.224362,1,107.00,769604 +apollo-gateway,46,50,117.95021005825784,489.09880239999995,1,108.00,769604 +apollo-gateway,47,50,117.86311004534343,489.074588,1,108.00,769604 +apollo-gateway,47,50,117.75156252123436,489.0087576,1,109.00,769604 +apollo-gateway,47,50,117.82799438767994,489.07233055,1,107.90,769604 +apollo-gateway,47,50,117.89568607848645,489.1803925,1,107.90,769604 +apollo-gateway,48,50,117.88926417844259,489.2067742,1,107.90,769604 +apollo-gateway,48,50,117.88686292092687,489.1470666,1,108.90,769604 +apollo-gateway,48,50,117.92362479382983,489.04975605,1,107.90,769604 +apollo-gateway,48,50,117.98036496780213,489.0610433,1,107.90,769604 +apollo-gateway,49,50,117.85179906033815,489.0474986,1,108.90,769604 +apollo-gateway,49,50,117.94012789560976,489.05878585,1,106.90,769604 +apollo-gateway,49,50,118.04677732155805,489.0156514,1,107.90,769604 +apollo-gateway,50,50,117.95693078942345,489.1057208,1,107.90,769604 +apollo-gateway,50,50,117.80333351451132,489.091884,1,108.90,769604 +apollo-gateway,50,50,117.7136579194553,489.0259921,1,106.90,769604 +apollo-gateway,50,50,117.9932431433837,489.05878585,1,107.90,769604 +apollo-gateway,51,50,117.91604556705896,489.04072625000003,1,107.90,769604 +apollo-gateway,51,50,117.83634658149118,488.9574916,1,108.90,769604 +apollo-gateway,51,50,117.9285987801295,488.9200183,1,107.90,769604 +apollo-gateway,51,50,117.92000796258355,488.829681,1,107.90,769604 +apollo-gateway,52,50,117.91987861011525,488.9099457,1,107.90,769604 +apollo-gateway,52,50,117.81343690351059,488.6807014,1,106.80,769604 +apollo-gateway,52,50,117.91594531391496,488.53047089999995,1,107.80,769604 +apollo-gateway,52,50,117.77868838925072,488.3611587,1,107.80,769604 +apollo-gateway,53,50,117.92767439729826,488.6906675,1,107.80,769604 +apollo-gateway,53,50,117.87824168260477,488.4662402999999,1,106.80,769604 +apollo-gateway,53,50,117.94223739294029,488.6607691999999,1,107.80,769604 +apollo-gateway,54,50,117.9952460458043,488.9292527,1,107.80,769604 +apollo-gateway,54,50,117.95777840542902,488.8207627,1,108.80,769604 +apollo-gateway,54,50,117.95660974272823,488.7105996999999,1,106.80,769604 +apollo-gateway,54,50,118.01913033589416,488.5611081999999,1,107.80,769604 +apollo-gateway,55,50,118.05177020888608,488.48229795,1,107.80,769604 +apollo-gateway,55,50,117.86712369412211,488.4715928499999,1,108.80,769604 +apollo-gateway,55,50,117.94102520172696,488.1525211999999,1,106.80,769604 +apollo-gateway,55,50,118.09577116836434,488.92578979999996,1,107.80,769604 +apollo-gateway,56,50,117.90747250611292,488.92521265,1,107.80,769604 +apollo-gateway,56,50,118.01859762864368,488.6807014,1,108.80,769604 +apollo-gateway,56,50,118.13129092108203,488.5197657999999,1,107.80,769604 +apollo-gateway,56,50,117.88563675418597,488.7205657999999,1,107.80,769604 +apollo-gateway,57,50,118.04444484118875,488.52511834999996,1,107.80,769604 +apollo-gateway,57,50,118.08336488054734,488.5710742999999,1,106.60,769604 +apollo-gateway,57,50,118.04741219231572,488.50906069999996,1,107.60,769604 +apollo-gateway,58,50,117.94275786435601,488.48229795,1,107.60,769604 +apollo-gateway,58,50,117.92295531881823,488.18610614999994,1,107.60,769604 +apollo-gateway,58,50,118.02543630663929,488.2152260999999,1,106.60,769604 +apollo-gateway,58,50,118.12136390842352,488.0568575,1,107.60,769604 +apollo-gateway,59,50,117.99847478422471,488.2030650499998,1,107.60,769604 +apollo-gateway,59,50,117.96598007323472,488.3246755499998,1,108.60,769604 +apollo-gateway,59,50,117.90496916941036,488.43776084999996,1,106.60,769604 +apollo-gateway,59,50,118.08279339425289,488.2152260999999,1,107.60,769604 +apollo-gateway,60,50,118.07284984373901,488.3246755499998,1,107.60,769604 +apollo-gateway,60,50,117.96775047384118,488.1237340999999,1,108.60,769604 +apollo-gateway,60,50,118.06340072999541,488.00008619999994,1,107.60,769604 +apollo-gateway,60,50,118.05699445781929,487.94448449999993,1,107.60,769604 +apollo-gateway,61,50,118.02770579296035,487.79021939999996,1,107.60,769604 +apollo-gateway,61,50,118.11896823853196,487.80030629999993,1,106.60,769604 +apollo-gateway,61,50,118.08317906299192,488.04923959999996,1,107.60,769604 +apollo-gateway,61,31,118.06538273160417,488.1525211999999,1,107.60,769604 \ No newline at end of file diff --git a/website/stress-data.csv b/website/stress-data.csv index 51379636f..e56226b06 100644 --- a/website/stress-data.csv +++ b/website/stress-data.csv @@ -1,1206 +1,1183 @@ Gateway,Seconds,VUs,RPS,P95_ms,Req_success_rate,Total_CPU,Total_RSS_KB -hive-router,3,2,432.2947789121969,3.3686292000000027,1,110.00,54612 -hive-router,3,2,465.787461452028,4.376352099999996,1,106.00,55380 -hive-router,4,2,530.2626712690642,4.963713599999999,1,108.00,55508 -hive-router,4,2,548.4378088493579,5.989480899999998,1,109.00,56020 -hive-router,4,7,611.4749346020857,7.035425599999997,1,106.00,56148 -hive-router,4,7,672.9314770837184,7.923204500000001,1,108.00,56276 -hive-router,5,7,701.4214221915576,9.313581,1,109.00,56384 -hive-router,5,12,744.8538288418328,9.852447399999999,1,111.00,56896 -hive-router,5,12,812.6678058123184,10.978398349999999,1,108.00,57536 -hive-router,5,12,826.8646516672866,11.6437687,1,110.00,57792 -hive-router,6,12,896.220992031754,12.326667,1,111.00,58176 -hive-router,6,17,937.6493309814585,13.5521548,1,113.00,58560 -hive-router,6,17,953.8392503695842,14.156320749999999,1,110.00,58560 -hive-router,7,17,994.2425006853282,15.076291099999999,1,112.00,58816 -hive-router,7,22,1026.0459076514653,16.341619,1,113.00,58944 -hive-router,7,22,1068.7237668744608,16.527656599999997,1,111.00,59456 -hive-router,7,22,1098.172582585549,17.697551199999985,1,113.00,59456 -hive-router,8,22,1110.3266051891035,17.86808925,1,114.00,57660 -hive-router,8,27,1149.135087133882,20.0419195,1,116.00,59196 -hive-router,8,27,1157.1616588659865,20.99881475,1,113.00,59452 -hive-router,9,27,1191.0567472817042,21.52646475,1,115.00,60348 -hive-router,9,32,1197.5297021101205,23.088565549999995,1,116.00,60828 -hive-router,9,32,1234.3396489657223,23.40093839999999,1,114.00,61468 -hive-router,9,32,1242.9587542604575,25.06652525,1,116.00,61852 -hive-router,10,32,1269.4858697831667,26.0635625,1,117.00,62108 -hive-router,10,37,1289.889967439835,26.95391119999999,1,119.00,62492 -hive-router,10,37,1303.833254256195,28.321858399999996,1,116.00,61540 -hive-router,11,37,1318.558716316153,28.2004505,1,118.00,61924 -hive-router,11,42,1347.5878783677365,29.3040956,1,119.00,62564 -hive-router,11,42,1341.9043672196437,29.88908635,1,117.00,61864 -hive-router,12,42,1372.2616176182864,30.583989799999998,1,119.00,62632 -hive-router,12,42,1376.946391416482,32.15710639999999,1,120.00,63528 -hive-router,12,47,1390.3202682391739,32.68053619999998,1,118.00,61560 -hive-router,12,47,1414.419288611596,33.426130849999986,1,120.00,63480 -hive-router,13,47,1430.6199210139453,34.9265435,1,121.00,63636 -hive-router,13,55,1429.5775311119498,36.11737194999998,1,122.00,64276 -hive-router,13,55,1455.583465068274,37.31237549999998,1,120.00,65044 -hive-router,14,55,1449.3699275323759,39.590493099999996,1,122.00,65428 -hive-router,14,66,1472.3583377666978,40.104331599999966,1,123.00,66452 -hive-router,14,66,1476.824918346317,41.91093959999999,1,121.00,67220 -hive-router,15,66,1488.6841726929113,43.793309150000006,1,122.00,62836 -hive-router,15,77,1499.9497209771878,45.06214939999998,1,124.00,64076 -hive-router,15,77,1510.5957712637291,46.54068549999998,1,122.00,67020 -hive-router,15,77,1513.7986156706459,48.852616,1,123.00,68172 -hive-router,16,89,1529.9667096424453,49.96032000000002,1,125.00,68172 -hive-router,16,89,1549.5131052211475,51.39908509999991,1,123.00,69068 -hive-router,16,89,1546.878055415682,53.42884634999999,1,124.00,69068 -hive-router,17,89,1560.6105797681441,54.855399199999994,1,126.00,70092 -hive-router,17,100,1571.964278861981,56.2512865,1,124.00,70092 -hive-router,17,100,1582.8659039955796,58.428254199999955,1,125.00,70220 -hive-router,18,100,1590.191034278533,60.35344239999991,1,127.00,70988 -hive-router,18,111,1603.8182037684908,61.257946000000004,1,125.00,70988 -hive-router,18,111,1605.9835761285296,63.8009175,1,126.00,70988 -hive-router,19,111,1608.2802586276862,64.972541,1,127.00,71884 -hive-router,19,123,1625.7682808360553,66.85164604999997,1,129.00,73036 -hive-router,19,123,1637.7336010748193,70.73321619999997,1,127.00,74272 -hive-router,20,123,1629.1353781637163,71.35544854999999,1,128.00,69960 -hive-router,20,134,1640.9131165982994,74.304539,1,130.00,71624 -hive-router,20,134,1648.4071040393646,76.86908489999996,1,128.00,71752 -hive-router,21,134,1653.7850595683446,79.26768899999999,1,129.00,74440 -hive-router,21,145,1663.456211166061,80.85254040000004,1,131.00,69456 -hive-router,21,145,1672.7668105274606,82.51436149999995,1,129.00,67052 -hive-router,22,145,1687.34634705323,86.354069,1,131.00,72300 -hive-router,22,156,1679.659306751281,88.99388714999998,1,129.00,72428 -hive-router,23,156,1694.1574492559196,92.27695975,1,130.00,72684 -hive-router,23,168,1696.6260078862108,94.21977899999993,1,132.00,73900 -hive-router,23,168,1708.7757540782397,97.8634885999999,1,130.00,80044 -hive-router,24,168,1716.0195659575697,100.61816195,1,131.00,77624 -hive-router,24,168,1710.873728518715,101.16585425,1,133.00,69508 -hive-router,24,179,1719.6761677922923,104.60773275,1,132.00,80260 -hive-router,25,179,1727.7060937151157,107.56572785,1,133.00,80772 -hive-router,25,190,1731.089927075556,111.36083129999999,1,132.00,77396 -hive-router,26,190,1737.6676804447168,113.29115679999998,1,133.00,76496 -hive-router,26,201,1740.0491567325973,114.47341854999999,1,132.00,77008 -hive-router,27,201,1745.281749981193,116.93967659999988,1,133.00,72080 -hive-router,27,212,1759.9062767964097,121.17781825,1,135.00,75408 -hive-router,28,212,1762.372499239332,122.687999,1,134.00,76688 -hive-router,28,224,1769.38968770858,125.63099639999996,1,136.00,73952 -hive-router,29,224,1775.3303119221118,128.5243515,1,135.00,69644 -hive-router,29,235,1779.7463404632288,132.0236569999999,1,135.00,72580 -hive-router,30,235,1786.6746617338656,136.28141829999996,1,136.00,79364 -hive-router,30,247,1785.910299229536,140.2606705,1,135.00,76052 -hive-router,31,247,1795.5461862101722,144.748253,1,138.00,72668 -hive-router,31,258,1801.5054642671398,151.25572025,1,136.00,75740 -hive-router,32,258,1802.1029449456803,151.8603264,1,138.00,74056 -hive-router,32,269,1808.919699292651,157.65675149999998,1,137.00,74172 -hive-router,33,269,1812.5064558295926,160.23189754999987,1,139.00,74072 -hive-router,33,280,1816.099595602113,163.9678772999999,1,137.00,76984 -hive-router,34,280,1827.726980933109,167.2058786,1,139.00,82360 -hive-router,34,291,1832.4093738629892,171.00534779999956,1,139.00,78800 -hive-router,35,291,1828.4942567354776,175.0881885,1,138.00,80272 -hive-router,36,302,1837.3351069702715,180.28067625,1,140.00,81808 -hive-router,36,314,1840.978934616298,184.2790255,1,139.00,82448 -hive-router,37,314,1839.2999402877758,186.197469,1,141.00,82832 -hive-router,37,325,1846.814035681544,189.17239559999996,1,140.00,80792 -hive-router,38,325,1849.2954597728954,192.59550084999995,1,142.00,80460 -hive-router,39,336,1855.0122682153287,197.02796520000004,1,141.00,77224 -hive-router,39,348,1856.7766080043837,200.2435961499999,1,140.00,74612 -hive-router,40,348,1860.8595906848218,203.2191048,1,142.00,73868 -hive-router,41,359,1862.8254886582577,206.97552274999995,1,142.00,77424 -hive-router,41,370,1865.3225107986473,213.05274119999999,1,141.00,78340 -hive-router,42,370,1869.6600851724254,216.557992,1,143.00,80408 -hive-router,42,381,1872.1853234607736,217.99548024999996,1,142.00,80592 -hive-router,43,381,1873.8314490655016,221.36429499999997,1,144.00,80052 -hive-router,44,393,1882.0121505474658,226.72549639999986,1,143.00,77640 -hive-router,44,393,1878.5305911838132,226.28362574999977,1,143.00,80200 -hive-router,45,404,1886.0652777352113,230.87650444999997,1,144.00,81312 -hive-router,45,415,1889.0322500601194,233.43265059999996,1,144.00,78864 -hive-router,46,427,1893.7566573792835,238.1041956,1,145.00,80116 -hive-router,47,427,1895.2625473567891,240.49305679999995,1,145.00,83444 -hive-router,47,438,1897.271443390917,242.847801,1,144.00,75636 -hive-router,48,438,1903.263257036367,247.3404930499998,1,146.00,76296 -hive-router,49,449,1904.1478103375634,251.09718025,1,146.00,84808 -hive-router,49,460,1907.0075943202082,255.4742802,1,146.00,82048 -hive-router,50,472,1907.845363616145,258.2658317999997,1,145.00,80976 -hive-router,51,472,1912.959466652013,264.5653046,1,147.00,84816 -hive-router,52,482,1915.75983291534,266.7502865,1,147.00,75016 -hive-router,52,495,1922.8308454939008,271.89952454999985,1,146.00,70328 -hive-router,53,495,1924.6887154772016,276.397079,1,146.00,92856 -hive-router,54,481,1927.7282452485535,279.233426,1,147.00,104320 -hive-router,54,436,1932.223448755111,280.2872012,1,147.00,88404 -hive-router,55,436,1935.9080930919044,280.1196912999999,1,149.00,85848 -hive-router,56,394,1941.4888029800964,280.187123,1,149.00,81764 -hive-router,56,346,1944.2425381777969,279.8505048999999,1,148.00,83260 -hive-router,57,346,1952.6345971669155,279.3139523999999,1,149.00,89660 -hive-router,58,299,1954.4174413165003,278.69175284999994,1,149.00,91584 -hive-router,58,256,1961.2839898957816,277.91149459999997,1,149.00,82888 -hive-router,59,256,1964.535968505321,277.23351529999985,1,150.00,85064 -hive-router,59,211,1971.3772699320843,276.68657815,1,150.00,87036 -hive-router,60,211,1968.5506528979192,276.27063429999976,1,151.00,76724 -hive-router,61,164,1971.0669410262392,275.77048009999993,1,150.00,66292 -hive-router,61,119,1973.335818373688,275.34054975,1,151.00,71920 -hive-router,61,119,1976.159582891282,274.8902642,1,150.00,70536 -hive-router,62,119,1975.1608936437842,274.46639135,1,151.00,71560 -hive-router,62,74,1977.1330744313254,274.1167808,1,150.00,66664 -hive-gateway-bun,11,1,101.95189384021073,13.942394399999992,1,188.40,1830016 -hive-gateway-bun,11,1,103.92412038349386,14.856262599999997,1,191.20,1834880 -hive-gateway-bun,11,1,106.52684121761747,18.098793999999998,1,187.30,1841408 -hive-gateway-bun,12,1,110.22130552960525,23.279823750000002,1,190.00,1847168 -hive-gateway-bun,12,6,113.95269258414304,27.0288255,1,192.60,1851008 -hive-gateway-bun,12,6,117.13465127373995,35.28489730000001,1,189.00,1856128 -hive-gateway-bun,13,6,117.50370685559399,36.763592749999994,1,191.80,1853544 -hive-gateway-bun,13,11,121.19589088556644,41.87963609999999,1,194.30,1853928 -hive-gateway-bun,13,11,124.1311050927103,46.664121349999995,1,196.90,1853928 -hive-gateway-bun,14,11,127.49344305332518,52.14799279999998,1,193.70,1874408 -hive-gateway-bun,14,16,130.0855932248295,60.1990245,1,196.20,1874408 -hive-gateway-bun,14,16,133.4932894299417,67.6188465,1,199.10,1874664 -hive-gateway-bun,14,16,137.36886573532394,69.74192599999998,1,195.60,1874664 -hive-gateway-bun,15,21,142.0882450428758,73.8057205,1,198.10,1874664 -hive-gateway-bun,15,21,144.00003270529308,80.350075,1,200.70,1874664 -hive-gateway-bun,15,21,147.5190222555673,82.50601075,1,197.60,1874664 -hive-gateway-bun,16,21,152.90842975653197,87.39788469999999,1,200.20,1874664 -hive-gateway-bun,16,26,151.8075307149702,88.083655,1,202.70,1915888 -hive-gateway-bun,16,26,155.75079048665947,95.43134834999996,1,199.60,1915888 -hive-gateway-bun,17,26,156.5637295287697,99.26891259999995,1,202.30,1916912 -hive-gateway-bun,17,31,159.7585377458954,105.68702494999992,1,204.70,1916912 -hive-gateway-bun,17,31,161.70020475200292,109.60146349999998,1,201.50,1916912 -hive-gateway-bun,18,31,165.57654517831313,114.2632765,1,203.70,1916912 -hive-gateway-bun,18,36,168.36702677841893,117.73486614999997,1,206.00,1916912 -hive-gateway-bun,18,36,171.0501402374695,120.60949254999997,1,208.60,1916912 -hive-gateway-bun,18,36,174.366699270717,123.90461104999991,1,205.10,1916912 -hive-gateway-bun,19,36,177.06812972981308,127.44263099999999,1,207.70,1916912 -hive-gateway-bun,19,41,178.94992417443098,131.5023075,1,210.10,1916912 -hive-gateway-bun,19,41,180.44536288381033,137.1196165,1,206.90,1918160 -hive-gateway-bun,20,41,182.30124049733251,140.582495,1,209.30,1918160 -hive-gateway-bun,20,46,182.57887120672723,143.57566324999996,1,211.60,1918160 -hive-gateway-bun,20,46,184.51496215779878,153.02902244999999,1,208.30,1918160 -hive-gateway-bun,21,46,186.54807383664945,161.4679435,1,210.40,1918160 -hive-gateway-bun,21,54,187.4830496424632,168.34706359999998,1,212.70,1918160 -hive-gateway-bun,21,54,189.9940618847606,172.1390646,1,215.10,1918160 -hive-gateway-bun,22,54,193.42263657078306,179.80637359999992,1,212.20,1918160 -hive-gateway-bun,22,65,193.82845306023043,195.8199252,1,214.30,1918160 -hive-gateway-bun,22,65,196.73438112043524,203.5145428,1,216.60,1918160 -hive-gateway-bun,22,65,196.4887720432831,205.77208344999997,1,213.60,1918288 -hive-gateway-bun,23,76,198.46551262043917,215.16915599999976,1,216.30,1918544 -hive-gateway-bun,23,76,200.38586539521816,234.87835199999998,1,218.40,1918544 -hive-gateway-bun,23,76,201.6447117506135,241.1059048,1,215.40,1918544 -hive-gateway-bun,24,76,203.9813055647023,254.65054839999993,1,217.50,1918544 -hive-gateway-bun,24,87,205.1993371474535,276.79478209999974,1,219.80,1918544 -hive-gateway-bun,24,87,206.92035224023132,288.3266979999999,1,216.80,1918544 -hive-gateway-bun,25,87,209.2994526001472,299.96724480000006,1,219.00,1918544 -hive-gateway-bun,25,99,210.53726404990687,303.80313375000003,1,221.20,1918544 -hive-gateway-bun,25,99,211.7223515946695,309.1442312,1,218.10,1918672 -hive-gateway-bun,26,99,212.9918449847008,321.82775649999996,1,220.10,1918672 -hive-gateway-bun,26,110,214.0984714928529,326.57063350000004,1,222.20,1918672 -hive-gateway-bun,26,110,216.17624015234915,329.9526159999999,1,219.60,1918672 -hive-gateway-bun,27,110,215.9421339886073,344.920692,1,221.50,1918672 -hive-gateway-bun,27,121,217.4590616816016,364.41528825,1,223.70,1918672 -hive-gateway-bun,27,121,218.23755737294778,373.77301839999996,1,220.80,1918800 -hive-gateway-bun,28,121,220.9035801415799,379.68377325,1,223.00,1918800 -hive-gateway-bun,28,132,221.67660765019502,387.42092935,1,224.90,1918800 -hive-gateway-bun,28,132,224.15341514781335,396.922276,1,222.10,1918800 -hive-gateway-bun,29,132,224.04724733692757,398.8877085,1,223.80,1918800 -hive-gateway-bun,29,144,226.35677694606346,415.38937819999967,1,226.10,1918800 -hive-gateway-bun,29,144,225.88569507414147,434.49498135,1,223.50,1918928 -hive-gateway-bun,30,144,228.5103131409838,445.95648645,1,225.20,1918928 -hive-gateway-bun,30,155,229.41687732745203,455.16783699999985,1,226.90,1918928 -hive-gateway-bun,30,155,229.71193573791075,458.16877949999997,1,228.90,1918928 -hive-gateway-bun,30,155,229.8904372709507,461.69467019999996,1,225.90,1918928 -hive-gateway-bun,31,155,231.96719846611984,475.02898539999995,1,227.70,1918928 -hive-gateway-bun,31,166,232.7858895867746,482.7846325499999,1,229.40,1918928 -hive-gateway-bun,31,166,233.87710189927174,503.2180867999998,1,226.60,1918928 -hive-gateway-bun,32,166,233.7393691023819,511.72660444999997,1,228.70,1918928 -hive-gateway-bun,32,178,235.82973344972285,536.1831961499996,1,230.50,1918928 -hive-gateway-bun,32,178,236.9642873554252,542.7023184,1,227.70,1918928 -hive-gateway-bun,33,178,236.36448020283265,551.2777475,1,229.50,1918928 -hive-gateway-bun,33,189,238.87639832253322,564.6033774,1,231.20,1918928 -hive-gateway-bun,33,189,237.28344160719246,567.2507929999998,1,228.60,1927120 -hive-gateway-bun,34,189,239.40339410360025,580.2427273999999,1,230.10,1923028 -hive-gateway-bun,34,200,241.9705362608956,586.2648042999999,1,231.90,1923028 -hive-gateway-bun,34,200,241.1729170835243,587.8642388,1,233.40,1923028 -hive-gateway-bun,34,200,241.26329062088624,591.3229434,1,230.80,1923028 -hive-gateway-bun,35,200,242.48232012038687,612.5885404999998,1,233.00,1923028 -hive-gateway-bun,35,211,242.86126421016846,629.9318618,1,234.60,1923028 -hive-gateway-bun,35,211,244.56426628917325,638.2175685,1,232.10,1923028 -hive-gateway-bun,36,211,244.44109464150552,644.95815265,1,233.70,1923028 -hive-gateway-bun,36,222,246.4868556086409,649.307624,1,235.30,1923028 -hive-gateway-bun,36,222,246.37418003720632,660.9427270000006,1,233.00,1923028 -hive-gateway-bun,37,222,247.43057699498218,669.5344274,1,234.70,1923028 -hive-gateway-bun,37,234,248.4571881218076,682.0459116,1,236.30,1923028 -hive-gateway-bun,37,234,248.6108121595885,686.54022795,1,233.60,1923028 -hive-gateway-bun,38,234,249.38767198929926,690.46826,1,235.30,1923028 -hive-gateway-bun,38,245,249.360264320216,707.0449772499999,1,237.60,1928148 -hive-gateway-bun,38,245,251.24799897395803,722.6825809999998,1,235.00,1928148 -hive-gateway-bun,39,245,251.66686288264887,739.9751529999998,1,236.60,1928148 -hive-gateway-bun,39,256,252.1184934034031,738.7801166999997,1,238.30,1928148 -hive-gateway-bun,39,256,253.94183056006904,745.0393434,1,235.60,1928276 -hive-gateway-bun,40,256,253.47885732456567,745.859267,1,237.20,1949780 -hive-gateway-bun,40,267,255.45938016514657,777.7878186000003,1,238.70,1955156 -hive-gateway-bun,40,267,255.50503389120635,803.5546810999998,1,236.10,1955412 -hive-gateway-bun,41,267,254.526878169792,807.6175847999997,1,237.70,1955540 -hive-gateway-bun,41,279,256.39124767374074,828.6951276000001,1,239.30,1955540 -hive-gateway-bun,41,279,256.1283138670781,840.1743377499997,1,237.10,1955540 -hive-gateway-bun,42,279,254.48104901691926,841.4146805,1,238.50,1955668 -hive-gateway-bun,42,290,257.13085500649254,901.2590658999998,1,240.40,1955668 -hive-gateway-bun,42,290,257.0640441765675,923.4829445999998,1,237.80,1955668 -hive-gateway-bun,43,290,258.9384595782393,922.18087875,1,239.20,1955668 -hive-gateway-bun,43,301,259.35143598994597,925.9121574999998,1,240.60,1955668 -hive-gateway-bun,43,301,257.94943093024165,931.85485145,1,242.20,1955668 -hive-gateway-bun,44,301,260.3496391161365,956.7591035,1,239.70,1955668 -hive-gateway-bun,44,312,260.5452616586746,956.6684805499999,1,241.20,1955668 -hive-gateway-bun,44,312,259.9798188178246,956.729348,1,242.70,1956436 -hive-gateway-bun,44,312,261.00206070386065,971.4257790499995,1,240.20,1960404 -hive-gateway-bun,45,312,261.32919916583916,970.9418730499998,1,241.50,1961300 -hive-gateway-bun,45,324,260.9865804105423,987.3506131999998,1,242.80,1961428 -hive-gateway-bun,45,324,263.6166823580483,992.88772075,1,240.80,1961428 -hive-gateway-bun,46,324,262.1797666404294,993.1040467999995,1,242.10,1970644 -hive-gateway-bun,46,335,262.71957405867295,997.1639382000001,1,243.40,1972564 -hive-gateway-bun,46,335,264.51524180804824,1011.7687559000001,1,241.10,1972820 -hive-gateway-bun,47,335,264.04394426614675,1016.9501679,1,242.70,1972820 -hive-gateway-bun,47,346,264.5641010781312,1020.6379691499999,1,244.00,1972948 -hive-gateway-bun,47,346,264.6237184926913,1022.4584839000001,1,245.40,1972948 -hive-gateway-bun,48,346,265.7024482175698,1029.66479265,1,243.00,1988692 -hive-gateway-bun,48,357,265.1922490629214,1030.4565028,1,244.30,1992916 -hive-gateway-bun,48,357,265.3675104092355,1038.2973272,1,245.60,1992916 -hive-gateway-bun,48,357,267.1288758731149,1077.2158980499999,1,243.20,2000084 -hive-gateway-bun,49,357,266.6869268293365,1094.1366351999998,1,244.50,2000084 -hive-gateway-bun,49,369,265.50189998938913,1094.097326,1,245.80,2000980 -hive-gateway-bun,49,369,267.7597141706195,1105.4604276,1,243.70,2001108 -hive-gateway-bun,50,369,267.81843429505983,1104.8600973999999,1,245.10,2001236 -hive-gateway-bun,50,380,267.1867689533905,1121.8577655999998,1,246.30,2001620 -hive-gateway-bun,50,380,267.1099568885489,1128.926319,1,243.90,2001620 -hive-gateway-bun,51,380,269.1841194971696,1159.7565459999994,1,245.30,2002132 -hive-gateway-bun,51,391,267.2617441324565,1160.258958999999,1,246.80,2003668 -hive-gateway-bun,51,391,268.8846391847829,1182.6786800999998,1,244.80,2003592 -hive-gateway-bun,52,391,268.88660970671435,1193.5761608,1,245.90,2003592 -hive-gateway-bun,52,402,270.64166838561476,1228.6461694,1,247.20,2003592 -hive-gateway-bun,52,402,269.20934103397155,1229.1855082499999,1,248.50,2003592 -hive-gateway-bun,53,402,269.8765985812947,1245.8271164,1,246.40,2003592 -hive-gateway-bun,53,414,271.15209557538947,1260.0515217999996,1,247.50,2003592 -hive-gateway-bun,53,414,270.5229983698252,1262.93201985,1,249.10,2003592 -hive-gateway-bun,54,414,270.78242682568214,1268.7733992499998,1,246.80,2003592 -hive-gateway-bun,54,425,272.0788246249222,1273.14621945,1,248.00,2003592 -hive-gateway-bun,54,425,272.13072484688246,1273.1382374999998,1,249.30,2011784 -hive-gateway-bun,54,425,270.6710070301805,1274.1493995999997,1,247.10,2012168 -hive-gateway-bun,55,425,271.5902071254163,1289.046911,1,248.30,2012296 -hive-gateway-bun,55,436,274.6719854075692,1328.8401522,1,249.90,2012296 -hive-gateway-bun,55,436,273.03307956330934,1329.8990355999997,1,247.80,2012296 -hive-gateway-bun,56,436,272.7844789282171,1330.3177733999999,1,248.90,2018824 -hive-gateway-bun,56,447,271.91186326892773,1330.3649945999998,1,250.10,2048008 -hive-gateway-bun,56,447,273.10637107475725,1353.664023,1,248.20,2048392 -hive-gateway-bun,57,447,274.83735402492437,1354.134373,1,249.30,2048648 -hive-gateway-bun,57,459,273.40309641589147,1354.3695059499998,1,250.40,2049544 -hive-gateway-bun,57,459,273.62764366214645,1370.4873177499994,1,248.20,2095880 -hive-gateway-bun,58,459,272.3513051805926,1369.134575,1,249.60,2114440 -hive-gateway-bun,58,470,274.5540141155553,1397.6461945999995,1,250.80,2110436 -hive-gateway-bun,58,470,275.03545473003373,1427.8623154499999,1,248.70,2110436 -hive-gateway-bun,59,470,275.31488112188714,1428.3223116000001,1,249.70,2110692 -hive-gateway-bun,59,481,274.4324440615953,1428.296542,1,250.90,2110692 -hive-gateway-bun,59,481,275.62135120186895,1439.546607,1,249.20,2110692 -hive-gateway-bun,60,481,276.8125419901954,1450.0293135,1,250.30,2110692 -hive-gateway-bun,60,492,276.0511811555461,1450.3158526999998,1,251.30,2110692 -hive-gateway-bun,60,492,274.71257194658295,1450.3158526999998,1,252.50,2110692 -hive-gateway-bun,61,492,276.2492479990089,1456.76164445,1,250.50,2110692 -hive-gateway-bun,61,492,277.043922526161,1477.7081515,1,251.60,2110692 -hive-gateway-bun,61,500,276.10812680487464,1482.0856752999998,1,252.60,2110692 -hive-gateway-bun,61,500,276.4523513418578,1502.5055037500001,1,250.40,2110692 -hive-gateway-bun,62,500,276.0940917216599,1515.7034731999997,1,251.50,2110692 -hive-gateway-bun,62,477,277.1171390173619,1517.5818209999995,1,252.60,2110692 -hive-gateway-bun,62,477,277.72352556733847,1524.2330285999997,1,250.70,2110692 -hive-gateway-bun,63,477,278.5065859007355,1525.2956909,1,251.90,2110820 -hive-gateway-bun,63,424,277.38548190564984,1525.2502185,1,252.90,2110820 -hive-gateway-bun,63,424,277.04438077123126,1531.3063566499998,1,253.90,2110820 -hive-gateway-bun,64,424,278.3677761983883,1531.4828114999993,1,252.00,2110820 -hive-gateway-bun,64,424,279.03596191468233,1538.39040475,1,253.00,2110820 -hive-gateway-bun,64,370,278.25500211756315,1538.1744614,1,254.10,2110820 -hive-gateway-bun,64,370,277.45683053385966,1538.0401158,1,252.00,2110948 -hive-gateway-bun,65,370,279.68668809501963,1536.3718642499998,1,253.20,2111076 -hive-gateway-bun,65,322,279.29488970614375,1535.9909056,1,254.20,2111076 -hive-gateway-bun,65,322,278.979576157996,1535.5440998000001,1,252.40,2111076 -hive-gateway-bun,66,322,279.0818835484025,1534.9865745,1,253.50,2111076 -hive-gateway-bun,66,290,280.5381686632006,1533.8533031499999,1,254.50,2111076 -hive-gateway-bun,66,290,280.0729784109934,1533.4359673499998,1,252.70,2111076 -hive-gateway-bun,67,290,281.02545293722596,1532.6953425000002,1,253.60,2111076 -hive-gateway-bun,67,236,280.7793439023572,1532.1231359999995,1,254.80,2111076 -hive-gateway-bun,67,236,280.9200256643429,1531.2723648499996,1,255.70,2111204 -hive-gateway-bun,67,236,281.3787807652113,1529.9501941,1,253.90,2111204 -hive-gateway-bun,68,236,281.61641641035305,1528.2491020499992,1,254.80,2111204 -hive-gateway-bun,68,187,282.32271849802686,1526.3147814,1,256.00,2111204 -hive-gateway-bun,68,187,283.3094561112385,1525.2842125,1,254.10,2111204 -hive-gateway-bun,69,187,283.01245758802395,1524.9310282,1,255.10,2111204 -hive-gateway-bun,69,139,283.43337500986803,1524.0098512499999,1,256.10,2111204 -hive-gateway-bun,69,139,283.2783426573034,1523.7277388500002,1,254.20,2111204 -hive-gateway-bun,70,139,283.43363696999194,1522.7736478,1,255.30,2111204 -hive-gateway-bun,70,81,283.93077782833575,1521.8888163999998,1,256.30,2111204 -hive-gateway-bun,70,81,283.9284982965347,1521.076035,1,254.40,2111204 -hive-gateway,11,1,101.34312181387973,13.4955948,1,183.90,2408292 -hive-gateway,11,1,101.43367546532593,13.867815399999998,1,185.40,2408420 -hive-gateway,11,1,102.5110954203839,15.680811149999995,1,182.60,2408420 -hive-gateway,12,1,104.94378427237808,21.532408,1,184.80,2408420 -hive-gateway,12,6,107.46458713049563,26.62447475,1,186.80,2408420 -hive-gateway,12,6,109.70388794942376,33.36677819999999,1,184.10,2408420 -hive-gateway,13,6,113.10095986721149,36.98386975,1,186.10,2408420 -hive-gateway,13,11,115.23285782700712,41.998275299999996,1,188.30,2410724 -hive-gateway,13,11,117.29542507652569,50.50628194999998,1,190.40,2416760 -hive-gateway,14,11,118.42095157099777,57.744670799999945,1,187.80,2416760 -hive-gateway,14,11,120.41755590345122,63.11770659999988,1,189.80,2416760 -hive-gateway,14,16,125.21273287467672,69.79316039999999,1,192.00,2416760 -hive-gateway,14,16,128.11086648223292,73.799681,1,189.30,2416888 -hive-gateway,15,16,128.558258155993,76.72467259999998,1,191.50,2417016 -hive-gateway,15,21,131.77148961084836,86.26936729999998,1,193.60,2417016 -hive-gateway,15,21,133.86215759724757,90.06347759999998,1,191.10,2417016 -hive-gateway,16,21,137.1997752909686,96.4137795,1,193.20,2417016 -hive-gateway,16,26,139.8879274027509,105.74097295,1,195.20,2417016 -hive-gateway,16,26,143.348131160043,109.31644279999996,1,193.00,2417016 -hive-gateway,17,26,143.75152163919358,113.16958324999999,1,195.10,2417016 -hive-gateway,17,31,147.1259778654243,119.55894665,1,196.90,2417016 -hive-gateway,17,31,149.3454378904714,120.82970494999996,1,194.50,2417016 -hive-gateway,18,31,151.83771856536023,122.68962499999998,1,196.60,2417016 -hive-gateway,18,36,154.51660895880823,127.96718900000003,1,198.70,2417016 -hive-gateway,18,36,155.84235947461684,134.6332602,1,200.70,2417016 -hive-gateway,19,36,156.5792483335208,140.45936319999984,1,198.20,2417016 -hive-gateway,19,36,158.66578028840166,147.85783685000004,1,200.10,2417016 -hive-gateway,19,41,161.17378725164662,149.6322222,1,202.00,2417016 -hive-gateway,20,41,162.66463119519432,163.52847719999997,1,199.80,2417144 -hive-gateway,20,41,163.01162611895572,164.805098,1,201.60,2437748 -hive-gateway,20,46,164.43383114846833,174.27292319999998,1,203.70,2437748 -hive-gateway,20,46,166.07070940883693,179.82432889999993,1,201.30,2437748 -hive-gateway,21,46,168.10595748291078,181.8918268499999,1,203.30,2437748 -hive-gateway,21,53,169.414865190894,191.65745139999993,1,205.10,2437748 -hive-gateway,21,53,172.76920850284822,198.76723484999997,1,202.50,2437748 -hive-gateway,22,53,173.782875931783,208.64268249999998,1,204.50,2437748 -hive-gateway,22,64,174.7092041101069,215.1343334,1,206.20,2437748 -hive-gateway,22,64,175.29291782766524,231.54754574999995,1,204.00,2437748 -hive-gateway,23,64,176.17047209543344,239.23034479999995,1,205.60,2437748 -hive-gateway,23,75,179.06783061940305,246.860026,1,207.50,2437748 -hive-gateway,23,75,180.7547846198491,261.71641339999996,1,205.30,2437748 -hive-gateway,24,75,182.33767184415547,274.6314913999998,1,207.10,2437748 -hive-gateway,24,86,183.43500514022548,292.88241104999975,1,209.10,2437748 -hive-gateway,24,86,185.2546244715701,294.95451855,1,210.90,2437748 -hive-gateway,25,86,185.65979181123544,297.97295479999997,1,208.70,2437748 -hive-gateway,25,97,187.16982245998963,312.6342145,1,210.60,2437748 -hive-gateway,25,97,187.47073659742466,321.24936040000006,1,212.30,2438388 -hive-gateway,26,97,189.18821178401151,390.4882184499999,1,210.00,2438388 -hive-gateway,26,97,188.5237046625573,393.174001899999,1,211.70,2438388 -hive-gateway,26,109,190.8170084094316,397.93671159999985,1,213.40,2438516 -hive-gateway,26,109,193.32027011580263,400.300913,1,211.00,2438516 -hive-gateway,27,109,192.16317402604363,403.80326849999983,1,212.70,2438516 -hive-gateway,27,120,193.68647942747504,423.5258790999999,1,214.20,2438516 -hive-gateway,27,120,195.30834779734198,433.05339889999993,1,212.00,2438516 -hive-gateway,28,120,197.49215651980825,437.22554355,1,213.60,2438516 -hive-gateway,28,131,196.83915881796386,440.4486215999999,1,215.30,2438516 -hive-gateway,28,131,198.2651649187563,448.92426589999997,1,212.90,2438516 -hive-gateway,29,131,198.2938810716091,463.3859447999999,1,214.40,2438516 -hive-gateway,29,142,200.16671510478167,478.75951925000004,1,216.00,2438516 -hive-gateway,29,142,201.1312992316351,479.24011205,1,217.80,2438516 -hive-gateway,30,142,202.81537300145305,480.038979,1,215.40,2438516 -hive-gateway,30,142,204.3567414606145,493.1215445,1,217.00,2438516 -hive-gateway,30,154,203.55821403766984,508.7982231,1,218.70,2438644 -hive-gateway,30,154,203.86051337679984,540.439075,1,216.40,2438644 -hive-gateway,31,154,204.52434287728036,567.6234208000001,1,218.00,2438644 -hive-gateway,31,165,206.23117011534416,569.3953664,1,219.60,2438644 -hive-gateway,31,165,205.38142627143318,571.8354119999999,1,217.50,2438644 -hive-gateway,32,165,208.38886058697233,582.4150841000001,1,219.00,2438644 -hive-gateway,32,176,207.54535179350157,584.1637936999999,1,220.50,2438644 -hive-gateway,32,176,209.87829701452142,637.0520137999999,1,218.40,2438644 -hive-gateway,33,176,208.8822948781489,637.1412938999999,1,219.90,2438644 -hive-gateway,33,187,210.65685827627448,637.13752125,1,221.40,2438644 -hive-gateway,33,187,210.75487771434456,641.4108140499999,1,219.50,2438644 -hive-gateway,34,187,210.8292282646058,639.9820688,1,220.90,2438644 -hive-gateway,34,199,213.11857104541482,683.95105175,1,222.70,2438644 -hive-gateway,34,199,212.82566162620216,698.0320172499999,1,220.50,2438644 -hive-gateway,35,199,215.84239656460196,713.9850219999998,1,221.80,2438900 -hive-gateway,35,210,214.94066141659914,714.0105359999999,1,223.40,2438900 -hive-gateway,35,210,214.47077271983525,713.7196262,1,224.80,2438900 -hive-gateway,36,210,216.19913954283845,728.5196471499999,1,222.80,2438900 -hive-gateway,36,221,215.15864230666514,731.2791414,1,224.20,2439028 -hive-gateway,36,221,216.72682576830312,757.0175557499999,1,225.60,2439028 -hive-gateway,37,221,217.45340314222753,767.72503795,1,223.60,2439028 -hive-gateway,37,221,216.9543271538877,767.9277162,1,225.30,2439028 -hive-gateway,37,233,218.7133652013628,775.6344564999999,1,226.90,2439028 -hive-gateway,38,233,219.64201881475273,779.3505160999998,1,224.60,2439028 -hive-gateway,38,233,220.68764165967562,800.0711367999997,1,226.10,2439028 -hive-gateway,38,244,222.19072065325867,806.2276982999996,1,227.50,2439028 -hive-gateway,39,244,220.84955773973545,806.2024260000001,1,225.30,2439028 -hive-gateway,39,244,222.72811844917905,867.2005984,1,226.80,2439028 -hive-gateway,39,255,222.21110451517356,869.8659586,1,228.00,2439028 -hive-gateway,39,255,221.83755664566334,876.2430357999999,1,226.10,2439028 -hive-gateway,40,255,222.7602111093018,886.3180529999998,1,227.40,2439028 -hive-gateway,40,266,223.4983028127301,903.2162052000002,1,228.80,2439028 -hive-gateway,40,266,223.1397301290419,913.8859708500001,1,226.80,2439028 -hive-gateway,41,266,224.34878836810697,979.4302319999999,1,227.90,2439028 -hive-gateway,41,277,225.01586568194838,986.9810149,1,229.20,2439028 -hive-gateway,41,277,224.74799101754084,989.9827726000001,1,230.60,2439028 -hive-gateway,42,277,225.93971150817507,989.6630608999999,1,228.70,2439156 -hive-gateway,42,289,225.31260928605144,989.60730275,1,229.90,2439156 -hive-gateway,42,289,226.4100747191363,995.9076809999999,1,228.30,2438908 -hive-gateway,43,289,227.64622945160647,1009.4675693999999,1,229.60,2438908 -hive-gateway,43,300,227.827134394889,1011.9065448999999,1,231.00,2438908 -hive-gateway,43,300,229.83226274379604,1031.4940663999998,1,232.20,2438908 -hive-gateway,44,300,229.6221163313596,1036.0173829999997,1,230.20,2438908 -hive-gateway,44,300,229.79429127414093,1039.1600545000001,1,231.30,2438908 -hive-gateway,44,311,230.92008385371042,1050.4148371999997,1,232.90,2438908 -hive-gateway,45,311,230.09901531743947,1063.8669622,1,230.90,2438908 -hive-gateway,45,311,229.86676143353293,1071.5997940999998,1,232.10,2438908 -hive-gateway,45,322,229.0765263524978,1071.8712447499997,1,233.40,2438908 -hive-gateway,45,322,232.37972446333407,1093.224486,1,231.40,2438908 -hive-gateway,46,322,231.4215494256087,1093.2464456,1,232.60,2438908 -hive-gateway,46,334,231.02333335356147,1104.9127120000003,1,234.00,2438908 -hive-gateway,46,334,232.93871596875175,1130.2384954,1,231.90,2438908 -hive-gateway,47,334,231.30704987958939,1130.2384954,1,233.30,2438908 -hive-gateway,47,345,232.0536639879884,1179.5191456999996,1,234.50,2438908 -hive-gateway,47,345,232.07866583148214,1207.008753,1,232.40,2438908 -hive-gateway,48,345,233.93534266146372,1205.8953502999998,1,233.60,2438908 -hive-gateway,48,356,232.50462957041097,1206.3382079999997,1,234.80,2438908 -hive-gateway,48,356,233.79907448466614,1230.63111995,1,235.80,2438908 -hive-gateway,49,356,232.1996018240723,1231.3523882,1,234.00,2438908 -hive-gateway,49,367,235.01780213177688,1253.4424142,1,235.20,2438908 -hive-gateway,49,367,233.73216400410357,1254.3299535,1,236.40,2438908 -hive-gateway,50,367,234.21404720862566,1281.5664169,1,235.20,2438908 -hive-gateway,50,379,236.42320996209594,1286.5671753,1,236.40,2438752 -hive-gateway,50,379,235.7434595499136,1291.9551353,1,234.50,2438752 -hive-gateway,51,379,235.29543562119576,1291.7190938999997,1,235.80,2438752 -hive-gateway,51,390,236.92859017242486,1296.9814911499998,1,236.90,2438752 -hive-gateway,51,390,236.46441154792913,1299.9516601999999,1,238.10,2438752 -hive-gateway,52,390,237.14598323539684,1315.7239151,1,236.50,2438752 -hive-gateway,52,401,237.62310142513493,1333.4456077500001,1,237.70,2438752 -hive-gateway,52,401,237.7465014050495,1360.5859121,1,238.80,2438752 -hive-gateway,53,401,237.76804192990926,1364.6747013999998,1,237.00,2438752 -hive-gateway,53,401,237.82854785774498,1389.0103958500001,1,238.10,2438752 -hive-gateway,53,412,237.40436028822458,1398.5058318999995,1,239.10,2438752 -hive-gateway,53,412,237.20476301568536,1406.775211,1,237.30,2438752 -hive-gateway,54,412,239.8657529130615,1416.1833239,1,238.40,2438752 -hive-gateway,54,424,239.49943650582748,1417.8129024,1,239.60,2438752 -hive-gateway,54,424,240.22470369817313,1418.0346387999998,1,237.80,2438752 -hive-gateway,55,424,240.43172787012728,1418.1475599999997,1,238.80,2438752 -hive-gateway,55,435,239.90351278919323,1418.30017925,1,239.90,2438752 -hive-gateway,55,435,240.9155757292933,1436.0646723,1,238.10,2438752 -hive-gateway,56,435,240.75938749611558,1436.4818424,1,239.10,2438752 -hive-gateway,56,446,240.03706281019996,1441.6378378,1,240.40,2438752 -hive-gateway,56,446,241.00235970618803,1464.3566853999998,1,241.40,2438752 -hive-gateway,57,446,240.59583139503783,1465.9473385000001,1,239.70,2438752 -hive-gateway,57,457,239.16711254096734,1466.5495664999999,1,240.90,2438752 -hive-gateway,57,457,240.85519594845758,1531.480703,1,241.90,2438752 -hive-gateway,58,457,241.83415220360564,1551.3179705,1,240.00,2438752 -hive-gateway,58,457,241.8052917332409,1561.7877775999998,1,241.30,2438752 -hive-gateway,58,469,241.3581157233885,1571.9066431499998,1,242.30,2438752 -hive-gateway,59,469,242.55988380728968,1571.0399772,1,240.60,2438752 -hive-gateway,59,469,242.6478134168137,1571.51154185,1,241.60,2438752 -hive-gateway,59,480,244.06642657032424,1571.89297535,1,242.70,2439136 -hive-gateway,59,480,243.63848609216325,1571.8622228,1,240.90,2452320 -hive-gateway,60,480,242.27186007483115,1571.8622228,1,241.90,2483168 -hive-gateway,60,491,241.61001042174786,1571.92717125,1,243.00,2492892 -hive-gateway,60,491,242.481101785819,1615.1454745999995,1,241.20,2492892 -hive-gateway,61,491,243.13295802079776,1645.7048117000002,1,242.50,2492892 -hive-gateway,61,500,243.85561302799846,1693.7521194999995,1,243.50,2493148 -hive-gateway,61,500,243.78696152315624,1710.7703442999998,1,241.80,2493148 -hive-gateway,62,500,243.74081661081019,1710.4619208999998,1,242.80,2493148 -hive-gateway,62,488,245.31747256741866,1706.8188255999996,1,243.90,2493148 -hive-gateway,62,488,244.38298320922632,1708.2790396999997,1,242.10,2493276 -hive-gateway,63,488,245.7634273006267,1704.3557771499993,1,243.10,2493276 -hive-gateway,63,432,244.6832602045571,1704.2712945999995,1,244.10,2493276 -hive-gateway,63,432,246.3314341587606,1703.7937907,1,245.10,2493532 -hive-gateway,64,432,245.1641185106816,1703.7937907,1,243.30,2493532 -hive-gateway,64,432,245.54543017391975,1702.3388074499996,1,244.20,2493532 -hive-gateway,64,381,246.50279476759167,1729.719939,1,245.20,2493532 -hive-gateway,64,381,245.29901253663027,1729.719939,1,243.50,2493660 -hive-gateway,65,381,246.4119728849128,1728.802229,1,244.40,2493660 -hive-gateway,65,340,245.27262327170862,1728.802229,1,245.50,2493660 -hive-gateway,65,340,247.15331281018433,1726.344028,1,243.80,2493660 -hive-gateway,66,340,247.32420800445576,1724.0495164499994,1,244.80,2493660 -hive-gateway,66,288,247.28165294168116,1722.1899125,1,245.70,2493660 -hive-gateway,66,288,247.03431270713466,1720.4050233999988,1,246.70,2493660 -hive-gateway,67,288,248.5286067232564,1716.5933633999998,1,245.00,2493660 -hive-gateway,67,288,247.2248992609423,1716.5933633999998,1,246.10,2493660 -hive-gateway,67,246,249.03881375250856,1714.5864004,1,247.00,2493660 -hive-gateway,68,246,248.46187219849696,1714.2644455,1,245.50,2493660 -hive-gateway,68,191,249.12349858007462,1713.350307,1,246.40,2493660 -hive-gateway,68,191,249.24637758814168,1712.71975495,1,247.50,2493660 -hive-gateway,69,191,248.7406648743752,1712.3848263,1,245.80,2493660 -hive-gateway,69,191,249.51843164370536,1711.3940714499997,1,246.70,2493660 -hive-gateway,69,143,249.2613610977636,1710.9600147999997,1,247.70,2493660 -hive-gateway,69,143,249.7250940924342,1710.0137597,1,246.10,2493660 -hive-gateway,70,143,250.18309826254168,1706.5330116999992,1,247.10,2493660 -hive-gateway,70,91,251.1410740485173,1703.2685418999988,1,248.20,2493660 -hive-gateway,70,91,251.1374018515654,1702.0718027000005,1,246.40,2493660 -grafbase,5,1,288.44769508216194,4.576311400000002,1,109.00,95964 -grafbase,5,1,311.3162890422544,5.749076400000002,1,110.00,92876 -grafbase,5,1,336.45092037181485,6.5330482,1,111.00,89880 -grafbase,6,6,364.5434534392515,8.26736175,1,108.00,86192 -grafbase,6,6,405.0969004514176,8.825728,1,110.00,83860 -grafbase,6,6,416.8285246716698,10.202233749999996,1,111.00,82288 -grafbase,6,6,451.9846646450456,11.23418525,1,113.00,79596 -grafbase,7,11,494.06142738617746,12.681791,1,110.00,78660 -grafbase,7,11,534.5515303651537,13.060036199999997,1,112.00,77968 -grafbase,7,11,559.5837468375593,14.880399449999999,1,114.00,77944 -grafbase,8,16,584.0630021589955,15.466962799999996,1,111.00,77280 -grafbase,8,16,609.8747233533128,17.300497749999998,1,113.00,77236 -grafbase,8,16,635.1712737111357,18.27165079999999,1,115.00,77184 -grafbase,9,21,668.72346954019,20.761587199999997,1,113.00,77192 -grafbase,9,21,691.7146310510017,21.818554199999987,1,114.00,76512 -grafbase,9,21,721.6444995673021,22.79784755,1,116.00,76768 -grafbase,9,21,729.1426425018332,24.362007349999978,1,118.00,76412 -grafbase,10,27,750.1929686307811,25.4175636,1,116.00,76480 -grafbase,10,27,776.655564776087,26.533513199999998,1,118.00,76644 -grafbase,10,27,798.2484698912547,27.271809,1,120.00,76524 -grafbase,11,32,812.3658851674645,28.430873149999993,1,118.00,76704 -grafbase,11,32,849.0611042950485,29.07278565,1,120.00,77344 -grafbase,11,32,860.9915270036487,31.4660685,1,122.00,77600 -grafbase,12,37,878.4316848065005,34.0588525,1,120.00,77628 -grafbase,12,37,904.4222181443937,34.4778042,1,122.00,79292 -grafbase,12,37,905.5912354866283,35.9234572,1,123.00,79452 -grafbase,13,41,930.987869695465,36.549221749999965,1,121.00,79452 -grafbase,13,41,945.4276407676872,38.753818499999994,1,123.00,80000 -grafbase,13,41,958.1946521126496,39.48522589999999,1,125.00,80684 -grafbase,14,47,973.1061261651727,40.888263499999994,1,124.00,81068 -grafbase,14,47,989.4961310840978,42.26535079999999,1,125.00,82296 -grafbase,14,47,1004.4075023826731,42.42868639999995,1,127.00,83064 -grafbase,15,54,1010.8027390369631,44.4667796,1,125.00,82368 -grafbase,15,54,1033.120407704126,44.92490425,1,127.00,83180 -grafbase,16,54,1048.3702311954544,47.27171504999999,1,126.00,84076 -grafbase,16,65,1051.488732797519,49.27425469999996,1,127.00,83908 -grafbase,16,65,1071.846364625741,52.29186709999999,1,129.00,85340 -grafbase,17,65,1075.1202359843835,54.757768399999996,1,127.00,86492 -grafbase,17,77,1086.5903718211534,55.539868000000006,1,129.00,87288 -grafbase,17,77,1106.1645242855925,59.15996119999998,1,131.00,89336 -grafbase,18,88,1109.1833232467463,62.06606,1,130.00,90080 -grafbase,18,88,1117.7688570455011,62.6949882,1,132.00,90792 -grafbase,18,88,1132.5744692287847,66.20220709999994,1,134.00,92252 -grafbase,19,99,1140.0222599765282,69.3437151999999,1,132.00,94220 -grafbase,19,99,1153.9255795171607,70.52014999999999,1,134.00,96888 -grafbase,20,99,1168.7746460559997,74.56360939999999,1,133.00,100064 -grafbase,20,110,1173.8203603455747,78.10757399999997,1,134.00,104224 -grafbase,20,110,1185.4326140352969,78.6247719,1,136.00,101632 -grafbase,21,121,1199.8078879162945,83.12580499999997,1,135.00,103236 -grafbase,21,121,1194.519152866727,83.72210859999998,1,136.00,101336 -grafbase,21,121,1216.0705824665927,87.0969402,1,138.00,105816 -grafbase,22,134,1214.3737230189786,90.56755174999999,1,137.00,102636 -grafbase,22,134,1224.2635109034309,90.51761099999999,1,138.00,102120 -grafbase,23,134,1238.3063298681766,94.1050226,1,137.00,104228 -grafbase,23,144,1247.9519300499226,97.83946399999995,1,139.00,110356 -grafbase,23,144,1242.9187693450829,100.24728384999995,1,141.00,103168 -grafbase,24,155,1262.593174694207,107.86163479999955,1,139.00,107188 -grafbase,24,155,1262.8101300890567,113.52587700000001,1,141.00,108196 -grafbase,25,155,1262.0699614519006,114.21341609999989,1,140.00,114992 -grafbase,25,167,1273.7121807921958,119.72747559999999,1,142.00,113060 -grafbase,25,167,1282.9313311507915,127.73031939999998,1,144.00,115876 -grafbase,26,178,1277.4777466901885,128.0926484,1,142.00,111508 -grafbase,26,178,1292.4352902203575,133.12645450000002,1,145.00,113964 -grafbase,27,189,1301.9442838984664,136.44525414999998,1,143.00,117356 -grafbase,27,189,1309.1079229446962,141.18294959999994,1,145.00,117872 -grafbase,28,189,1306.233948704932,144.5771613999998,1,144.00,114520 -grafbase,28,200,1314.1919104402698,149.14887174999996,1,146.00,108188 -grafbase,28,200,1323.0380518852205,152.28007939999983,1,147.00,120584 -grafbase,29,213,1321.7732230554766,156.77422785,1,146.00,119804 -grafbase,29,213,1327.0785268512986,158.43946275,1,148.00,115128 -grafbase,30,223,1332.30905532676,160.15321444999995,1,148.00,120144 -grafbase,31,223,1336.7541393639758,166.1985887,1,147.00,117748 -grafbase,31,234,1343.4746473718092,171.96818159999995,1,150.00,117908 -grafbase,32,245,1346.758347674691,176.75894890000004,1,149.00,111784 -grafbase,32,245,1357.005264982687,183.18887969999997,1,151.00,110520 -grafbase,33,257,1360.2236395135142,185.876362,1,151.00,114404 -grafbase,34,257,1368.9746428508818,192.78749725,1,150.00,113816 -grafbase,34,269,1371.149132549221,195.4609664,1,153.00,120124 -grafbase,35,279,1379.114602936088,199.67028075000002,1,153.00,125952 -grafbase,36,279,1386.067246146387,206.42639075,1,152.00,121836 -grafbase,36,291,1392.142847531287,210.3214855,1,155.00,120020 -grafbase,37,302,1395.0474950029188,214.6045765,1,155.00,121968 -grafbase,38,302,1406.1433425177602,220.30352499999987,1,154.00,118108 -grafbase,38,313,1409.633077544338,222.9164601,1,157.00,116896 -grafbase,39,324,1410.8722005330274,225.0782808,1,157.00,119988 -grafbase,40,336,1419.314156586056,231.01453259999997,1,156.00,114748 -grafbase,40,336,1423.6211340690854,234.87001825,1,159.00,115404 -grafbase,41,347,1427.7579165747773,238.44833119999993,1,158.00,111664 -grafbase,42,358,1433.0687133931037,243.8811107,1,158.00,118040 -grafbase,42,358,1436.978705416889,249.22857185,1,160.00,126460 -grafbase,43,369,1440.813178546066,252.08957959999998,1,161.00,122432 -grafbase,44,381,1448.5916421249851,259.27019179999996,1,161.00,123032 -grafbase,45,381,1449.677481143252,262.9017842,1,161.00,119740 -grafbase,46,392,1455.43448252154,269.8177945,1,160.00,112616 -grafbase,46,403,1458.5965994816713,274.4444389999998,1,163.00,111012 -grafbase,47,414,1459.7357892658663,277.04298909999994,1,162.00,109636 -grafbase,48,425,1464.7112841365517,285.595978,1,162.00,112256 -grafbase,49,425,1469.2532708666743,292.23403530000013,1,164.00,109716 -grafbase,50,437,1475.5882175952888,300.86860079999997,1,163.00,130408 -grafbase,50,448,1480.0101883980506,307.4703184,1,163.00,136532 -grafbase,52,459,1481.6824436505453,314.58687,1,164.00,132656 -grafbase,53,471,1486.8362078337111,319.9112033999999,1,165.00,132188 -grafbase,54,482,1490.9138528812641,330.56158,1,166.00,125912 -grafbase,55,493,1493.8228371369223,338.24023839999995,1,166.00,117304 -grafbase,55,491,1503.7381374855324,343.6781010499998,1,168.00,159708 -grafbase,56,446,1505.233026073754,345.81255699999997,1,168.00,155836 -grafbase,57,446,1511.016551879657,345.6590725,1,168.00,151192 -grafbase,58,399,1516.4040978895898,345.5335761,1,168.00,155620 -grafbase,58,351,1520.318978104091,345.3564717999999,1,171.00,149280 -grafbase,59,305,1527.9543463878185,344.50115000000005,1,171.00,145328 -grafbase,60,260,1533.202224740484,343.65573455,1,171.00,140108 -grafbase,60,260,1539.6665480257948,342.9148022499999,1,172.00,138452 -grafbase,61,216,1537.5480186237742,342.719401,1,172.00,133748 -grafbase,62,216,1545.5164631127127,341.87163599999997,1,171.00,131828 -grafbase,62,170,1542.7686717133945,341.41668824999977,1,172.00,127012 -grafbase,63,170,1550.6645141455906,340.28574749999996,1,172.00,124160 -grafbase,63,124,1549.1156873965278,339.8545201999999,1,173.00,119448 -grafbase,64,124,1554.1980788592655,339.2018859499999,1,172.00,117740 -grafbase,64,78,1553.1636278436256,338.80697879999997,1,173.00,114400 -cosmo,6,5,283.6452046260552,9.329749399999999,1,163.00,90628 -cosmo,6,5,295.70970748751006,11.02410325,1,165.00,94012 -cosmo,6,5,308.19257525174186,12.8114405,1,162.00,93788 -cosmo,6,5,324.74870312652007,15.301492199999998,1,164.00,96052 -cosmo,7,10,347.71338011639347,17.600087299999995,1,167.00,98428 -cosmo,7,10,359.18226113919434,20.51911119999996,1,170.00,95760 -cosmo,7,10,373.40398221616175,23.24934319999998,1,166.00,98952 -cosmo,8,15,383.06546167497,24.46162380000001,1,169.00,99844 -cosmo,8,15,394.2443026028695,26.4093485,1,172.00,99800 -cosmo,8,15,410.9745254721632,28.38921064999994,1,169.00,103076 -cosmo,9,20,417.28580995192607,31.243007399999996,1,171.00,102680 -cosmo,9,20,428.004277411864,34.12298064999999,1,174.00,100800 -cosmo,9,20,433.96858436404824,36.336702499999994,1,171.00,106096 -cosmo,9,20,445.5227330889379,38.531163949999986,1,173.00,98948 -cosmo,10,25,454.46382706798346,40.821329749999975,1,176.00,97692 -cosmo,10,25,464.14535099789686,43.244043000000005,1,173.00,101816 -cosmo,10,25,468.5705309506398,46.0900046,1,176.00,107388 -cosmo,11,30,472.1930885577265,47.07326959999998,1,178.00,104224 -cosmo,11,30,478.19311042381054,50.10312889999998,1,181.00,108284 -cosmo,11,30,485.9146849102832,52.293245649999974,1,177.00,109736 -cosmo,12,35,496.288445417446,53.92472119999996,1,180.00,111408 -cosmo,12,35,500.1839656083344,56.44650299999998,1,183.00,110916 -cosmo,12,35,510.4575270016827,57.8872266,1,180.00,112524 -cosmo,13,40,513.0350989815905,59.72740095,1,182.00,110260 -cosmo,13,40,521.9448480936825,61.74744039999996,1,185.00,111988 -cosmo,13,40,526.8532192922778,63.450195399999984,1,182.00,116864 -cosmo,14,40,531.1301263568405,65.52972175,1,184.00,121604 -cosmo,14,45,539.2467540322031,68.26599819999998,1,187.00,116564 -cosmo,14,45,542.6391894222379,70.05366389999999,1,184.00,115592 -cosmo,14,45,543.9045992000282,74.0326138,1,186.00,119744 -cosmo,15,50,549.2027106866726,77.528731,1,188.00,126148 -cosmo,15,50,549.9776025254743,79.88215879999998,1,191.00,123528 -cosmo,15,50,553.3403792979548,82.65722530000001,1,188.00,127828 -cosmo,16,61,557.918236510628,86.86143,1,190.00,122300 -cosmo,16,61,561.3443762274719,90.6105377,1,192.00,131024 -cosmo,16,61,566.801034375132,94.59719094999997,1,189.00,132388 -cosmo,17,72,570.0966798576902,99.64962219999997,1,192.00,131772 -cosmo,17,72,570.1500362781778,102.67222320000002,1,194.00,135616 -cosmo,17,72,568.3434892879505,106.0751638,1,191.00,120760 -cosmo,18,72,573.9453751656544,111.70778619999996,1,193.00,136964 -cosmo,18,83,580.2166226048439,118.12066659999994,1,196.00,139268 -cosmo,18,83,580.8235095233873,126.60015219999993,1,193.00,134516 -cosmo,18,83,583.411411819499,130.69719089999995,1,195.00,137612 -cosmo,19,95,585.9507109824241,135.53319019999998,1,197.00,140028 -cosmo,19,95,588.7762344556592,141.58506494999997,1,199.00,139328 -cosmo,19,95,590.6227620406493,144.6508421,1,196.00,152372 -cosmo,20,106,591.0022240168696,148.73200584999998,1,199.00,146536 -cosmo,20,106,595.0245214173256,154.95712559999998,1,201.00,153604 -cosmo,20,106,597.3141681095994,157.81983895,1,198.00,156876 -cosmo,21,117,599.9843013859987,164.02547799999994,1,200.00,154524 -cosmo,21,117,601.4233775720547,167.90550375,1,202.00,165036 -cosmo,21,117,602.6191321442906,174.2127107,1,200.00,161492 -cosmo,22,128,602.1229357533786,177.449857,1,201.00,161772 -cosmo,22,128,607.5273139633412,185.5943373999999,1,203.00,186736 -cosmo,22,128,608.2860111455458,190.25176409999992,1,201.00,161352 -cosmo,23,128,606.8813976777857,196.1369579999999,1,203.00,178316 -cosmo,23,140,606.5842355239963,201.6921899,1,205.00,177184 -cosmo,23,140,609.3291264664238,211.6635882,1,202.00,179840 -cosmo,23,140,611.8885624346622,218.80023899999995,1,204.00,197980 -cosmo,24,151,612.9782517566072,222.22967679999982,1,206.00,201724 -cosmo,24,151,616.5066120917969,227.21633949999998,1,208.00,183152 -cosmo,24,151,613.1533593186409,230.2891805,1,206.00,188660 -cosmo,25,162,615.9595761107387,236.64628959999996,1,208.00,186784 -cosmo,25,162,619.1971382631822,242.76200939999995,1,205.00,185812 -cosmo,25,162,617.6762082458789,244.87371644999993,1,207.00,179944 -cosmo,26,173,621.7347203918301,251.760447,1,209.00,192944 -cosmo,26,173,622.6119254674624,257.2821147999998,1,207.00,219644 -cosmo,27,173,624.9917799572967,261.02309959999997,1,209.00,218928 -cosmo,27,185,627.2894122270865,269.605775,1,211.00,217372 -cosmo,27,185,628.8465514612877,271.33945379999983,1,208.00,203568 -cosmo,27,185,628.6522073864958,278.6717228499999,1,211.00,244172 -cosmo,28,196,628.1397422550987,285.5898342,1,213.00,233680 -cosmo,28,196,629.0122034075616,291.88782,1,210.00,222960 -cosmo,28,196,628.7968433103757,296.78926979999994,1,212.00,244668 -cosmo,29,207,633.5685895587538,304.0567322,1,214.00,218044 -cosmo,29,207,634.2740588228414,306.4833251,1,211.00,217092 -cosmo,29,207,636.3032101347059,310.92534405000004,1,213.00,209660 -cosmo,30,218,633.867594451215,314.3187956,1,215.00,223228 -cosmo,30,218,637.3246949113258,322.3479795,1,217.00,226220 -cosmo,30,218,637.1458319186142,323.59771989999996,1,214.00,223536 -cosmo,31,230,637.0847179803401,325.992349,1,216.00,229184 -cosmo,31,230,639.0710029930058,331.60103659999993,1,214.00,245100 -cosmo,31,230,639.9047113344279,336.47792919999995,1,216.00,244028 -cosmo,32,241,642.3985518517605,346.49406085000004,1,218.00,207404 -cosmo,32,241,642.1742889506552,349.4106085499996,1,215.00,238344 -cosmo,32,241,644.5214794067119,358.689952,1,217.00,257660 -cosmo,33,252,640.9051287706103,363.5549572,1,219.00,251452 -cosmo,33,252,644.5386376546844,373.509713,1,217.00,248964 -cosmo,33,252,643.0042573739676,375.03477319999985,1,218.00,277760 -cosmo,34,263,645.7976451562337,379.34307429999996,1,220.00,251816 -cosmo,34,263,645.6069780104514,382.152855,1,218.00,260352 -cosmo,34,263,646.7402997987144,386.3844148,1,220.00,263524 -cosmo,35,275,644.5655078137462,392.6170654,1,222.00,270052 -cosmo,35,275,649.2399899461255,400.84511879999997,1,219.00,243876 -cosmo,35,275,650.369854649578,403.5238763999997,1,221.00,256292 -cosmo,36,286,649.0799785066539,406.50103379999996,1,223.00,262460 -cosmo,36,286,649.8313454166041,413.09916365,1,220.00,266140 -cosmo,36,286,650.5861546562655,417.7923446,1,222.00,265428 -cosmo,37,297,651.1238407148822,421.0107675,1,223.00,264764 -cosmo,37,297,652.9494532717132,426.2243618,1,221.00,271924 -cosmo,37,297,652.7582590746009,430.997198,1,223.00,257708 -cosmo,38,308,653.2241937655986,433.69447909999997,1,225.00,251260 -cosmo,38,308,656.4710797533079,443.20142575,1,222.00,278132 -cosmo,38,308,652.9843182995346,444.5867508999999,1,224.00,291664 -cosmo,39,320,653.5071477274729,453.9068026,1,226.00,290628 -cosmo,39,320,653.9766953760103,457.9957892,1,223.00,268148 -cosmo,39,320,656.0050163428042,463.4973815,1,225.00,264236 -cosmo,40,331,657.1026931573758,466.6919735999999,1,226.00,296608 -cosmo,40,331,656.3484875937486,471.70591334999995,1,228.00,286732 -cosmo,40,331,656.4978154535502,475.03596475,1,226.00,284776 -cosmo,41,342,659.0092581124894,479.3962897,1,227.00,278080 -cosmo,41,342,658.0201577298023,481.90283379999994,1,228.00,276396 -cosmo,41,342,658.4186015120285,486.2435555999999,1,226.00,291980 -cosmo,42,353,659.2145347329794,492.26007759999993,1,228.00,286836 -cosmo,42,353,657.5383285697228,495.91498874999985,1,229.00,283992 -cosmo,42,353,658.7125412493864,505.00769719999994,1,227.00,299304 -cosmo,43,365,656.2726476416708,514.5013430999998,1,229.00,280224 -cosmo,43,365,660.0683247546724,522.1802791999999,1,230.00,286240 -cosmo,43,365,658.4438013842766,522.35282385,1,228.00,290556 -cosmo,44,376,661.6235478085799,527.6746009999999,1,230.00,294356 -cosmo,44,376,659.9069237804606,530.98570795,1,231.00,329428 -cosmo,44,376,660.2131125032527,538.68087975,1,229.00,313264 -cosmo,45,387,662.9425540628769,543.3158962,1,230.00,313612 -cosmo,45,387,661.2468758208338,545.3932266,1,232.00,304316 -cosmo,45,387,659.9897477703986,548.86820875,1,230.00,369212 -cosmo,46,398,662.3535773823032,558.2487978,1,231.00,361312 -cosmo,46,398,662.2254476457891,563.5091196499999,1,233.00,329448 -cosmo,46,398,664.3234449737979,568.5212205,1,231.00,319808 -cosmo,47,410,664.3883977747067,573.6430499999999,1,232.00,323096 -cosmo,47,410,663.3659464222212,576.8043496999999,1,230.00,318300 -cosmo,47,410,664.513130257873,586.9149647499999,1,232.00,312316 -cosmo,48,421,664.2556951990323,592.0098697,1,233.00,328316 -cosmo,48,421,665.9510190062643,595.6296273999995,1,234.00,326692 -cosmo,48,421,664.2985509462713,598.9421713999998,1,232.00,338700 -cosmo,49,432,666.5889132634488,608.8096993,1,234.00,332788 -cosmo,49,432,667.2173030439735,611.83242755,1,235.00,305948 -cosmo,49,432,665.146246193595,614.23428155,1,233.00,326812 -cosmo,50,443,664.7048063570064,619.9580755999998,1,235.00,327980 -cosmo,50,443,663.87701412455,629.2366360499999,1,233.00,333516 -cosmo,50,443,666.2394745856885,645.1219556,1,234.00,369988 -cosmo,51,455,665.7493752123258,649.6275495,1,235.00,343564 -cosmo,51,455,664.5189671188741,655.6807501999998,1,234.00,373292 -cosmo,51,455,665.7230762786535,674.0683241999998,1,235.00,343228 -cosmo,52,466,665.8145195343138,674.6917632999997,1,236.00,318724 -cosmo,52,466,666.4776614538509,677.5805615999999,1,234.00,350196 -cosmo,52,466,666.7249624789761,682.471791,1,235.00,339720 -cosmo,53,477,665.7050796702714,684.882533,1,237.00,343124 -cosmo,53,477,668.0049116006675,702.0740621999998,1,235.00,364352 -cosmo,53,477,666.2467757662477,706.8577087000001,1,236.00,353668 -cosmo,54,488,666.5568646856103,708.7070037999998,1,237.00,359412 -cosmo,54,488,667.3606443144093,716.0305596,1,235.00,332764 -cosmo,54,488,667.9742206416188,725.1342963999999,1,236.00,362332 -cosmo,55,500,667.4467585132388,729.7474515,1,238.00,380756 -cosmo,55,500,668.6687393399825,734.5907585,1,239.00,379120 -cosmo,55,500,668.4139866169556,739.0398903999996,1,237.00,374104 -cosmo,56,468,668.2066295431003,746.5519941999997,1,238.00,364052 -cosmo,56,468,670.9939202330596,751.5149133999997,1,240.00,364436 -cosmo,56,468,670.4675625122304,751.3256371999996,1,238.00,352400 -cosmo,57,425,670.5209814753725,752.5530734499999,1,239.00,337732 -cosmo,57,425,671.0293535782946,753.67259825,1,240.00,331816 -cosmo,57,425,670.9126735638691,753.5527692000001,1,238.00,327272 -cosmo,58,375,672.4078297225803,753.4476545500002,1,239.00,324824 -cosmo,58,375,672.9956033232115,752.8438399999995,1,241.00,326016 -cosmo,58,375,671.2980054104024,752.5248461999998,1,239.00,313832 -cosmo,59,330,673.1876697855397,751.860166,1,240.00,307632 -cosmo,59,330,672.7868209873023,751.3437640999998,1,241.00,307496 -cosmo,59,330,673.0030683860399,750.7973045,1,239.00,274704 -cosmo,60,286,673.5463424789324,749.9491641000001,1,241.00,282992 -cosmo,60,286,674.1494680527003,748.6789054999998,1,242.00,272304 -cosmo,60,286,674.2363030776409,748.1540415,1,240.00,258560 -cosmo,61,241,673.6135766503608,747.7800679,1,241.00,275180 -cosmo,61,241,674.9164403320449,746.40835325,1,242.00,266376 -cosmo,61,241,675.6161162548157,745.3577690000001,1,240.00,238540 -cosmo,62,189,676.1331709572798,744.0607997000001,1,242.00,240100 -cosmo,62,189,675.5811785541126,743.537006,1,243.00,220604 -cosmo,62,189,677.6119554859094,742.1934619499999,1,241.00,219616 -cosmo,63,144,677.4785643135561,741.0522242,1,242.00,202484 -cosmo,63,144,677.5697943765399,740.1917703999998,1,243.00,199260 -cosmo,63,144,678.5077418829213,739.2454571999998,1,242.00,182536 -cosmo,64,99,678.3389454616652,738.5510255,1,243.00,163892 -cosmo,64,99,679.0254685508987,737.65648295,1,241.00,164548 -cosmo,64,99,679.368529512757,736.975853,1,242.00,152676 -apollo-router,8,3,142.94374943413783,9.617754999999999,1,144.00,119504 -apollo-router,9,3,148.24468636739945,11.816162799999995,1,146.00,118808 -apollo-router,9,3,155.21255204113444,14.566631400000002,1,148.00,119684 -apollo-router,9,3,160.9345189826387,17.227076149999995,1,150.00,120452 -apollo-router,9,8,171.82939152897396,20.551949999999994,1,148.00,120964 -apollo-router,10,8,176.89726747608353,23.212585599999997,1,151.00,123184 -apollo-router,10,8,181.62243306785808,27.20390759999993,1,153.00,126768 -apollo-router,10,13,191.74663840123148,32.4394805,1,151.00,127920 -apollo-router,11,13,196.65939659765075,34.85447489999999,1,153.00,131504 -apollo-router,11,13,202.33644917196662,37.8544231,1,155.00,131840 -apollo-router,11,18,211.96274314224576,41.446355,1,158.00,134264 -apollo-router,12,18,216.35086755949771,43.513206599999975,1,156.00,138340 -apollo-router,12,18,221.83315473609468,47.08447159999999,1,158.00,140004 -apollo-router,12,23,228.92567692019367,51.06370525,1,160.00,141028 -apollo-router,12,23,233.74778544812784,54.15083429999998,1,158.00,144740 -apollo-router,13,23,236.951953136148,56.813163749999994,1,161.00,147044 -apollo-router,13,23,242.14078366986598,60.51778915,1,163.00,147168 -apollo-router,13,28,247.91515318894517,66.1263234,1,161.00,151008 -apollo-router,14,28,251.07524864444673,70.4455984,1,163.00,153204 -apollo-router,14,28,251.76704787256256,74.93489739999997,1,166.00,159844 -apollo-router,14,33,257.7942766773366,80.08361839999999,1,164.00,160380 -apollo-router,15,33,259.51460824823897,83.479724,1,166.00,164860 -apollo-router,15,33,264.9630261201006,86.08652825,1,168.00,165556 -apollo-router,15,38,267.2110005927081,88.17913459999998,1,170.00,172852 -apollo-router,16,38,270.3005451946089,90.9025326,1,168.00,176940 -apollo-router,16,38,275.0460790061192,93.996284,1,171.00,180992 -apollo-router,16,43,277.0741867750518,97.40089889999999,1,173.00,180692 -apollo-router,17,43,281.2842777971157,100.44578325,1,171.00,180064 -apollo-router,17,43,281.30771854705523,104.4116645999999,1,173.00,184240 -apollo-router,17,43,284.27266878539655,110.6453404,1,175.00,189048 -apollo-router,17,48,286.20574923483906,114.12682714999988,1,173.00,190456 -apollo-router,18,48,290.0270312571465,118.7309778,1,175.00,198648 -apollo-router,18,48,291.2306449072761,124.97342284999999,1,177.00,200112 -apollo-router,18,57,293.96845262669933,130.1543179,1,175.00,202792 -apollo-router,19,57,296.4214901326478,136.2855956,1,177.00,207108 -apollo-router,19,57,297.018048446988,142.8888959,1,179.00,210664 -apollo-router,19,68,297.42047111974784,154.96675829999992,1,177.00,217804 -apollo-router,20,68,297.9693724172149,165.1744592,1,179.00,221360 -apollo-router,20,68,300.7717451273946,172.83707850000002,1,181.00,226880 -apollo-router,20,79,301.78689492555446,180.94184439999998,1,183.00,226704 -apollo-router,21,79,302.94556352761407,188.82755785,1,181.00,232228 -apollo-router,21,79,306.6453007198286,197.9954062,1,183.00,238388 -apollo-router,21,90,306.6552864886255,203.3068633,1,185.00,256508 -apollo-router,22,90,309.8545583019714,215.48289359999978,1,183.00,263504 -apollo-router,22,90,311.0616980331823,221.00814050000002,1,185.00,264548 -apollo-router,22,102,312.4078570178961,227.18571719999994,1,187.00,275092 -apollo-router,23,102,313.1763397813605,239.58040059999996,1,185.00,285716 -apollo-router,23,102,313.8743053838845,246.99093569999994,1,187.00,299028 -apollo-router,23,113,316.3604720949038,256.22310379999993,1,189.00,313044 -apollo-router,23,113,317.6108775863448,267.84075125,1,187.00,312020 -apollo-router,24,113,316.4617613975295,273.4119555,1,189.00,313160 -apollo-router,24,113,319.6388726335819,287.22935235,1,191.00,310568 -apollo-router,24,124,318.7358401200923,290.7361143999999,1,189.00,310148 -apollo-router,25,124,321.2290877628103,301.25412679999994,1,190.00,313252 -apollo-router,25,124,322.2155111570128,307.34928979999995,1,192.00,321496 -apollo-router,25,135,324.19190428330086,316.22488115,1,190.00,320176 -apollo-router,26,135,323.2581204877919,321.38151815,1,192.00,317516 -apollo-router,26,135,323.8934402844007,332.6730944,1,194.00,317384 -apollo-router,26,147,326.607904305543,338.5776177999999,1,192.00,335072 -apollo-router,27,147,326.88289755863644,352.9492329499999,1,194.00,340896 -apollo-router,27,147,326.9705218048651,362.8075639000001,1,196.00,340756 -apollo-router,27,158,328.90490806176604,378.998501,1,194.00,344956 -apollo-router,28,158,328.35425749479424,387.7214465999999,1,195.00,350780 -apollo-router,28,158,330.4089267394739,403.1791842,1,197.00,351456 -apollo-router,28,169,328.7363765160062,407.93041370000003,1,199.00,373728 -apollo-router,29,169,329.9378910743319,421.8657769999999,1,197.00,366672 -apollo-router,29,169,331.02063225882034,427.9379448499999,1,199.00,381576 -apollo-router,29,169,331.04111142001796,431.1272982,1,200.00,380416 -apollo-router,30,180,332.7832707865675,440.7535616499999,1,198.00,380152 -apollo-router,30,180,332.5856549196974,447.466474,1,200.00,398556 -apollo-router,30,192,333.9535523236103,462.5246468,1,202.00,394712 -apollo-router,31,192,334.9351213644794,470.1964272999999,1,200.00,404724 -apollo-router,31,192,334.4809095644208,476.26936374999997,1,201.00,424104 -apollo-router,31,192,337.07329997872347,488.47688615,1,203.00,416216 -apollo-router,31,203,335.6526579927154,491.12231464999996,1,201.00,418856 -apollo-router,32,203,337.11072212142165,507.66398519999996,1,203.00,420240 -apollo-router,32,203,337.3839624949313,516.74336025,1,205.00,442640 -apollo-router,32,214,338.5109782103712,526.4465253999999,1,203.00,444616 -apollo-router,33,214,338.9729341697134,530.1250102500001,1,204.00,441244 -apollo-router,33,214,338.72962517417545,537.8436429,1,206.00,449820 -apollo-router,33,225,340.43770150363747,546.7291880500001,1,204.00,442464 -apollo-router,34,225,339.39818146842754,554.3873763499998,1,205.00,445704 -apollo-router,34,225,339.4634322437555,561.4048878,1,207.00,448136 -apollo-router,34,237,341.06587573849305,584.5456725,1,205.00,465924 -apollo-router,35,237,340.02413413684195,591.9060265999999,1,207.00,461180 -apollo-router,35,237,342.60650264499793,605.8966274,1,208.00,447876 -apollo-router,35,248,342.3787356431959,605.6944759999998,1,210.00,476784 -apollo-router,36,248,342.98998032163945,616.6414568,1,208.00,474792 -apollo-router,36,248,342.90131192467805,631.7323239,1,209.00,495144 -apollo-router,36,259,342.7857957333906,645.677942,1,211.00,495528 -apollo-router,37,259,344.39696296949074,660.065532,1,209.00,510288 -apollo-router,37,259,343.3959779047996,660.3263725,1,210.00,513232 -apollo-router,37,270,342.8665721996886,676.9526060499999,1,209.00,508312 -apollo-router,38,270,345.74321082664153,692.634221,1,210.00,494912 -apollo-router,38,270,346.1912160422308,693.7694083499999,1,212.00,492472 -apollo-router,38,282,346.4667194324032,695.8336541499999,1,213.00,488672 -apollo-router,39,282,346.56124845456895,706.29876,1,211.00,488672 -apollo-router,39,282,346.96406096575623,712.5499653999999,1,212.00,488672 -apollo-router,39,282,347.5555410116947,727.2699759999999,1,214.00,488672 -apollo-router,39,293,347.1399430727937,730.4818408499999,1,212.00,502240 -apollo-router,40,293,347.58637780517034,740.4383707999999,1,213.00,513504 -apollo-router,40,293,349.32091582846994,749.0310845999996,1,215.00,508684 -apollo-router,40,304,347.5239220184502,749.1874724499997,1,213.00,513900 -apollo-router,41,304,348.8071431865056,761.1101255499999,1,214.00,508892 -apollo-router,41,304,348.8418855419416,768.0686805,1,215.00,505608 -apollo-router,41,315,348.8991225034957,773.8566932,1,217.00,511624 -apollo-router,42,315,349.37388481383874,785.7373286499997,1,215.00,524040 -apollo-router,42,315,349.6110985222126,798.4001434999999,1,216.00,530204 -apollo-router,42,327,351.3807004753101,808.0009678,1,218.00,516484 -apollo-router,43,327,350.34858965460546,811.1304695,1,216.00,543660 -apollo-router,43,327,350.6197848954829,820.8161941,0.9999281196089707,217.00,546348 -apollo-router,43,327,352.1161392919886,845.3315369999995,0.9998580452835546,218.00,531512 -apollo-router,43,338,352.0194857758313,850.009223,0.9998590656049609,216.00,565516 -apollo-router,44,338,351.66871707376987,852.7792867999999,0.9998600517808411,218.00,556832 -apollo-router,44,338,353.7572034731622,869.2382484999999,0.9997932032811746,219.00,546492 -apollo-router,44,349,352.17211756544134,870.9759467499999,0.9997936726272352,217.00,584124 -apollo-router,45,349,353.24887000146816,878.837972,0.9997959322495068,219.00,583452 -apollo-router,45,349,354.2666020282873,893.1138257499995,0.9997310562764742,220.00,572684 -apollo-router,45,360,353.90801089447694,895.1479052,0.9997328346246327,219.00,572684 -apollo-router,46,360,353.77613162451536,902.9556143999998,0.9997349062230764,220.00,580340 -apollo-router,46,360,354.20318568034213,913.0311742499998,0.999737205177058,221.00,577264 -apollo-router,46,372,354.3043087987165,925.7937182,0.9997392947924135,219.00,580200 -apollo-router,47,372,354.99644705026355,935.2969782499999,0.9997416020671834,221.00,583584 -apollo-router,47,372,354.85419212274286,939.5985522999999,0.9997437375872894,222.00,558576 -apollo-router,47,383,354.41596236936346,944.509452,0.9997454013111833,221.00,607856 -apollo-router,48,383,355.61127330664317,958.08219295,0.9997479997479998,222.00,610264 -apollo-router,48,383,354.5042276850534,964.4785552,0.9997489487227766,223.00,599208 -apollo-router,48,394,355.15507555247086,976.9464005,0.999751166407465,221.00,601176 -apollo-router,49,394,357.49199561597044,989.5986115000001,0.9997546764796075,223.00,588992 -apollo-router,49,394,355.8917167362452,989.8542535,0.9997551420176298,224.00,617408 -apollo-router,49,405,355.71154733124877,991.3287674,0.9997567353889193,222.00,617408 -apollo-router,50,405,356.9776935150467,1010.731447,0.9997592681752527,223.00,621564 -apollo-router,50,405,358.3934914373763,1024.926451,0.9997619614377529,225.00,604600 -apollo-router,50,417,357.44364819047127,1024.3538704999987,0.9997628645956841,226.00,609884 -apollo-router,51,417,356.69845146597527,1026.4743514,0.9997638027753174,224.00,610268 -apollo-router,51,417,359.2048766717847,1041.2693150999999,0.9997090824460348,225.00,595624 -apollo-router,51,428,358.03247959070154,1047.6479108,0.9997098421541318,226.00,637736 -apollo-router,52,428,357.61786071918687,1055.26283475,0.999653479641929,225.00,676392 -apollo-router,52,428,357.7342538095197,1063.7154431999995,0.9996560619088564,226.00,673564 -apollo-router,52,439,360.2856845203266,1089.92332,0.9996610360996554,227.00,648080 -apollo-router,53,439,360.05301655378804,1089.3414410999997,0.99966297814975,225.00,645364 -apollo-router,53,439,359.16427170050525,1089.4134655999999,0.999664147774979,226.00,645364 -apollo-router,53,439,358.81763547528186,1098.4484618000001,0.9996658498552016,228.00,666996 -apollo-router,53,450,358.7890097391167,1122.563617049999,0.9996679028062213,226.00,658896 -apollo-router,54,450,359.5164030830446,1137.2403903999998,0.9996707818930041,227.00,652400 -apollo-router,54,450,359.97673070473155,1143.1694369499999,0.9996732026143791,228.00,706288 -apollo-router,54,462,358.8491084547215,1147.289719,0.9996740193415191,226.00,724340 -apollo-router,55,462,358.7613369687835,1158.8567252999999,0.9996224990562477,228.00,731216 -apollo-router,55,462,360.80995949010025,1191.3955695,0.9995741282938515,229.00,721768 -apollo-router,55,473,360.36297661451283,1198.145302,0.9995230777383286,228.00,724860 -apollo-router,56,473,360.3882295102383,1198.2288767999999,0.9994733793248723,229.00,724988 -apollo-router,56,473,359.8247988497008,1203.87808,0.999475478625754,230.00,739068 -apollo-router,56,484,359.1785987125336,1211.1701186999987,0.9994774520562262,228.00,739196 -apollo-router,57,484,360.1615042498006,1239.90463035,0.9994818652849741,229.00,738296 -apollo-router,57,484,359.45758491841616,1251.0033185499994,0.9994851199670477,231.00,702176 -apollo-router,57,496,362.070521034928,1264.5914269999998,0.999390584531004,229.00,692644 -apollo-router,58,496,360.5877352387652,1264.5211783,0.9993912337662337,230.00,721188 -apollo-router,58,496,359.0865147551958,1267.07986595,0.9993917274939172,231.00,725668 -apollo-router,58,497,362.1335566963327,1279.4195539,0.9994006592747977,230.00,722192 -apollo-router,59,497,363.6041843646702,1293.3702538999996,0.9994066162290461,231.00,696716 -apollo-router,59,497,362.3993528229911,1295.2006305,0.9994076706648897,232.00,717708 -apollo-router,59,458,362.08565408273034,1293.34545875,0.9994102034797995,233.00,762820 -apollo-router,60,458,363.04007168827144,1293.4369046999993,0.9993664099814796,231.00,766700 -apollo-router,60,458,363.7151778097554,1305.7771942000002,0.9993229191855685,232.00,762860 -apollo-router,60,406,363.5471694637208,1309.4535796000002,0.9993261779852721,233.00,756736 -apollo-router,61,406,363.84312396070874,1308.3896655,0.9993302717183314,231.00,748920 -apollo-router,61,406,364.9315350986133,1308.9197589999999,0.9993360208679156,233.00,742656 -apollo-router,61,406,364.54621454443105,1307.8288704,0.9993387805223634,234.00,745344 -apollo-router,61,358,364.14586577755244,1307.3785848000002,0.9993413934233429,232.00,743508 -apollo-router,62,358,364.99214899909424,1305.8121891,0.9993463441964703,233.00,719528 -apollo-router,62,358,366.39165515038974,1304.9984468,0.999352361567285,234.00,679816 -apollo-router,62,308,365.61917216142746,1304.3961728999998,0.9993542435424354,232.00,673264 -apollo-router,63,308,366.39124094040017,1302.4618514,0.9993593556948702,233.00,648448 -apollo-router,63,308,366.2856220325917,1301.095927049999,0.9993624191638583,234.00,648448 -apollo-router,63,261,367.8306045010324,1299.2671578,0.9993686014522166,233.00,616448 -apollo-router,64,261,367.320868554921,1298.6871640999998,0.9993710126696019,234.00,615708 -apollo-router,64,261,367.2362530489808,1298.0367543999996,0.9993741338459475,235.00,615708 -apollo-router,64,214,368.13821229602024,1294.0628587999993,0.999378854430099,236.00,604732 -apollo-router,65,214,368.15692511216577,1292.9584380000001,0.9993820621468926,234.00,604732 -apollo-router,65,214,368.24588027251826,1292.0616069499997,0.9993852638974269,235.00,601848 -apollo-router,65,165,368.8748958496857,1290.8328255499998,0.9993894461404274,236.00,580036 -apollo-router,66,165,367.9896643530843,1290.3684890499997,0.9993912514131663,235.00,578792 -apollo-router,66,165,368.40124099790955,1289.30827425,0.9993951177360121,236.00,561268 -apollo-router,66,118,369.0687266692836,1287.5653572,0.9993992963185446,237.00,541868 -apollo-router,67,118,368.99306564041103,1286.84371165,0.9994020671393183,235.00,537532 -apollo-router,67,118,368.8727069174665,1286.092819,0.9994049137124883,236.00,524580 -apollo-router,67,118,369.35919139553204,1284.3900470999997,0.9994085340092944,237.00,512108 -apollo-router,67,70,369.5873038870724,1283.1660975999998,0.9994116905492288,236.00,501480 -apollo-gateway,11,5,113.46044297545149,21.831465,1,146.30,1769456 -apollo-gateway,11,5,114.84076327540825,29.450586599999962,1,144.10,1769456 -apollo-gateway,11,5,116.52483711159485,39.249088799999974,1,145.50,1769584 -apollo-gateway,12,10,117.14606783034125,44.87293,1,147.00,1769008 -apollo-gateway,12,10,119.82045307361298,53.8071345,1,148.40,1769004 -apollo-gateway,12,10,120.65709914611088,59.905342299999994,1,146.40,1769004 -apollo-gateway,12,10,122.85225633757548,66.46191200000003,1,147.80,1769004 -apollo-gateway,13,15,123.70742942157604,72.14077004999999,1,149.20,1769004 -apollo-gateway,13,15,125.48876098139566,83.850799,1,147.00,1769004 -apollo-gateway,13,15,126.11523763759442,91.3524882,1,148.30,1769004 -apollo-gateway,14,20,127.5505050235929,101.47625599999999,1,149.70,1769004 -apollo-gateway,14,20,128.05359350065888,108.26912109999999,1,147.70,1769004 -apollo-gateway,14,20,129.4862756625195,113.79604225,1,149.00,1769132 -apollo-gateway,14,20,130.03422043756115,118.85618454999998,1,150.40,1769140 -apollo-gateway,15,25,130.3301525846399,129.387747,1,151.60,1769140 -apollo-gateway,15,25,132.09664797646977,142.98124829999972,1,149.50,1769268 -apollo-gateway,15,25,132.13537144552413,147.913376,1,150.80,1769268 -apollo-gateway,16,30,133.82620446169554,157.73303439999998,1,152.10,1769652 -apollo-gateway,16,30,133.79527405869146,164.64935524999996,1,150.00,1769652 -apollo-gateway,16,30,134.9546919952709,171.867436,1,151.30,1769652 -apollo-gateway,17,35,136.05481866281198,181.02344385,1,152.70,1769652 -apollo-gateway,17,35,135.57540881222522,186.4904215,1,153.90,1769572 -apollo-gateway,17,35,136.57153248389605,200.16783940000002,1,152.10,1770220 -apollo-gateway,17,35,136.85354314419476,211.93283759999997,1,153.30,1770220 -apollo-gateway,18,40,137.7958635069589,220.85918559999996,1,154.50,1770220 -apollo-gateway,18,40,137.77466540633637,226.4429984,1,152.40,1770220 -apollo-gateway,18,40,139.37523251053793,232.3061698,1,153.60,1769888 -apollo-gateway,19,40,138.9698372591508,234.40282089999997,1,154.80,1769888 -apollo-gateway,19,45,139.398537691637,242.63698169999998,1,156.00,1769888 -apollo-gateway,19,45,140.36565611401588,249.54967399999998,1,154.00,1769888 -apollo-gateway,19,45,140.89272071442787,256.2360597499998,1,155.20,1769888 -apollo-gateway,20,50,141.61493241490993,264.9030219500001,1,156.40,1770096 -apollo-gateway,20,50,141.9706858112987,274.2635002,1,154.60,1770096 -apollo-gateway,20,50,142.3008967382272,286.12626020000005,1,155.70,1770224 -apollo-gateway,21,61,142.1626508716088,296.704391,1,157.00,1770224 -apollo-gateway,21,61,142.74983189894567,311.4719526,1,155.10,1770224 -apollo-gateway,21,61,142.60093359991257,324.88030719999995,1,156.30,1769988 -apollo-gateway,22,72,143.75482180524605,345.59965964999986,1,157.50,1769988 -apollo-gateway,22,72,143.6854554317049,367.0082997999999,1,158.70,1769988 -apollo-gateway,22,72,143.62268510892255,382.45696519999996,1,156.80,1769988 -apollo-gateway,22,72,143.81540079604963,396.75138504999995,1,158.00,1769988 -apollo-gateway,23,83,144.76944754627212,416.60565799999995,1,159.10,1769988 -apollo-gateway,23,83,145.10313991913304,446.9505305,1,157.30,1769988 -apollo-gateway,23,83,145.0512097535026,457.47606599999983,1,158.40,1769988 -apollo-gateway,24,95,145.72641818765155,471.2681646,1,159.50,1769988 -apollo-gateway,24,95,145.8606428755373,482.43439615,1,157.60,1770116 -apollo-gateway,24,95,146.02259416850217,502.90376424999977,1,158.70,1770116 -apollo-gateway,24,95,146.43634256683376,520.150925,1,159.90,1770116 -apollo-gateway,25,106,146.41482728339275,543.33549435,1,161.00,1770116 -apollo-gateway,25,106,146.58878145325076,572.5793094499999,1,159.00,1770116 -apollo-gateway,25,106,146.3252152136827,590.9568823999995,1,160.20,1770116 -apollo-gateway,26,117,147.23032935725416,617.8497624999998,1,161.20,1770116 -apollo-gateway,26,117,147.0078232862386,627.1308488,1,159.40,1770116 -apollo-gateway,26,117,146.9399197070856,637.736281,1,160.70,1769368 -apollo-gateway,27,117,146.9553736483553,656.9703142,1,161.70,1769368 -apollo-gateway,27,128,147.35993209340367,678.1230544499999,1,162.90,1769368 -apollo-gateway,27,128,147.64826469572904,695.67874485,1,161.00,1769368 -apollo-gateway,27,128,147.96599723058708,707.5350123,1,162.10,1769368 -apollo-gateway,28,140,148.20100959319348,723.07431365,1,163.20,1769368 -apollo-gateway,28,140,148.36344124669307,731.0578208999999,1,161.30,1769368 -apollo-gateway,28,140,148.84785106319842,745.1703893,1,162.30,1769368 -apollo-gateway,29,151,149.02935255454236,757.9392613499999,1,163.40,1769368 -apollo-gateway,29,151,149.01135022988106,776.1907951999996,1,161.70,1769496 -apollo-gateway,29,151,149.27971340021563,798.126967,1,162.70,1769496 -apollo-gateway,30,151,149.4556870877739,807.9094082000001,1,163.90,1769624 -apollo-gateway,30,162,149.75989516978493,832.47778595,1,164.90,1769624 -apollo-gateway,30,162,149.5230254464019,849.38163775,1,163.30,1769624 -apollo-gateway,30,162,149.6293079010658,871.3011558,1,164.30,1769624 -apollo-gateway,31,173,150.0122603126511,892.8134490000001,1,165.30,1769624 -apollo-gateway,31,173,149.69400200356554,904.6358665499995,1,163.30,1769624 -apollo-gateway,31,173,149.8099635215132,941.7777446,1,164.40,1769624 -apollo-gateway,32,185,150.05126707872344,987.3244645999999,1,165.40,1769624 -apollo-gateway,32,185,150.1496593559571,1011.2033351,1,163.50,1769624 -apollo-gateway,32,185,150.55279449955438,1034.99794155,1,164.60,1769624 -apollo-gateway,33,185,150.32965279626697,1047.62613425,1,165.60,1769624 -apollo-gateway,33,196,151.12956961031705,1063.1339934999999,1,166.60,1769624 -apollo-gateway,33,196,150.76151217284726,1071.7847307,1,165.10,1769624 -apollo-gateway,33,196,151.0999431927912,1084.943532,1,165.90,1769624 -apollo-gateway,34,207,150.94618375287672,1088.4194324999999,1,166.90,1769624 -apollo-gateway,34,207,151.61712904499694,1101.7945209499999,1,165.20,1769624 -apollo-gateway,34,207,150.8566637347498,1106.7622091,1,166.10,1769752 -apollo-gateway,35,218,151.36562860048943,1135.8831946,1,167.10,1769752 -apollo-gateway,35,218,151.30733137523777,1159.9235026000001,1,165.40,1769752 -apollo-gateway,35,218,151.55808422461592,1180.3445469999997,1,166.20,1769752 -apollo-gateway,36,218,151.5961456421887,1199.3838479999997,1,167.20,1769752 -apollo-gateway,36,230,152.06129596404986,1220.8249454000004,1,168.20,1769752 -apollo-gateway,36,230,151.9745602070643,1228.6760344,1,166.60,1769752 -apollo-gateway,36,230,152.2548309010472,1234.54012045,1,167.40,1769752 -apollo-gateway,37,241,152.45220871973984,1243.2479014,1,168.40,1769752 -apollo-gateway,37,241,151.47899883100231,1248.1409913999998,1,166.90,1769752 -apollo-gateway,37,241,152.31122971445964,1275.3757564500002,1,167.70,1769752 -apollo-gateway,38,252,152.0904449399398,1293.3103026,1,168.80,1769752 -apollo-gateway,38,252,152.26966659582945,1326.2052775499992,1,167.10,1769752 -apollo-gateway,38,252,151.75472514453983,1333.4088253999998,1,168.00,1769752 -apollo-gateway,38,252,152.0910074675685,1346.927901,1,168.90,1769752 -apollo-gateway,39,263,151.83127426660596,1364.57905675,1,169.80,1769880 -apollo-gateway,39,263,151.9949317709836,1377.37558375,1,168.10,1769880 -apollo-gateway,39,263,152.40577255166195,1395.9131064,1,169.00,1769880 -apollo-gateway,40,275,152.06974772519365,1421.7341921999996,1,170.00,1769880 -apollo-gateway,40,275,152.33304414971295,1442.3187389999998,1,168.40,1770008 -apollo-gateway,40,275,152.18638769067547,1469.6273517,1,169.30,1772076 -apollo-gateway,41,275,152.0293041402237,1485.51438275,1,170.20,1772076 -apollo-gateway,41,286,152.1284501224586,1500.0280185,1,171.00,1772076 -apollo-gateway,41,286,151.68542218082538,1512.2757316999994,1,169.60,1772076 -apollo-gateway,41,286,152.41887183968024,1554.0101317499998,1,170.50,1772076 -apollo-gateway,42,297,152.4692070541739,1585.14665,1,171.30,1772076 -apollo-gateway,42,297,152.32011146394498,1596.015773299999,1,169.80,1772076 -apollo-gateway,42,297,153.12238332955673,1607.6809877999997,1,170.60,1772076 -apollo-gateway,43,308,152.3314147241854,1614.2695711,1,171.60,1772076 -apollo-gateway,43,308,152.81434094420226,1619.3747778999998,1,170.00,1772076 -apollo-gateway,43,308,152.82584514506615,1630.529931,1,170.90,1772076 -apollo-gateway,44,320,152.93220348533453,1637.8947749,1,171.70,1772076 -apollo-gateway,44,320,153.14867430592602,1648.9570350000001,1,172.60,1772076 -apollo-gateway,44,320,152.82602720772232,1653.7275682,1,171.00,1772076 -apollo-gateway,44,320,153.08618940006383,1664.69181005,1,171.80,1772076 -apollo-gateway,45,331,153.03995988006363,1666.3912326,1,172.70,1772076 -apollo-gateway,45,331,152.80758885566536,1674.3418761999997,1,171.20,1772076 -apollo-gateway,45,331,153.47140837799992,1697.679396049999,1,172.10,1772204 -apollo-gateway,46,342,153.27684886546965,1722.4483744,1,172.90,1772204 -apollo-gateway,46,342,153.43440599197024,1722.678207,1,171.40,1772204 -apollo-gateway,46,342,153.27658612189148,1733.313585,1,172.40,1772204 -apollo-gateway,47,342,153.3600498937561,1761.1245605999989,1,173.20,1772204 -apollo-gateway,47,353,153.04640851646988,1765.59171695,1,174.00,1772204 -apollo-gateway,47,353,152.76914140424412,1769.4310596499997,1,172.50,1772204 -apollo-gateway,47,353,153.05325599820569,1814.5679793499999,1,173.30,1772204 -apollo-gateway,48,365,153.20795655106707,1826.381481,1,174.10,1772204 -apollo-gateway,48,365,153.01953327972356,1831.5233764999998,1,172.50,1771640 -apollo-gateway,48,365,153.18000168617746,1844.3636753999992,1,173.30,1771640 -apollo-gateway,49,376,153.14314250943798,1866.8518956999994,1,174.10,1771640 -apollo-gateway,49,376,153.21661181048418,1885.2000296999997,1,174.80,1771640 -apollo-gateway,49,376,153.42098236865593,1887.8764824999998,1,173.30,1771640 -apollo-gateway,49,376,153.23163061317018,1898.2456078,1,174.30,1771640 -apollo-gateway,50,387,153.44968865192837,1905.8798188499995,1,175.10,1771640 -apollo-gateway,50,387,153.1947277255374,1930.4881998999979,1,173.60,1771640 -apollo-gateway,50,387,152.8673714672,1931.827786399999,1,174.30,1771768 -apollo-gateway,51,398,152.8403728174867,1947.0206001999998,1,175.10,1771768 -apollo-gateway,51,398,153.2183822735106,1968.1313036,1,173.80,1771768 -apollo-gateway,51,398,153.0605596664709,1979.0274946999998,1,174.50,1771768 -apollo-gateway,51,398,153.5522574139587,1996.8247577999994,1,175.20,1771768 -apollo-gateway,52,410,153.40655737125374,2003.132343,1,176.00,1771768 -apollo-gateway,52,410,152.9112635702977,2009.8953916999994,1,174.60,1771912 -apollo-gateway,52,410,153.40483369691293,2029.5213370000001,1,175.40,1771912 -apollo-gateway,53,421,153.2168685139569,2031.5458151999994,1,176.10,1771912 -apollo-gateway,53,421,152.99844438490166,2046.1553935999998,1,174.80,1772040 -apollo-gateway,53,421,153.032248297389,2050.62552075,1,175.50,1772040 -apollo-gateway,54,432,153.10811153963272,2059.619973,1,176.20,1772040 -apollo-gateway,54,432,152.71184536970918,2077.1198914999995,1,177.00,1772040 -apollo-gateway,54,432,152.7459554760856,2099.5448029499994,1,175.60,1772040 -apollo-gateway,54,432,153.1996083199112,2114.3981814,1,176.40,1772040 -apollo-gateway,55,443,153.29636429364447,2127.4842081,1,177.00,1772040 -apollo-gateway,55,443,152.94266305975714,2135.218401,1,175.60,1772040 -apollo-gateway,55,443,153.3191921360479,2137.9950444,1,176.30,1772040 -apollo-gateway,56,443,152.68124329460292,2147.492814,1,177.00,1772040 -apollo-gateway,56,455,153.10656656493722,2195.9457435,1,177.80,1772040 -apollo-gateway,56,455,153.272029887342,2197.0255563999995,1,176.40,1772040 -apollo-gateway,56,455,153.10029205628942,2197.7404271999994,1,177.10,1772040 -apollo-gateway,57,466,152.93858283335615,2206.1008319,1,177.80,1772040 -apollo-gateway,57,466,152.97987886760583,2238.37447875,1,176.50,1772040 -apollo-gateway,57,466,153.00061012191105,2249.2322437999987,1,177.10,1772040 -apollo-gateway,58,477,153.09634939895065,2252.7530070000003,1,177.80,1772040 -apollo-gateway,58,477,152.66620168942157,2251.5891235,1,178.60,1772040 -apollo-gateway,58,477,153.3514799617736,2310.499639,1,177.20,1772040 -apollo-gateway,58,477,153.00083163446334,2315.2389993,1,178.10,1772040 -apollo-gateway,59,488,153.05487068297515,2338.7602032499976,1,178.70,1772168 -apollo-gateway,59,488,153.41862568395047,2345.505114649998,1,177.50,1772168 -apollo-gateway,59,488,153.75688910045838,2355.607639399999,1,178.10,1772168 -apollo-gateway,60,500,153.2304104057628,2356.0211006,1,178.90,1772168 -apollo-gateway,60,500,153.37762713920227,2372.75015345,1,177.50,1772168 -apollo-gateway,60,500,153.36688956719124,2371.1285978,1,178.20,1772168 -apollo-gateway,61,500,153.59938357985055,2378.6583243999994,1,179.00,1772168 -apollo-gateway,61,500,153.77616335311203,2398.9793728500003,1,179.60,1772168 -apollo-gateway,61,500,153.58939632869107,2404.4976276999987,1,178.30,1772296 -apollo-gateway,61,500,153.46630711383042,2408.8789873999986,1,179.00,1772296 -apollo-gateway,62,456,153.65747167587392,2435.3316625500006,1,179.70,1772296 -apollo-gateway,62,456,153.71848857038555,2487.3259434999964,1,178.40,1772296 -apollo-gateway,62,456,153.70497045037288,2491.1273834999965,1,179.00,1772296 -apollo-gateway,63,410,153.10578537124616,2490.121761250002,1,179.60,1772296 -apollo-gateway,63,410,153.33557607005045,2504.804507,1,178.20,1772680 -apollo-gateway,63,410,153.7108811549828,2529.41504,1,179.20,1772680 -apollo-gateway,64,353,153.5496461178847,2530.0850373000007,1,179.90,1772680 -apollo-gateway,64,353,153.54583130989408,2534.1081019999997,1,180.50,1772680 -apollo-gateway,64,353,153.19042710923642,2546.2016965000003,1,179.30,1772936 -apollo-gateway,64,353,153.2270352928419,2553.0808505,1,180.00,1772936 -apollo-gateway,65,306,152.850574966434,2554.2077624999997,1,180.50,1772936 -apollo-gateway,65,306,152.85733075940075,2565.1510435999994,1,179.30,1772936 -apollo-gateway,65,306,152.91353472850528,2562.919336,1,180.00,1772936 -apollo-gateway,66,261,152.95096008121044,2582.2885188000005,1,180.70,1772936 -apollo-gateway,66,261,153.0614584907309,2610.694346899999,1,179.40,1772936 -apollo-gateway,66,261,152.91852666890904,2616.0885968999987,1,180.00,1773064 -apollo-gateway,66,261,153.10897494914954,2612.310081899999,1,180.60,1773064 -apollo-gateway,67,219,152.90456011376065,2612.9234490999984,1,181.30,1773064 -apollo-gateway,67,219,153.0557511206125,2611.3019068,1,180.10,1773064 -apollo-gateway,67,219,152.9980751281137,2610.7443802499997,1,180.70,1773064 -apollo-gateway,68,163,153.09300086717198,2602.837204499997,1,181.30,1773064 -apollo-gateway,68,163,153.0867362040496,2597.648295449998,1,180.10,1773064 -apollo-gateway,68,163,153.20218583701595,2590.618968,1,180.80,1773064 -apollo-gateway,69,163,153.02987586313958,2588.026393549999,1,181.30,1773064 -apollo-gateway,69,116,152.96408731050366,2586.3471250000002,1,181.90,1773064 -apollo-gateway,69,116,153.09750627415983,2583.23372,1,180.80,1773064 -apollo-gateway,69,116,153.00999680866536,2581.790053,1,181.30,1773192 \ No newline at end of file +hive-router,3,2,397.4604345165355,3.1955721999999995,1,103.00,131776 +hive-router,4,2,414.1851109595317,4.171204799999999,1,103.00,131776 +hive-router,4,2,445.3544490362887,5.477456,1,105.00,131776 +hive-router,4,2,478.38094055270324,7.15277245,1,101.00,131776 +hive-router,4,7,517.4946006974985,8.621152749999997,1,103.00,131776 +hive-router,5,7,556.3233343535061,9.487253,1,104.00,131776 +hive-router,5,7,597.7863858613919,10.1869555,1,102.00,131776 +hive-router,5,12,640.5740837668599,11.390088599999993,1,103.00,131776 +hive-router,6,12,696.8801979346844,11.143072,1,105.00,131776 +hive-router,6,12,741.0894230642759,12.835767899999997,1,106.00,131776 +hive-router,6,12,769.7848876813318,13.727555,1,104.00,131776 +hive-router,6,17,801.7051511214484,14.38137329999999,1,106.00,131776 +hive-router,7,17,836.1911801853195,15.551490200000002,1,107.00,131776 +hive-router,7,17,879.8485354870919,15.7867711,1,105.00,131776 +hive-router,7,22,897.1393194162897,17.756105299999984,1,106.00,131776 +hive-router,8,22,945.0970925252877,18.529988999999997,1,108.00,131776 +hive-router,8,22,976.4808093008269,19.740373799999947,1,110.00,131776 +hive-router,8,22,979.9202476287538,20.912507349999995,1,107.00,131776 +hive-router,8,27,1024.1570428933235,21.7783092,1,109.00,131776 +hive-router,9,27,1042.0822715005766,23.383993799999985,1,110.00,131776 +hive-router,9,27,1064.3501594725328,23.506143999999985,1,112.00,131776 +hive-router,9,32,1068.492871589756,25.5164431,1,110.00,131776 +hive-router,10,32,1103.9227454235279,25.522520150000005,1,111.00,131776 +hive-router,10,32,1109.9397030094594,26.448231300000003,1,113.00,131776 +hive-router,10,32,1136.5561489915533,26.94205559999999,1,111.00,131776 +hive-router,10,37,1146.8510003436966,28.635027249999997,1,112.00,131776 +hive-router,11,37,1172.3330637730835,28.8340454,1,114.00,131776 +hive-router,11,37,1189.9701930152721,30.29393559999997,1,112.00,131776 +hive-router,11,42,1193.5456078934872,30.37904744999999,1,113.00,131776 +hive-router,12,42,1227.0885850803722,31.90184584999999,1,114.00,131776 +hive-router,12,42,1227.002772612649,33.348641549999996,1,116.00,131776 +hive-router,12,42,1235.0831994738187,34.01725019999999,1,114.00,131776 +hive-router,12,47,1249.9791109403807,34.8644685,1,115.00,131776 +hive-router,13,47,1267.5822474764927,35.2224678,1,117.00,131776 +hive-router,13,47,1273.8250627118514,37.26480959999999,1,115.00,131776 +hive-router,13,54,1284.7750200147102,37.842561599999996,1,116.00,131776 +hive-router,14,54,1299.9665180233944,39.42677809999999,1,118.00,131776 +hive-router,14,54,1305.6164145597377,41.484885999999975,1,119.00,131776 +hive-router,14,65,1325.7534619725752,41.750726449999995,1,117.00,131776 +hive-router,15,65,1325.6495943114646,44.55923419999998,1,118.00,131776 +hive-router,15,65,1340.9009896759626,45.50885940000001,1,120.00,131776 +hive-router,15,65,1360.4564251729655,48.471028799999985,1,118.00,131776 +hive-router,16,77,1353.1788888229703,50.97021585000001,1,119.00,131776 +hive-router,16,77,1374.5724019282163,52.99246319999994,1,121.00,131776 +hive-router,16,77,1383.791733698081,54.000270599999986,1,119.00,131776 +hive-router,16,88,1384.8483237110488,56.40630719999995,1,120.00,131776 +hive-router,17,88,1390.9878186192027,56.571673899999965,1,122.00,131776 +hive-router,17,88,1410.010311563865,59.903863799999996,1,120.00,131776 +hive-router,17,99,1404.948566406215,62.09171625,1,121.00,131776 +hive-router,18,99,1422.8999047558327,63.5302862,1,123.00,131776 +hive-router,18,99,1428.410088124086,66.38734814999992,1,121.00,131776 +hive-router,18,111,1425.738007532006,66.83219179999998,1,122.00,131776 +hive-router,19,111,1445.6058254210063,68.32876754999998,1,124.00,131776 +hive-router,19,111,1453.835290370269,71.26034185,1,122.00,131776 +hive-router,19,122,1453.025596872964,70.94807499999997,1,124.00,131776 +hive-router,20,122,1466.5702833851105,74.60665709999999,1,125.00,131776 +hive-router,20,122,1468.0402629005796,78.15354599999998,1,124.00,131776 +hive-router,20,133,1477.055165948155,79.5739803499999,1,125.00,131776 +hive-router,21,133,1487.572559070291,83.171866,1,126.00,131776 +hive-router,21,133,1484.2408802159553,87.20648224999995,1,125.00,131776 +hive-router,21,145,1491.109922530127,88.90264065,1,126.00,131776 +hive-router,22,145,1500.5401006436932,91.74227659999995,1,128.00,131776 +hive-router,22,145,1498.0276551063246,94.984218,1,126.00,131776 +hive-router,22,156,1508.4981800079208,96.18505124999993,1,127.00,131776 +hive-router,23,156,1510.7498269897426,100.09365584999992,1,129.00,131776 +hive-router,23,156,1518.5781809183604,103.13249919999998,1,127.00,131776 +hive-router,24,167,1523.874875433611,103.24466100000001,1,128.00,131776 +hive-router,24,167,1536.0910955119675,106.38497225,1,130.00,131776 +hive-router,24,167,1527.668667285556,109.11549789999984,1,128.00,131776 +hive-router,25,178,1536.4754114410005,110.33551430000003,1,130.00,131776 +hive-router,25,178,1548.8951233583127,114.78752845000002,1,129.00,131776 +hive-router,25,190,1546.8925365399907,120.13180979999998,1,130.00,131776 +hive-router,26,190,1548.5447130583857,119.65920089999995,1,131.00,131776 +hive-router,26,190,1558.2344796453706,122.6004762,1,130.00,131776 +hive-router,27,201,1567.8304336066356,126.62109164999998,1,132.00,131776 +hive-router,27,201,1564.6822723502885,128.7055516,1,133.00,131776 +hive-router,27,201,1566.04423908073,129.9870202,1,132.00,131776 +hive-router,28,212,1576.4042019779845,133.5744055,1,133.00,131776 +hive-router,28,212,1584.1901890986164,137.2208138999999,1,132.00,131776 +hive-router,29,224,1584.3021304297718,139.93912775,1,133.00,131776 +hive-router,29,224,1587.6929586831982,140.44435754999998,1,132.00,131776 +hive-router,30,224,1592.141852112735,144.05956209999997,1,134.00,131776 +hive-router,30,235,1606.111582862677,148.07775344999996,1,136.00,131776 +hive-router,30,235,1599.2740198888143,150.81237429999993,1,134.00,131776 +hive-router,31,246,1612.3624013782628,155.795332,1,135.00,131776 +hive-router,31,246,1608.7958570053138,157.16683899999992,1,135.00,131776 +hive-router,32,257,1615.555869751159,161.76728500000002,1,137.00,131776 +hive-router,33,269,1618.1972185140078,165.54213854999958,1,136.00,131776 +hive-router,33,269,1625.3313023264814,171.77491419999998,1,136.00,131776 +hive-router,34,279,1623.1159149709054,175.95901219999996,1,138.00,131776 +hive-router,34,279,1632.7579568325611,181.69831099999996,1,137.00,131776 +hive-router,35,291,1635.1863092012582,185.3328031999999,1,139.00,131776 +hive-router,36,302,1638.6471070594457,190.3965459999999,1,138.00,131776 +hive-router,36,302,1642.6179371106275,195.89993425,1,138.00,131776 +hive-router,37,313,1647.288967533344,199.76753234999984,1,140.00,131776 +hive-router,37,313,1651.5614038148308,204.9422931,1,139.00,131776 +hive-router,38,325,1656.8891530451835,209.71850719999986,1,138.00,131776 +hive-router,39,335,1657.4292765998189,211.3589521,1,140.00,131776 +hive-router,39,335,1661.013977479649,215.17663124999999,1,139.00,131776 +hive-router,40,347,1667.3683564528947,218.31427629999996,1,141.00,131776 +hive-router,41,347,1671.8733782357035,222.31662079999998,1,141.00,131776 +hive-router,41,359,1674.9225184886047,226.6419936,1,141.00,131776 +hive-router,42,370,1679.4405859797034,232.66117200000002,1,143.00,131776 +hive-router,43,381,1678.73004934706,236.38155720000003,1,142.00,131776 +hive-router,43,381,1684.4874534851976,242.1742756499999,1,142.00,131776 +hive-router,44,393,1686.087919054301,247.351488,1,144.00,131776 +hive-router,45,404,1686.0500904623707,248.65245825,1,143.00,131776 +hive-router,46,404,1689.994846531289,254.39426629999997,1,144.00,131776 +hive-router,46,415,1695.5272568377095,261.0724231,1,144.00,131776 +hive-router,47,426,1699.6411194603083,264.9345531999999,1,144.00,131776 +hive-router,48,438,1702.749970828965,268.92973205000004,1,144.00,131776 +hive-router,49,448,1703.0711575428134,272.700834,1,146.00,131776 +hive-router,50,460,1707.490862636321,279.18534854999996,1,146.00,131776 +hive-router,51,460,1709.6314136701203,283.28986599999996,1,146.00,131776 +hive-router,52,471,1712.8541294543297,289.7685492999999,1,146.00,131776 +hive-router,52,482,1716.5184085695782,295.24828544999997,1,146.00,131776 +hive-router,53,494,1720.6356888581076,300.02258199999994,1,146.00,131776 +hive-router,54,491,1725.0721857737967,304.12275275,1,146.00,131776 +hive-router,55,441,1733.1473437823001,306.1784472,1,148.00,131776 +hive-router,56,441,1735.040299512986,309.44667250000003,1,148.00,131776 +hive-router,56,394,1739.949649997216,310.0737774999999,1,148.00,131776 +hive-router,57,351,1739.5899567379881,309.55728365,1,149.00,131776 +hive-router,57,351,1744.3151120551147,308.84892019999995,1,149.00,131776 +hive-router,58,305,1748.5825897528823,308.03397429999995,1,149.00,131776 +hive-router,59,260,1756.232947030458,307.2672447999999,1,150.00,131776 +hive-router,59,260,1761.0498544075836,306.37447955,1,150.00,131776 +hive-router,60,213,1759.3236945076067,305.90376939999993,1,151.00,131776 +hive-router,61,168,1765.1479219144214,305.0021417,1,150.00,131776 +hive-router,61,168,1767.301040894653,304.45741929999997,1,152.00,131776 +hive-router,62,119,1768.5990604176613,303.98425,1,151.00,131776 +hive-router,62,119,1772.6861157349133,303.4005012,1,152.00,131776 +hive-router,62,119,1771.6983966872506,303.08124374999977,1,151.00,131776 +hive-router,63,76,1774.5280003499875,302.6391662,1,151.00,131904 +hive-gateway-router-runtime,7,4,170.51062261388236,12.4008469,1,188.70,2404188 +hive-gateway-router-runtime,8,4,179.41273999760352,13.751021999999997,1,184.70,2404188 +hive-gateway-router-runtime,8,4,187.6973545957351,17.51173825,1,187.10,2404700 +hive-gateway-router-runtime,8,9,196.4223850652611,21.350986999999996,1,189.40,2404700 +hive-gateway-router-runtime,8,9,205.7180832701029,24.02295569999999,1,185.90,2404700 +hive-gateway-router-runtime,9,9,213.3586314034796,25.795762599999996,1,188.40,2407132 +hive-gateway-router-runtime,9,9,224.25424474653343,27.61509979999999,1,190.60,2409180 +hive-gateway-router-runtime,9,14,232.06555662022942,29.62726425,1,187.40,2410972 +hive-gateway-router-runtime,10,14,245.4785947308326,34.99669974999999,1,189.80,2414044 +hive-gateway-router-runtime,10,14,253.2557071514153,36.5123842,1,192.00,2416092 +hive-gateway-router-runtime,10,19,259.57563135822846,38.24446209999999,1,194.40,2417756 +hive-gateway-router-runtime,11,19,267.0589097301942,41.67441804999999,1,191.30,2419676 +hive-gateway-router-runtime,11,19,278.18298763271,43.83950625,1,193.70,2421724 +hive-gateway-router-runtime,11,24,286.31588177947964,46.583236,1,196.20,2423644 +hive-gateway-router-runtime,12,24,294.317312421645,49.93953239999999,1,193.10,2425820 +hive-gateway-router-runtime,12,24,300.4284480208681,51.930750199999984,1,195.50,2427356 +hive-gateway-router-runtime,12,29,305.62973034693323,53.97605289999999,1,198.10,2430044 +hive-gateway-router-runtime,13,29,314.35853277620106,56.710890799999994,1,194.80,2432220 +hive-gateway-router-runtime,13,29,320.98213906758883,59.13162525,1,197.20,2432220 +hive-gateway-router-runtime,13,29,322.85814216686526,60.98949969999998,1,199.50,2432220 +hive-gateway-router-runtime,13,34,328.7903183426587,64.4226,1,196.50,2432220 +hive-gateway-router-runtime,14,34,337.7427236209232,66.64669309999996,1,198.80,2430720 +hive-gateway-router-runtime,14,34,340.28031222172484,70.30770160000002,1,201.20,2429816 +hive-gateway-router-runtime,14,39,345.0410090165738,72.68018305000001,1,198.00,2429816 +hive-gateway-router-runtime,15,39,350.0553647198037,74.52484019999997,1,200.20,2429816 +hive-gateway-router-runtime,15,39,356.4277364811469,77.557091,1,202.50,2429816 +hive-gateway-router-runtime,15,44,361.4774693135399,79.624707,1,204.80,2429816 +hive-gateway-router-runtime,16,44,366.0008361160337,81.3037384,1,201.70,2429816 +hive-gateway-router-runtime,16,44,371.1580361678303,84.48496099999996,1,203.90,2429816 +hive-gateway-router-runtime,16,49,377.7436310432522,85.46123135,1,206.10,2429816 +hive-gateway-router-runtime,17,49,381.5770864492762,88.5999904,1,203.00,2429816 +hive-gateway-router-runtime,17,49,385.1795432092459,91.35939400000001,1,205.20,2429816 +hive-gateway-router-runtime,17,59,388.6180068281021,95.29520679999996,1,207.60,2429816 +hive-gateway-router-runtime,18,59,392.8148008051049,99.60906149999998,1,204.90,2429816 +hive-gateway-router-runtime,18,59,399.1888703421928,102.96779425,1,207.00,2429816 +hive-gateway-router-runtime,18,71,403.74528787578856,108.56357219999997,1,209.10,2429816 +hive-gateway-router-runtime,19,71,405.1447018059551,111.49088409999996,1,206.20,2429816 +hive-gateway-router-runtime,19,71,412.72680708132617,115.76027255,1,208.50,2429816 +hive-gateway-router-runtime,19,82,414.1609447842811,121.93822179999995,1,210.70,2429816 +hive-gateway-router-runtime,20,82,420.99843337333965,128.7894026,1,208.00,2429816 +hive-gateway-router-runtime,20,82,420.8042973146661,134.615635,1,210.20,2429816 +hive-gateway-router-runtime,20,93,426.38781165024227,141.14635149999998,1,212.20,2430584 +hive-gateway-router-runtime,21,93,430.56476521198954,147.221131,0.9998704830980443,209.50,2431212 +hive-gateway-router-runtime,21,93,433.2414647964969,154.14537544999996,0.9998736895288619,211.70,2431212 +hive-gateway-router-runtime,21,104,436.35065713735617,159.85160845000004,0.9998770592574379,213.90,2431212 +hive-gateway-router-runtime,22,104,439.34604051910594,165.24703839999995,0.9998801964777765,211.10,2431212 +hive-gateway-router-runtime,22,104,437.9470310256647,167.5058828,0.9998816427979642,213.30,2431212 +hive-gateway-router-runtime,22,115,445.51801701152016,173.6983054,0.9998858968507531,215.30,2431212 +hive-gateway-router-runtime,23,115,450.49500053461884,177.82878514999996,0.9998891352549889,212.60,2431852 +hive-gateway-router-runtime,23,115,448.8804750108346,183.3571569999998,0.9998904469763366,214.70,2432236 +hive-gateway-router-runtime,23,127,453.24557930166685,190.127855,0.9998933788250347,216.70,2432236 +hive-gateway-router-runtime,24,127,458.4121657842642,193.5374828,0.9998962870773699,214.20,2432236 +hive-gateway-router-runtime,24,127,460.6457126212572,196.9450382,0.9998985080686086,216.20,2431940 +hive-gateway-router-runtime,24,138,463.02254169293235,200.6991155,0.9999006556725611,218.30,2431940 +hive-gateway-router-runtime,25,138,465.20991561360256,203.964594,0.9999026195345214,215.70,2431940 +hive-gateway-router-runtime,25,138,468.5185152618722,212.64025859999995,0.9999050873196659,218.00,2431940 +hive-gateway-router-runtime,25,149,473.15157461362935,216.07737740000002,0.9999074416882636,219.90,2431940 +hive-gateway-router-runtime,26,149,474.8120961779324,222.65018334999996,0.9999091074350118,217.40,2431940 +hive-gateway-router-runtime,26,149,476.8403696519619,227.26248,0.9999107142857143,219.10,2431940 +hive-gateway-router-runtime,26,149,476.04466750876924,233.4016883999999,0.9999117309559538,220.90,2431940 +hive-gateway-router-runtime,27,160,481.03832685575895,241.60584475,0.9999138896064755,218.50,2431544 +hive-gateway-router-runtime,27,160,482.27769948244025,251.87883584999994,0.9999154119438335,220.60,2431544 +hive-gateway-router-runtime,27,172,482.7084491061635,254.44045379999997,0.9999166180271826,222.30,2431544 +hive-gateway-router-runtime,28,172,487.98217460126614,262.2178417999998,0.9999185932920873,219.80,2431544 +hive-gateway-router-runtime,28,172,488.1607052564393,266.27670355,0.9999197367364957,221.60,2431544 +hive-gateway-router-runtime,28,183,489.18736540271163,271.3721515,0.9999210671718368,223.70,2431544 +hive-gateway-router-runtime,29,183,493.901644070402,278.45497140000003,0.9998457147265294,221.20,2431544 +hive-gateway-router-runtime,29,183,494.3759451512586,281.97873559999994,0.9998478161619236,223.10,2431544 +hive-gateway-router-runtime,29,194,495.6854778494638,294.0733927999999,0.9998500412386594,224.70,2431544 +hive-gateway-router-runtime,30,194,499.9457049842163,298.2458208,0.9998532971466295,222.50,2431544 +hive-gateway-router-runtime,30,194,501.5667272106309,301.82016839999983,0.9998556686151404,224.30,2431544 +hive-gateway-router-runtime,30,205,503.45323537579657,305.6337083,0.999857984804374,226.10,2431544 +hive-gateway-router-runtime,31,205,503.7724497612516,308.5287307,0.9998598458304134,223.90,2431544 +hive-gateway-router-runtime,31,205,505.6782084327086,314.81735289999995,0.999862059452376,225.50,2430836 +hive-gateway-router-runtime,31,217,506.97643813340994,328.24289675,0.9998639085465433,227.10,2430836 +hive-gateway-router-runtime,32,217,505.5577636230957,330.3533714999999,0.9998654286098776,225.30,2430836 +hive-gateway-router-runtime,32,217,512.304914753642,345.2542304,0.9998689212216542,227.00,2430836 +hive-gateway-router-runtime,32,228,512.4060044323327,346.4540876,0.9998703739710934,228.70,2430836 +hive-gateway-router-runtime,33,228,514.8249138407849,351.68330509999987,0.9998722779232391,226.10,2430836 +hive-gateway-router-runtime,33,228,512.3307310697008,353.3001845,0.9998731366952109,228.20,2430836 +hive-gateway-router-runtime,33,239,516.6364742327551,360.9208385,0.999875668282979,229.90,2430836 +hive-gateway-router-runtime,34,239,518.7860943001995,367.7600553,0.9998776159588789,227.80,2430836 +hive-gateway-router-runtime,34,239,521.0549353643535,370.11671219999994,0.9998796920115496,229.50,2430836 +hive-gateway-router-runtime,34,251,524.5360956959515,378.3445455,0.9998817337827449,227.20,2430836 +hive-gateway-router-runtime,35,251,525.3776139919224,384.2521418,0.9998831366132991,229.00,2430836 +hive-gateway-router-runtime,35,262,526.3614777616423,389.145086,0.9998847594353212,230.80,2430836 +hive-gateway-router-runtime,35,262,527.1357600587771,393.5008164499998,0.999886020402348,228.60,2430836 +hive-gateway-router-runtime,36,262,527.0380997477874,399.58907719999974,0.9998870630752724,230.10,2430836 +hive-gateway-router-runtime,36,262,523.7021348297725,405.089428,0.9998878169172088,232.20,2430836 +hive-gateway-router-runtime,37,274,528.7768673519373,413.5046789,0.9998900796922231,230.10,2430836 +hive-gateway-router-runtime,37,274,532.2930706285143,419.5605384499999,0.9998378203048979,231.60,2430836 +hive-gateway-router-runtime,37,284,533.2539611529822,422.61645625,0.999839777825251,233.20,2430836 +hive-gateway-router-runtime,38,284,534.8468977482925,424.4829364999999,0.9998417721518987,231.10,2430836 +hive-gateway-router-runtime,38,284,536.1888623164223,424.853258,0.9998438069453846,232.70,2430836 +hive-gateway-router-runtime,38,295,537.4558762906858,427.215911,0.9998456472525211,234.40,2430836 +hive-gateway-router-runtime,39,295,539.9890700116545,434.0604622,0.999847939581327,232.20,2430836 +hive-gateway-router-runtime,39,295,541.0478442509835,435.9086981,0.9998495411003561,233.60,2430836 +hive-gateway-router-runtime,39,307,541.6057194050477,439.4714880499997,0.9998509909104455,235.10,2430836 +hive-gateway-router-runtime,40,307,541.6214614938723,443.7890715499999,0.999852536374361,233.30,2430836 +hive-gateway-router-runtime,40,307,542.7181444556302,451.79174939999996,0.9998542628127277,235.00,2430836 +hive-gateway-router-runtime,40,319,545.8219135838385,458.895751,0.9998564661977896,232.80,2430836 +hive-gateway-router-runtime,41,319,544.6439343556177,462.8424909,0.9998573262947639,234.20,2430836 +hive-gateway-router-runtime,41,319,544.8462872885364,471.79049734999984,0.9998587703606063,236.00,2434036 +hive-gateway-router-runtime,41,330,545.853216021341,481.3808209999999,0.9998602571268865,233.90,2434036 +hive-gateway-router-runtime,42,330,547.89731876664,485.7074827999999,0.999861910241657,235.30,2434036 +hive-gateway-router-runtime,42,330,548.4860216758144,488.7946474,0.9998632135692139,236.90,2434164 +hive-gateway-router-runtime,42,341,550.3083515899469,498.840888,0.9998648952938527,234.50,2434292 +hive-gateway-router-runtime,43,341,551.9266991737187,502.84471379999997,0.9998663399420806,236.00,2434292 +hive-gateway-router-runtime,43,341,553.1422860434673,506.7954205,0.9998676606819886,237.30,2434292 +hive-gateway-router-runtime,43,352,552.354022316661,511.8472543000001,0.9998685363716039,235.40,2434292 +hive-gateway-router-runtime,44,352,553.4176351625424,523.41881025,0.9998698650934802,236.70,2434292 +hive-gateway-router-runtime,44,352,555.302971577064,527.3447305999998,0.9998712943498219,238.30,2434292 +hive-gateway-router-runtime,44,363,556.177684374976,532.9075220999998,0.999872670939264,236.20,2434292 +hive-gateway-router-runtime,45,363,555.971934797641,536.05004725,0.9998736469696331,237.40,2434292 +hive-gateway-router-runtime,45,363,556.528936081809,544.227049,0.9998746605389597,238.90,2434292 +hive-gateway-router-runtime,46,374,557.2102112880013,551.6623312999999,0.9998758432313868,237.00,2434292 +hive-gateway-router-runtime,46,374,558.2626626270579,555.4879354999999,0.9998770894788593,238.30,2434292 +hive-gateway-router-runtime,46,374,561.7046796976216,559.4706166,0.9998787045647516,239.60,2434292 +hive-gateway-router-runtime,46,385,562.0870737689614,561.7776941999999,0.9998796630565584,237.60,2434292 +hive-gateway-router-runtime,47,385,563.2428522829437,566.5051043999999,0.9998808341608739,239.00,2434292 +hive-gateway-router-runtime,47,385,560.8112459297245,569.7731448,0.9998811787072244,240.30,2434292 +hive-gateway-router-runtime,47,397,563.2867348882322,577.0810306999999,0.9998826612430086,238.20,2434292 +hive-gateway-router-runtime,48,397,562.8321551969323,580.10071575,0.999883590081875,240.00,2434292 +hive-gateway-router-runtime,48,409,567.3168068320783,591.0328255000001,0.999885478699038,241.50,2434420 +hive-gateway-router-runtime,49,409,568.1834925828408,596.1125567999999,0.9998865226765518,239.40,2434420 +hive-gateway-router-runtime,49,409,567.1313728588262,600.672283,0.9998870907038013,240.60,2434420 +hive-gateway-router-runtime,49,419,567.9069844962952,606.1499173999999,0.9998879719182941,241.90,2434420 +hive-gateway-router-runtime,50,419,568.1820336289788,613.7813788999998,0.9998889176880068,240.20,2434420 +hive-gateway-router-runtime,50,419,570.326959196095,624.2298921999999,0.9998901863172152,241.40,2434420 +hive-gateway-router-runtime,50,431,571.2170570090561,627.0355328999999,0.9998910635825556,242.60,2434420 +hive-gateway-router-runtime,51,431,568.9350505251705,627.0031575999998,0.9998913082859316,240.50,2434420 +hive-gateway-router-runtime,51,431,572.0651263912491,637.56542525,0.9998927383889306,242.10,2434420 +hive-gateway-router-runtime,51,442,574.0033915834514,645.5509844,0.9998938954516517,243.50,2434420 +hive-gateway-router-runtime,52,442,574.715884296095,649.9641083999999,0.9998947479212714,241.50,2434548 +hive-gateway-router-runtime,52,442,576.875885323327,653.08242285,0.9998958260990346,242.70,2434804 +hive-gateway-router-runtime,52,453,576.0410064306991,658.1866990999994,0.9998963658974713,244.20,2434804 +hive-gateway-router-runtime,53,453,577.9940761701458,671.0762966,0.9998974323908509,242.30,2434804 +hive-gateway-router-runtime,53,453,576.7446227935384,672.5733621999999,0.9998978514760462,243.40,2434804 +hive-gateway-router-runtime,53,464,576.3464508231879,673.7769614,0.9998984083982391,244.60,2434932 +hive-gateway-router-runtime,54,464,577.355629693576,676.2888178000001,0.9998992443324937,242.90,2434932 +hive-gateway-router-runtime,54,464,577.1742788963693,679.4047501499998,0.9998999733262203,244.30,2434932 +hive-gateway-router-runtime,54,476,579.6250861562204,685.7286735,0.9999010912927369,245.50,2434932 +hive-gateway-router-runtime,55,476,581.0447569879681,685.2527104999999,0.9999019479670546,243.50,2434932 +hive-gateway-router-runtime,55,476,580.464897684387,686.7470886,0.9999025467775468,245.00,2434932 +hive-gateway-router-runtime,55,487,583.1427682356845,696.6111137499997,0.999903636130027,243.10,2434932 +hive-gateway-router-runtime,56,487,581.8125674871472,698.4651999999999,0.999904042988741,244.40,2434932 +hive-gateway-router-runtime,56,487,584.986677266828,702.99314685,0.9999051233396584,245.50,2434932 +hive-gateway-router-runtime,57,498,581.9954384472546,704.094638,0.9999053597905296,244.30,2434932 +hive-gateway-router-runtime,57,498,585.5335149327734,715.143574,0.9999066845002955,245.70,2434932 +hive-gateway-router-runtime,57,480,586.7909604275623,717.1119685499999,0.9999074702362594,246.70,2434932 +hive-gateway-router-runtime,58,480,585.7049218757181,718.9373207999997,0.9999078539177443,244.90,2434932 +hive-gateway-router-runtime,58,480,587.5630557364346,721.8304731999999,0.9999086674582154,246.10,2434932 +hive-gateway-router-runtime,58,432,584.8178016301043,721.4785527499995,0.9999090137086012,245.00,2434932 +hive-gateway-router-runtime,59,432,588.8774435654267,732.0872183999995,0.9999103112200664,246.20,2434932 +hive-gateway-router-runtime,59,432,588.9059762855138,731.1684870000001,0.9999107992388202,247.40,2434932 +hive-gateway-router-runtime,59,384,591.5939040714031,729.7040750999998,0.9999117491321998,245.40,2434932 +hive-gateway-router-runtime,60,384,591.7327983891763,729.4364210999997,0.9999122345093909,246.60,2434932 +hive-gateway-router-runtime,60,384,593.7173097255522,728.0821872500005,0.999912987992343,247.70,2434932 +hive-gateway-router-runtime,60,334,592.3216577697484,727.7708245499999,0.9999133023148282,246.10,2434932 +hive-gateway-router-runtime,61,334,593.5565279774985,727.1387437999999,0.9999140130126974,247.00,2434932 +hive-gateway-router-runtime,61,334,594.4905555780138,726.36184475,0.9999146174863388,248.20,2434932 +hive-gateway-router-runtime,61,289,596.0389359369277,725.7495566999999,0.9999153020892151,246.40,2434932 +hive-gateway-router-runtime,62,289,596.1264665653109,725.1616461999998,0.9999157918374221,247.70,2435572 +hive-gateway-router-runtime,62,289,596.5279700160416,724.5513193999997,0.9999164461774126,248.90,2435572 +hive-gateway-router-runtime,62,247,597.3688888929304,723.9424630999998,0.9999169894853348,247.10,2435572 +hive-gateway-router-runtime,63,247,598.5877321418185,723.4546519999999,0.9999176186291739,248.20,2435572 +hive-gateway-router-runtime,63,200,599.5047504864339,723.0227266999999,0.9999181825619767,249.30,2438388 +hive-gateway-router-runtime,64,200,599.0629497675881,722.7670945999998,0.9999186352417889,247.90,2438388 +hive-gateway-router-runtime,64,200,599.5766381953581,722.425514,0.9999192267305673,249.00,2438772 +hive-gateway-router-runtime,64,153,599.728551215875,721.970832,0.9999196959151989,250.10,2439028 +hive-gateway-router-runtime,65,153,600.6979718773097,721.4708100000003,0.9999202403424348,248.40,2439028 +hive-gateway-router-runtime,65,153,601.4926895431832,720.9519315999999,0.9999208129866702,249.50,2439156 +hive-gateway-router-runtime,65,108,601.2645266814844,720.5719888999996,0.9999212205561828,250.80,2439156 +hive-gateway-router-runtime,66,108,602.2121078556265,719.91247485,0.9999218220670245,249.10,2439156 +hive-gateway-router-runtime,66,108,602.6635198535779,719.4870847999999,0.9999223099831671,250.30,2439156 +hive-gateway,10,5,114.25313146886948,21.013610549999985,1,177.40,2691508 +hive-gateway,11,5,117.9964760156589,26.2763585,1,179.40,2691508 +hive-gateway,11,5,121.60137024030357,31.053407399999976,1,176.80,2691508 +hive-gateway,11,10,124.77539429902171,37.00247559999999,1,178.90,2691508 +hive-gateway,11,10,128.68241888458462,40.6946884,1,180.90,2691636 +hive-gateway,12,10,130.90908527154042,46.03692,1,178.70,2694088 +hive-gateway,12,10,133.72452603472797,52.051387799999965,1,180.60,2694088 +hive-gateway,12,15,135.28849432451955,56.21027645,1,182.60,2694088 +hive-gateway,13,15,140.7824704718064,65.7153818,1,180.30,2694088 +hive-gateway,13,15,143.989231034347,69.9362187,1,182.30,2694088 +hive-gateway,13,20,146.1536570217847,72.86756759999997,1,184.30,2694088 +hive-gateway,14,20,149.13153795386472,76.2140194,1,186.20,2694088 +hive-gateway,14,20,152.18398122144697,82.94389199999999,1,183.80,2694088 +hive-gateway,14,25,153.51543561704423,87.6059718,1,185.80,2692684 +hive-gateway,14,25,156.1269397892422,92.6863855,1,187.80,2692684 +hive-gateway,15,25,158.81819168669227,98.40756195,1,185.80,2692684 +hive-gateway,15,25,161.33270700779133,101.59793499999994,1,187.70,2692684 +hive-gateway,15,30,163.90900361608152,107.19768555,1,189.50,2692684 +hive-gateway,16,30,166.3901203395155,108.78508309999998,1,187.20,2692684 +hive-gateway,16,30,170.07075393997238,114.35996979999994,1,189.20,2692684 +hive-gateway,16,35,169.833466982159,117.3903569,1,191.20,2713236 +hive-gateway,17,35,169.30463253099734,124.5896292999999,1,193.10,2734264 +hive-gateway,17,35,172.2999299367921,132.18253569999993,1,190.80,2734392 +hive-gateway,17,40,174.4106195115305,135.94851189999983,1,192.70,2734392 +hive-gateway,18,40,176.7395084393346,142.0928846,1,194.70,2734648 +hive-gateway,18,40,179.45107281520455,144.6995861999999,1,192.40,2734648 +hive-gateway,18,45,181.38600520133144,147.42849079999988,1,194.30,2734648 +hive-gateway,18,45,182.43115652122262,155.02633239999992,1,196.20,2734648 +hive-gateway,19,45,183.46715385838684,158.79564659999997,1,194.00,2734648 +hive-gateway,19,45,186.16155648774125,166.32910359999974,1,195.90,2734648 +hive-gateway,19,50,188.71952364150965,174.740251,1,198.00,2734648 +hive-gateway,20,50,191.72375553543463,184.41619874999998,1,195.80,2734648 +hive-gateway,20,50,192.6960682515938,191.5926292,1,197.50,2734648 +hive-gateway,20,62,193.7501429513862,201.05307979999986,1,199.30,2734648 +hive-gateway,21,62,194.75002061554764,214.09184399999998,1,197.10,2734648 +hive-gateway,21,62,196.5755737354504,223.32973460000002,1,199.10,2734648 +hive-gateway,21,73,197.97724320522514,233.30129039999997,1,200.80,2734648 +hive-gateway,22,73,199.6926349227839,248.43983104999998,1,198.70,2734648 +hive-gateway,22,73,201.67410952289288,251.2955455,1,200.30,2734648 +hive-gateway,22,84,202.04877850855442,261.347436,1,202.20,2742852 +hive-gateway,23,84,204.13337048781958,270.350756,1,203.90,2742852 +hive-gateway,23,84,205.0672446890586,280.8245657999999,1,201.80,2742852 +hive-gateway,23,95,206.30755696920946,303.1323470000003,1,203.50,2742852 +hive-gateway,24,95,205.733602605696,304.17868775,1,205.30,2738852 +hive-gateway,24,95,206.95358361947865,318.28784540000004,1,203.20,2738852 +hive-gateway,24,95,207.5618537289731,335.0076422500002,1,204.70,2738852 +hive-gateway,24,106,209.2990447037305,345.70399525,1,206.60,2738852 +hive-gateway,25,106,209.16127852268244,351.9795826,1,204.60,2738852 +hive-gateway,25,118,211.6666622139793,371.4347447999998,1,206.20,2738852 +hive-gateway,25,118,211.04536306897646,380.0923363500001,1,207.80,2738980 +hive-gateway,26,118,213.7686359591214,390.68580225,1,205.70,2738980 +hive-gateway,26,118,215.98300006743696,410.67804635,1,207.40,2738980 +hive-gateway,26,129,215.81024172762886,415.4283165999999,1,209.10,2738980 +hive-gateway,27,129,216.74016453318484,420.214544,1,207.00,2738980 +hive-gateway,27,129,217.8903649099463,432.342456,1,208.50,2738980 +hive-gateway,27,140,218.68666300700454,449.18852534999996,1,210.30,2738980 +hive-gateway,28,140,219.9024939642293,458.5823752999996,1,208.30,2738980 +hive-gateway,28,140,221.49393314747982,472.10280105000015,1,209.80,2738980 +hive-gateway,28,151,221.08628793090537,480.85998459999996,1,211.30,2738980 +hive-gateway,29,151,221.63773038890517,499.77865749999967,1,209.60,2738980 +hive-gateway,29,151,224.03508384368632,529.4010555,1,211.10,2738980 +hive-gateway,29,163,225.4215230844503,529.5253029999998,1,212.50,2739108 +hive-gateway,30,163,226.66300478305754,529.3786015,1,214.10,2739108 +hive-gateway,30,163,227.36879631032625,548.8214312,1,212.00,2739108 +hive-gateway,30,174,226.05711261843547,551.8656998,1,213.40,2739236 +hive-gateway,30,174,225.49480011169092,555.2353217499999,1,215.00,2739236 +hive-gateway,31,174,226.57732593706334,593.4244858499999,1,212.70,2739236 +hive-gateway,31,174,226.42892388527287,626.789909,1,214.30,2739236 +hive-gateway,32,185,228.06308172252383,642.456416,1,216.40,2739236 +hive-gateway,32,185,230.20913908731208,651.2981815999999,1,214.30,2739236 +hive-gateway,32,196,231.37311420646446,652.4224661999999,1,215.70,2738960 +hive-gateway,32,196,230.7154652244296,654.2760701999999,1,217.00,2738960 +hive-gateway,33,196,231.10649006751845,672.82062975,1,215.30,2738960 +hive-gateway,33,196,231.6682289968043,682.3740503,1,216.60,2738960 +hive-gateway,34,208,233.4639023424508,684.25522485,1,218.60,2739088 +hive-gateway,34,208,234.22873056012773,697.7020130000001,1,216.50,2739088 +hive-gateway,34,208,235.58474054842029,717.42158405,1,217.80,2739088 +hive-gateway,34,219,235.73005924270703,718.9548238,1,219.30,2739088 +hive-gateway,35,219,235.93436211265998,718.9524769,1,217.10,2739088 +hive-gateway,35,219,236.67282020745316,735.6383304499999,1,218.60,2739088 +hive-gateway,35,231,237.2508562784758,747.27245225,1,219.80,2739088 +hive-gateway,36,231,238.7028180132783,746.6577855,1,217.90,2739216 +hive-gateway,36,231,239.62503305851294,748.3582432999999,1,219.40,2739216 +hive-gateway,36,241,238.87445379360432,748.7532085999998,1,220.80,2739216 +hive-gateway,37,241,237.8367564658134,752.45271695,1,219.00,2739216 +hive-gateway,37,241,237.94458929578767,807.7744579500002,1,220.30,2739216 +hive-gateway,37,253,239.56180056944217,870.5052410499999,1,221.70,2739216 +hive-gateway,38,253,239.1217072893054,870.5344787500001,1,219.90,2739216 +hive-gateway,38,253,240.01892185864537,875.8198606999999,1,221.10,2739216 +hive-gateway,38,264,241.26706301256073,878.4512966,1,222.60,2739216 +hive-gateway,39,264,240.6435269507991,879.4407241999999,1,220.70,2739216 +hive-gateway,39,264,240.61864943058015,879.7574086000001,1,222.20,2739216 +hive-gateway,39,275,241.3713895634888,940.7635778,1,223.50,2739216 +hive-gateway,40,275,242.38796439176284,960.378002,1,221.80,2739216 +hive-gateway,40,275,242.4944101620298,970.403883,1,223.10,2739216 +hive-gateway,40,287,244.13202074425152,988.952895,1,224.50,2739216 +hive-gateway,41,287,244.22043419934968,988.6595526999996,1,225.80,2739216 +hive-gateway,41,287,244.2136500990162,994.5785434000002,1,223.90,2739216 +hive-gateway,41,298,244.45015452113861,994.5185742,1,225.20,2739216 +hive-gateway,42,298,245.83355148679857,1009.6176691999999,1,226.50,2739216 +hive-gateway,42,298,247.37957564744735,1011.2209199499999,1,224.80,2739216 +hive-gateway,42,309,245.4592551641721,1011.2209199499999,1,226.00,2739216 +hive-gateway,43,309,245.3386720141689,1011.11943425,1,227.30,2739216 +hive-gateway,43,309,245.72185411335764,1020.7953867999998,1,225.50,2739216 +hive-gateway,43,309,246.78969822302193,1054.6012637000003,1,226.70,2739216 +hive-gateway,43,320,245.32872973441934,1073.3017418,1,228.10,2739216 +hive-gateway,44,320,247.11884237026655,1099.278677,1,226.20,2739216 +hive-gateway,44,320,248.57640518707166,1117.915309,1,227.20,2739216 +hive-gateway,44,331,247.7993151343885,1118.7646764999997,1,228.40,2739216 +hive-gateway,45,331,247.67959824189566,1119.7516038000006,1,226.40,2739216 +hive-gateway,45,331,247.0333093569154,1161.6486505999997,1,227.70,2739216 +hive-gateway,45,345,248.62943487957975,1232.9901947,1,229.20,2739216 +hive-gateway,46,345,248.24718015224926,1243.6837584499992,1,227.40,2739216 +hive-gateway,46,345,250.89687682932552,1246.0201781999995,1,228.50,2739216 +hive-gateway,46,354,251.43398522751158,1244.7883963999998,1,229.60,2739216 +hive-gateway,47,354,250.16488852706303,1244.7456622999996,1,227.80,2739216 +hive-gateway,47,354,249.54596312162369,1244.58876245,1,229.00,2739216 +hive-gateway,47,365,250.34198434859073,1282.2569634999998,1,230.20,2739216 +hive-gateway,48,365,250.39039852041802,1295.5030494,1,231.40,2739216 +hive-gateway,48,365,250.78945177379546,1302.6547184,1,229.60,2739216 +hive-gateway,48,376,249.43234459572662,1305.0948834499995,1,230.80,2739216 +hive-gateway,48,376,251.28446678576685,1313.8962224,1,232.00,2739216 +hive-gateway,49,376,251.55633561448175,1313.4413152500001,1,230.20,2739216 +hive-gateway,49,376,251.6404715871699,1313.5348609,1,231.20,2739216 +hive-gateway,49,388,250.50546429298464,1315.326583,1,232.70,2739216 +hive-gateway,50,388,251.517967114851,1314.557359,1,230.90,2739344 +hive-gateway,50,388,250.53518396620024,1314.3831057999996,1,232.20,2739728 +hive-gateway,50,399,252.83264423103023,1343.1510117999999,1,233.20,2739728 +hive-gateway,51,399,253.4223265641487,1359.1330895499998,1,231.50,2739728 +hive-gateway,51,399,252.76242477469515,1359.0377938499996,1,232.60,2739728 +hive-gateway,51,410,253.37795166610042,1359.1075065,1,233.60,2739728 +hive-gateway,52,410,253.84188183352032,1394.95234055,1,232.10,2757392 +hive-gateway,52,410,254.2283785206466,1398.3595448,1,233.20,2821264 +hive-gateway,52,422,254.3390777375603,1403.0004915999998,1,234.20,2832656 +hive-gateway,53,422,254.4772645085511,1402.6642365999999,1,232.40,2859408 +hive-gateway,53,422,255.58552254262395,1405.1257845999996,1,233.50,2870160 +hive-gateway,53,433,254.08987242475408,1405.1257845999996,1,234.40,2870160 +hive-gateway,54,433,252.802253257929,1405.444272,1,235.50,2870288 +hive-gateway,54,433,254.2930927235534,1441.5134785999999,1,233.90,2870416 +hive-gateway,54,444,255.641972615687,1456.27973625,1,234.90,2870544 +hive-gateway,54,444,255.33238924823908,1469.5794696,1,236.00,2870544 +hive-gateway,55,444,254.0946921268311,1469.735136,1,234.30,2870544 +hive-gateway,55,444,252.73010114133754,1469.735136,1,235.30,2870544 +hive-gateway,55,455,253.4220259214564,1472.4690156999998,1,236.40,2870544 +hive-gateway,56,455,256.1215049725091,1505.5400288,1,234.70,2870544 +hive-gateway,56,455,256.0280052896299,1534.654622,1,235.70,2870544 +hive-gateway,56,466,255.57904148419945,1534.7027625,1,236.70,2870672 +hive-gateway,57,466,255.14503012718993,1534.3858391999995,1,237.80,2870672 +hive-gateway,57,466,256.74103014453357,1536.0264836499996,1,236.10,2870672 +hive-gateway,57,478,255.36217605835867,1536.0264836499996,1,237.30,2870672 +hive-gateway,58,478,256.2549256507063,1578.2633438499997,1,238.30,2870672 +hive-gateway,58,478,255.84262697760468,1585.1620652,1,236.50,2870672 +hive-gateway,58,489,254.49387811417324,1585.3744655,1,237.50,2870672 +hive-gateway,59,489,256.27491393263443,1618.3426155000002,1,238.80,2872080 +hive-gateway,59,489,258.03852137991765,1626.3467334999998,1,237.20,2872080 +hive-gateway,59,500,257.32985237823925,1626.8924307999998,1,238.20,2872336 +hive-gateway,59,500,256.2589060375722,1628.7472782500001,1,239.10,2872336 +hive-gateway,60,500,258.60022793538167,1637.4206188,1,237.70,2872336 +hive-gateway,60,500,258.99158322609094,1652.6953772999996,1,238.60,2872336 +hive-gateway,60,496,258.3624221726341,1652.67017725,1,239.50,2872336 +hive-gateway,61,496,258.75010399096925,1682.61924025,1,237.90,2872336 +hive-gateway,61,496,257.29244588626716,1682.61924025,1,239.00,2872336 +hive-gateway,61,439,258.592089267003,1692.4648585499997,1,240.10,2872336 +hive-gateway,62,439,259.769999429976,1695.7812247999998,1,238.60,2874640 +hive-gateway,62,439,258.81829783420903,1700.6548986,1,239.50,2874640 +hive-gateway,62,392,258.90275915569794,1703.6914107,1,240.40,2874640 +hive-gateway,63,392,257.6779670429564,1703.6914107,1,238.80,2874768 +hive-gateway,63,392,258.5722952536602,1721.8728475499997,1,239.70,2874768 +hive-gateway,63,339,259.61256898053745,1720.7640512999997,1,240.70,2874768 +hive-gateway,63,339,259.8791208537289,1720.9868061,1,241.60,2874768 +hive-gateway,64,339,260.0461073422058,1720.70364085,1,239.90,2874768 +hive-gateway,64,339,259.0105090518005,1720.6960756,1,240.90,2874768 +hive-gateway,64,302,259.4273897498285,1720.543998,1,241.90,2874768 +hive-gateway,65,302,260.81156980082903,1719.8540616,1,240.20,2874896 +hive-gateway,65,302,259.999381378057,1719.4966119499998,1,241.20,2874896 +hive-gateway,65,253,260.99369911345303,1718.27685925,1,242.20,2874896 +hive-gateway,66,253,261.4743583194544,1716.946911,1,240.50,2874896 +hive-gateway,66,253,260.5409088414115,1716.872726,1,241.50,2874896 +hive-gateway,66,189,262.4029621186725,1713.07025325,1,242.50,2874896 +hive-gateway,67,189,261.7356544010938,1712.2560659999997,1,240.80,2874896 +hive-gateway,67,189,262.5535455407003,1708.1067967499998,1,241.70,2874896 +hive-gateway,67,149,263.56421415968833,1706.3899015999996,1,242.70,2874896 +hive-gateway,67,149,263.30806861814676,1705.6685928999998,1,243.60,2874896 +hive-gateway,68,149,263.41954254094605,1705.1920647999996,1,242.00,2874896 +hive-gateway,68,107,263.27950663197197,1704.7454187499998,1,242.90,2875024 +hive-gateway,68,107,263.3022505135198,1704.30651405,1,243.90,2875024 +hive-gateway,69,107,263.68154665186387,1703.91976225,1,242.30,2875024 +grafbase,4,2,286.57773996126963,4.257548199999999,1,112.00,118988 +grafbase,4,2,302.34732010669273,5.225411000000001,1,113.00,116628 +grafbase,5,2,326.69351365018247,5.9187887499999965,1,114.00,109816 +grafbase,5,2,356.0654742641144,7.432573,1,116.00,105540 +grafbase,5,7,393.83242619352956,8.155593349999997,1,113.00,101624 +grafbase,5,7,413.8220719702462,9.5177575,1,114.00,97304 +grafbase,6,7,452.5587769135383,10.063232199999995,1,116.00,88952 +grafbase,6,12,483.4182776691852,12.26147075,1,113.00,85704 +grafbase,6,12,509.35913752430406,12.842870149999998,1,115.00,84724 +grafbase,7,12,545.463737858449,15.089444399999989,1,116.00,81724 +grafbase,7,12,571.4589614853552,15.140304899999997,1,118.00,77300 +grafbase,7,17,594.8888098315985,17.075622949999996,1,116.00,77256 +grafbase,7,17,641.6146280857333,17.112742,1,118.00,74760 +grafbase,8,17,652.2431433775353,18.882463499999993,1,119.00,74416 +grafbase,8,22,694.6507868632915,19.401350099999995,1,117.00,73228 +grafbase,8,22,702.7413079449763,22.09229725,1,119.00,73612 +grafbase,9,22,744.520033105748,22.309703,1,120.00,74136 +grafbase,9,27,747.982001101754,24.620868,1,118.00,74264 +grafbase,9,27,786.871275390735,25.0884745,1,120.00,74392 +grafbase,10,27,791.8250382965658,27.23150234999999,1,122.00,74544 +grafbase,10,27,828.8537480350941,27.5124795,1,123.00,74592 +grafbase,10,32,839.3113153448801,29.482433699999998,1,121.00,74848 +grafbase,11,32,865.8872257221165,29.247170399999995,1,123.00,74820 +grafbase,11,32,879.8277237667528,31.26437719999999,1,125.00,75588 +grafbase,11,37,897.9957292870603,32.22236399999999,1,122.00,75520 +grafbase,11,37,928.4952812768267,33.05106580000002,1,124.00,76032 +grafbase,12,37,926.1567640954722,34.23547755,1,126.00,76288 +grafbase,12,42,954.4573275621021,34.760982,1,124.00,77184 +grafbase,12,42,961.0835057976547,36.346606749999985,1,126.00,78912 +grafbase,13,42,979.059626003268,36.768519,1,127.00,78776 +grafbase,13,47,999.6151377857411,38.464111199999984,1,126.00,79288 +grafbase,13,47,1008.2291173260428,39.808501699999994,1,127.00,78992 +grafbase,14,47,1022.1130347365829,41.07068039999997,1,129.00,80400 +grafbase,14,54,1034.6937068103487,43.8466732,1,127.00,80728 +grafbase,14,54,1048.7280785841078,44.92879499999999,1,129.00,81624 +grafbase,15,54,1052.5698722782622,48.65360444999994,1,130.00,82736 +grafbase,15,66,1067.5543293846415,49.78288374999997,1,128.00,78792 +grafbase,15,66,1073.0796173941358,52.504734899999995,1,130.00,81992 +grafbase,16,66,1078.814534669879,54.0336752,1,131.00,82200 +grafbase,16,77,1100.8980060273898,54.99216184999999,1,130.00,83296 +grafbase,16,77,1107.2850548011345,57.982065999999996,1,132.00,83680 +grafbase,17,77,1110.0085246767537,59.76740844999998,1,133.00,84616 +grafbase,17,88,1128.015926344777,61.34430345000002,1,131.00,86280 +grafbase,18,88,1140.7243110981324,65.18071099999999,1,133.00,86336 +grafbase,18,88,1144.9646671551627,67.76544859999997,1,135.00,85240 +grafbase,18,99,1155.5282062038245,69.84659269999997,1,133.00,87160 +grafbase,19,99,1157.090609391512,72.40919,1,135.00,86328 +grafbase,19,99,1173.7718684810366,73.8300101,1,133.00,87632 +grafbase,19,111,1185.3326208786864,79.41935145,1,135.00,88016 +grafbase,20,111,1176.9016162961773,79.70443419999998,1,136.00,85368 +grafbase,20,122,1194.6292279798436,84.93621894999995,1,135.00,85276 +grafbase,20,122,1198.6463061291984,88.59720739999997,1,136.00,84876 +grafbase,21,122,1200.7899140464958,88.64991184999998,1,138.00,84672 +grafbase,21,133,1213.6818370630483,93.44816544999998,1,136.00,95808 +grafbase,22,133,1207.252533294906,97.48417579999986,1,137.00,94888 +grafbase,22,133,1218.731024943685,103.683032,1,139.00,106268 +grafbase,22,145,1213.5076995535808,107.78407649999998,1,137.00,104956 +grafbase,23,145,1220.7057576360276,111.64334939999996,1,138.00,108512 +grafbase,23,156,1222.9909911129125,117.5512525,1,137.00,110776 +grafbase,24,156,1217.7531267473412,121.3918862,1,138.00,107364 +grafbase,24,167,1224.6770909539155,128.29641650000002,1,137.00,111092 +grafbase,24,167,1229.5472325437254,134.123427,1,138.00,115728 +grafbase,25,167,1222.0795476335343,136.191979,1,140.00,112052 +grafbase,25,179,1233.4416634414197,143.7551068499998,1,139.00,117372 +grafbase,26,179,1233.257902597588,148.38577249999997,1,140.00,114384 +grafbase,26,189,1239.5778565353908,148.37240825,1,139.00,110036 +grafbase,27,189,1245.4002361568253,151.8077510999998,1,141.00,107584 +grafbase,27,201,1257.2697877557182,156.9566163,1,140.00,107584 +grafbase,27,201,1258.1963387887256,159.43170479999998,1,141.00,104864 +grafbase,28,201,1263.9558280902654,161.9507055,1,140.00,101864 +grafbase,28,212,1269.8380124299351,166.3683951,1,142.00,100044 +grafbase,29,212,1267.2748724025157,168.57726904999996,1,143.00,98764 +grafbase,29,223,1273.98632311683,170.8464104,1,143.00,96584 +grafbase,30,223,1277.2129540372598,175.66815860000003,1,141.00,92256 +grafbase,30,235,1290.6426463436321,180.70820825,1,143.00,92844 +grafbase,31,235,1291.1664429542402,184.85356105,1,145.00,91452 +grafbase,31,246,1291.3552665071622,185.22715840000004,1,144.00,89536 +grafbase,32,246,1297.4902137643858,189.00982389999996,1,143.00,94220 +grafbase,33,257,1302.1287337960118,194.3582255,1,146.00,93608 +grafbase,33,268,1312.2196362149482,199.10711694999975,1,146.00,92592 +grafbase,34,268,1313.3436378239235,202.28262625,1,147.00,91096 +grafbase,35,280,1318.632946228615,206.69946415000004,1,147.00,92940 +grafbase,35,291,1321.2383111060165,211.61994349999986,1,147.00,101996 +grafbase,36,291,1327.1912720421167,218.2652656,1,148.00,108856 +grafbase,36,303,1327.7173434441906,223.45619305000008,1,147.00,109464 +grafbase,37,303,1333.5019195697157,225.1290785,1,147.00,109056 +grafbase,38,313,1338.1012104768665,230.2419,1,149.00,106648 +grafbase,38,326,1341.999710574251,235.70140479999975,1,149.00,104400 +grafbase,39,326,1350.0292720890814,240.36548675,1,148.00,101068 +grafbase,40,336,1352.3130181408737,244.09353864999994,1,151.00,99776 +grafbase,41,347,1355.8877640431956,248.86917709999997,1,151.00,98088 +grafbase,41,359,1361.768238713054,254.2650703499999,1,150.00,95960 +grafbase,42,359,1365.2530350967388,260.1073481,1,150.00,94740 +grafbase,43,369,1367.5007411898725,265.1363372,1,153.00,93008 +grafbase,44,381,1372.8069121530643,271.604632,1,152.00,93864 +grafbase,44,393,1374.588142094581,276.1634596999999,1,152.00,92068 +grafbase,45,393,1381.6112793788968,283.400721,1,152.00,92304 +grafbase,46,404,1382.9255009938627,286.76461049999995,1,153.00,93776 +grafbase,47,414,1388.1385922035975,294.400808,1,153.00,92812 +grafbase,48,426,1393.7443099517377,302.11857614999997,1,154.00,98708 +grafbase,49,438,1403.71029236532,307.2410453999998,1,156.00,101452 +grafbase,50,449,1403.8065534930113,313.7085449499999,1,155.00,104036 +grafbase,51,459,1408.8210626542577,323.25342289999986,1,156.00,100764 +grafbase,52,471,1412.4319083795974,332.5568751499998,1,156.00,98164 +grafbase,54,482,1420.6707048094804,339.3702970999999,1,158.00,100940 +grafbase,55,489,1420.7646300697163,349.4538438,1,159.00,98088 +grafbase,56,446,1428.499806174522,356.93691349999995,1,160.00,100732 +grafbase,57,400,1443.7034743723204,356.42686520000007,1,160.00,111232 +grafbase,58,352,1445.9581847940888,355.9209363,1,160.00,118684 +grafbase,58,304,1452.0577847794034,355.30828159999993,1,160.00,118720 +grafbase,59,304,1455.953495472174,354.677284,1,162.00,119032 +grafbase,60,259,1458.3194824924701,354.183858,1,161.00,117476 +grafbase,60,213,1465.7864051098122,353.00886309999987,1,161.00,118100 +grafbase,61,213,1471.216381115377,352.12162319999993,1,161.00,113200 +grafbase,62,168,1472.6822933310016,351.4186109,1,162.00,112276 +grafbase,62,168,1475.1747484773198,350.88773089999995,1,161.00,109052 +grafbase,63,123,1476.3458311037364,350.43462524999995,1,163.00,108076 +grafbase,63,123,1478.9995478461778,349.81171500000005,1,162.00,104920 +grafbase,63,75,1479.1926460897714,349.32291,1,163.00,104660 +cosmo,5,4,265.78413965258017,8.529738,1,150.00,92924 +cosmo,5,4,273.23460312345327,10.633384750000003,1,153.00,92296 +cosmo,6,4,292.6157822657567,12.210690849999999,1,155.00,95752 +cosmo,6,4,306.4597009473094,14.960610149999995,1,152.00,95440 +cosmo,6,9,324.1395500276352,16.778602900000003,1,154.00,98872 +cosmo,7,9,337.4960652690153,18.591289,1,157.00,102568 +cosmo,7,9,346.9045353545404,20.94274459999999,1,159.00,100500 +cosmo,7,14,367.49578199682117,22.88361059999998,1,157.00,99800 +cosmo,8,14,373.5485603458029,25.94324725,1,159.00,105304 +cosmo,8,14,389.75312895972087,27.782375649999977,1,162.00,100424 +cosmo,8,19,402.02628214997765,29.74127825,1,159.00,100744 +cosmo,8,19,409.56615586387346,32.553298299999994,1,161.00,104304 +cosmo,9,19,420.72588864804476,34.611151199999995,1,164.00,105848 +cosmo,9,19,427.47419863894385,37.04209669999998,1,166.00,106540 +cosmo,9,24,437.4244095145702,39.5024989,1,163.00,107132 +cosmo,10,24,445.4377603676331,41.04335104999999,1,166.00,110036 +cosmo,10,24,449.3283416691569,44.09305949999999,1,168.00,106124 +cosmo,10,29,460.8335713391122,46.26331160000001,1,166.00,108328 +cosmo,11,29,466.2998549429221,48.954007,1,168.00,108300 +cosmo,11,29,474.6823314470542,50.277603,1,170.00,112564 +cosmo,11,34,478.5019676898275,52.2544649,1,168.00,112388 +cosmo,11,34,479.2025775132311,54.1828761,1,170.00,109316 +cosmo,12,34,489.36540866381176,57.64441064999998,1,172.00,110480 +cosmo,12,34,496.1141406956235,59.815090600000005,1,170.00,105224 +cosmo,12,39,500.95516375707746,62.72513279999996,1,173.00,114736 +cosmo,13,39,505.8144382349218,64.366163,1,175.00,111228 +cosmo,13,39,511.0261708385778,67.06041719999999,1,177.00,116596 +cosmo,13,44,515.943294373013,69.8390081,1,174.00,119976 +cosmo,14,44,520.9468940353853,71.722711,1,177.00,117444 +cosmo,14,44,522.7390016636778,74.1601585,1,179.00,119744 +cosmo,14,49,529.8874587779133,76.91632990000001,1,177.00,120200 +cosmo,15,49,530.4175146189182,79.57717049999991,1,179.00,121556 +cosmo,15,49,534.2508684327179,84.50226099999999,1,181.00,121212 +cosmo,15,59,535.9195589884315,86.52491669999999,1,178.00,129484 +cosmo,15,59,539.5113882799167,89.58235139999998,1,181.00,126324 +cosmo,16,59,544.7587089434468,94.24545975,1,183.00,132160 +cosmo,16,59,545.1674196691412,98.56116599999999,1,180.00,125764 +cosmo,16,70,551.9067855329693,103.30877979999998,1,183.00,140908 +cosmo,17,70,555.1128022136544,105.812806,1,185.00,141284 +cosmo,17,70,557.0188551271647,110.20745249999999,1,187.00,136248 +cosmo,17,82,560.370338804795,115.78252649999999,1,184.00,137100 +cosmo,18,82,561.9088005932379,119.60569179999993,1,186.00,147252 +cosmo,18,82,564.4425933222713,126.62166219999996,1,189.00,146556 +cosmo,18,93,566.8135076197806,131.16461184999997,1,186.00,152000 +cosmo,19,93,567.503180126832,135.6842674,1,188.00,143220 +cosmo,19,93,571.9399793031154,141.0326998,1,190.00,147640 +cosmo,19,104,576.9135753961214,146.9523595,1,188.00,158832 +cosmo,20,104,575.0389629485798,149.8268737,1,190.00,157108 +cosmo,20,104,578.5026534015095,155.12098535,1,192.00,171472 +cosmo,20,115,579.5920802710993,159.07332699999995,1,190.00,154856 +cosmo,20,115,581.9464116466158,165.277139,1,192.00,161876 +cosmo,21,115,584.8120593394033,169.82137439999997,1,193.00,163300 +cosmo,21,115,586.690979130602,175.4466968,1,191.00,162028 +cosmo,21,127,586.2860481508649,183.48382674999985,1,193.00,159232 +cosmo,22,127,591.4444343519202,189.46193514999996,1,195.00,171080 +cosmo,22,127,594.1208262471815,194.44535239999982,1,193.00,169892 +cosmo,22,138,592.6695570141039,201.69485189999997,1,195.00,181060 +cosmo,23,138,595.0261629907185,205.45902069999997,1,197.00,194696 +cosmo,23,138,600.8147475908063,213.54378979999967,1,199.00,184388 +cosmo,23,149,601.2501537064203,219.1820059999999,1,197.00,182984 +cosmo,24,149,601.8366038691756,224.40917184999995,1,198.00,174324 +cosmo,24,149,602.6143292699775,228.5457611999999,1,200.00,199248 +cosmo,24,161,605.664953720553,234.130428,1,198.00,181168 +cosmo,25,161,607.8386999151479,237.92695350000002,1,200.00,195580 +cosmo,25,161,608.5603088679228,244.77240474999996,1,202.00,197404 +cosmo,25,172,608.2799324983436,249.46599799999998,1,200.00,219504 +cosmo,26,172,611.4105718949837,254.07721209999997,1,201.00,200680 +cosmo,26,172,612.6027224162615,258.4680772,1,203.00,197360 +cosmo,26,183,612.1385837997392,263.390891,1,201.00,217452 +cosmo,27,183,614.1259556930705,270.2079124999999,1,203.00,205008 +cosmo,27,183,617.4217374265093,272.52151545000004,1,204.00,197304 +cosmo,27,194,618.0880439508404,275.34229409999995,1,202.00,205696 +cosmo,28,194,617.7366471307356,278.634006,1,204.00,208368 +cosmo,28,194,621.4170675833234,286.412381,1,206.00,203804 +cosmo,28,205,621.3722093869712,291.4951436,1,203.00,208860 +cosmo,29,205,616.2279425736864,294.3443106,1,206.00,208888 +cosmo,29,205,622.8874813960908,303.0909729499999,1,207.00,219916 +cosmo,29,217,624.5382479694127,307.760463,1,205.00,236372 +cosmo,30,217,625.0485326517542,310.69156204999905,1,207.00,214108 +cosmo,30,217,627.3440141057877,316.89804509999976,1,209.00,213364 +cosmo,30,228,627.5954744391776,322.17188114999976,1,206.00,211860 +cosmo,31,228,627.5335789046553,326.33803625,1,209.00,215544 +cosmo,31,228,630.0343417268538,336.0512788,1,210.00,239408 +cosmo,31,239,631.5067162052728,339.35793225000003,1,208.00,237952 +cosmo,32,239,630.8614978639846,344.53742550000004,1,210.00,242760 +cosmo,32,239,632.2409241979875,350.54208759999983,1,212.00,231168 +cosmo,32,250,633.589654393153,352.90215615,1,210.00,231540 +cosmo,33,250,635.1475037720395,357.0979795,1,211.00,230852 +cosmo,33,250,635.2990782224473,363.117484,1,213.00,246700 +cosmo,33,262,637.7315857388758,368.50473949999997,1,211.00,240288 +cosmo,34,262,637.4316870915379,375.5370063,1,213.00,280464 +cosmo,34,262,640.2172680675027,379.8955865500001,1,214.00,259856 +cosmo,34,273,639.3710641306903,384.04066450000005,1,212.00,249788 +cosmo,35,273,640.4463917622726,391.02701315,1,214.00,252844 +cosmo,35,273,642.3271158666796,394.9612135,1,215.00,253296 +cosmo,35,284,641.1770702436077,401.8437044,1,213.00,245940 +cosmo,36,284,642.4144402755637,408.46760919999997,1,215.00,249200 +cosmo,36,284,644.6253474076127,411.4514384000001,1,216.00,242724 +cosmo,36,295,642.3865791518654,415.9005563,1,215.00,271440 +cosmo,37,295,645.0359220636878,425.8369064,1,217.00,250084 +cosmo,37,295,646.3129863069622,432.35153975000003,1,218.00,243288 +cosmo,37,307,644.7223465703523,435.16471499999994,1,216.00,281756 +cosmo,38,307,645.8835721919179,441.1798452,1,218.00,296336 +cosmo,38,307,646.9595488921015,447.9182578,1,219.00,291032 +cosmo,38,318,647.9914965335967,451.98674934999974,1,217.00,282364 +cosmo,39,318,648.3483057611437,455.0175160999999,1,219.00,273564 +cosmo,39,318,649.0016808500804,460.5684164999998,1,220.00,277244 +cosmo,39,329,648.7188562947204,464.9191555999997,1,218.00,277332 +cosmo,40,329,649.6303457697811,470.82116459999986,1,220.00,302144 +cosmo,40,329,649.737703399904,479.760391,1,218.00,256896 +cosmo,40,340,649.9866847358505,484.6703460499998,1,220.00,338304 +cosmo,41,340,650.364387422176,492.9897616999999,1,221.00,307224 +cosmo,41,352,653.3958240001798,498.39498259999993,1,219.00,312268 +cosmo,41,352,652.7197049062909,501.299871,1,221.00,340556 +cosmo,42,352,654.4396588052404,509.7453911499999,1,222.00,321496 +cosmo,42,352,653.3303472421824,512.2778619000001,1,220.00,320344 +cosmo,42,363,653.6878261910543,516.1716319,1,222.00,331196 +cosmo,43,363,654.9301491227851,524.6592014,1,223.00,333224 +cosmo,43,374,657.5446499901699,529.02178935,1,221.00,305844 +cosmo,43,374,655.800313179851,532.03981445,1,223.00,357940 +cosmo,44,374,657.4346032678743,541.5020131999997,1,224.00,366384 +cosmo,44,374,656.5664012702756,542.3578720999998,1,222.00,345224 +cosmo,44,385,658.5853779773843,551.11083675,1,224.00,314024 +cosmo,45,385,659.9422179106842,556.1172746999998,1,225.00,301664 +cosmo,45,397,660.4064826097814,559.9674905,1,223.00,310592 +cosmo,45,397,658.9846153007617,562.1073273999999,1,224.00,334088 +cosmo,46,397,659.8545275665807,569.2079455,1,226.00,330872 +cosmo,46,397,660.6438260435114,572.07598,1,224.00,338144 +cosmo,46,408,660.5166698937165,573.970906,1,225.00,320396 +cosmo,47,408,662.21687909259,578.0024676,1,226.00,331216 +cosmo,47,408,661.583763430231,583.5298058,1,224.00,321552 +cosmo,47,419,662.5837588972975,587.6467137999998,1,226.00,336784 +cosmo,48,419,665.0833890868706,591.711505,1,227.00,326052 +cosmo,48,419,664.6713184700938,593.5929655,1,225.00,354084 +cosmo,48,430,663.1109426430396,597.5775370499998,1,227.00,324400 +cosmo,49,430,665.0466487422435,603.4182821999999,1,228.00,346160 +cosmo,49,430,665.3620017823821,608.2442659999999,1,229.00,324128 +cosmo,49,442,665.5518811187245,610.5933592,1,227.00,315096 +cosmo,50,442,664.3440924574581,615.6245508999998,1,230.00,366216 +cosmo,50,453,666.9253230310308,625.49722185,1,228.00,417544 +cosmo,51,453,668.0856673163585,629.7923282500001,1,229.00,404068 +cosmo,51,453,668.2316855942707,632.5049707,1,231.00,370308 +cosmo,51,464,667.2181107519389,635.5529255499999,1,229.00,360664 +cosmo,52,464,668.6113031453191,641.269055,1,230.00,344764 +cosmo,52,464,668.9326698375257,647.6204045,1,229.00,332560 +cosmo,52,475,669.2507174977668,651.0502302999998,1,230.00,336368 +cosmo,53,475,669.616317683456,654.5182406,1,231.00,423280 +cosmo,53,475,669.4065969091472,664.2557125,1,229.00,422892 +cosmo,53,487,670.7241703403375,669.67573345,1,231.00,435052 +cosmo,54,487,670.3381082546739,673.984154,1,232.00,419200 +cosmo,54,487,667.6183371052035,681.249867,1,231.00,374480 +cosmo,55,499,672.0359278536649,690.9672090999999,1,232.00,355160 +cosmo,55,499,671.8487388162977,691.7281244000002,1,233.00,355088 +cosmo,55,479,671.9426122853868,697.7929086000001,1,232.00,357968 +cosmo,56,479,674.3231077749459,705.4515662999996,1,233.00,380968 +cosmo,56,479,673.5254589622538,707.1998813,1,234.00,366928 +cosmo,56,433,675.4874257181567,712.71106675,1,232.00,365904 +cosmo,57,433,674.1303898723854,713.0075073999998,1,234.00,355120 +cosmo,57,433,674.7584857097119,713.63717555,1,235.00,349740 +cosmo,57,385,675.2827372841753,714.1316290500001,1,233.00,323480 +cosmo,58,385,675.2075032603265,714.21640375,1,234.00,357160 +cosmo,58,385,676.9114859367382,714.006624,1,236.00,336064 +cosmo,58,340,676.124878590458,713.6380542500001,1,234.00,332672 +cosmo,59,340,678.8972426662045,713.06525365,1,235.00,313256 +cosmo,59,340,678.6442341383902,712.4234943000002,1,236.00,281192 +cosmo,59,292,678.729941902225,711.9399844,1,234.00,278416 +cosmo,60,292,680.014155414987,711.284699,1,236.00,267176 +cosmo,60,292,680.5283283450301,710.7948427000002,1,237.00,257496 +cosmo,60,245,680.2355555572514,710.1023408999994,1,235.00,256248 +cosmo,61,245,681.0721465179938,708.88922305,1,236.00,249616 +cosmo,61,245,680.7591306049303,708.1019629999997,1,237.00,243152 +cosmo,61,203,681.1569052346423,707.4864812,1,236.00,224048 +cosmo,62,203,682.4340184698449,706.7913652499999,1,237.00,236656 +cosmo,62,203,682.6585022799313,706.4235003,1,238.00,213928 +cosmo,62,152,682.015022296654,706.0089505,1,236.00,213688 +cosmo,63,152,683.4490354562543,705.2143381,1,237.00,197796 +cosmo,63,152,683.0772793073215,704.67336,1,239.00,201048 +cosmo,63,108,684.0979902021411,704.1861991499999,1,237.00,183608 +cosmo,64,108,684.2454020761622,703.4443711,1,238.00,168608 +cosmo,64,108,684.3698304588967,702.9877295499999,1,239.00,164048 +apollo-router,8,3,144.20348833749406,10.995904400000002,1,156.00,118768 +apollo-router,8,3,151.75302696279596,13.3649475,1,158.00,118364 +apollo-router,9,3,157.23731851746192,16.35317435,1,160.00,119876 +apollo-router,9,8,165.55342382283877,19.071752299999996,1,158.00,120180 +apollo-router,9,8,172.5318983151674,22.22196625,1,160.00,122868 +apollo-router,10,8,179.7688772641291,25.7318685,1,162.00,125428 +apollo-router,10,8,185.86611074405255,27.886355199999997,1,165.00,127220 +apollo-router,10,13,194.2360674194215,31.35636019999999,1,162.00,129524 +apollo-router,11,13,201.4359909064473,35.846021,1,165.00,131572 +apollo-router,11,13,208.0042556940091,38.96012459999997,1,167.00,133876 +apollo-router,11,18,211.80954898363572,40.454349900000004,1,165.00,135656 +apollo-router,11,18,216.86687030434678,44.4029985,1,167.00,137300 +apollo-router,12,18,224.34642937200724,48.6283046,1,169.00,139956 +apollo-router,12,23,227.4399788873599,52.20733479999999,1,167.00,143156 +apollo-router,12,23,235.3920461964763,57.25771559999999,1,170.00,144692 +apollo-router,13,23,240.96619445136733,60.12023580000002,1,172.00,146376 +apollo-router,13,28,245.37903359838865,62.75447889999997,1,174.00,150768 +apollo-router,13,28,248.8682570842262,66.7775439,1,172.00,155612 +apollo-router,14,28,253.09014338465227,69.9524946,1,174.00,156976 +apollo-router,14,28,255.43240231005097,71.70558489999999,1,176.00,159024 +apollo-router,14,33,260.8185625359995,75.4667644,1,174.00,162300 +apollo-router,15,33,263.51401793972644,79.16613299999997,1,176.00,164220 +apollo-router,15,33,267.5115129511302,82.958162,1,179.00,167420 +apollo-router,15,38,272.7129602389948,86.502993,1,176.00,170876 +apollo-router,16,38,275.8270479401701,91.24779535,1,179.00,172796 +apollo-router,16,38,278.67278453946045,95.62229775000004,1,181.00,173948 +apollo-router,16,43,282.8716870126208,98.35210239999999,1,179.00,174760 +apollo-router,17,43,285.40901352419286,101.97021090000001,1,181.00,179080 +apollo-router,17,43,286.5541668871254,106.01904959999999,1,183.00,179848 +apollo-router,17,48,290.8417855590514,110.29420700000001,1,181.00,187816 +apollo-router,17,48,292.07719765519073,113.83215299999995,1,183.00,188604 +apollo-router,18,48,295.66948813616784,118.922096,1,185.00,190560 +apollo-router,18,57,297.44144290717924,123.45382204999993,1,187.00,198320 +apollo-router,18,57,298.7192942128025,129.28519659999998,1,185.00,199600 +apollo-router,19,57,301.7841625887508,138.72819415,1,186.00,215444 +apollo-router,19,68,304.32705350389404,143.74460059999998,1,188.00,217764 +apollo-router,19,68,306.7532957758401,150.6232746,1,186.00,217232 +apollo-router,20,68,307.52828322519673,156.31339579999997,1,188.00,221584 +apollo-router,20,68,309.6346505126563,161.70125775,1,190.00,222016 +apollo-router,20,79,310.76644997286064,171.0663845,1,188.00,227992 +apollo-router,21,79,313.83486954247843,182.66826239999997,1,190.00,226616 +apollo-router,21,79,314.2931852699136,189.27753124999987,1,192.00,235792 +apollo-router,21,90,315.3379413552516,196.796302,1,190.00,249716 +apollo-router,22,90,318.74627121510576,205.99397539999998,1,192.00,252884 +apollo-router,22,90,320.53055094402504,214.67253454999994,1,194.00,253740 +apollo-router,22,102,321.28421476107303,220.41927969999998,1,191.00,255916 +apollo-router,22,102,321.26467908646555,225.60234050000003,1,193.00,268824 +apollo-router,23,102,324.2717334245233,237.31176979999995,1,195.00,268824 +apollo-router,23,113,325.5636111032928,246.4282685,1,193.00,269292 +apollo-router,23,113,326.3177894078071,251.45437694999995,1,195.00,286876 +apollo-router,24,113,328.9245657250879,263.760727,1,197.00,286612 +apollo-router,24,124,329.5484866841252,271.77997079999994,1,199.00,294908 +apollo-router,24,124,331.83447400855266,282.32410584999997,1,197.00,300536 +apollo-router,25,124,333.1852885052184,288.3113854,1,199.00,306364 +apollo-router,25,136,335.23186119168145,295.41319725,1,200.00,306748 +apollo-router,25,136,335.6728939090212,300.2689479999999,1,198.00,312940 +apollo-router,26,136,335.79984017860585,306.107508,1,200.00,317676 +apollo-router,26,136,337.1345851544623,312.44965330000014,1,202.00,331276 +apollo-router,26,147,339.44592778864273,322.5125216,1,199.00,340088 +apollo-router,27,147,340.88700479634974,330.4147709,1,201.00,337312 +apollo-router,27,147,339.7000995161252,335.01423079999995,1,203.00,337312 +apollo-router,27,158,341.3137060969986,347.8418135,1,201.00,349728 +apollo-router,27,158,342.27393359375714,354.835328,1,202.00,360180 +apollo-router,28,158,342.23463772415073,359.5273079,1,204.00,360692 +apollo-router,28,169,344.65389305832804,369.85658894999983,1,202.00,360008 +apollo-router,28,169,346.1398635424413,382.60540234999996,1,204.00,369256 +apollo-router,29,169,344.90423442290444,387.1260058,1,206.00,375272 +apollo-router,29,181,346.69674500129844,400.9847979500001,1,204.00,379016 +apollo-router,29,181,348.2190658628944,412.818979,1,205.00,392860 +apollo-router,30,181,348.7095598669079,418.40837409999966,1,207.00,392104 +apollo-router,30,192,349.48810873540657,429.04754249999996,1,205.00,392736 +apollo-router,30,192,352.3009841691315,442.62666240000004,1,207.00,388396 +apollo-router,31,192,350.37536187381664,443.55520979999994,1,209.00,401044 +apollo-router,31,203,352.3448480762825,459.2856158,1,206.00,402836 +apollo-router,31,203,354.5768302351075,467.51506344999996,1,208.00,402964 +apollo-router,32,203,354.33405076305655,471.72928479999996,1,210.00,402964 +apollo-router,32,214,354.9525045896894,481.41573539999996,1,208.00,410320 +apollo-router,32,214,356.65794836453216,491.0392846,1,209.00,434324 +apollo-router,33,214,356.5492798109902,496.04422925,1,211.00,426904 +apollo-router,33,225,356.7493402190156,504.25133535,1,213.00,443864 +apollo-router,33,225,357.6620146595112,512.2695736,1,211.00,436032 +apollo-router,34,225,357.69654567759625,521.7649365000001,1,212.00,441056 +apollo-router,34,237,357.925173552059,532.14328925,1,214.00,476792 +apollo-router,34,237,358.0910082539133,543.2915447,1,212.00,476460 +apollo-router,35,237,360.2969899023982,548.8813601999993,1,213.00,460532 +apollo-router,35,237,359.4502190425882,549.875931,1,215.00,465908 +apollo-router,35,248,360.81534798352203,560.8816726,1,212.00,483188 +apollo-router,36,248,361.9713155279472,566.3134318499999,1,214.00,471196 +apollo-router,36,248,361.4870138711767,571.6668261999998,1,215.00,472188 +apollo-router,36,259,363.90869077684636,585.4331208,1,214.00,466244 +apollo-router,36,259,362.76194717165095,586.7898174999998,1,215.00,485700 +apollo-router,37,259,362.10433028653847,589.6709386499998,1,216.00,506796 +apollo-router,37,270,363.94984222927843,612.5891086999999,1,214.00,515108 +apollo-router,37,270,365.3934397003826,615.6186743999999,1,216.00,535692 +apollo-router,38,270,363.9228040635356,624.4822985,1,218.00,542860 +apollo-router,38,282,365.5045542354595,651.4168599499995,0.9999224264991079,215.00,526704 +apollo-router,38,282,365.7819578307219,658.3479121999998,0.9999231301406718,217.00,526280 +apollo-router,39,282,365.9576873862169,666.2075642999997,0.9999238211320179,218.00,535880 +apollo-router,39,293,367.2340832579823,678.37337,0.999924789410349,216.00,525240 +apollo-router,39,293,368.15366297918894,679.8808035,0.9999256284396847,218.00,528120 +apollo-router,40,293,366.70283705801126,687.7913247500001,0.9999259588331112,219.00,540024 +apollo-router,40,304,368.9005227851371,717.8586217,0.9999270445757642,221.00,537076 +apollo-router,40,304,368.5693924361464,722.9197749499999,0.9999276410998553,219.00,540404 +apollo-router,41,304,368.00390640011796,722.5230443999998,0.9999281092739036,220.00,542196 +apollo-router,41,315,369.8749608984793,745.816984,0.999929178470255,222.00,528712 +apollo-router,41,315,370.4074126316467,750.2121836,0.9998596786641408,220.00,522976 +apollo-router,42,315,370.13672326602676,751.5121856999999,0.999860743629021,221.00,527028 +apollo-router,42,315,370.21765151756745,758.1476093,0.9998619070634537,222.00,523032 +apollo-router,42,327,371.606754999748,767.8927130000001,0.9998636022642025,221.00,560760 +apollo-router,43,327,369.97103834898485,772.5089528,0.9998641581199483,222.00,563304 +apollo-router,43,327,371.49901075056687,789.86342925,0.9997987792608491,223.00,546528 +apollo-router,43,338,372.0870067007873,805.4787972999999,0.9998005716944758,221.00,599008 +apollo-router,44,338,372.60802483618403,805.9878749999996,0.9998024366150807,223.00,619716 +apollo-router,44,338,375.0325522362984,818.986274,0.9998054600868945,224.00,615116 +apollo-router,44,349,374.1537507804616,819.0290884999998,0.999806426635695,222.00,620236 +apollo-router,45,349,373.3118006474807,819.3223097999997,0.999807605977041,224.00,635540 +apollo-router,45,349,376.9232939869463,844.1164915499995,0.9998111188062708,225.00,610856 +apollo-router,45,361,375.112701440168,843.7518583999998,0.9998114867412341,223.00,663208 +apollo-router,46,361,375.56164842732807,846.8505096999999,0.9998130375171382,224.00,663464 +apollo-router,46,361,376.6561885369713,858.8540303999995,0.9998151457267854,226.00,651956 +apollo-router,46,372,376.5472781975266,866.0677242999993,0.9998163677541776,224.00,649188 +apollo-router,46,372,376.79095345400646,871.8035645500001,0.9998177621188191,225.00,649188 +apollo-router,47,372,377.243470453032,884.7693656,0.9998194076571153,226.00,649188 +apollo-router,47,383,377.0243999738501,898.033575,0.999820584893248,225.00,649188 +apollo-router,47,383,377.0335600151907,906.0657620999999,0.9997624279859832,226.00,645160 +apollo-router,48,383,379.021787452916,912.2333725,0.9997068995837974,227.00,626952 +apollo-router,48,394,378.9839737309107,912.2937019999998,0.9997091162953051,225.00,630640 +apollo-router,48,394,379.6657777821483,916.554136,0.9996539792387543,227.00,631408 +apollo-router,49,394,378.582182918792,921.8181984000001,0.9996553110817488,228.00,637520 +apollo-router,49,405,379.6394804298146,937.6883411999999,0.99965858654831,229.00,648368 +apollo-router,49,405,380.2891577835257,944.6231462000004,0.9996048769473922,227.00,629136 +apollo-router,50,405,380.10867585937217,954.9575836999999,0.9996074032529445,228.00,615088 +apollo-router,50,405,379.4746155133946,959.0211917999999,0.9996093532005135,230.00,615088 +apollo-router,50,417,381.16698464388384,973.903298,0.9993931369303762,228.00,648340 +apollo-router,51,417,380.3642450720915,979.6430141499998,0.9993955379712056,229.00,715112 +apollo-router,51,417,379.93093913749425,987.9533626,0.9993987756886751,230.00,712336 +apollo-router,51,428,381.7168420392985,1009.5585504999999,0.9992980182515254,229.00,666752 +apollo-router,52,428,381.26206338551697,1015.8554591499999,0.9993019384631907,230.00,668620 +apollo-router,52,428,381.0880081527772,1022.9756017999997,0.999305740987984,231.00,673996 +apollo-router,52,439,379.1035834630114,1023.2919685,0.9993061485909479,229.00,662008 +apollo-router,53,439,382.60777808932,1049.24122115,0.999317370300357,230.00,681784 +apollo-router,53,439,381.63015345397224,1053.8506836000001,0.9993202614379085,232.00,678360 +apollo-router,53,451,382.5702131371785,1056.4181823,0.9992227576558371,230.00,669240 +apollo-router,54,451,382.76620043162336,1058.4936782,0.9992282759685137,231.00,672012 +apollo-router,54,451,382.73997008453637,1064.4348275999998,0.9992328935256214,232.00,708932 +apollo-router,54,462,381.89907743180265,1067.013602,0.9992355519315055,230.00,772036 +apollo-router,55,462,383.6318328162616,1086.0818719,0.9992446749584571,232.00,766348 +apollo-router,55,462,382.72071983629615,1090.9233535,0.9992478563907136,233.00,761520 +apollo-router,55,473,382.0871312067289,1098.366413,0.9992522059923227,231.00,743232 +apollo-router,56,473,384.8296440602601,1106.9971113000001,0.9992626093796086,233.00,720760 +apollo-router,56,473,384.0559844102857,1108.0359305,0.999265102150801,234.00,718552 +apollo-router,56,484,383.89311838735017,1113.4452145,0.9992692195264542,232.00,800232 +apollo-router,57,484,383.7430905230375,1125.3995565,0.9992731149447568,233.00,801132 +apollo-router,57,484,384.36670355583726,1138.93607675,0.9992788461538461,234.00,798636 +apollo-router,57,495,385.6341839334278,1149.622433,0.9992387115192464,233.00,781100 +apollo-router,58,495,385.1269187576712,1151.4275418,0.9992423883706615,234.00,769088 +apollo-router,58,495,384.74338625977515,1154.4118426,0.9992462429924153,235.00,740400 +apollo-router,58,490,386.43555930880007,1171.1538659999999,0.9991606043648573,233.00,737748 +apollo-router,58,490,384.5143351265981,1171.1538659999999,0.9991606043648573,234.00,740888 +apollo-router,59,490,384.1876127328697,1173.4610583999997,0.9991178382393908,235.00,736524 +apollo-router,59,445,388.03956060491726,1192.08749875,0.99908600676355,234.00,688152 +apollo-router,59,445,386.84736726665824,1191.9430191000001,0.9990878825192685,235.00,726484 +apollo-router,60,445,386.5163959962038,1191.45821855,0.9990920234257956,236.00,737620 +apollo-router,60,418,386.27512958130586,1192.8550474,0.9990513619731671,237.00,732888 +apollo-router,60,418,387.4127525833702,1207.0538952,0.9990145576707726,235.00,713860 +apollo-router,61,418,387.327615666463,1207.5062731499997,0.9990193456360881,236.00,706764 +apollo-router,61,418,387.6451058397474,1209.8872147499999,0.9990256001417309,237.00,687028 +apollo-router,61,355,388.08584255167386,1208.202738,0.9990323715693173,236.00,703668 +apollo-router,62,355,387.8823724232428,1207.5511250999998,0.9990369040844023,237.00,701324 +apollo-router,62,355,389.36545728909215,1206.6972942,0.9990461738564925,238.00,693228 +apollo-router,62,307,389.21463052956034,1206.0757161,0.9990515197240785,236.00,681140 +apollo-router,63,307,390.6326292122141,1205.2133888,0.9990601905250117,237.00,663604 +apollo-router,63,307,389.6686793790153,1205.06945225,0.9990624733657206,238.00,666292 +apollo-router,63,262,391.24221036164937,1203.7814836999999,0.999071338117349,237.00,647984 +apollo-router,64,262,390.49508551015,1202.90390295,0.9990741520074068,238.00,647984 +apollo-router,64,262,391.6277870354858,1201.91593175,0.9990820328799133,239.00,646744 +apollo-router,64,208,391.4650610553926,1201.4953820999992,0.9990864925466096,237.00,633892 +apollo-router,65,208,391.9049970360704,1200.1238647999999,0.9990924092409241,238.00,622512 +apollo-router,65,208,392.51258280900794,1198.5325321999997,0.9990983237017911,239.00,607044 +apollo-router,65,170,392.89327025557714,1197.7838403999997,0.9991038331500265,238.00,597268 +apollo-router,65,170,393.3880302470748,1195.8511712999998,0.9991094559585493,239.00,593776 +apollo-router,66,170,392.92027576228713,1195.3282829999998,0.9991126885536823,240.00,590012 +apollo-router,66,120,393.5733304417411,1194.811711,0.999118625055086,238.00,581444 +apollo-router,66,120,394.3893143365356,1194.300442199999,0.9991250049715626,239.00,568708 +apollo-router,67,120,394.11074091486967,1193.6160015,0.9991287128712871,240.00,555500 +apollo-router,67,73,394.7417314681892,1192.9974320999997,0.9991351861315303,239.00,547524 +apollo-gateway,10,5,115.16423183722533,20.563633,1,145.00,1842432 +apollo-gateway,11,5,117.12010323797227,28.56944239999998,1,146.40,1842432 +apollo-gateway,11,5,117.86467923923873,35.873437599999974,1,144.20,1842432 +apollo-gateway,11,5,119.6474130119883,42.17166819999999,1,145.50,1842432 +apollo-gateway,12,10,121.09423215675457,48.681744749999986,1,146.90,1842432 +apollo-gateway,12,10,122.26416272221961,55.4320695,1,144.70,1842432 +apollo-gateway,12,10,124.94469713809572,63.10104599999999,1,146.10,1842432 +apollo-gateway,12,15,125.8934108677145,68.73202905,1,147.50,1842432 +apollo-gateway,13,15,127.82606891356932,80.19188904999997,1,149.00,1842432 +apollo-gateway,13,15,128.90585223052324,87.48590225,1,146.70,1842432 +apollo-gateway,13,15,129.02754893127934,94.51587639999997,1,148.00,1842432 +apollo-gateway,14,20,130.06762445173328,101.08727004999999,1,149.50,1842432 +apollo-gateway,14,20,131.15633813863832,113.30558854999995,1,147.30,1842432 +apollo-gateway,14,20,132.04940229014187,121.31111384999996,1,148.60,1842432 +apollo-gateway,14,25,132.70186494209418,128.05965319999999,1,149.80,1842432 +apollo-gateway,15,25,134.52384788582165,135.6740003,1,151.10,1842432 +apollo-gateway,15,25,134.22245545047323,142.3135678,1,149.00,1842432 +apollo-gateway,15,25,135.13603062234802,150.22003779999997,1,150.30,1842432 +apollo-gateway,16,30,135.9398905686058,159.37960164999993,1,151.60,1842432 +apollo-gateway,16,30,137.31329887109544,165.00693709999996,1,149.50,1842432 +apollo-gateway,16,30,138.1425996391283,169.92400519999998,1,150.70,1842432 +apollo-gateway,16,35,138.63954078370256,175.2615863,1,152.20,1842432 +apollo-gateway,17,35,139.79743940559692,182.458977,1,153.40,1842432 +apollo-gateway,17,35,140.0783097172611,191.2492946,1,151.40,1842432 +apollo-gateway,17,35,141.6712772286278,199.33618984999993,1,152.80,1842432 +apollo-gateway,18,40,141.5453527460751,206.169638,1,154.00,1842432 +apollo-gateway,18,40,142.51141927438567,217.36409824999998,1,151.90,1842432 +apollo-gateway,18,40,142.54918688644403,226.57717,1,153.10,1842432 +apollo-gateway,18,45,143.07172031558173,233.2005648,1,154.40,1842432 +apollo-gateway,19,45,144.27097369060897,240.88414169999996,1,155.60,1842432 +apollo-gateway,19,45,144.64543042869752,249.24255864999995,1,153.70,1842432 +apollo-gateway,19,45,145.18781638621448,256.98391325,1,154.90,1842432 +apollo-gateway,20,51,146.12625409628401,263.314829,1,156.10,1842432 +apollo-gateway,20,51,146.3350661310675,269.5205825,1,154.10,1842432 +apollo-gateway,20,51,146.39638410464522,278.7699214999997,1,155.30,1842432 +apollo-gateway,20,62,147.18143577099545,293.929707,1,156.50,1842432 +apollo-gateway,21,62,147.4828143159721,309.2275292,1,157.60,1842432 +apollo-gateway,21,62,147.643895566722,323.75718340000003,1,155.50,1842432 +apollo-gateway,21,73,148.09434257058973,346.71779449999997,1,156.70,1842432 +apollo-gateway,22,73,148.31151283038852,359.3380464,1,157.70,1842432 +apollo-gateway,22,73,148.61173692970297,372.1022654499999,1,155.80,1842432 +apollo-gateway,22,73,148.40857791037877,388.9890426999999,1,156.80,1842432 +apollo-gateway,22,85,148.89094184096743,415.52464225,1,158.00,1841980 +apollo-gateway,23,85,148.34888334545244,426.7723042,1,159.20,1841980 +apollo-gateway,23,85,149.47245515299016,456.98724599999997,1,157.30,1841980 +apollo-gateway,23,96,149.69643570013892,479.3044296999999,1,158.50,1841980 +apollo-gateway,24,96,149.36381568998175,497.0439948999999,1,159.50,1841980 +apollo-gateway,24,96,149.48476318145197,511.61656775,1,157.60,1841980 +apollo-gateway,24,96,149.48099489296794,523.6622285999998,1,158.70,1841980 +apollo-gateway,24,107,150.06990048806642,540.4436297499999,1,159.70,1841980 +apollo-gateway,25,107,149.98359957517133,559.00543525,1,160.90,1841980 +apollo-gateway,25,107,150.6278256724106,592.30866175,1,159.20,1841980 +apollo-gateway,25,118,150.55753742172917,609.0309615499999,1,160.20,1841980 +apollo-gateway,26,118,150.65360016527512,616.79649895,1,161.20,1841980 +apollo-gateway,26,118,150.96932280010518,628.2288586,1,159.40,1841980 +apollo-gateway,26,118,151.25305237370523,642.39667,1,160.40,1841980 +apollo-gateway,26,130,151.23063731419322,662.1750882499999,1,161.40,1841980 +apollo-gateway,27,130,151.13961678920603,676.0845400499998,1,159.40,1841980 +apollo-gateway,27,130,151.67276153012867,697.6078491,1,160.50,1841980 +apollo-gateway,27,141,151.32914292892528,708.5021974,1,161.50,1841980 +apollo-gateway,28,141,152.33900373702568,735.45461015,1,162.80,1841980 +apollo-gateway,28,141,151.647543258964,746.1699345,1,161.00,1841980 +apollo-gateway,28,152,152.26145652281184,780.9826430499999,1,162.00,1841980 +apollo-gateway,29,152,151.68492285994282,796.2684417999999,1,163.10,1841980 +apollo-gateway,29,152,152.15950357792642,821.3675049999998,1,161.40,1841980 +apollo-gateway,29,152,152.39967605351183,826.5055437499999,1,162.40,1841980 +apollo-gateway,29,163,152.35262684456288,841.560719,1,163.40,1841980 +apollo-gateway,30,163,152.7685896990438,858.111636,1,164.40,1841980 +apollo-gateway,30,163,153.10041397428878,879.0751954,1,162.70,1841980 +apollo-gateway,30,175,152.6541821162171,886.2356512,1,163.80,1841980 +apollo-gateway,31,175,153.64140531432818,926.078415,1,164.90,1841980 +apollo-gateway,31,175,153.21554885906372,947.5175665,1,163.00,1841980 +apollo-gateway,31,175,153.21129377620204,960.89435625,1,164.00,1841980 +apollo-gateway,32,186,153.67912074186037,973.66642445,1,165.00,1841980 +apollo-gateway,32,186,153.58298461196836,985.7900688999997,1,163.30,1841980 +apollo-gateway,32,186,152.980042277644,997.7441936,1,164.40,1841980 +apollo-gateway,32,197,153.07265121435165,1024.1500623000002,1,165.30,1841980 +apollo-gateway,33,197,153.82949304319752,1060.4880694999997,1,166.30,1841980 +apollo-gateway,33,197,153.4686756706821,1078.9552367999997,1,164.60,1841980 +apollo-gateway,33,197,153.8901251482475,1104.5628765999998,1,165.40,1842108 +apollo-gateway,34,208,153.81256359737802,1117.7582896000001,1,166.40,1842108 +apollo-gateway,34,208,153.88376163903638,1127.1687803,1,164.70,1842108 +apollo-gateway,34,208,153.8388719995914,1131.787461,1,165.60,1842108 +apollo-gateway,34,220,154.29318162385678,1155.5013382,1,166.60,1842108 +apollo-gateway,35,220,154.15553179931015,1164.6628078000003,1,167.60,1842108 +apollo-gateway,35,220,153.9564584127115,1180.616832,1,165.80,1842108 +apollo-gateway,35,220,154.280945236131,1204.7886368,1,166.90,1842108 +apollo-gateway,36,231,154.51621855862405,1220.3436539999998,1,167.70,1842108 +apollo-gateway,36,231,154.46146619834235,1234.147381,1,166.20,1842108 +apollo-gateway,36,231,154.60351858931105,1253.8343625,1,167.10,1842108 +apollo-gateway,37,242,155.22924601410952,1260.223268,1,168.10,1842108 +apollo-gateway,37,242,154.41785942497822,1263.161713,1,166.30,1842108 +apollo-gateway,37,242,154.87137127535698,1274.5163535000002,1,167.30,1842108 +apollo-gateway,37,253,154.71621279143642,1287.0636795,1,168.30,1842108 +apollo-gateway,38,253,154.09537115741585,1295.8593661999998,1,169.10,1842108 +apollo-gateway,38,253,154.3966176945596,1317.0639370999997,1,167.50,1842108 +apollo-gateway,38,253,154.43008922435203,1336.3231918,1,168.30,1842108 +apollo-gateway,39,265,154.87501804481818,1349.311053,1,169.20,1842108 +apollo-gateway,39,265,155.09277494730608,1372.3106805999998,1,167.50,1842108 +apollo-gateway,39,265,154.68555381083797,1385.2841439499994,1,168.50,1842108 +apollo-gateway,39,276,155.3212158593378,1408.2617403999989,1,169.30,1842108 +apollo-gateway,40,276,154.66404334258746,1424.1259554999995,1,170.20,1842108 +apollo-gateway,40,276,155.02066033806418,1453.9622464,1,168.80,1842108 +apollo-gateway,40,287,155.34917347276848,1458.26322895,1,169.70,1842108 +apollo-gateway,41,287,154.67813603827346,1468.5195345499994,1,170.50,1842108 +apollo-gateway,41,287,154.66579874477222,1486.4028191999996,1,168.90,1842108 +apollo-gateway,41,287,154.68341246015893,1490.5021449999997,1,169.80,1842108 +apollo-gateway,42,298,155.10809058124343,1505.4265698499992,1,170.70,1842108 +apollo-gateway,42,298,155.39160130346679,1524.6716423999997,1,169.10,1842108 +apollo-gateway,42,298,155.3880717242403,1530.6999036,1,170.00,1842108 +apollo-gateway,42,310,155.1575682019263,1538.2714022999996,1,170.90,1842108 +apollo-gateway,43,310,155.45203129215616,1539.6984832499998,1,171.70,1842108 +apollo-gateway,43,310,155.7277080147447,1551.594373,1,170.10,1842108 +apollo-gateway,43,310,155.3926993357834,1554.2927803999996,1,170.90,1842108 +apollo-gateway,44,321,155.6351487179262,1604.4663171999973,1,171.80,1842108 +apollo-gateway,44,321,155.46263675814598,1626.3387380499996,1,170.20,1842108 +apollo-gateway,44,321,155.7320273242882,1648.1536527999997,1,171.20,1842108 +apollo-gateway,44,332,155.38010807023906,1650.9190640999998,1,172.10,1842108 +apollo-gateway,45,332,156.10333752351855,1667.8063422999994,1,172.90,1842108 +apollo-gateway,45,332,155.4300037702303,1670.7172614999997,1,171.30,1842108 +apollo-gateway,45,332,155.69554039680568,1692.6193300999987,1,172.10,1842108 +apollo-gateway,46,343,155.7897473523523,1712.2484449999995,1,172.90,1842108 +apollo-gateway,46,343,155.53202265188668,1726.319838,1,171.40,1842108 +apollo-gateway,46,343,155.55991639761504,1735.5308806,1,172.10,1842108 +apollo-gateway,46,355,155.99022049093375,1738.2764267999996,1,172.90,1842108 +apollo-gateway,47,355,155.94509241394437,1768.5791501499994,1,173.70,1842108 +apollo-gateway,47,355,155.90052096636083,1765.8093560999987,1,172.30,1842108 +apollo-gateway,47,355,156.16229584174144,1798.0525016,1,173.20,1842108 +apollo-gateway,48,366,155.62005102464164,1803.1790259999987,1,174.10,1842108 +apollo-gateway,48,366,155.8627876262528,1816.2035775,1,172.60,1842108 +apollo-gateway,48,366,155.77799403359194,1838.124143299999,1,173.40,1842108 +apollo-gateway,48,377,156.21035771972407,1876.2838126,1,174.20,1842108 +apollo-gateway,49,377,155.5820680598091,1886.2370027499999,1,172.70,1842108 +apollo-gateway,49,377,155.7020845060304,1898.6393383999994,1,173.50,1842108 +apollo-gateway,49,388,155.42848516829676,1914.5533555999998,1,174.30,1842108 +apollo-gateway,50,388,155.9801954163136,1941.987777,1,175.00,1842108 +apollo-gateway,50,388,156.39481058246315,1951.756234,1,173.60,1842108 +apollo-gateway,50,388,156.19069735806426,1965.6705955999994,1,174.50,1842108 +apollo-gateway,51,400,155.61745215852355,1968.3693447999995,1,175.30,1842108 +apollo-gateway,51,400,155.68650079753067,1976.8573380999997,1,173.80,1842108 +apollo-gateway,51,400,155.3815790508907,1981.1828064999997,1,174.60,1842108 +apollo-gateway,51,411,155.1489684312742,1988.8144567499996,1,175.40,1842108 +apollo-gateway,52,411,155.79957007961625,2005.7046805,1,176.10,1842108 +apollo-gateway,52,411,156.32263225293244,2034.3449210499994,1,174.80,1842108 +apollo-gateway,52,422,156.33802589891076,2053.41638805,1,175.40,1842108 +apollo-gateway,53,422,156.44824435146595,2053.9827314,1,176.20,1842108 +apollo-gateway,53,422,156.04099175948946,2065.4794349,1,174.80,1842108 +apollo-gateway,53,422,155.86760056399038,2065.5368095999993,1,175.60,1842108 +apollo-gateway,54,433,156.00664028653367,2065.1064993499995,1,176.40,1842108 +apollo-gateway,54,433,156.16941050752686,2079.5829283499997,1,175.00,1842108 +apollo-gateway,54,433,155.91763446443787,2087.7509535,1,175.70,1842108 +apollo-gateway,54,445,155.46468158999372,2103.28348675,1,176.50,1842108 +apollo-gateway,55,445,155.91623908454937,2156.34733,1,177.20,1842236 +apollo-gateway,55,445,155.60707751438375,2160.7094236499997,1,175.90,1842236 +apollo-gateway,55,445,156.13829376070018,2167.693648,1,176.60,1842236 +apollo-gateway,56,456,156.1620057036999,2170.7531661,1,177.40,1842236 +apollo-gateway,56,456,156.72466285622474,2190.24282425,1,175.90,1842236 +apollo-gateway,56,456,156.38545707987385,2196.07875225,1,176.80,1842236 +apollo-gateway,57,467,156.3276502144609,2195.2937595000003,1,177.50,1842236 +apollo-gateway,57,467,156.38413446606157,2194.8784499999997,1,176.10,1842236 +apollo-gateway,57,467,156.0784657502264,2193.8869984999988,1,176.90,1842236 +apollo-gateway,57,478,156.161532691335,2196.07875225,1,177.50,1842236 +apollo-gateway,58,478,156.61397740051223,2196.3369392000004,1,178.30,1842236 +apollo-gateway,58,478,156.39786150960902,2240.028368,1,176.90,1842236 +apollo-gateway,58,478,156.0925449118381,2232.5203714999984,1,177.60,1842236 +apollo-gateway,59,490,155.9094075193369,2255.810587599998,1,178.30,1842236 +apollo-gateway,59,490,156.62179472054612,2293.1611176,1,176.90,1842236 +apollo-gateway,59,490,156.5503169393926,2307.3051818999993,1,177.70,1842236 +apollo-gateway,59,500,156.2867848983111,2323.416470199999,1,178.50,1842236 +apollo-gateway,60,500,156.19951252286268,2343.8852624999995,1,177.10,1842236 +apollo-gateway,60,500,156.53383785003166,2361.213881,1,177.90,1842236 +apollo-gateway,60,495,156.33411698247065,2401.0276994,1,178.50,1842236 +apollo-gateway,61,495,156.51010572602203,2423.6072375999997,1,179.30,1842236 +apollo-gateway,61,495,156.4581660712474,2422.291522199998,1,177.90,1842236 +apollo-gateway,61,495,156.4509848217216,2423.3807991,1,178.50,1842236 +apollo-gateway,62,450,156.21083616944017,2449.6014634,1,179.30,1842236 +apollo-gateway,62,450,156.0322573165709,2455.01562,1,177.90,1842236 +apollo-gateway,62,450,156.2280934984829,2470.6259324,1,178.50,1842236 +apollo-gateway,62,404,156.25375577721485,2470.0627062,1,179.20,1842236 +apollo-gateway,63,404,156.27706304731637,2481.22068455,1,179.90,1842236 +apollo-gateway,63,404,155.86592318839246,2502.18051725,1,178.50,1842236 +apollo-gateway,63,404,156.05408907430387,2516.0793587999997,1,179.30,1842236 +apollo-gateway,64,355,155.96081707117287,2536.0221848000015,1,179.90,1842236 +apollo-gateway,64,355,155.9431852392469,2568.4410033999998,1,178.60,1842236 +apollo-gateway,64,355,156.13210125533323,2566.2091699,1,179.30,1842236 +apollo-gateway,64,307,155.79926081275164,2566.000181,1,180.00,1842236 +apollo-gateway,65,307,156.3029584469504,2593.0171071499994,1,180.60,1842236 +apollo-gateway,65,307,156.261481852047,2590.825944,1,179.20,1842236 +apollo-gateway,65,307,156.1033209386918,2584.85486025,1,179.90,1842236 +apollo-gateway,66,256,155.70961443537806,2584.2491267999994,1,180.50,1842236 +apollo-gateway,66,256,155.353154055667,2582.5555388999983,1,179.30,1842236 +apollo-gateway,66,256,155.5169030403027,2601.69044955,1,179.90,1842236 +apollo-gateway,66,209,156.0166818685317,2595.0298835999993,1,180.50,1842236 +apollo-gateway,67,209,155.63533303133772,2594.0311426000003,1,181.10,1842236 +apollo-gateway,67,209,155.2950208331758,2593.24525325,1,179.90,1842236 +apollo-gateway,67,209,155.55217887589978,2588.226693599996,1,180.50,1842236 +apollo-gateway,68,167,155.31505164093954,2584.80202005,1,181.10,1842236 +apollo-gateway,68,167,155.42525098012337,2579.7990103499965,1,179.90,1842236 +apollo-gateway,68,167,155.42153060742444,2574.516032899998,1,180.50,1842236 +apollo-gateway,68,108,155.54284680453958,2572.68305265,1,181.10,1842236 +apollo-gateway,69,108,155.71801722833212,2568.5296602,1,181.70,1842236 +apollo-gateway,69,108,155.4811284938208,2566.643760799999,1,180.50,1842236 \ No newline at end of file