[
  {
    "path": ".github/CODEOWNERS",
    "content": "* @tsenart @xla"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contributing\n\nNon trivial changes should be discussed with the project maintainers by\nopening a [Feature Request](https://github.com/tsenart/vegeta/issues/new?template=feature_request.md),\nclearly explaining rationale, background and possible implementation ideas.\nFeel free to use to provide code in such discussions.\n\n## Implementation\n\nWork should happen in an open pull request with a WIP label\nwhich gives visibility to the development process and provides\ncontinuous integration feedback.\n\nThe pull request description must be well written and provide the necessary\ncontext and background for review. If there's a proposal issue, it must be\nreferenced. When ready, remove the WIP label assign the PR a reviewer who will\nreview your PR.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: 🐛  Bug Report\nabout: Report a bug to help Vegeta improve.\n---\n\n<!-- ⚠️ If you do not respect this template your bug report issue will be closed. -->\n\n#### Version and Runtime\n\n```\nPaste the output of `vegeta -version` here.\nIf you are not running the latest version of Vegeta, please try upgrading because your issue may have already been fixed.\n```\n\n#### Expected Behaviour\n\n<!-- What did you expect to see?  -->\n\n#### Actual Behaviour\n\n<!-- What did you see instead?  -->\n\n#### Steps to Reproduce\n\n<!-- Please list the full steps required to reproduce the bug. -->\n\n1. Step 1\n1. Step N\n\n#### Additional Context\n\n<!--\n\nAre there any other related GitHub issues (open or closed) or Pull Requests that should be linked here?\nIs there anything atypical to be known about your situation?\nAnything else?\n\n-->\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: 🚀  Feature Request\nabout: Propose a change to Vegeta💡!\n---\n\n<!-- ⚠️ If you do not respect this template your issue will be closed. -->\n<!-- ⚠️ Make sure to browse the opened and closed issues before submit your issue. -->\n\n#### Proposal\n\n<!-- Write your feature request in the form of a proposal to be considered for implementation -->\n\n#### Background\n\n<!-- Describe the background problem or need that led to this feature request -->\n\n#### Workarounds\n\n<!-- Are there any current workarounds that you're using that others in similar positions should know about? -->"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/question.md",
    "content": "---\nname: ❓ Question\nabout: Ask a question that isn't a feature request nor a bug report.\n---\n\n#### Question"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "#### Background\n\n<!-- Required background information to understand the PR. Link here any related issues. -->\n\n#### Checklist\n\n- [ ] Git commit messages conform to [community standards](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).\n- [ ] Each Git commit represents meaningful milestones or atomic units of work.\n- [ ] Changed or added code is covered by appropriate tests.\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates\n\nversion: 2\nupdates:\n  - package-ecosystem: \"gomod\"\n    directory: \"/\" \n    schedule:\n      interval: \"weekly\"\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI\non:\n  push:\n    tags:\n      - \"v*.*.*\"\n    branches:\n      - master\n  pull_request:\n    types: [opened, synchronize, reopened]\n  workflow_dispatch:\n    inputs:\n      version:\n        description: \"Release version\"\n        required: true\n\njobs:\n  qa:\n    name: Quality Assurance\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n\n      - name: Set up Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: \"1.22\"\n\n      - name: Format Check\n        run: |\n          set -euo pipefail\n          go install golang.org/x/tools/cmd/goimports@latest\n          goimports -w .\n          git diff --exit-code\n\n      - name: Vet\n        run: go vet ./...\n\n      - name: Test\n        run: go test -race ./...\n\n  build:\n    name: Build\n    if: startsWith(github.ref, 'refs/tags/v')\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        target:\n          - \"windows/amd64\"\n          - \"windows/386\"\n          - \"windows/arm64\"\n          - \"linux/amd64\"\n          - \"linux/386\"\n          - \"linux/arm64\"\n          - \"linux/arm\"\n          - \"darwin/amd64\"\n          - \"darwin/arm64\"\n          - \"freebsd/386\"\n          - \"freebsd/amd64\"\n          - \"freebsd/arm\"\n          - \"openbsd/amd64\"\n          - \"openbsd/arm64\"\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n\n      - name: Set up Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: \"1.22\"\n\n      - name: Set up GOOS and GOARCH\n        id: setup_env\n        run: |\n          echo \"goos=$(echo ${{ matrix.target }} | cut -d'/' -f1)\" >> $GITHUB_OUTPUT\n          echo \"goarch=$(echo ${{ matrix.target }} | cut -d'/' -f2)\" >> $GITHUB_OUTPUT\n\n      - name: Build\n        env:\n          GOOS: ${{ steps.setup_env.outputs.goos }}\n          GOARCH: ${{ steps.setup_env.outputs.goarch }}\n        run: |\n          set -euo pipefail\n\n          make vegeta\n\n          VERSION=${GITHUB_REF#refs/tags/v}\n          NAME=\"vegeta_${VERSION}_${GOOS}_${GOARCH}\"\n          if [[ \"$GOOS\" != \"windows\" ]]; then\n            tar -czf \"$NAME.tar.gz\" vegeta\n          else\n            zip \"$NAME.zip\" vegeta.exe\n          fi\n\n      - name: Upload Artifacts\n        uses: actions/upload-artifact@v4\n        with:\n          name: vegeta_${{ steps.setup_env.outputs.goos }}_${{ steps.setup_env.outputs.goarch }}\n          path: |\n            *.zip\n            *.tar.gz\n\n  release:\n    name: Release\n    if: startsWith(github.ref, 'refs/tags/v')\n    needs: [qa, build]\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Download Artifacts\n        uses: actions/download-artifact@v4\n\n      - name: Create checksums and sign them\n        id: sign\n        run: |\n          set -euo pipefail\n\n          mkdir dist\n          mv vegeta*/* dist/\n          cd dist\n\n          VERSION=${GITHUB_REF#refs/tags/v}\n          CHECKSUMS=vegeta_${VERSION}_checksums.txt\n          sha256sum * > $CHECKSUMS\n\n          echo \"${{ secrets.VEGETA_GPG_KEY }}\" | gpg --batch --yes --pinentry-mode loopback --import\n          gpg --export --armor > vegeta_${VERSION}_pubkey.asc\n          gpg --detach-sign -a $CHECKSUMS\n\n          echo \"name=${VERSION}\" >> $GITHUB_OUTPUT\n\n      - name: Generate release notes\n        id: release_notes\n        run: |\n          set -x\n          set -euo pipefail\n\n          CURRENT_VERSION=${GITHUB_REF#refs/tags/}\n          PREV_VERSION=$(git describe --tags --abbrev=0 $CURRENT_VERSION^)\n          RELEASE_NOTES=${{ github.workspace }}/release-notes.txt\n\n          printf \"## Changelog\\n\\n\" > $RELEASE_NOTES\n          git log ${PREV_VERSION}..${CURRENT_VERSION} --oneline --abbrev-commit >> $RELEASE_NOTES\n          cat $RELEASE_NOTES\n\n      - name: Create GitHub Release\n        uses: softprops/action-gh-release@v1\n        with:\n          name: ${{ steps.sign.outputs.version }}\n          body_path: ${{ github.workspace }}/release-notes.txt\n          files: |\n            dist/*\n          tag_name: ${{ steps.sign.outputs.version }}\n          draft: true\n          prerelease: false\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# Compiled Object files, Static and Dynamic libs (Shared Objects)\n*.o\n*.a\n*.so\n\n# Folders\n_obj\n_test\n\n# Architecture specific extensions/prefixes\n*.[568vq]\n[568vq].out\n\n*.cgo1.go\n*.cgo2.c\n_cgo_defun.c\n_cgo_gotypes.go\n_cgo_export.*\n\n_testmain.go\n\n*.exe\n\nvegeta\nvegeta.test\nvegeta-*.tar.gz\nlib/lib.test\ndist\nvendor\n\n*.gob\n*.lz\n\n.DS_Store\n"
  },
  {
    "path": "CHANGELOG",
    "content": "2018-05-18: v7.0.0\n  Include response body in hit results (#279)\n  Added support for h2c requests (HTTP/2 without TLS) (#261)\n  Prevent \"null\" Metrics.Errors JSON encoding (#277)\n  Add option to override HTTP Proxy on Attacker (#234)\n\n2017-03-19: v6.3.0\n  Mark responses as success in no redirect following mode (#222)\n\n2017-03-04: v6.2.0\n  Allow any upper-case ASCII word to be an HTTP method (#217)\n  Correctly compute Metrics.Rate with sub-second duration results (#208)\n\n2016-08-26: v6.1.1\n  Respect case sensitivity in target file header names (#195, #191)\n\n2016-04-03: v6.1.0\n  Add HTTP2 support\n\n2015-11-27: v6.0.0\n  Insecure attack flag (#160)\n  Client certificates (#156)\n  Infinite attacks (#155)\n  Allow empty lines between targets (#147)\n\n2015-09-19: v5.9.0\n  Bounded memory streaming reporters (#136)\n\n2015-09-04: v5.8.1\n  Fix support for DELETE methods in targets\n\n2015-08-11: v5.8.0\n  Change reporters quantile estimation method to match R's 8th type.\n\n2015-05-23: v5.7.1\n  Revert end-to-end attack timeout change\n\n2015-05-23: v5.7.0\n  Allow case sensitve headers in attacks\n\n2015-04-15: v5.6.3\n  Expose connections flag in the attack command\n  Add global cpu and heap profiling flags\n  Measure actual attack rate and print it in relevant reporters\n  Major performance improvements that allow much higher attack rates\n\n2015-04-02: v5.6.2\n  Update dygraph to latest version\n  Improve plot reporter screenshot rendering by using html2canvas.js\n  Improve plot reporter performance\n\n2015-03-23: v5.6.1\n  Allow spaces in hist reporter flag format\n\n2015-03-12: v5.6.0\n  Set default dumper to \"json\" in the dump command.\n  Add --version to global vegeta command flags.\n  Fix response body leak regression introduced in v5.5.3.\n\n2015-03-11: v5.5.3\n  Always read response bodies for each request.\n  Homebrew install instructions.\n\n2015-01-3: v5.5.2\n  Refactor core request logic and simplify tests with a 4x speedup.\n\n2015-01-2: v5.5.1\n  Treat bad status codes as errors.\n\n2014-11-21: v5.5.0\n  Implement dump command with CSV and JSON record format.\n  Optionally ignore redirects and treat them as successes.\n\n2014-11-16: v5.4.0\n  Add histogram reporter to the report command.\n\n2014-11-16: v5.3.0\n  Add support for extended targets dsl that supports per-target headers and body.\n  Target file comments support has been removed.\n\n2014-11-7: v5.2.0\n  Don't treat 3xx status codes as errors.\n  Add -keepalive flag to the attack command.\n\n2014-11-3: v5.1.1\n  Add FreeBSD and Windows releases.\n  Fix non termination bug in the report command. #85\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM golang:1.20-alpine3.18 AS BUILD\n\nRUN apk add make build-base git\n\nWORKDIR /vegeta\n\n# cache dependencies\nADD go.mod /vegeta\nADD go.sum /vegeta\nRUN go mod download\n\nADD . /vegeta\n\nRUN make generate\nRUN make vegeta\n\nFROM alpine:3.18.0\n\nCOPY --from=BUILD /vegeta/vegeta /bin/vegeta\n\nENTRYPOINT [\"vegeta\"]\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2023 Tomás Senart\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "Makefile",
    "content": "COMMIT=$(shell git rev-parse HEAD)\nVERSION=$(shell git describe --tags --exact-match --always)\nDATE=$(shell date +'%FT%TZ%z')\n\nvegeta: generate\n\tCGO_ENABLED=0 go build -v -a -tags=netgo \\\n  \t-ldflags '-s -w -extldflags \"-static\" -X main.Version=$(VERSION) -X main.Commit=$(COMMIT) -X main.Date=$(DATE)'\n\ngenerate: GOARCH := $(shell go env GOHOSTARCH)\ngenerate: GOOS := $(shell go env GOHOSTOS)\ngenerate:\n\tgo install github.com/mailru/easyjson/...@latest\n\tgo get github.com/shurcooL/vfsgen\n\tgo install github.com/shurcooL/vfsgen/...@latest\n\tgo generate ./...\n"
  },
  {
    "path": "README.md",
    "content": "# Vegeta [![Build Status](https://github.com/tsenart/vegeta/workflows/CI/badge.svg)](https://github.com/tsenart/vegeta/actions) [![Go Report Card](https://goreportcard.com/badge/github.com/tsenart/vegeta)](https://goreportcard.com/report/github.com/tsenart/vegeta) [![PkgGoDev](https://pkg.go.dev/badge/github.com/tsenart/vegeta/v12/lib)](https://pkg.go.dev/github.com/tsenart/vegeta/v12/lib) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tsenart/vegeta?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Donate](https://img.shields.io/badge/donate-bitcoin-yellow.svg)](#donate)\n\nVegeta is a versatile HTTP load testing tool built out of a need to drill\nHTTP services with a constant request rate. [It's over 9000!](https://en.wikipedia.org/wiki/It's_Over_9000)\n\n![Vegeta](assets/hero.png)\n\n## Features\n\n- Usable as a command line tool and a Go library.\n- CLI designed with UNIX composability in mind.\n- [Avoids](https://github.com/tsenart/vegeta/pull/92/files#r20198929) nasty [Coordinated Omission](http://highscalability.com/blog/2015/10/5/your-load-generator-is-probably-lying-to-you-take-the-red-pi.html).\n- Extensive reporting functionality.\n- Simple to use for [distributed load testing](https://kubernetes.io/blog/2015/11/one-million-requests-per-second-dependable-and-dynamic-distributed-systems-at-scale/).\n- Easy to install and run (static binary, package managers, etc).\n\n## Install\n\n### Pre-compiled executables\n\nGet them [here](http://github.com/tsenart/vegeta/releases).\n\n### macOS\n\nYou can install Vegeta using the [Homebrew](https://github.com/Homebrew/homebrew/):\n\n```shell\n$ brew update && brew install vegeta\n```\n\nOr with [MacPorts](https://www.macports.org/):\n\n```shell\n$ port install vegeta\n```\n\n### Arch Linux\n\n```shell\n$ pacman -S vegeta\n```\n\n### FreeBSD\n\nOn FreeBSD you can install Vegeta with the built in package manager because there is a [Vegeta Package](https://www.freshports.org/benchmarks/vegeta) available.\n\n```shell\n$ pkg install vegeta\n```\n\n### Source\n\n```shell\ngit clone https://github.com/tsenart/vegeta\ncd vegeta\nmake vegeta\nmv vegeta ~/bin # Or elsewhere, up to you.\n```\n\n## Versioning\n\nBoth the library and the CLI are versioned with [SemVer v2.0.0](https://semver.org/spec/v2.0.0.html).\n\nAfter [v8.0.0](https://github.com/tsenart/vegeta/tree/v8.0.0), the two components\nare versioned separately to better isolate breaking changes to each.\n\nCLI releases are tagged with `cli/vMAJOR.MINOR.PATCH` and published on the [GitHub releases page](https://github.com/tsenart/vegeta/releases).\nAs for the library, new versions are tagged with both `lib/vMAJOR.MINOR.PATCH` and `vMAJOR.MINOR.PATCH`.\nThe latter tag is required for compatibility with `go mod`.\n\n## Contributing\n\nSee [CONTRIBUTING.md](.github/CONTRIBUTING.md).\n\n## Usage manual\n\n```console\nUsage: vegeta [global flags] <command> [command flags]\n\nglobal flags:\n  -cpus int\n    \tNumber of CPUs to use (default = number of cpus)\n  -profile string\n    \tEnable profiling of [cpu, heap]\n  -version\n    \tPrint version and exit\n\nattack command:\n  -body string\n    \tRequests body file\n  -cert string\n    \tTLS client PEM encoded certificate file\n  -chunked\n    \tSend body with chunked transfer encoding\n  -connect-to value\n    \tA mapping of (ip|host):port to use instead of a target URL's (ip|host):port. Can be repeated multiple times.\n    \tIdentical src:port with different dst:port will round-robin over the different dst:port pairs.\n    \tExample: google.com:80:localhost:6060\n  -connections int\n    \tMax open idle connections per target host (default 10000)\n  -dns-ttl value\n    \tCache DNS lookups for the given duration [-1 = disabled, 0 = forever] (default 0s)\n  -duration duration\n    \tDuration of the test [0 = forever]\n  -format string\n    \tTargets format [http, json] (default \"http\")\n  -h2c\n    \tSend HTTP/2 requests without TLS encryption\n  -header value\n    \tRequest header\n  -http2\n    \tSend HTTP/2 requests when supported by the server (default true)\n  -insecure\n    \tIgnore invalid server TLS certificates\n  -keepalive\n    \tUse persistent connections (default true)\n  -key string\n    \tTLS client PEM encoded private key file\n  -laddr value\n    \tLocal IP address (default 0.0.0.0)\n  -lazy\n    \tRead targets lazily\n  -max-body value\n    \tMaximum number of bytes to capture from response bodies. [-1 = no limit] (default -1)\n  -max-connections int\n    \tMax connections per target host\n  -max-workers uint\n    \tMaximum number of workers (default 18446744073709551615)\n  -name string\n    \tAttack name\n  -output string\n    \tOutput file (default \"stdout\")\n  -prometheus-addr string\n    \tPrometheus exporter listen address [empty = disabled]. Example: 0.0.0.0:8880\n  -proxy-header value\n    \tProxy CONNECT header\n  -rate value\n    \tNumber of requests per time unit [0 = infinity] (default 50/1s)\n  -redirects int\n    \tNumber of redirects to follow. -1 will not follow but marks as success (default 10)\n  -resolvers value\n    \tList of addresses (ip:port) to use for DNS resolution. Disables use of local system DNS. (comma separated list)\n  -root-certs value\n    \tTLS root certificate files (comma separated list)\n  -session-tickets\n    \tEnable TLS session resumption using session tickets\n  -targets string\n    \tTargets file (default \"stdin\")\n  -timeout duration\n    \tRequests timeout (default 30s)\n  -unix-socket string\n    \tConnect over a unix socket. This overrides the host address in target URLs\n  -workers uint\n    \tInitial number of workers (default 10)\n\nencode command:\n  -output string\n    \tOutput file (default \"stdout\")\n  -to string\n    \tOutput encoding [csv, gob, json] (default \"json\")\n\nplot command:\n  -output string\n    \tOutput file (default \"stdout\")\n  -threshold int\n    \tThreshold of data points above which series are downsampled. (default 4000)\n  -title string\n    \tTitle and header of the resulting HTML page (default \"Vegeta Plot\")\n\nreport command:\n  -buckets string\n    \tHistogram buckets, e.g.: \"[0,1ms,10ms]\"\n  -every duration\n    \tReport interval\n  -output string\n    \tOutput file (default \"stdout\")\n  -type string\n    \tReport type to generate [text, json, hist[buckets], hdrplot] (default \"text\")\n\nexamples:\n  echo \"GET http://localhost/\" | vegeta attack -duration=5s | tee results.bin | vegeta report\n  vegeta report -type=json results.bin > metrics.json\n  cat results.bin | vegeta plot > plot.html\n  cat results.bin | vegeta report -type=\"hist[0,100ms,200ms,300ms]\"\n```\n\n#### `-cpus`\n\nSpecifies the number of CPUs to be used internally.\nIt defaults to the amount of CPUs available in the system.\n\n#### `-profile`\n\nSpecifies which profiler to enable during execution. Both _cpu_ and\n_heap_ profiles are supported. It defaults to none.\n\n#### `-version`\n\nPrints the version and exits.\n\n### `attack` command\n\n#### `-body`\n\nSpecifies the file whose content will be set as the body of every\nrequest unless overridden per attack target, see `-targets`.\n\n#### `-cert`\n\nSpecifies the PEM encoded TLS client certificate file to be used with HTTPS requests.\nIf `-key` isn't specified, it will be set to the value of this flag.\n\n#### `-chunked`\n\nSpecifies whether to send request bodies with the chunked transfer encoding.\n\n#### `-connections`\n\nSpecifies the maximum number of idle open connections per target host.\n\n#### `-dns-ttl`\n\nSpecifies the duration to cache DNS lookups for. A zero value caches forever.\nA negative value disables caching altogether.\n\n#### `-max-connections`\n\nSpecifies the maximum number of connections per target host.\n\n#### `-duration`\n\nSpecifies the amount of time to issue request to the targets.\nThe internal concurrency structure's setup has this value as a variable.\nThe actual run time of the test can be longer than specified due to the\nresponses delay. Use 0 for an infinite attack.\n\n#### `-format`\n\nSpecifies the targets format to decode.\n\n##### `json` format\n\nThe JSON format makes integration with programs that produce targets dynamically easier.\nEach target is one JSON object in its own line. The method and url fields are required.\nIf present, the body field must be base64 encoded. The generated [JSON Schema](lib/target.schema.json)\ndefines the format in detail.\n\n```bash\njq -ncM '{method: \"GET\", url: \"http://goku\", body: \"Punch!\" | @base64, header: {\"Content-Type\": [\"text/plain\"]}}' |\n  vegeta attack -format=json -rate=100 | vegeta encode\n```\n\n##### `http` format\n\nThe http format almost resembles the plain-text HTTP message format defined in\n[RFC 2616](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html) but it\ndoesn't support in-line HTTP bodies, only references to files that are loaded and used\nas request bodies (as exemplified below).\n\nAlthough targets in this format can be produced by other programs, it was originally\nmeant to be used by people writing targets by hand for simple use cases.\n\nHere are a few examples of valid targets files in the http format:\n\n###### Simple targets\n\n```\nGET http://goku:9090/path/to/dragon?item=ball\nGET http://user:password@goku:9090/path/to\nHEAD http://goku:9090/path/to/success\n```\n\n###### Targets with custom headers\n\n```\nGET http://user:password@goku:9090/path/to\nX-Account-ID: 8675309\n\nDELETE http://goku:9090/path/to/remove\nConfirmation-Token: 90215\nAuthorization: Token DEADBEEF\n```\n\n###### Targets with custom bodies\n\n```\nPOST http://goku:9090/things\n@/path/to/newthing.json\n\nPATCH http://goku:9090/thing/71988591\n@/path/to/thing-71988591.json\n```\n\n###### Targets with custom bodies and headers\n\n```\nPOST http://goku:9090/things\nX-Account-ID: 99\n@/path/to/newthing.json\n```\n\n###### Add comments\n\nLines starting with `#` are ignored.\n\n```\n# get a dragon ball\nGET http://goku:9090/path/to/dragon?item=ball\n# specify a test account\nX-Account-ID: 99\n```\n\n#### `-h2c`\n\nSpecifies that HTTP2 requests are to be sent over TCP without TLS encryption.\n\n#### `-header`\n\nSpecifies a request header to be used in all targets defined, see `-targets`.\nYou can specify as many as needed by repeating the flag.\n\n#### `-http2`\n\nSpecifies whether to enable HTTP/2 requests to servers which support it.\n\n#### `-insecure`\n\nSpecifies whether to ignore invalid server TLS certificates.\n\n#### `-keepalive`\n\nSpecifies whether to reuse TCP connections between HTTP requests.\n\n#### `-key`\n\nSpecifies the PEM encoded TLS client certificate private key file to be\nused with HTTPS requests.\n\n#### `-laddr`\n\nSpecifies the local IP address to be used.\n\n#### `-lazy`\n\nSpecifies whether to read the input targets lazily instead of eagerly.\nThis allows streaming targets into the attack command and reduces memory\nfootprint.\nThe trade-off is one of added latency in each hit against the targets.\n\n#### `-max-body`\n\nSpecifies the maximum number of bytes to capture from the body of each\nresponse. Remaining unread bytes will be fully read but discarded.\nSet to -1 for no limit. It knows how to interpret values like these:\n\n- `\"10 MB\"` -> `10MB`\n- `\"10240 g\"` -> `10TB`\n- `\"2000\"` -> `2000B`\n- `\"1tB\"` -> `1TB`\n- `\"5 peta\"` -> `5PB`\n- `\"28 kilobytes\"` -> `28KB`\n- `\"1 gigabyte\"` -> `1GB`\n\n#### `-name`\n\nSpecifies the name of the attack to be recorded in responses.\n\n#### `-output`\n\nSpecifies the output file to which the binary results will be written\nto. Made to be piped to the report command input. Defaults to stdout.\n\n#### `-rate`\n\nSpecifies the request rate per time unit to issue against\nthe targets. The actual request rate can vary slightly due to things like\ngarbage collection, but overall it should stay very close to the specified.\nIf no time unit is provided, 1s is used.\n\nA `-rate` of `0` or `infinity` means vegeta will send requests as fast as possible.\nUse together with `-max-workers` to model a fixed set of concurrent users sending\nrequests serially (i.e. waiting for a response before sending the next request).\n\nSetting `-max-workers` to a very high number while setting `-rate=0` can result in\nvegeta consuming too many resources and crashing. Use with care.\n\n#### `-redirects`\n\nSpecifies the max number of redirects followed on each request. The\ndefault is 10. When the value is -1, redirects are not followed but\nthe response is marked as successful.\n\n#### `-resolvers`\n\nSpecifies custom DNS resolver addresses to use for name resolution instead of\nthe ones configured by the operating system. Works only on non Windows systems.\n\n#### `-root-certs`\n\nSpecifies the trusted TLS root CAs certificate files as a comma separated\nlist. If unspecified, the default system CAs certificates will be used.\n\n#### `-session-tickets`\n\nSpecifies whether to support TLS session resumption using session tickets.\n\n#### `-targets`\n\nSpecifies the file from which to read targets, defaulting to stdin.\nSee the [`-format`](#-format) section to learn about the different target formats.\n\n#### `-timeout`\n\nSpecifies the timeout for each request. A value of `0` disables timeouts.\n\n#### `-workers`\n\nSpecifies the initial number of workers used in the attack. The actual\nnumber of workers will increase if necessary in order to sustain the\nrequested rate, unless it'd go beyond `-max-workers`.\n\n#### `-max-workers`\n\nSpecifies the maximum number of workers used in the attack. It can be used to\ncontrol the concurrency level used by an attack.\n\n### `report` command\n\n```console\nUsage: vegeta report [options] [<file>...]\n\nOutputs a report of attack results.\n\nArguments:\n  <file>  A file with vegeta attack results encoded with one of\n          the supported encodings (gob | json | csv) [default: stdin]\n\nOptions:\n  --type    Which report type to generate (text | json | hist[buckets] | hdrplot).\n            [default: text]\n\n  --buckets Histogram buckets, e.g.: '[0,1ms,10ms]'\n\n  --every   Write the report to --output at every given interval (e.g 100ms)\n            The default of 0 means the report will only be written after\n            all results have been processed. [default: 0]\n\n  --output  Output file [default: stdout]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -rate=10/s > results.gob\n  echo \"GET http://:80\" | vegeta attack -rate=100/s | vegeta encode > results.json\n  vegeta report results.*\n```\n\n#### `report -type=text`\n\n```console\nRequests      [total, rate, throughput] 1200, 120.00, 65.87\nDuration      [total, attack, wait]     10.094965987s, 9.949883921s, 145.082066ms\nLatencies     [min, mean, 50, 95, 99, max]  90.438129ms, 113.172398ms, 108.272568ms, 140.18235ms, 247.771566ms, 264.815246ms\nBytes In      [total, mean]             3714690, 3095.57\nBytes Out     [total, mean]             0, 0.00\nSuccess       [ratio]                   55.42%\nStatus Codes  [code:count]              0:535  200:665\nError Set:\nGet http://localhost:6060: dial tcp 127.0.0.1:6060: connection refused\nGet http://localhost:6060: read tcp 127.0.0.1:6060: connection reset by peer\nGet http://localhost:6060: dial tcp 127.0.0.1:6060: connection reset by peer\nGet http://localhost:6060: write tcp 127.0.0.1:6060: broken pipe\nGet http://localhost:6060: net/http: transport closed before response was received\nGet http://localhost:6060: http: can't write HTTP request on broken connection\n```\n\nThe `Requests` row shows:\n\n- The `total` number of issued requests.\n- The real request `rate` sustained during the `attack` period.\n- The `throughput` of successful requests over the `total` period.\n\nThe `Duration` row shows:\n\n- The `attack` time taken issuing all requests (`total` - `wait`)\n- The `wait` time waiting for the response to the last issued request (`total` - `attack`)\n- The `total` time taken in the attack (`attack` + `wait`)\n\nLatency is the amount of time taken for a response to a request to be read (including the `-max-body` bytes from the response body).\n\n- `min` is the minimum latency of all requests in an attack.\n- `mean` is the [arithmetic mean / average](https://en.wikipedia.org/wiki/Arithmetic_mean) of the latencies of all requests in an attack.\n- `50`, `90`, `95`, `99` are the 50th, 90th, 95th and 99th [percentiles](https://en.wikipedia.org/wiki/Percentile), respectively, of the latencies of all requests in an attack. To understand more about why these are useful, I recommend [this article](https://bravenewgeek.com/everything-you-know-about-latency-is-wrong/) from @tylertreat.\n- `max` is the maximum latency of all requests in an attack.\n\nThe `Bytes In` and `Bytes Out` rows shows:\n\n- The `total` number of bytes sent (out) or received (in) with the request or response bodies.\n- The `mean` number of bytes sent (out) or received (in) with the request or response bodies.\n\nThe `Success` ratio shows the percentage of requests whose responses didn't error and had status codes between **200** and **400** (non-inclusive).\n\nThe `Status Codes` row shows a histogram of status codes. `0` status codes mean a request failed to be sent.\n\nThe `Error Set` shows a unique set of errors returned by all issued requests. These include requests that got non-successful response status code.\n\n#### `report -type=json`\n\nAll duration like fields are in nanoseconds.\n\n```json\n{\n  \"latencies\": {\n    \"total\": 237119463,\n    \"mean\": 2371194,\n    \"50th\": 2854306,\n    \"90th\": 3228223,\n    \"95th\": 3478629,\n    \"99th\": 3530000,\n    \"max\": 3660505,\n    \"min\": 1949582\n  },\n  \"buckets\": {\n    \"0\": 9952,\n    \"1000000\": 40,\n    \"2000000\": 6,\n    \"3000000\": 0,\n    \"4000000\": 0,\n    \"5000000\": 2\n  },\n  \"bytes_in\": {\n    \"total\": 606700,\n    \"mean\": 6067\n  },\n  \"bytes_out\": {\n    \"total\": 0,\n    \"mean\": 0\n  },\n  \"earliest\": \"2015-09-19T14:45:50.645818631+02:00\",\n  \"latest\": \"2015-09-19T14:45:51.635818575+02:00\",\n  \"end\": \"2015-09-19T14:45:51.639325797+02:00\",\n  \"duration\": 989999944,\n  \"wait\": 3507222,\n  \"requests\": 100,\n  \"rate\": 101.01010672380401,\n  \"throughput\": 101.00012489812,\n  \"success\": 1,\n  \"status_codes\": {\n    \"200\": 100\n  },\n  \"errors\": []\n}\n```\n\nIn the `buckets` field, each key is a nanosecond value representing the lower bound of a bucket.\nThe upper bound is implied by the next higher bucket.\nUpper bounds are non-inclusive.\nThe highest bucket is the overflow bucket; it has no upper bound.\nThe values are counts of how many requests fell into that particular bucket.\nIf the `-buckets` parameter is not present, the `buckets` field is omitted.\n\n#### `report -type=hist`\n\nComputes and prints a text based histogram for the given buckets.\nEach bucket upper bound is non-inclusive.\n\n```console\ncat results.bin | vegeta report -type='hist[0,2ms,4ms,6ms]'\nBucket         #     %       Histogram\n[0,     2ms]   6007  32.65%  ########################\n[2ms,   4ms]   5505  29.92%  ######################\n[4ms,   6ms]   2117  11.51%  ########\n[6ms,   +Inf]  4771  25.93%  ###################\n```\n\n#### `report -type=hdrplot`\n\nWrites out results in a format plottable by https://hdrhistogram.github.io/HdrHistogram/plotFiles.html.\n\n```\nValue(ms)  Percentile  TotalCount  1/(1-Percentile)\n0.076715   0.000000    0           1.000000\n0.439370   0.100000    200         1.111111\n0.480836   0.200000    400         1.250000\n0.495559   0.300000    599         1.428571\n0.505101   0.400000    799         1.666667\n0.513059   0.500000    999         2.000000\n0.516664   0.550000    1099        2.222222\n0.520455   0.600000    1199        2.500000\n0.525008   0.650000    1299        2.857143\n0.530174   0.700000    1399        3.333333\n0.534891   0.750000    1499        4.000000\n0.537572   0.775000    1548        4.444444\n0.540340   0.800000    1598        5.000000\n0.543763   0.825000    1648        5.714286\n0.547164   0.850000    1698        6.666667\n0.551432   0.875000    1748        8.000000\n0.553444   0.887500    1773        8.888889\n0.555774   0.900000    1798        10.000000\n0.558454   0.912500    1823        11.428571\n0.562123   0.925000    1848        13.333333\n0.565563   0.937500    1873        16.000000\n0.567831   0.943750    1886        17.777778\n0.570617   0.950000    1898        20.000000\n0.574522   0.956250    1911        22.857143\n0.579046   0.962500    1923        26.666667\n0.584426   0.968750    1936        32.000000\n0.586695   0.971875    1942        35.555556\n0.590451   0.975000    1948        40.000000\n0.597543   0.978125    1954        45.714286\n0.605637   0.981250    1961        53.333333\n0.613564   0.984375    1967        64.000000\n0.620393   0.985938    1970        71.113640\n0.629121   0.987500    1973        80.000000\n0.638060   0.989062    1976        91.424392\n0.648085   0.990625    1979        106.666667\n0.659689   0.992188    1982        128.008193\n0.665870   0.992969    1984        142.227279\n0.672985   0.993750    1986        160.000000\n0.680101   0.994531    1987        182.848784\n0.687810   0.995313    1989        213.356091\n0.695729   0.996094    1990        256.016385\n0.730641   0.996484    1991        284.414107\n0.785516   0.996875    1992        320.000000\n0.840392   0.997266    1993        365.764448\n1.009646   0.997656    1993        426.621160\n1.347020   0.998047    1994        512.032770\n1.515276   0.998242    1994        568.828214\n1.683532   0.998437    1995        639.795266\n1.887487   0.998633    1995        731.528895\n2.106249   0.998828    1996        853.242321\n2.325011   0.999023    1996        1023.541453\n2.434952   0.999121    1996        1137.656428\n2.544894   0.999219    1996        1280.409731\n2.589510   0.999316    1997        1461.988304\n2.605192   0.999414    1997        1706.484642\n2.620873   0.999512    1997        2049.180328\n2.628713   0.999561    1997        2277.904328\n2.636394   0.999609    1997        2557.544757\n2.644234   0.999658    1997        2923.976608\n2.652075   0.999707    1997        3412.969283\n2.658916   0.999756    1998        4098.360656\n2.658916   0.999780    1998        4545.454545\n2.658916   0.999805    1998        5128.205128\n2.658916   0.999829    1998        5847.953216\n2.658916   0.999854    1998        6849.315068\n2.658916   0.999878    1998        8196.721311\n2.658916   0.999890    1998        9090.909091\n2.658916   0.999902    1998        10204.081633\n2.658916   0.999915    1998        11764.705882\n2.658916   0.999927    1998        13698.630137\n2.658916   0.999939    1998        16393.442623\n2.658916   0.999945    1998        18181.818182\n2.658916   0.999951    1998        20408.163265\n2.658916   0.999957    1998        23255.813953\n2.658916   0.999963    1998        27027.027027\n2.658916   0.999969    1998        32258.064516\n2.658916   0.999973    1998        37037.037037\n2.658916   0.999976    1998        41666.666667\n2.658916   0.999979    1998        47619.047619\n2.658916   0.999982    1998        55555.555556\n2.658916   0.999985    1998        66666.666667\n2.658916   0.999986    1998        71428.571429\n2.658916   0.999988    1998        83333.333333\n2.658916   0.999989    1998        90909.090909\n2.658916   0.999991    1998        111111.111111\n2.658916   0.999992    1998        125000.000000\n2.658916   0.999993    1998        142857.142858\n2.658916   0.999994    1998        166666.666668\n2.658916   0.999995    1998        199999.999999\n2.658916   0.999996    1998        250000.000000\n2.658916   0.999997    1998        333333.333336\n2.658916   0.999998    1998        500000.000013\n2.658916   0.999999    1998        999999.999971\n2.658916   1.000000    1998        10000000.000000\n```\n\n### `encode` command\n\n```\nUsage: vegeta encode [options] [<file>...]\n\nEncodes vegeta attack results from one encoding to another.\nThe supported encodings are Gob (binary), CSV and JSON.\nEach input file may have a different encoding which is detected\nautomatically.\n\nThe CSV encoder doesn't write a header. The columns written by it are:\n\n  1. Unix timestamp in nanoseconds since epoch\n  2. HTTP status code\n  3. Request latency in nanoseconds\n  4. Bytes out\n  5. Bytes in\n  6. Error\n  7. Base64 encoded response body\n  8. Attack name\n  9. Sequence number of request\n  10. Method\n  11. URL\n  12. Base64 encoded response headers\n\nArguments:\n  <file>  A file with vegeta attack results encoded with one of\n          the supported encodings (gob | json | csv) [default: stdin]\n\nOptions:\n  --to      Output encoding (gob | json | csv) [default: json]\n  --output  Output file [default: stdout]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -rate=1/s > results.gob\n  cat results.gob | vegeta encode | jq -c 'del(.body)' | vegeta encode -to gob\n```\n\n### `plot` command\n\n![Plot](https://i.imgur.com/Jra1sNH.png)\n\n```\nUsage: vegeta plot [options] [<file>...]\n\nOutputs an HTML time series plot of request latencies over time.\nThe X axis represents elapsed time in seconds from the beginning\nof the earliest attack in all input files. The Y axis represents\nrequest latency in milliseconds.\n\nClick and drag to select a region to zoom into. Double click to zoom out.\nChoose a different number on the bottom left corner input field\nto change the moving average window size (in data points).\n\nArguments:\n  <file>  A file output by running vegeta attack [default: stdin]\n\nOptions:\n  --title      Title and header of the resulting HTML page.\n               [default: Vegeta Plot]\n  --threshold  Threshold of data points to downsample series to.\n               Series with less than --threshold number of data\n               points are not downsampled. [default: 4000]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -name=50qps -rate=50 -duration=5s > results.50qps.bin\n  cat results.50qps.bin | vegeta plot > plot.50qps.html\n  echo \"GET http://:80\" | vegeta attack -name=100qps -rate=100 -duration=5s > results.100qps.bin\n  vegeta plot results.50qps.bin results.100qps.bin > plot.html\n```\n\n## Usage: Generated targets\n\nApart from accepting a static list of targets, Vegeta can be used together with another program that generates them in a streaming fashion. Here's an example of that using the `jq` utility that generates targets with an incrementing id in their body.\n\n```console\njq -ncM 'while(true; .+1) | {method: \"POST\", url: \"http://:6060\", body: {id: .} | @base64 }' | \\\n  vegeta attack -rate=50/s -lazy -format=json -duration=30s | \\\n  tee results.bin | \\\n  vegeta report\n```\n\n## Usage: Distributed attacks\n\nWhenever your load test can't be conducted due to Vegeta hitting machine limits\nsuch as open files, memory, CPU or network bandwidth, it's a good idea to use Vegeta in a distributed manner.\n\nIn a hypothetical scenario where the desired attack rate is 60k requests per second,\nlet's assume we have 3 machines with `vegeta` installed.\n\nMake sure open file descriptor and process limits are set to a high number for your user **on each machine**\nusing the `ulimit` command.\n\nWe're ready to start the attack. All we need to do is to divide the intended rate by the number of machines,\nand use that number on each attack. Here we'll use [pdsh](https://code.google.com/p/pdsh/) for orchestration.\n\n```shell\n$ PDSH_RCMD_TYPE=ssh pdsh -b -w '10.0.1.1,10.0.2.1,10.0.3.1' \\\n    'echo \"GET http://target/\" | vegeta attack -rate=20000 -duration=60s > result.bin'\n```\n\nAfter the previous command finishes, we can gather the result files to use on our report.\n\n```shell\n$ for machine in 10.0.1.1 10.0.2.1 10.0.3.1; do\n    scp $machine:~/result.bin $machine.bin &\n  done\n```\n\nThe `report` command accepts multiple result files.\nIt'll read and sort them by timestamp before generating reports.\n\n```console\nvegeta report *.bin\n```\n\nAnother way to gather results in distributed tests is to use the built-in Prometheus Exporter and configure a Prometheus Server to get test results from all Vegeta instances. See `attack` option \"prometheus-addr\" for more details and a complete example in the section \"Prometheus Support\".\n\n## Usage: Real-time Analysis\n\nIf you are a happy user of iTerm, you can integrate vegeta with [jplot](https://github.com/rs/jplot) using [jaggr](https://github.com/rs/jaggr) to plot a vegeta report in real-time in the comfort of your terminal:\n\n```\necho 'GET http://localhost:8080' | \\\n    vegeta attack -rate 5000 -duration 10m | vegeta encode | \\\n    jaggr @count=rps \\\n          hist\\[100,200,300,400,500\\]:code \\\n          p25,p50,p95:latency \\\n          sum:bytes_in \\\n          sum:bytes_out | \\\n    jplot rps+code.hist.100+code.hist.200+code.hist.300+code.hist.400+code.hist.500 \\\n          latency.p95+latency.p50+latency.p25 \\\n          bytes_in.sum+bytes_out.sum\n```\n\n![](https://i.imgur.com/ttBDsQS.gif)\n\n## Usage: Library\n\nThe library versioning follows [SemVer v2.0.0](https://semver.org/spec/v2.0.0.html).\nSince [lib/v9.0.0](https://github.com/tsenart/vegeta/tree/lib/v9.0.0), the library and cli\nare versioned separately to better isolate breaking changes to each component.\n\nSee [Versioning](#Versioning) for more details on git tag naming schemes and compatibility\nwith `go mod`.\n\n```go\npackage main\n\nimport (\n  \"fmt\"\n  \"time\"\n\n  vegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nfunc main() {\n  rate := vegeta.Rate{Freq: 100, Per: time.Second}\n  duration := 4 * time.Second\n  targeter := vegeta.NewStaticTargeter(vegeta.Target{\n    Method: \"GET\",\n    URL:    \"http://localhost:9100/\",\n  })\n  attacker := vegeta.NewAttacker()\n\n  var metrics vegeta.Metrics\n  for res := range attacker.Attack(targeter, rate, duration, \"Big Bang!\") {\n    metrics.Add(res)\n  }\n  metrics.Close()\n\n  fmt.Printf(\"99th percentile: %s\\n\", metrics.Latencies.P99)\n}\n```\n\n#### Limitations\n\nThere will be an upper bound of the supported `rate` which varies on the\nmachine being used.\nYou could be CPU bound (unlikely), memory bound (more likely) or\nhave system resource limits being reached which ought to be tuned for\nthe process execution. The important limits for us are file descriptors\nand processes. On a UNIX system you can get and set the current\nsoft-limit values for a user.\n\n```shell\n$ ulimit -n # file descriptors\n2560\n$ ulimit -u # processes / threads\n709\n```\n\nJust pass a new number as the argument to change it.\n\n## Prometheus support\n\nVegeta has a built-in Prometheus Exporter that may be enabled during attacks so that you can point any Prometheus instance to Vegeta attack processes and monitor attack metrics.\n\nTo enable the Prometheus Exporter on the command line, set the \"prometheus-addr\" flag.\n\nA Prometheus HTTP endpoint will be available only during the lifespan of an attack and will be closed right after the attack is finished.\n\nThe following metrics are exposed:\n\n* `request_bytes_in` - bytes count received from targeted servers by \"url\", \"method\" and \"status\"\n* `request_bytes_out` - bytes count sent to targeted server by \"url\", \"method\" and \"status\"\n* `request_seconds` - histogram with request latency and counters by \"url\", \"method\" and \"status\"\n* `request_fail_count` - count of failed requests by \"url\", \"method\", \"status\" and \"message\"\n\n<image src=\"lib/prom/prometheus-sample.png\" width=\"500\" />\n\nCheck file [lib/prom/grafana.json](lib/prom/grafana.json) with the source of this sample dashboard in Grafana.\n\n### Limitations\n\n1. Prometheus scrapes metrics from a running vegeta attack process and assigns timestamps to samples on its server. This means result timestamps aren't accurate (i.e. they're scraping time, not result time).\n2. Configuring Prometheus to scrape vegeta needs to happen out-of-band. That's a hassle!\n3. Since there's no coordination between a vegeta attack process and a Prometheus server, an attack process will finish before Prometheus has the chance to scrape the latest observations.\n\n\nWhy aren't we using pushgateway instead? See [this comment](https://github.com/tsenart/vegeta/pull/534#issuecomment-1629943731).\n\nThere's [an issue](https://github.com/tsenart/vegeta/issues/637) tracking the proper solution to all these limitations which is a remote write integration.\n\n## License\n\nSee [LICENSE](LICENSE).\n\n## Donate\n\nIf you use and love Vegeta, please consider sending some Satoshi to\n`1MDmKC51ve7Upxt75KoNM6x1qdXHFK6iW2`. In case you want to be mentioned as a\nsponsor, let me know!\n\n[![Donate Bitcoin](https://i.imgur.com/W9Vc51d.png)](#donate)\n"
  },
  {
    "path": "attack.go",
    "content": "package main\n\nimport (\n\t\"crypto/tls\"\n\t\"crypto/x509\"\n\t\"errors\"\n\t\"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n\t\"net/http\"\n\t\"os\"\n\t\"os/signal\"\n\t\"strings\"\n\t\"syscall\"\n\t\"time\"\n\n\t\"github.com/prometheus/client_golang/prometheus\"\n\t\"github.com/tsenart/vegeta/v12/internal/resolver\"\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n\tprom \"github.com/tsenart/vegeta/v12/lib/prom\"\n)\n\nfunc attackCmd() command {\n\tfs := flag.NewFlagSet(\"vegeta attack\", flag.ExitOnError)\n\topts := &attackOpts{\n\t\theaders:      headers{http.Header{}},\n\t\tproxyHeaders: headers{http.Header{}},\n\t\tladdr:        localAddr{&vegeta.DefaultLocalAddr},\n\t\trate:         vegeta.Rate{Freq: 50, Per: time.Second},\n\t\tmaxBody:      vegeta.DefaultMaxBody,\n\t\tpromAddr:     \"0.0.0.0:8880\",\n\t}\n\tfs.StringVar(&opts.name, \"name\", \"\", \"Attack name\")\n\tfs.StringVar(&opts.targetsf, \"targets\", \"stdin\", \"Targets file\")\n\tfs.StringVar(&opts.format, \"format\", vegeta.HTTPTargetFormat,\n\t\tfmt.Sprintf(\"Targets format [%s]\", strings.Join(vegeta.TargetFormats, \", \")))\n\tfs.StringVar(&opts.outputf, \"output\", \"stdout\", \"Output file\")\n\tfs.StringVar(&opts.bodyf, \"body\", \"\", \"Requests body file\")\n\tfs.BoolVar(&opts.chunked, \"chunked\", false, \"Send body with chunked transfer encoding\")\n\tfs.StringVar(&opts.certf, \"cert\", \"\", \"TLS client PEM encoded certificate file\")\n\tfs.StringVar(&opts.keyf, \"key\", \"\", \"TLS client PEM encoded private key file\")\n\tfs.Var(&opts.rootCerts, \"root-certs\", \"TLS root certificate files (comma separated list)\")\n\tfs.BoolVar(&opts.http2, \"http2\", true, \"Send HTTP/2 requests when supported by the server\")\n\tfs.BoolVar(&opts.h2c, \"h2c\", false, \"Send HTTP/2 requests without TLS encryption\")\n\tfs.BoolVar(&opts.insecure, \"insecure\", false, \"Ignore invalid server TLS certificates\")\n\tfs.BoolVar(&opts.lazy, \"lazy\", false, \"Read targets lazily\")\n\tfs.DurationVar(&opts.duration, \"duration\", 0, \"Duration of the test [0 = forever]\")\n\tfs.DurationVar(&opts.timeout, \"timeout\", vegeta.DefaultTimeout, \"Requests timeout\")\n\tfs.Uint64Var(&opts.workers, \"workers\", vegeta.DefaultWorkers, \"Initial number of workers\")\n\tfs.Uint64Var(&opts.maxWorkers, \"max-workers\", vegeta.DefaultMaxWorkers, \"Maximum number of workers\")\n\tfs.IntVar(&opts.connections, \"connections\", vegeta.DefaultConnections, \"Max open idle connections per target host\")\n\tfs.IntVar(&opts.maxConnections, \"max-connections\", vegeta.DefaultMaxConnections, \"Max connections per target host\")\n\tfs.IntVar(&opts.redirects, \"redirects\", vegeta.DefaultRedirects, \"Number of redirects to follow. -1 will not follow but marks as success\")\n\tfs.Var(&maxBodyFlag{&opts.maxBody}, \"max-body\", \"Maximum number of bytes to capture from response bodies. [-1 = no limit]\")\n\tfs.Var(&rateFlag{&opts.rate}, \"rate\", \"Number of requests per time unit [0 = infinity]\")\n\tfs.Var(&opts.headers, \"header\", \"Request header\")\n\tfs.Var(&opts.proxyHeaders, \"proxy-header\", \"Proxy CONNECT header\")\n\tfs.Var(&opts.laddr, \"laddr\", \"Local IP address\")\n\tfs.BoolVar(&opts.keepalive, \"keepalive\", true, \"Use persistent connections\")\n\tfs.StringVar(&opts.unixSocket, \"unix-socket\", \"\", \"Connect over a unix socket. This overrides the host address in target URLs\")\n\tfs.StringVar(&opts.promAddr, \"prometheus-addr\", \"\", \"Prometheus exporter listen address [empty = disabled]. Example: 0.0.0.0:8880\")\n\tfs.Var(&dnsTTLFlag{&opts.dnsTTL}, \"dns-ttl\", \"Cache DNS lookups for the given duration [-1 = disabled, 0 = forever]\")\n\tfs.BoolVar(&opts.sessionTickets, \"session-tickets\", false, \"Enable TLS session resumption using session tickets\")\n\tfs.Var(&connectToFlag{&opts.connectTo}, \"connect-to\", \"A mapping of (ip|host):port to use instead of a target URL's (ip|host):port. Can be repeated multiple times.\\nIdentical src:port with different dst:port will round-robin over the different dst:port pairs.\\nExample: google.com:80:localhost:6060\")\n\tsystemSpecificFlags(fs, opts)\n\n\treturn command{fs, func(args []string) error {\n\t\tfs.Parse(args)\n\t\treturn attack(opts)\n\t}}\n}\n\nvar (\n\terrZeroRate = errors.New(\"rate frequency and time unit must be bigger than zero\")\n\terrBadCert  = errors.New(\"bad certificate\")\n)\n\n// attackOpts aggregates the attack function command options\ntype attackOpts struct {\n\tname           string\n\ttargetsf       string\n\tformat         string\n\toutputf        string\n\tbodyf          string\n\tcertf          string\n\tkeyf           string\n\trootCerts      csl\n\thttp2          bool\n\th2c            bool\n\tinsecure       bool\n\tlazy           bool\n\tchunked        bool\n\tduration       time.Duration\n\ttimeout        time.Duration\n\trate           vegeta.Rate\n\tworkers        uint64\n\tmaxWorkers     uint64\n\tconnections    int\n\tmaxConnections int\n\tredirects      int\n\tmaxBody        int64\n\theaders        headers\n\tproxyHeaders   headers\n\tladdr          localAddr\n\tkeepalive      bool\n\tresolvers      csl\n\tunixSocket     string\n\tpromAddr       string\n\tdnsTTL         time.Duration\n\tsessionTickets bool\n\tconnectTo      map[string][]string\n}\n\n// attack validates the attack arguments, sets up the\n// required resources, launches the attack and writes the results\nfunc attack(opts *attackOpts) (err error) {\n\tif opts.maxWorkers == vegeta.DefaultMaxWorkers && opts.rate.Freq == 0 {\n\t\treturn fmt.Errorf(\"-rate=0 requires setting -max-workers\")\n\t}\n\n\tif len(opts.resolvers) > 0 {\n\t\tres, err := resolver.NewResolver(opts.resolvers)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tnet.DefaultResolver = res\n\t}\n\n\tnet.DefaultResolver.PreferGo = true\n\n\tfiles := map[string]io.Reader{}\n\tfor _, filename := range []string{opts.targetsf, opts.bodyf} {\n\t\tif filename == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tf, err := file(filename, false)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"error opening %s: %s\", filename, err)\n\t\t}\n\t\tdefer f.Close()\n\t\tfiles[filename] = f\n\t}\n\n\tvar body []byte\n\tif bodyf, ok := files[opts.bodyf]; ok {\n\t\tif body, err = io.ReadAll(bodyf); err != nil {\n\t\t\treturn fmt.Errorf(\"error reading %s: %s\", opts.bodyf, err)\n\t\t}\n\t}\n\n\tvar (\n\t\ttr       vegeta.Targeter\n\t\tsrc      = files[opts.targetsf]\n\t\thdr      = opts.headers.Header\n\t\tproxyHdr = opts.proxyHeaders.Header\n\t)\n\n\tswitch opts.format {\n\tcase vegeta.JSONTargetFormat:\n\t\ttr = vegeta.NewJSONTargeter(src, body, hdr)\n\tcase vegeta.HTTPTargetFormat:\n\t\ttr = vegeta.NewHTTPTargeter(src, body, hdr)\n\tdefault:\n\t\treturn fmt.Errorf(\"format %q isn't one of [%s]\",\n\t\t\topts.format, strings.Join(vegeta.TargetFormats, \", \"))\n\t}\n\n\tif !opts.lazy {\n\t\ttargets, err := vegeta.ReadAllTargets(tr)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\ttr = vegeta.NewStaticTargeter(targets...)\n\t}\n\n\tout, err := file(opts.outputf, true)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"error opening %s: %s\", opts.outputf, err)\n\t}\n\tdefer out.Close()\n\n\ttlsc, err := tlsConfig(opts.insecure, opts.certf, opts.keyf, opts.rootCerts)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tvar pm *prom.Metrics\n\tif opts.promAddr != \"\" {\n\t\tpm = prom.NewMetrics()\n\n\t\tr := prometheus.NewRegistry()\n\t\tif err := pm.Register(r); err != nil {\n\t\t\treturn fmt.Errorf(\"error registering prometheus metrics: %s\", err)\n\t\t}\n\n\t\tsrv := http.Server{\n\t\t\tAddr:    opts.promAddr,\n\t\t\tHandler: prom.NewHandler(r, time.Now().UTC()),\n\t\t}\n\n\t\tdefer srv.Close()\n\t\tgo srv.ListenAndServe()\n\t}\n\n\tatk := vegeta.NewAttacker(\n\t\tvegeta.Redirects(opts.redirects),\n\t\tvegeta.Timeout(opts.timeout),\n\t\tvegeta.LocalAddr(*opts.laddr.IPAddr),\n\t\tvegeta.TLSConfig(tlsc),\n\t\tvegeta.Workers(opts.workers),\n\t\tvegeta.MaxWorkers(opts.maxWorkers),\n\t\tvegeta.KeepAlive(opts.keepalive),\n\t\tvegeta.Connections(opts.connections),\n\t\tvegeta.MaxConnections(opts.maxConnections),\n\t\tvegeta.HTTP2(opts.http2),\n\t\tvegeta.H2C(opts.h2c),\n\t\tvegeta.MaxBody(opts.maxBody),\n\t\tvegeta.UnixSocket(opts.unixSocket),\n\t\tvegeta.ProxyHeader(proxyHdr),\n\t\tvegeta.ChunkedBody(opts.chunked),\n\t\tvegeta.DNSCaching(opts.dnsTTL),\n\t\tvegeta.ConnectTo(opts.connectTo),\n\t\tvegeta.SessionTickets(opts.sessionTickets),\n\t)\n\n\tres := atk.Attack(tr, opts.rate, opts.duration, opts.name)\n\tenc := vegeta.NewEncoder(out)\n\tsig := make(chan os.Signal, 1)\n\tsignal.Notify(sig, os.Interrupt, syscall.SIGTERM)\n\n\treturn processAttack(atk, res, enc, sig, pm)\n}\n\nfunc processAttack(\n\tatk *vegeta.Attacker,\n\tres <-chan *vegeta.Result,\n\tenc vegeta.Encoder,\n\tsig <-chan os.Signal,\n\tpm *prom.Metrics,\n) error {\n\tfor {\n\t\tselect {\n\t\tcase <-sig:\n\t\t\tif stopSent := atk.Stop(); !stopSent {\n\t\t\t\t// Exit immediately on second signal.\n\t\t\t\treturn nil\n\t\t\t}\n\t\tcase r, ok := <-res:\n\t\t\tif !ok {\n\t\t\t\treturn nil\n\t\t\t}\n\n\t\t\tif pm != nil {\n\t\t\t\tpm.Observe(r)\n\t\t\t}\n\n\t\t\tif err := enc.Encode(r); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n}\n\n// tlsConfig builds a *tls.Config from the given options.\nfunc tlsConfig(insecure bool, certf, keyf string, rootCerts []string) (*tls.Config, error) {\n\tvar err error\n\tfiles := map[string][]byte{}\n\tfilenames := append([]string{certf, keyf}, rootCerts...)\n\tfor _, f := range filenames {\n\t\tif f != \"\" {\n\t\t\tif files[f], err = os.ReadFile(f); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t}\n\n\tc := tls.Config{InsecureSkipVerify: insecure}\n\tif cert, ok := files[certf]; ok {\n\t\tkey, ok := files[keyf]\n\t\tif !ok {\n\t\t\tkey = cert\n\t\t}\n\n\t\tcertificate, err := tls.X509KeyPair(cert, key)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tc.Certificates = append(c.Certificates, certificate)\n\t\tc.BuildNameToCertificate()\n\t}\n\n\tif len(rootCerts) > 0 {\n\t\tc.RootCAs = x509.NewCertPool()\n\t\tfor _, f := range rootCerts {\n\t\t\tif !c.RootCAs.AppendCertsFromPEM(files[f]) {\n\t\t\t\treturn nil, errBadCert\n\t\t\t}\n\t\t}\n\t}\n\n\treturn &c, nil\n}\n"
  },
  {
    "path": "attack_nonwindows.go",
    "content": "//go:build !windows\n// +build !windows\n\npackage main\n\nimport \"flag\"\n\nfunc systemSpecificFlags(fs *flag.FlagSet, opts *attackOpts) {\n\tfs.Var(&opts.resolvers, \"resolvers\", \"List of addresses (ip:port) to use for DNS resolution. Disables use of local system DNS. (comma separated list)\")\n}\n"
  },
  {
    "path": "attack_test.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"io\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n\t\"os\"\n\t\"reflect\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nfunc TestHeadersSet(t *testing.T) {\n\th := headers{\n\t\tHeader: make(http.Header),\n\t}\n\tfor i, tt := range []struct {\n\t\tkey, val string\n\t\twant     []string\n\t}{\n\t\t{\"key\", \"value\", []string{\"value\"}},\n\t\t{\"key\", \"value\", []string{\"value\", \"value\"}},\n\t\t{\"Key\", \"Value\", []string{\"Value\"}},\n\t\t{\"KEY\", \"VALUE\", []string{\"VALUE\"}},\n\t} {\n\t\tif err := h.Set(tt.key + \": \" + tt.val); err != nil {\n\t\t\tt.Error(err)\n\t\t} else if got := h.Header[tt.key]; !reflect.DeepEqual(got, tt.want) {\n\t\t\tt.Errorf(\"test #%d, '%s: %s': got: %+v, want: %+v\", i, tt.key, tt.val, got, tt.want)\n\t\t}\n\t}\n}\n\nfunc decodeMetrics(buf bytes.Buffer) (vegeta.Metrics, error) {\n\tvar metrics vegeta.Metrics\n\tdec := vegeta.NewDecoder(bufio.NewReader(&buf))\n\n\tfor {\n\t\tvar r vegeta.Result\n\t\tif err := dec.Decode(&r); err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\treturn metrics, err\n\t\t}\n\t\tmetrics.Add(&r)\n\t}\n\tmetrics.Close()\n\n\treturn metrics, nil\n}\n\nfunc TestAttackSignalOnce(t *testing.T) {\n\tt.Parallel()\n\n\tconst (\n\t\tsignalDelay    = 300 * time.Millisecond // Delay before stopping.\n\t\tclientTimeout  = 1 * time.Second        // This, plus delay, is the max time for the attack.\n\t\tserverTimeout  = 2 * time.Second        // Must be more than clientTimeout.\n\t\tattackDuration = 10 * time.Second       // The attack should never take this long.\n\t)\n\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\ttime.Sleep(serverTimeout) // Server.Close() will block for this long on shutdown.\n\t\t}),\n\t)\n\tdefer server.Close()\n\n\ttr := vegeta.NewStaticTargeter(vegeta.Target{Method: \"GET\", URL: server.URL})\n\tatk := vegeta.NewAttacker(vegeta.Timeout(clientTimeout))\n\trate := vegeta.Rate{Freq: 10, Per: time.Second} // Every 100ms.\n\n\tvar buf bytes.Buffer\n\twriter := bufio.NewWriter(&buf)\n\tenc := vegeta.NewEncoder(writer)\n\tsig := make(chan os.Signal, 1)\n\tres := atk.Attack(tr, rate, attackDuration, \"\")\n\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tprocessAttack(atk, res, enc, sig, nil)\n\t}()\n\n\t// Allow more than one request to have started before stopping.\n\ttime.Sleep(signalDelay)\n\tsig <- os.Interrupt\n\twg.Wait()\n\twriter.Flush()\n\n\tmetrics, err := decodeMetrics(buf)\n\tif err != nil {\n\t\tt.Error(err)\n\t}\n\tif got, min := metrics.Requests, uint64(2); got < min {\n\t\tt.Errorf(\"not enough requests recorded. got %+v, min: %+v\", got, min)\n\t}\n\tif got, want := metrics.Success, 0.0; got != want {\n\t\tt.Errorf(\"all requests should fail. got %+v, want: %+v\", got, want)\n\t}\n\tif got, max := metrics.Duration, clientTimeout; got > max {\n\t\tt.Errorf(\"attack duration too long. got %+v, max: %+v\", got, max)\n\t}\n\tif got, want := metrics.Wait.Round(time.Second), clientTimeout; got != want {\n\t\tt.Errorf(\"attack wait doesn't match timeout. got %+v, want: %+v\", got, want)\n\t}\n}\n\nfunc TestAttackSignalTwice(t *testing.T) {\n\tt.Parallel()\n\n\tconst (\n\t\tattackDuration = 10 * time.Second // The attack should never take this long.\n\t)\n\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}),\n\t)\n\tdefer server.Close()\n\n\ttr := vegeta.NewStaticTargeter(vegeta.Target{Method: \"GET\", URL: server.URL})\n\tatk := vegeta.NewAttacker()\n\trate := vegeta.Rate{Freq: 1, Per: time.Second}\n\n\tvar buf bytes.Buffer\n\twriter := bufio.NewWriter(&buf)\n\tenc := vegeta.NewEncoder(writer)\n\tsig := make(chan os.Signal, 1)\n\tres := atk.Attack(tr, rate, attackDuration, \"\")\n\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\t\tprocessAttack(atk, res, enc, sig, nil)\n\t}()\n\n\t// Exit as soon as possible.\n\tsig <- os.Interrupt\n\tsig <- os.Interrupt\n\twg.Wait()\n\twriter.Flush()\n\n\tmetrics, err := decodeMetrics(buf)\n\tif err != nil {\n\t\tt.Error(err)\n\t}\n\tif got, max := metrics.Duration, time.Second; got > max {\n\t\tt.Errorf(\"attack duration too long. got %+v, max: %+v\", got, max)\n\t}\n}\n"
  },
  {
    "path": "attack_windows.go",
    "content": "package main\n\nimport \"flag\"\n\nfunc systemSpecificFlags(fs *flag.FlagSet, opts *attackOpts) {}\n"
  },
  {
    "path": "dump.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc dumpCmd() command {\n\treturn command{fn: func([]string) error {\n\t\treturn fmt.Errorf(\"vegeta dump has been deprecated and succeeded by the vegeta encode command\")\n\t}}\n}\n"
  },
  {
    "path": "encode.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"os/signal\"\n\t\"strings\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nconst (\n\tencodingCSV  = \"csv\"\n\tencodingGob  = \"gob\"\n\tencodingJSON = \"json\"\n)\n\nconst encodeUsage = `Usage: vegeta encode [options] [<file>...]\n\nEncodes vegeta attack results from one encoding to another.\nThe supported encodings are Gob (binary), CSV and JSON.\nEach input file may have a different encoding which is detected\nautomatically.\n\nThe CSV encoder doesn't write a header. The columns written by it are:\n\n   1. Unix timestamp in nanoseconds since epoch\n   2. HTTP status code\n   3. Request latency in nanoseconds\n   4. Bytes out\n   5. Bytes in\n   6. Error\n   7. Base64 encoded response body\n   8. Attack name\n   9. Sequence number of request\n  10. Method\n  11. URL\n  12. Base64 encoded response headers\n\nArguments:\n  <file>  A file with vegeta attack results encoded with one of\n          the supported encodings (gob | json | csv) [default: stdin]\n\nOptions:\n  --to      Output encoding (gob | json | csv) [default: json]\n  --output  Output file [default: stdout]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -rate=1/s > results.gob\n  cat results.gob | vegeta encode | jq -c 'del(.body)' | vegeta encode -to gob\n`\n\nfunc encodeCmd() command {\n\tencs := \"[\" + strings.Join([]string{encodingCSV, encodingGob, encodingJSON}, \", \") + \"]\"\n\tfs := flag.NewFlagSet(\"vegeta encode\", flag.ExitOnError)\n\tto := fs.String(\"to\", encodingJSON, \"Output encoding \"+encs)\n\toutput := fs.String(\"output\", \"stdout\", \"Output file\")\n\n\tfs.Usage = func() {\n\t\tfmt.Fprintf(os.Stderr, \"%s\\n\", encodeUsage)\n\t}\n\n\treturn command{fs, func(args []string) error {\n\t\tfs.Parse(args)\n\t\tfiles := fs.Args()\n\t\tif len(files) == 0 {\n\t\t\tfiles = append(files, \"stdin\")\n\t\t}\n\t\treturn encode(files, *to, *output)\n\t}}\n}\n\nfunc encode(files []string, to, output string) error {\n\tdec, mc, err := decoder(files)\n\tdefer mc.Close()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tout, err := file(output, true)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer out.Close()\n\n\tvar enc vegeta.Encoder\n\tswitch to {\n\tcase encodingCSV:\n\t\tenc = vegeta.NewCSVEncoder(out)\n\tcase encodingGob:\n\t\tenc = vegeta.NewEncoder(out)\n\tcase encodingJSON:\n\t\tenc = vegeta.NewJSONEncoder(out)\n\tdefault:\n\t\treturn fmt.Errorf(\"encode: unknown encoding %q\", to)\n\t}\n\n\tsigch := make(chan os.Signal, 1)\n\tsignal.Notify(sigch, os.Interrupt)\n\n\tfor {\n\t\tselect {\n\t\tcase <-sigch:\n\t\t\treturn nil\n\t\tdefault:\n\t\t}\n\n\t\tvar r vegeta.Result\n\t\tif err = dec.Decode(&r); err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\treturn err\n\t\t} else if err = enc.Encode(&r); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "file.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"strings\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nfunc file(name string, create bool) (*os.File, error) {\n\tswitch name {\n\tcase \"stdin\":\n\t\treturn os.Stdin, nil\n\tcase \"stdout\":\n\t\treturn os.Stdout, nil\n\tdefault:\n\t\tif create {\n\t\t\treturn os.Create(name)\n\t\t}\n\t\treturn os.Open(name)\n\t}\n}\n\nfunc decoder(files []string) (vegeta.Decoder, io.Closer, error) {\n\tcloser := make(multiCloser, 0, len(files))\n\tdecs := make([]vegeta.Decoder, 0, len(files))\n\tfor _, f := range files {\n\t\trc, err := file(f, false)\n\t\tif err != nil {\n\t\t\treturn nil, closer, err\n\t\t}\n\n\t\tdec := vegeta.DecoderFor(rc)\n\t\tif dec == nil {\n\t\t\treturn nil, closer, fmt.Errorf(\"encode: can't detect encoding of %q\", f)\n\t\t}\n\n\t\tdecs = append(decs, dec)\n\t\tcloser = append(closer, rc)\n\t}\n\treturn vegeta.NewRoundRobinDecoder(decs...), closer, nil\n}\n\ntype multiCloser []io.Closer\n\nfunc (mc multiCloser) Close() error {\n\tvar errs []string\n\tfor _, c := range mc {\n\t\tif err := c.Close(); err != nil {\n\t\t\terrs = append(errs, err.Error())\n\t\t}\n\t}\n\n\tif len(errs) > 0 {\n\t\treturn errors.New(strings.Join(errs, \"; \"))\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "flags.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"math\"\n\t\"net\"\n\t\"net/http\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/c2h5oh/datasize\"\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\n// headers is the http.Header used in each target request\n// it is defined here to implement the flag.Value interface\n// in order to support multiple identical flags for request header\n// specification\ntype headers struct{ http.Header }\n\nfunc (h headers) String() string {\n\tbuf := &bytes.Buffer{}\n\tif err := h.Write(buf); err != nil {\n\t\treturn \"\"\n\t}\n\treturn buf.String()\n}\n\n// Set implements the flag.Value interface for a map of HTTP Headers.\nfunc (h headers) Set(value string) error {\n\tparts := strings.SplitN(value, \":\", 2)\n\tif len(parts) != 2 {\n\t\treturn fmt.Errorf(\"header '%s' has a wrong format\", value)\n\t}\n\tkey, val := strings.TrimSpace(parts[0]), strings.TrimSpace(parts[1])\n\tif key == \"\" || val == \"\" {\n\t\treturn fmt.Errorf(\"header '%s' has a wrong format\", value)\n\t}\n\t// Add key/value directly to the http.Header (map[string][]string).\n\t// http.Header.Add() canonicalizes keys but vegeta is used\n\t// to test systems that require case-sensitive headers.\n\th.Header[key] = append(h.Header[key], val)\n\treturn nil\n}\n\n// localAddr implements the Flag interface for parsing net.IPAddr\ntype localAddr struct{ *net.IPAddr }\n\nfunc (ip *localAddr) Set(value string) (err error) {\n\tip.IPAddr, err = net.ResolveIPAddr(\"ip\", value)\n\treturn\n}\n\n// csl implements the flag.Value interface for comma separated lists\ntype csl []string\n\nfunc (l *csl) Set(v string) error {\n\t*l = strings.Split(v, \",\")\n\treturn nil\n}\n\nfunc (l csl) String() string { return strings.Join(l, \",\") }\n\ntype rateFlag struct{ *vegeta.Rate }\n\nfunc (f *rateFlag) Set(v string) (err error) {\n\tif v == \"infinity\" {\n\t\treturn nil\n\t}\n\n\tps := strings.SplitN(v, \"/\", 2)\n\tswitch len(ps) {\n\tcase 1:\n\t\tps = append(ps, \"1s\")\n\tcase 0:\n\t\treturn fmt.Errorf(\"-rate format %q doesn't match the \\\"freq/duration\\\" format (i.e. 50/1s)\", v)\n\t}\n\n\tf.Freq, err = strconv.Atoi(ps[0])\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tif f.Freq == 0 {\n\t\treturn nil\n\t}\n\n\tswitch ps[1] {\n\tcase \"ns\", \"us\", \"µs\", \"ms\", \"s\", \"m\", \"h\":\n\t\tps[1] = \"1\" + ps[1]\n\t}\n\n\tf.Per, err = time.ParseDuration(ps[1])\n\treturn err\n}\n\nfunc (f *rateFlag) String() string {\n\tif f.Rate == nil {\n\t\treturn \"\"\n\t}\n\treturn fmt.Sprintf(\"%d/%s\", f.Freq, f.Per)\n}\n\ntype maxBodyFlag struct{ n *int64 }\n\nfunc (f *maxBodyFlag) Set(v string) (err error) {\n\tif v == \"-1\" {\n\t\t*(f.n) = -1\n\t\treturn nil\n\t}\n\n\tvar ds datasize.ByteSize\n\tif err = ds.UnmarshalText([]byte(v)); err != nil {\n\t\treturn err\n\t}\n\n\tif ds > math.MaxInt64 {\n\t\treturn fmt.Errorf(\"-max-body=%d overflows int64\", ds)\n\t}\n\n\t*(f.n) = int64(ds)\n\treturn nil\n}\n\nfunc (f *maxBodyFlag) String() string {\n\tif f.n == nil {\n\t\treturn \"\"\n\t} else if *(f.n) == -1 {\n\t\treturn \"-1\"\n\t}\n\treturn datasize.ByteSize(*(f.n)).String()\n}\n\ntype dnsTTLFlag struct{ ttl *time.Duration }\n\nfunc (f *dnsTTLFlag) Set(v string) (err error) {\n\tif v == \"-1\" {\n\t\t*(f.ttl) = -1\n\t\treturn nil\n\t}\n\n\t*(f.ttl), err = time.ParseDuration(v)\n\treturn err\n}\n\nfunc (f *dnsTTLFlag) String() string {\n\tif f.ttl == nil {\n\t\treturn \"\"\n\t} else if *(f.ttl) == -1 {\n\t\treturn \"-1\"\n\t}\n\treturn f.ttl.String()\n}\n\nconst connectToFormat = \"src:port:dst:port\"\n\ntype connectToFlag struct {\n\taddrMap *map[string][]string\n}\n\nfunc (c *connectToFlag) String() string {\n\tif c.addrMap == nil {\n\t\treturn \"\"\n\t}\n\n\taddrMappings := make([]string, 0, len(*c.addrMap))\n\tfor k, v := range *c.addrMap {\n\t\taddrMappings = append(addrMappings, k+\":\"+strings.Join(v, \",\"))\n\t}\n\n\tsort.Strings(addrMappings)\n\treturn strings.Join(addrMappings, \";\")\n}\n\nfunc (c *connectToFlag) Set(s string) error {\n\tif c.addrMap == nil {\n\t\treturn nil\n\t}\n\n\tif *c.addrMap == nil {\n\t\t*c.addrMap = make(map[string][]string)\n\t}\n\n\tparts := strings.Split(s, \":\")\n\tif len(parts) != 4 {\n\t\treturn fmt.Errorf(\"invalid -connect-to %q, expected format: %s\", s, connectToFormat)\n\t}\n\tsrcAddr := parts[0] + \":\" + parts[1]\n\tdstAddr := parts[2] + \":\" + parts[3]\n\n\t// Parse source address\n\tif _, _, err := net.SplitHostPort(srcAddr); err != nil {\n\t\treturn fmt.Errorf(\"invalid source address expression [%s], expected address:port\", srcAddr)\n\t}\n\n\t// Parse destination address\n\tif _, _, err := net.SplitHostPort(dstAddr); err != nil {\n\t\treturn fmt.Errorf(\"invalid destination address expression [%s], expected address:port\", dstAddr)\n\t}\n\n\t(*c.addrMap)[srcAddr] = append((*c.addrMap)[srcAddr], dstAddr)\n\n\treturn nil\n}\n"
  },
  {
    "path": "go.mod",
    "content": "module github.com/tsenart/vegeta/v12\n\ngo 1.22\n\nrequire (\n\tgithub.com/alecthomas/jsonschema v0.0.0-20220216202328-9eeeec9d044b\n\tgithub.com/bmizerany/perks v0.0.0-20230307044200-03f9df79da1e\n\tgithub.com/c2h5oh/datasize v0.0.0-20231215233829-aa82cc1e6500\n\tgithub.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654\n\tgithub.com/dgryski/go-lttb v0.0.0-20230207170358-f8fc36cdbff1\n\tgithub.com/google/go-cmp v0.6.0\n\tgithub.com/influxdata/tdigest v0.0.1\n\tgithub.com/mailru/easyjson v0.7.7\n\tgithub.com/miekg/dns v1.1.61\n\tgithub.com/prometheus/client_golang v1.19.1\n\tgithub.com/prometheus/prometheus v0.53.1\n\tgithub.com/rs/dnscache v0.0.0-20230804202142-fc85eb664529\n\tgithub.com/streadway/quantile v0.0.0-20220407130108-4246515d968d\n\tgithub.com/tsenart/go-tsz v0.0.0-20180814235614-0bd30b3df1c3\n\tgolang.org/x/net v0.27.0\n\tpgregory.net/rapid v1.1.0\n)\n\nrequire (\n\tgithub.com/beorn7/perks v1.0.1 // indirect\n\tgithub.com/cespare/xxhash/v2 v2.3.0 // indirect\n\tgithub.com/gogo/protobuf v1.3.2 // indirect\n\tgithub.com/golang/protobuf v1.5.4 // indirect\n\tgithub.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect\n\tgithub.com/iancoleman/orderedmap v0.3.0 // indirect\n\tgithub.com/josharian/intern v1.0.0 // indirect\n\tgithub.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect\n\tgithub.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect\n\tgithub.com/pkg/errors v0.9.1 // indirect\n\tgithub.com/prometheus/client_model v0.6.1 // indirect\n\tgithub.com/prometheus/common v0.55.0 // indirect\n\tgithub.com/prometheus/procfs v0.15.1 // indirect\n\tgolang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect\n\tgolang.org/x/mod v0.19.0 // indirect\n\tgolang.org/x/sync v0.7.0 // indirect\n\tgolang.org/x/sys v0.22.0 // indirect\n\tgolang.org/x/text v0.16.0 // indirect\n\tgolang.org/x/tools v0.23.0 // indirect\n\tgoogle.golang.org/protobuf v1.34.2 // indirect\n)\n"
  },
  {
    "path": "go.sum",
    "content": "github.com/alecthomas/jsonschema v0.0.0-20220216202328-9eeeec9d044b h1:doCpXjVwui6HUN+xgNsNS3SZ0/jUZ68Eb+mJRNOZfog=\ngithub.com/alecthomas/jsonschema v0.0.0-20220216202328-9eeeec9d044b/go.mod h1:/n6+1/DWPltRLWL/VKyUxg6tzsl5kHUCcraimt4vr60=\ngithub.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=\ngithub.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=\ngithub.com/bmizerany/perks v0.0.0-20230307044200-03f9df79da1e h1:mWOqoK5jV13ChKf/aF3plwQ96laasTJgZi4f1aSOu+M=\ngithub.com/bmizerany/perks v0.0.0-20230307044200-03f9df79da1e/go.mod h1:ac9efd0D1fsDb3EJvhqgXRbFx7bs2wqZ10HQPeU8U/Q=\ngithub.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b h1:6+ZFm0flnudZzdSE0JxlhR2hKnGPcNB35BjQf4RYQDY=\ngithub.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M=\ngithub.com/c2h5oh/datasize v0.0.0-20231215233829-aa82cc1e6500 h1:6lhrsTEnloDPXyeZBvSYvQf8u86jbKehZPVDDlkgDl4=\ngithub.com/c2h5oh/datasize v0.0.0-20231215233829-aa82cc1e6500/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M=\ngithub.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=\ngithub.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=\ngithub.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=\ngithub.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=\ngithub.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654 h1:XOPLOMn/zT4jIgxfxSsoXPxkrzz0FaCHwp33x5POJ+Q=\ngithub.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654/go.mod h1:qm+vckxRlDt0aOla0RYJJVeqHZlWfOm2UIxHaqPB46E=\ngithub.com/dgryski/go-lttb v0.0.0-20230207170358-f8fc36cdbff1 h1:dxwR3CStJdJamsIoMPCmxuIfBAPTgmzvFax+MvFav3M=\ngithub.com/dgryski/go-lttb v0.0.0-20230207170358-f8fc36cdbff1/go.mod h1:UwftcHUI/qTYvLAxrWmANuRckf8+08O3C3hwStvkhDU=\ngithub.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=\ngithub.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=\ngithub.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=\ngithub.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=\ngithub.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=\ngithub.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=\ngithub.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=\ngithub.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=\ngithub.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=\ngithub.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=\ngithub.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=\ngithub.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd h1:PpuIBO5P3e9hpqBD0O/HjhShYuM6XE0i/lbE6J94kww=\ngithub.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd/go.mod h1:M5qHK+eWfAv8VR/265dIuEpL3fNfeC21tXXp9itM24A=\ngithub.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc h1:GN2Lv3MGO7AS6PrRoT6yV5+wkrOpcszoIsO4+4ds248=\ngithub.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc/go.mod h1:+JKpmjMGhpgPL+rXZ5nsZieVzvarn86asRlBg4uNGnk=\ngithub.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0/go.mod h1:N0Wam8K1arqPXNWjMo21EXnBPOPp36vB07FNRdD2geA=\ngithub.com/iancoleman/orderedmap v0.3.0 h1:5cbR2grmZR/DiVt+VJopEhtVs9YGInGIxAoMJn+Ichc=\ngithub.com/iancoleman/orderedmap v0.3.0/go.mod h1:XuLcCUkdL5owUCQeF2Ue9uuw1EptkJDkXXS7VoV7XGE=\ngithub.com/influxdata/tdigest v0.0.1 h1:XpFptwYmnEKUqmkcDjrzffswZ3nvNeevbUSLPP/ZzIY=\ngithub.com/influxdata/tdigest v0.0.1/go.mod h1:Z0kXnxzbTC2qrx4NaIzYkE1k66+6oEDQTvL95hQFh5Y=\ngithub.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=\ngithub.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=\ngithub.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=\ngithub.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=\ngithub.com/miekg/dns v1.1.56 h1:5imZaSeoRNvpM9SzWNhEcP9QliKiz20/dA2QabIGVnE=\ngithub.com/miekg/dns v1.1.56/go.mod h1:cRm6Oo2C8TY9ZS/TqsSrseAcncm74lfK5G+ikN2SWWY=\ngithub.com/miekg/dns v1.1.59 h1:C9EXc/UToRwKLhK5wKU/I4QVsBUc8kE6MkHBkeypWZs=\ngithub.com/miekg/dns v1.1.59/go.mod h1:nZpewl5p6IvctfgrckopVx2OlSEHPRO/U4SYkRklrEk=\ngithub.com/miekg/dns v1.1.61 h1:nLxbwF3XxhwVSm8g9Dghm9MHPaUZuqhPiGL+675ZmEs=\ngithub.com/miekg/dns v1.1.61/go.mod h1:mnAarhS3nWaW+NVP2wTkYVIZyHNJ098SJZUki3eykwQ=\ngithub.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=\ngithub.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=\ngithub.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=\ngithub.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=\ngithub.com/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q=\ngithub.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+LjWfWDUmp1mBz9JgUY=\ngithub.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQeLaYJFJBOE=\ngithub.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho=\ngithub.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 h1:v7DLqVdK4VrYkVD5diGdl4sxJurKJEMnODWRJlxV9oM=\ngithub.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU=\ngithub.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=\ngithub.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=\ngithub.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=\ngithub.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=\ngithub.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc=\ngithub.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8=\ngithub.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI=\ngithub.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY=\ngithub.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=\ngithub.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=\ngithub.com/prometheus/prometheus v0.47.2 h1:jWcnuQHz1o1Wu3MZ6nMJDuTI0kU5yJp9pkxh8XEkNvI=\ngithub.com/prometheus/prometheus v0.47.2/go.mod h1:J/bmOSjgH7lFxz2gZhrWEZs2i64vMS+HIuZfmYNhJ/M=\ngithub.com/prometheus/prometheus v0.53.1 h1:B0xu4VuVTKYrIuBMn/4YSUoIPYxs956qsOfcS4rqCuA=\ngithub.com/prometheus/prometheus v0.53.1/go.mod h1:RZDkzs+ShMBDkAPQkLEaLBXpjmDcjhNxU2drUVPgKUU=\ngithub.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 h1:Lt9DzQALzHoDwMBGJ6v8ObDPR0dzr2a6sXTB1Fq7IHs=\ngithub.com/rs/dnscache v0.0.0-20211102005908-e0241e321417/go.mod h1:qe5TWALJ8/a1Lqznoc5BDHpYX/8HU60Hm2AwRmqzxqA=\ngithub.com/rs/dnscache v0.0.0-20230804202142-fc85eb664529 h1:18kd+8ZUlt/ARXhljq+14TwAoKa61q6dX8jtwOf6DH8=\ngithub.com/rs/dnscache v0.0.0-20230804202142-fc85eb664529/go.mod h1:qe5TWALJ8/a1Lqznoc5BDHpYX/8HU60Hm2AwRmqzxqA=\ngithub.com/streadway/quantile v0.0.0-20220407130108-4246515d968d h1:X4+kt6zM/OVO6gbJdAfJR60MGPsqCzbtXNnjoGqdfAs=\ngithub.com/streadway/quantile v0.0.0-20220407130108-4246515d968d/go.mod h1:lbP8tGiBjZ5YWIc2fzuRpTaz0b/53vT6PEs3QuAWzuU=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/testify v1.3.1-0.20190311161405-34c6fa2dc709/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=\ngithub.com/tsenart/go-tsz v0.0.0-20180814235614-0bd30b3df1c3 h1:pcQGQzTwCg//7FgVywqge1sW9Yf8VMsMdG58MI5kd8s=\ngithub.com/tsenart/go-tsz v0.0.0-20180814235614-0bd30b3df1c3/go.mod h1:SWZznP1z5Ki7hDT2ioqiFKEse8K9tU2OUvaRI0NeGQo=\ngithub.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngithub.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 h1:MGwJjxBy0HJshjDNfLsYO8xppfqWlA5ZT9OhtUUhTNw=\ngolang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=\ngolang.org/x/exp v0.0.0-20240119083558-1b970713d09a h1:Q8/wZp0KX97QFTc2ywcOE0YRjZPVIx+MXInMzdvQqcA=\ngolang.org/x/exp v0.0.0-20240119083558-1b970713d09a/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08=\ngolang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=\ngolang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=\ngolang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=\ngolang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=\ngolang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=\ngolang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=\ngolang.org/x/mod v0.19.0 h1:fEdghXQSo20giMthA7cd28ZC+jts4amQ3YMXiP5oMQ8=\ngolang.org/x/mod v0.19.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=\ngolang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=\ngolang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=\ngolang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=\ngolang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=\ngolang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=\ngolang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=\ngolang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=\ngolang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=\ngolang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=\ngolang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=\ngolang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=\ngolang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=\ngolang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=\ngolang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=\ngolang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ=\ngolang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=\ngolang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=\ngolang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=\ngolang.org/x/tools v0.23.0 h1:SGsXPZ+2l4JsgaCKkx+FQ9YZ5XEtA1GZYuoDjenLjvg=\ngolang.org/x/tools v0.23.0/go.mod h1:pnu6ufv6vQkll6szChhK3C3L/ruaIv5eBeztNG8wtsI=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca h1:PupagGYwj8+I4ubCxcmcBRk3VlUWtTg5huQpZR9flmE=\ngonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo=\ngonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw=\ngoogle.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=\ngoogle.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=\ngoogle.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=\ngoogle.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=\ngoogle.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=\ngoogle.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=\ngopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=\ngopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=\npgregory.net/rapid v1.1.0 h1:CMa0sjHSru3puNx+J0MIAuiiEV4N0qj8/cMWGBBCsjw=\npgregory.net/rapid v1.1.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04=\n"
  },
  {
    "path": "internal/cmd/echosrv/main.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"crypto/rand\"\n\t\"crypto/sha256\"\n\t\"encoding/base64\"\n\t\"flag\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httputil\"\n\t\"os\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\nfunc main() {\n\tdump := flag.Bool(\"dump\", false, \"Dump HTTP requests to stdout\")\n\tsleep := flag.Duration(\"sleep\", 0, \"Time to sleep per request\")\n\twork := flag.Int(\"work\", 0, \"Artificial work load iteration count\")\n\n\tflag.Parse()\n\n\tcount := uint64(0)\n\tgo func(last time.Time) {\n\t\tticks := time.Tick(time.Second)\n\t\tfor range ticks {\n\t\t\trate := float64(atomic.SwapUint64(&count, 0)) / time.Since(last).Seconds()\n\t\t\tlast = time.Now()\n\t\t\tlog.Printf(\"Rate: %.3f/s\", rate)\n\t\t}\n\t}(time.Now())\n\n\thttp.ListenAndServe(flag.Arg(0), http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\tdefer atomic.AddUint64(&count, 1)\n\n\t\ttime.Sleep(*sleep)\n\n\t\tif _, err := hash(*work); err != nil {\n\t\t\tlog.Printf(\"Error: %s\", err)\n\t\t\tw.WriteHeader(http.StatusInternalServerError)\n\t\t\treturn\n\t\t}\n\n\t\tbs, _ := httputil.DumpRequest(r, true)\n\n\t\tout := io.Writer(w)\n\t\tif *dump {\n\t\t\tout = io.MultiWriter(w, os.Stdout)\n\t\t}\n\n\t\t_, _ = out.Write(bs)\n\t}))\n}\n\nfunc hash(n int) (string, error) {\n\tif n == 0 {\n\t\treturn \"\", nil\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err := io.CopyN(&buf, rand.Reader, 1024*1024) // 1MB\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tdata := buf.Bytes()\n\tfor i := 0; i < n; i++ {\n\t\thash := sha256.Sum256(data)\n\t\tdata = hash[:]\n\t}\n\n\treturn base64.URLEncoding.EncodeToString(data), nil\n}\n"
  },
  {
    "path": "internal/cmd/jsonschema/main.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"flag\"\n\t\"fmt\"\n\t\"os\"\n\t\"strings\"\n\n\t\"github.com/alecthomas/jsonschema\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nfunc main() {\n\ttypes := map[string]interface{}{\n\t\t\"Target\": &vegeta.Target{},\n\t}\n\n\tvalid := strings.Join(keys(types), \", \")\n\n\tfs := flag.NewFlagSet(\"jsonschema\", flag.ContinueOnError)\n\ttyp := fs.String(\"type\", \"\", fmt.Sprintf(\"Vegeta type to generate a JSON schema for [%s]\", valid))\n\tout := fs.String(\"output\", \"stdout\", \"Output file\")\n\n\tif err := fs.Parse(os.Args[1:]); err != nil {\n\t\tdie(\"%s\", err)\n\t}\n\n\tt, ok := types[*typ]\n\tif !ok {\n\t\tdie(\"invalid type %q not in [%s]\", *typ, valid)\n\t}\n\n\tschema, err := json.MarshalIndent(jsonschema.Reflect(t), \"\", \"  \")\n\tif err != nil {\n\t\tdie(\"%s\", err)\n\t}\n\n\tswitch *out {\n\tcase \"stdout\":\n\t\t_, err = os.Stdout.Write(schema)\n\tdefault:\n\t\terr = os.WriteFile(*out, schema, 0644)\n\t}\n\n\tif err != nil {\n\t\tdie(\"%s\", err)\n\t}\n}\n\nfunc die(s string, args ...interface{}) {\n\tfmt.Fprintf(os.Stderr, s, args...)\n\tos.Exit(1)\n}\n\nfunc keys(types map[string]interface{}) (ks []string) {\n\tfor k := range types {\n\t\tks = append(ks, k)\n\t}\n\treturn ks\n}\n"
  },
  {
    "path": "internal/resolver/resolver.go",
    "content": "package resolver\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"net\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync/atomic\"\n)\n\ntype resolver struct {\n\taddrs  []string\n\tdialer *net.Dialer\n\tidx    uint64\n}\n\n// NewResolver - create a new instance of a dns resolver for plugging\n// into net.DefaultResolver.  Addresses should be a list of\n// ip addrs and optional port numbers, separated by colon.\n// For example: 1.2.3.4:53 and 1.2.3.4 are both valid.  In the absence\n// of a port number, 53 will be used instead.\nfunc NewResolver(addrs []string) (*net.Resolver, error) {\n\tif len(addrs) == 0 {\n\t\treturn nil, errors.New(\"must specify at least resolver address\")\n\t}\n\tcleanAddrs, err := normalizeAddrs(addrs)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &net.Resolver{\n\t\tPreferGo: true,\n\t\tDial:     (&resolver{addrs: cleanAddrs, dialer: &net.Dialer{}}).dial,\n\t}, nil\n}\n\nfunc normalizeAddrs(addrs []string) ([]string, error) {\n\tnormal := make([]string, len(addrs))\n\tfor i, addr := range addrs {\n\n\t\t// if addr has no port, give it 53\n\t\tif !strings.Contains(addr, \":\") {\n\t\t\taddr += \":53\"\n\t\t}\n\n\t\t// validate addr is a valid host:port\n\t\thost, portstr, err := net.SplitHostPort(addr)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// validate valid port.\n\t\t_, err = strconv.ParseUint(portstr, 10, 16)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// make sure host is an ip.\n\t\tip := net.ParseIP(host)\n\t\tif ip == nil {\n\t\t\treturn nil, fmt.Errorf(\"host %s is not an IP address\", host)\n\t\t}\n\n\t\tnormal[i] = addr\n\t}\n\treturn normal, nil\n}\n\n// ignore the third parameter, as this represents the dns server address that\n// we are overriding.\nfunc (r *resolver) dial(ctx context.Context, network, _ string) (net.Conn, error) {\n\treturn r.dialer.DialContext(ctx, network, r.address())\n}\n\nfunc (r *resolver) address() string {\n\treturn r.addrs[atomic.AddUint64(&r.idx, 1)%uint64(len(r.addrs))]\n}\n"
  },
  {
    "path": "internal/resolver/resolver_test.go",
    "content": "package resolver\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n\t\"net/url\"\n\t\"reflect\"\n\t\"strings\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/miekg/dns\"\n)\n\nconst (\n\tfakeDomain = \"acme.notadomain\"\n)\n\nfunc TestResolver(t *testing.T) {\n\tdns.HandleFunc(\".\", func(w dns.ResponseWriter, r *dns.Msg) {\n\t\tm := &dns.Msg{}\n\t\tm.SetReply(r)\n\t\tlocalIP := net.ParseIP(\"127.0.0.1\")\n\t\tdefer func() {\n\t\t\terr := w.WriteMsg(m)\n\t\t\tif err != nil {\n\t\t\t\tt.Logf(\"got error writing dns message: %s\", err)\n\t\t\t}\n\t\t}()\n\t\tif len(r.Question) == 0 {\n\t\t\tm.RecursionAvailable = true\n\t\t\tm.SetRcode(r, dns.RcodeRefused)\n\t\t\treturn\n\t\t}\n\n\t\tq := r.Question[0]\n\n\t\tif q.Name == fakeDomain+\".\" {\n\t\t\tm.Answer = []dns.RR{&dns.A{\n\t\t\t\tHdr: dns.RR_Header{\n\t\t\t\t\tName:   q.Name,\n\t\t\t\t\tRrtype: dns.TypeA,\n\t\t\t\t\tClass:  dns.ClassINET,\n\t\t\t\t\tTtl:    1,\n\t\t\t\t},\n\t\t\t\tA: localIP,\n\t\t\t}}\n\t\t} else {\n\t\t\tm.SetRcode(r, dns.RcodeNameError)\n\t\t}\n\t})\n\tconst payload = \"there is no cloud, just someone else's computer\"\n\n\tdone := make(chan struct{})\n\n\tds := dns.Server{\n\t\tAddr:              \"127.0.0.1:0\",\n\t\tNet:               \"udp\",\n\t\tUDPSize:           dns.MinMsgSize,\n\t\tReadTimeout:       2 * time.Second,\n\t\tWriteTimeout:      2 * time.Second,\n\t\tNotifyStartedFunc: func() { close(done) },\n\t}\n\n\tgo func() {\n\t\terr := ds.ListenAndServe()\n\t\tif err != nil {\n\t\t\tt.Logf(\"got error during dns ListenAndServe: %s\", err)\n\t\t}\n\t}()\n\n\tdefer func() {\n\t\t_ = ds.Shutdown()\n\t}()\n\n\t// wait for notify function to be called, ensuring ds.PacketConn is not nil.\n\t<-done\n\n\tres, err := NewResolver([]string{ds.PacketConn.LocalAddr().String()})\n\tif err != nil {\n\t\tt.Fatalf(\"error from NewResolver: %s\", err)\n\t}\n\tnet.DefaultResolver = res\n\n\tts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\tfmt.Fprintln(w, payload)\n\t}))\n\tdefer ts.Close()\n\n\ttsurl, _ := url.Parse(ts.URL)\n\n\t_, hport, err := net.SplitHostPort(tsurl.Host)\n\tif err != nil {\n\t\tt.Fatalf(\"could not parse port from httptest url %s: %s\", ts.URL, err)\n\t}\n\ttsurl.Host = net.JoinHostPort(fakeDomain, hport)\n\tresp, err := http.Get(tsurl.String())\n\tif err != nil {\n\t\tt.Fatalf(\"failed resolver round trip: %s\", err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to read respose body\")\n\t}\n\tif strings.TrimSpace(string(body)) != payload {\n\t\tt.Errorf(\"body mismatch, got: '%s', expected: '%s'\", body, payload)\n\t}\n}\n\nfunc TestNormalizeAddrs(t *testing.T) {\n\tfor _, tc := range []struct {\n\t\tname string\n\t\tin   []string\n\t\tout  []string\n\t\terr  error\n\t}{\n\t\t{\n\t\t\tname: \"default port 53\",\n\t\t\tin:   []string{\"127.0.0.1\"},\n\t\t\tout:  []string{\"127.0.0.1:53\"},\n\t\t},\n\t\t{\n\t\t\tname: \"invalid host port\",\n\t\t\tin:   []string{\"127.0.0.1.boom:53\"},\n\t\t\terr:  errors.New(\"host 127.0.0.1.boom is not an IP address\"),\n\t\t},\n\t\t{\n\t\t\tname: \"invalid port\",\n\t\t\tin:   []string{\"127.0.0.1:999999999\"},\n\t\t\terr:  errors.New(`strconv.ParseUint: parsing \"999999999\": value out of range`),\n\t\t},\n\t\t{\n\t\t\tname: \"invalid IP\",\n\t\t\tin:   []string{\"127.0.0.500:53\"},\n\t\t\terr:  errors.New(`host 127.0.0.500 is not an IP address`),\n\t\t},\n\t\t{\n\t\t\tname: \"normalized\",\n\t\t\tin:   []string{\"127.0.0.1\", \"8.8.8.8:9000\", \"1.1.1.1\"},\n\t\t\tout:  []string{\"127.0.0.1:53\", \"8.8.8.8:9000\", \"1.1.1.1:53\"},\n\t\t},\n\t} {\n\t\ttc := tc\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tt.Parallel()\n\n\t\t\taddrs, err := normalizeAddrs(tc.in)\n\t\t\tif have, want := addrs, tc.out; !reflect.DeepEqual(have, want) {\n\t\t\t\tt.Errorf(\"have addrs: %v, want: %v\", have, want)\n\t\t\t}\n\n\t\t\tif have, want := fmt.Sprint(err), fmt.Sprint(tc.err); have != want {\n\t\t\t\tt.Errorf(\"have err: %v, want: %v\", have, want)\n\t\t\t}\n\t\t})\n\t}\n\n}\n"
  },
  {
    "path": "lib/attack.go",
    "content": "package vegeta\n\nimport (\n\t\"context\"\n\t\"crypto/tls\"\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n\t\"math/rand\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"strconv\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/rs/dnscache\"\n\t\"golang.org/x/net/http2\"\n)\n\n// Attacker is an attack executor which wraps an http.Client\ntype Attacker struct {\n\tdialer     *net.Dialer\n\tclient     http.Client\n\tstopch     chan struct{}\n\tstopOnce   sync.Once\n\tworkers    uint64\n\tmaxWorkers uint64\n\tmaxBody    int64\n\tredirects  int\n\tseqmu      sync.Mutex\n\tseq        uint64\n\tbegan      time.Time\n\tchunked    bool\n}\n\nconst (\n\t// DefaultRedirects is the default number of times an Attacker follows\n\t// redirects.\n\tDefaultRedirects = 10\n\t// DefaultTimeout is the default amount of time an Attacker waits for a request\n\t// before it times out.\n\tDefaultTimeout = 30 * time.Second\n\t// DefaultConnections is the default amount of max open idle connections per\n\t// target host.\n\tDefaultConnections = 10000\n\t// DefaultMaxConnections is the default amount of connections per target\n\t// host.\n\tDefaultMaxConnections = 0\n\t// DefaultWorkers is the default initial number of workers used to carry an attack.\n\tDefaultWorkers = 10\n\t// DefaultMaxWorkers is the default maximum number of workers used to carry an attack.\n\tDefaultMaxWorkers = math.MaxUint64\n\t// DefaultMaxBody is the default max number of bytes to be read from response bodies.\n\t// Defaults to no limit.\n\tDefaultMaxBody = int64(-1)\n\t// NoFollow is the value when redirects are not followed but marked successful\n\tNoFollow = -1\n)\n\nvar (\n\t// DefaultLocalAddr is the default local IP address an Attacker uses.\n\tDefaultLocalAddr = net.IPAddr{IP: net.IPv4zero}\n\t// DefaultTLSConfig is the default tls.Config an Attacker uses.\n\tDefaultTLSConfig = &tls.Config{InsecureSkipVerify: false}\n)\n\n// NewAttacker returns a new Attacker with default options which are overridden\n// by the optionally provided opts.\nfunc NewAttacker(opts ...func(*Attacker)) *Attacker {\n\ta := &Attacker{\n\t\tstopch:     make(chan struct{}),\n\t\tstopOnce:   sync.Once{},\n\t\tworkers:    DefaultWorkers,\n\t\tmaxWorkers: DefaultMaxWorkers,\n\t\tmaxBody:    DefaultMaxBody,\n\t}\n\n\ta.dialer = &net.Dialer{\n\t\tLocalAddr: &net.TCPAddr{IP: DefaultLocalAddr.IP, Zone: DefaultLocalAddr.Zone},\n\t\tKeepAlive: 30 * time.Second,\n\t}\n\n\ta.client = http.Client{\n\t\tTimeout: DefaultTimeout,\n\t\tTransport: &http.Transport{\n\t\t\tProxy:               http.ProxyFromEnvironment,\n\t\t\tDialContext:         a.dialer.DialContext,\n\t\t\tTLSClientConfig:     DefaultTLSConfig,\n\t\t\tMaxIdleConnsPerHost: DefaultConnections,\n\t\t\tMaxConnsPerHost:     DefaultMaxConnections,\n\t\t},\n\t}\n\n\tfor _, opt := range opts {\n\t\topt(a)\n\t}\n\n\treturn a\n}\n\n// Workers returns a functional option which sets the initial number of workers\n// an Attacker uses to hit its targets. More workers may be spawned dynamically\n// to sustain the requested rate in the face of slow responses and errors.\nfunc Workers(n uint64) func(*Attacker) {\n\treturn func(a *Attacker) { a.workers = n }\n}\n\n// MaxWorkers returns a functional option which sets the maximum number of workers\n// an Attacker can use to hit its targets.\nfunc MaxWorkers(n uint64) func(*Attacker) {\n\treturn func(a *Attacker) { a.maxWorkers = n }\n}\n\n// Connections returns a functional option which sets the number of maximum idle\n// open connections per target host.\nfunc Connections(n int) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ttr.MaxIdleConnsPerHost = n\n\t}\n}\n\n// MaxConnections returns a functional option which sets the number of maximum\n// connections per target host.\nfunc MaxConnections(n int) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ttr.MaxConnsPerHost = n\n\t}\n}\n\n// ChunkedBody returns a functional option which makes the attacker send the\n// body of each request with the chunked transfer encoding.\nfunc ChunkedBody(b bool) func(*Attacker) {\n\treturn func(a *Attacker) { a.chunked = b }\n}\n\n// Redirects returns a functional option which sets the maximum\n// number of redirects an Attacker will follow.\nfunc Redirects(n int) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ta.redirects = n\n\t\ta.client.CheckRedirect = func(_ *http.Request, via []*http.Request) error {\n\t\t\tswitch {\n\t\t\tcase n == NoFollow:\n\t\t\t\treturn http.ErrUseLastResponse\n\t\t\tcase n < len(via):\n\t\t\t\treturn fmt.Errorf(\"stopped after %d redirects\", n)\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Proxy returns a functional option which sets the `Proxy` field on\n// the http.Client's Transport\nfunc Proxy(proxy func(*http.Request) (*url.URL, error)) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ttr.Proxy = proxy\n\t}\n}\n\n// Timeout returns a functional option which sets the maximum amount of time\n// an Attacker will wait for a request to be responded to and completely read.\nfunc Timeout(d time.Duration) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ta.client.Timeout = d\n\t}\n}\n\n// LocalAddr returns a functional option which sets the local address\n// an Attacker will use with its requests.\nfunc LocalAddr(addr net.IPAddr) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ta.dialer.LocalAddr = &net.TCPAddr{IP: addr.IP, Zone: addr.Zone}\n\t\ttr.DialContext = a.dialer.DialContext\n\t}\n}\n\n// KeepAlive returns a functional option which toggles KeepAlive\n// connections on the dialer and transport.\nfunc KeepAlive(keepalive bool) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ttr.DisableKeepAlives = !keepalive\n\t\tif !keepalive {\n\t\t\ta.dialer.KeepAlive = 0\n\t\t\ttr.DialContext = a.dialer.DialContext\n\t\t}\n\t}\n}\n\n// TLSConfig returns a functional option which sets the *tls.Config for a\n// Attacker to use with its requests.\nfunc TLSConfig(c *tls.Config) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\ttr := a.client.Transport.(*http.Transport)\n\t\ttr.TLSClientConfig = c\n\t}\n}\n\n// HTTP2 returns a functional option which enables or disables HTTP/2 support\n// on requests performed by an Attacker.\nfunc HTTP2(enabled bool) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif tr := a.client.Transport.(*http.Transport); enabled {\n\t\t\thttp2.ConfigureTransport(tr)\n\t\t} else {\n\t\t\ttr.ForceAttemptHTTP2 = false\n\t\t\ttr.TLSNextProto = map[string]func(string, *tls.Conn) http.RoundTripper{}\n\t\t}\n\t}\n}\n\n// H2C returns a functional option which enables H2C support on requests\n// performed by an Attacker\nfunc H2C(enabled bool) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif tr := a.client.Transport.(*http.Transport); enabled {\n\t\t\ta.client.Transport = &http2.Transport{\n\t\t\t\tAllowHTTP: true,\n\t\t\t\tDialTLSContext: func(ctx context.Context, network, addr string, cfg *tls.Config) (net.Conn, error) {\n\t\t\t\t\treturn tr.DialContext(ctx, network, addr)\n\t\t\t\t},\n\t\t\t}\n\t\t}\n\t}\n}\n\n// MaxBody returns a functional option which limits the max number of bytes\n// read from response bodies. Set to -1 to disable any limits.\nfunc MaxBody(n int64) func(*Attacker) {\n\treturn func(a *Attacker) { a.maxBody = n }\n}\n\n// UnixSocket changes the dialer for the attacker to use the specified unix socket file\nfunc UnixSocket(socket string) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif tr, ok := a.client.Transport.(*http.Transport); socket != \"\" && ok {\n\t\t\ttr.DialContext = func(_ context.Context, _, _ string) (net.Conn, error) {\n\t\t\t\treturn net.Dial(\"unix\", socket)\n\t\t\t}\n\t\t}\n\t}\n}\n\n// SessionTickets returns a functional option which configures usage of session\n// tickets for TLS session resumption.\nfunc SessionTickets(enabled bool) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif enabled {\n\t\t\tcf := a.client.Transport.(*http.Transport).TLSClientConfig\n\t\t\tcf.SessionTicketsDisabled = false\n\t\t\tcf.ClientSessionCache = tls.NewLRUClientSessionCache(0)\n\t\t}\n\t}\n}\n\n// Client returns a functional option that allows you to bring your own http.Client\nfunc Client(c *http.Client) func(*Attacker) {\n\treturn func(a *Attacker) { a.client = *c }\n}\n\n// ProxyHeader returns a functional option that allows you to add your own\n// Proxy CONNECT headers\nfunc ProxyHeader(h http.Header) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif tr, ok := a.client.Transport.(*http.Transport); ok {\n\t\t\ttr.ProxyConnectHeader = h\n\t\t}\n\t}\n}\n\n// ConnectTo returns a functional option which makes the attacker use the\n// passed in map to translate target addr:port pairs. When used with DNSCaching,\n// it must be used after it.\nfunc ConnectTo(addrMap map[string][]string) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif len(addrMap) == 0 {\n\t\t\treturn\n\t\t}\n\n\t\ttr, ok := a.client.Transport.(*http.Transport)\n\t\tif !ok {\n\t\t\treturn\n\t\t}\n\n\t\tdial := tr.DialContext\n\t\tif dial == nil {\n\t\t\tdial = a.dialer.DialContext\n\t\t}\n\n\t\ttype roundRobin struct {\n\t\t\taddrs []string\n\t\t\tn     int\n\t\t}\n\n\t\tconnectTo := make(map[string]*roundRobin, len(addrMap))\n\t\tfor k, v := range addrMap {\n\t\t\tconnectTo[k] = &roundRobin{addrs: v}\n\t\t}\n\n\t\ttr.DialContext = func(ctx context.Context, network, addr string) (net.Conn, error) {\n\t\t\tif cm, ok := connectTo[addr]; ok {\n\t\t\t\tcm.n = (cm.n + 1) % len(cm.addrs)\n\t\t\t\taddr = cm.addrs[cm.n]\n\t\t\t}\n\t\t\treturn dial(ctx, network, addr)\n\t\t}\n\t}\n}\n\n// DNSCaching returns a functional option that enables DNS caching for\n// the given ttl. When ttl is zero cached entries will never expire.\n// When ttl is non-zero, this will start a refresh go-routine that updates\n// the cache every ttl interval. This go-routine will be stopped when the\n// attack is stopped.\n// When the ttl is negative, no caching will be performed.\nfunc DNSCaching(ttl time.Duration) func(*Attacker) {\n\treturn func(a *Attacker) {\n\t\tif ttl < 0 {\n\t\t\treturn\n\t\t}\n\n\t\tif tr, ok := a.client.Transport.(*http.Transport); ok {\n\t\t\tdial := tr.DialContext\n\t\t\tif dial == nil {\n\t\t\t\tdial = a.dialer.DialContext\n\t\t\t}\n\n\t\t\tresolver := &dnscache.Resolver{}\n\n\t\t\tif ttl != 0 {\n\t\t\t\tgo func() {\n\t\t\t\t\trefresh := time.NewTicker(ttl)\n\t\t\t\t\tdefer refresh.Stop()\n\t\t\t\t\tfor {\n\t\t\t\t\t\tselect {\n\t\t\t\t\t\tcase <-refresh.C:\n\t\t\t\t\t\t\tresolver.Refresh(true)\n\t\t\t\t\t\tcase <-a.stopch:\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}()\n\t\t\t}\n\n\t\t\trng := rand.New(rand.NewSource(time.Now().UnixNano()))\n\n\t\t\ttr.DialContext = func(ctx context.Context, network, addr string) (conn net.Conn, err error) {\n\t\t\t\thost, port, err := net.SplitHostPort(addr)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tips, err := resolver.LookupHost(ctx, host)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tif len(ips) == 0 {\n\t\t\t\t\treturn nil, &net.DNSError{Err: \"no such host\", Name: addr}\n\t\t\t\t}\n\n\t\t\t\t// Pick a random IP from each IP family and dial each concurrently.\n\t\t\t\t// The first that succeeds wins, the other gets canceled.\n\n\t\t\t\trng.Shuffle(len(ips), func(i, j int) { ips[i], ips[j] = ips[j], ips[i] })\n\n\t\t\t\tips = firstOfEachIPFamily(ips)\n\n\t\t\t\ttype result struct {\n\t\t\t\t\tconn net.Conn\n\t\t\t\t\terr  error\n\t\t\t\t}\n\n\t\t\t\tch := make(chan result, len(ips))\n\t\t\t\tctx, cancel := context.WithCancel(ctx)\n\t\t\t\tdefer cancel()\n\n\t\t\t\tfor _, ip := range ips {\n\t\t\t\t\tgo func(ip string) {\n\t\t\t\t\t\tconn, err := dial(ctx, network, net.JoinHostPort(ip, port))\n\t\t\t\t\t\tif err == nil {\n\t\t\t\t\t\t\tcancel()\n\t\t\t\t\t\t}\n\t\t\t\t\t\tch <- result{conn, err}\n\t\t\t\t\t}(ip)\n\t\t\t\t}\n\n\t\t\t\tfor i := 0; i < cap(ch); i++ {\n\t\t\t\t\tif r := <-ch; conn == nil {\n\t\t\t\t\t\tconn, err = r.conn, r.err\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn conn, err\n\t\t\t}\n\t\t}\n\t}\n}\n\n// firstOfEachIPFamily returns the first IP of each IP family in the input slice.\nfunc firstOfEachIPFamily(ips []string) []string {\n\tif len(ips) == 0 {\n\t\treturn ips\n\t}\n\n\tvar (\n\t\tlastV4 bool\n\t\teach   = ips[:0]\n\t)\n\n\tfor i := 0; i < len(ips) && len(each) < 2; i++ {\n\t\tip := net.ParseIP(ips[i])\n\t\tif ip == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tisV4 := ip.To4() != nil\n\t\tif len(each) == 0 || isV4 != lastV4 {\n\t\t\teach = append(each, ips[i])\n\t\t\tlastV4 = isV4\n\t\t}\n\t}\n\n\treturn each\n}\n\ntype attack struct {\n\tname  string\n\tbegan time.Time\n\n\tseqmu sync.Mutex\n\tseq   uint64\n}\n\n// Attack reads its Targets from the passed Targeter and attacks them at\n// the rate specified by the Pacer. When the duration is zero the attack\n// runs until Stop is called. Results are sent to the returned channel as soon\n// as they arrive and will have their Attack field set to the given name.\nfunc (a *Attacker) Attack(tr Targeter, p Pacer, du time.Duration, name string) <-chan *Result {\n\tvar wg sync.WaitGroup\n\n\tworkers := a.workers\n\tif workers > a.maxWorkers {\n\t\tworkers = a.maxWorkers\n\t}\n\n\tatk := &attack{\n\t\tname:  name,\n\t\tbegan: time.Now(),\n\t}\n\n\tresults := make(chan *Result)\n\tticks := make(chan struct{})\n\tfor i := uint64(0); i < workers; i++ {\n\t\twg.Add(1)\n\t\tgo a.attack(tr, atk, &wg, ticks, results)\n\t}\n\n\tgo func() {\n\t\tdefer func() {\n\t\t\tclose(ticks)\n\t\t\twg.Wait()\n\t\t\tclose(results)\n\t\t\ta.Stop()\n\t\t}()\n\n\t\tcount := uint64(0)\n\t\tfor {\n\t\t\telapsed := time.Since(atk.began)\n\t\t\tif du > 0 && elapsed > du {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\twait, stop := p.Pace(elapsed, count)\n\t\t\tif stop {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\ttime.Sleep(wait)\n\n\t\t\tif workers < a.maxWorkers {\n\t\t\t\tselect {\n\t\t\t\tcase ticks <- struct{}{}:\n\t\t\t\t\tcount++\n\t\t\t\t\tcontinue\n\t\t\t\tcase <-a.stopch:\n\t\t\t\t\treturn\n\t\t\t\tdefault:\n\t\t\t\t\t// all workers are blocked. start one more and try again\n\t\t\t\t\tworkers++\n\t\t\t\t\twg.Add(1)\n\t\t\t\t\tgo a.attack(tr, atk, &wg, ticks, results)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tselect {\n\t\t\tcase ticks <- struct{}{}:\n\t\t\t\tcount++\n\t\t\tcase <-a.stopch:\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\n\treturn results\n}\n\n// Stop stops the current attack. The return value indicates whether this call\n// has signalled the attack to stop (`true` for the first call) or whether it\n// was a noop because it has been previously signalled to stop (`false` for any\n// subsequent calls).\nfunc (a *Attacker) Stop() bool {\n\tselect {\n\tcase <-a.stopch:\n\t\treturn false\n\tdefault:\n\t\ta.stopOnce.Do(func() { close(a.stopch) })\n\t\treturn true\n\t}\n}\n\nfunc (a *Attacker) attack(tr Targeter, atk *attack, workers *sync.WaitGroup, ticks <-chan struct{}, results chan<- *Result) {\n\tdefer workers.Done()\n\tfor range ticks {\n\t\tresults <- a.hit(tr, atk)\n\t}\n}\n\nfunc (a *Attacker) hit(tr Targeter, atk *attack) *Result {\n\tvar (\n\t\tres = Result{Attack: atk.name}\n\t\ttgt Target\n\t\terr error\n\t)\n\n\t//\n\t// Subtleness ahead! We need to compute the result timestamp in\n\t// the same critical section that protects the increment of the sequence\n\t// number because we want the same total ordering of timestamps and sequence\n\t// numbers. That is, we wouldn't want two results A and B where A.seq > B.seq\n\t// but A.timestamp < B.timestamp.\n\t//\n\t// Additionally, we calculate the result timestamp based on the same beginning\n\t// timestamp using the Add method, which will use monotonic time calculations.\n\t//\n\tatk.seqmu.Lock()\n\tres.Timestamp = atk.began.Add(time.Since(atk.began))\n\tres.Seq = atk.seq\n\tatk.seq++\n\tatk.seqmu.Unlock()\n\n\tdefer func() {\n\t\tres.Latency = time.Since(res.Timestamp)\n\t\tif err != nil {\n\t\t\tres.Error = err.Error()\n\t\t}\n\t}()\n\n\tif err = tr(&tgt); err != nil {\n\t\ta.Stop()\n\t\treturn &res\n\t}\n\n\tres.Method = tgt.Method\n\tres.URL = tgt.URL\n\n\treq, err := tgt.Request()\n\tif err != nil {\n\t\treturn &res\n\t}\n\n\tif atk.name != \"\" {\n\t\treq.Header.Set(\"X-Vegeta-Attack\", atk.name)\n\t}\n\n\treq.Header.Set(\"X-Vegeta-Seq\", strconv.FormatUint(res.Seq, 10))\n\n\tif a.chunked {\n\t\treq.TransferEncoding = append(req.TransferEncoding, \"chunked\")\n\t}\n\n\tr, err := a.client.Do(req)\n\tif err != nil {\n\t\treturn &res\n\t}\n\tdefer r.Body.Close()\n\n\tbody := io.Reader(r.Body)\n\tif a.maxBody >= 0 {\n\t\tbody = io.LimitReader(r.Body, a.maxBody)\n\t}\n\n\tif res.Body, err = io.ReadAll(body); err != nil {\n\t\treturn &res\n\t} else if _, err = io.Copy(io.Discard, r.Body); err != nil {\n\t\treturn &res\n\t}\n\n\tres.BytesIn = uint64(len(res.Body))\n\n\tif req.ContentLength != -1 {\n\t\tres.BytesOut = uint64(req.ContentLength)\n\t}\n\n\tif res.Code = uint16(r.StatusCode); res.Code < 200 || res.Code >= 400 {\n\t\tres.Error = r.Status\n\t}\n\n\tres.Headers = r.Header\n\n\treturn &res\n}\n"
  },
  {
    "path": "lib/attack_fuzz.go",
    "content": "//go:build gofuzz\n// +build gofuzz\n\npackage vegeta\n\nimport (\n\t\"encoding/binary\"\n\t\"fmt\"\n\t\"net\"\n\t\"net/http\"\n\t\"os\"\n\t\"time\"\n)\n\n// FuzzAttackerTCP fuzzes binary responses to attacker.\nfunc FuzzAttackerTCP(fuzz []byte) int {\n\t// Ignore empty fuzz\n\tif len(fuzz) == 0 {\n\t\treturn -1\n\t}\n\n\t// Start server\n\tdirectory, err := os.MkdirTemp(\"/tmp\", \"fuzz\")\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tsocket := fmt.Sprintf(\"%s/attacker.sock\", directory)\n\tlistener, err := net.Listen(\"unix\", socket)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tgo func() {\n\t\tconnection, err := listener.Accept()\n\t\tif err != nil {\n\t\t\tpanic(err.Error())\n\t\t}\n\t\t_, err = connection.Write(fuzz)\n\t\tif err != nil {\n\t\t\tpanic(err.Error())\n\t\t}\n\t\terr = connection.Close()\n\t\tif err != nil {\n\t\t\tpanic(err.Error())\n\t\t}\n\t}()\n\tdefer listener.Close()\n\tdefer os.RemoveAll(directory)\n\n\t// Setup targeter\n\ttargeter := Targeter(func(target *Target) error {\n\t\ttarget.Method = \"GET\"\n\t\ttarget.URL = \"http://vegeta.test\"\n\t\treturn nil\n\t})\n\n\t// Deliver a single hit\n\tattacker := NewAttacker(\n\t\tUnixSocket(socket),\n\t\tWorkers(1),\n\t\tMaxWorkers(1),\n\t\tTimeout(time.Second),\n\t\tKeepAlive(false),\n\t)\n\tresult := attacker.hit(targeter, \"fuzz\")\n\tif result.Error != \"\" {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\n// FuzzAttackerHTTP fuzzes valid HTTP responses to attacker.\nfunc FuzzAttackerHTTP(fuzz []byte) int {\n\t// Decode response\n\tcode, headers, body, ok := decodeFuzzResponse(fuzz)\n\tif !ok {\n\t\treturn -1\n\t}\n\n\t// Start server\n\tdirectory, err := os.MkdirTemp(\"/tmp\", \"fuzz\")\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tsocket := fmt.Sprintf(\"%s/attacker.sock\", directory)\n\tlistener, err := net.Listen(\"unix\", socket)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\thandler := func(response http.ResponseWriter, request *http.Request) {\n\t\tfor name, values := range headers {\n\t\t\tfor _, value := range values {\n\t\t\t\tresponse.Header().Add(name, value)\n\t\t\t}\n\t\t}\n\t\tresponse.WriteHeader(int(code))\n\t\t_, err := response.Write(body)\n\t\tif err != nil {\n\t\t\tpanic(err.Error())\n\t\t}\n\t}\n\tserver := http.Server{\n\t\tHandler: http.HandlerFunc(handler),\n\t}\n\tdefer server.Close()\n\tdefer listener.Close()\n\tdefer os.RemoveAll(directory)\n\tgo server.Serve(listener)\n\n\t// Setup targeter\n\ttargeter := Targeter(func(target *Target) error {\n\t\ttarget.Method = \"GET\"\n\t\ttarget.URL = \"http://vegeta.test\"\n\t\treturn nil\n\t})\n\n\t// Deliver a single hit\n\tattacker := NewAttacker(\n\t\tUnixSocket(socket),\n\t\tWorkers(1),\n\t\tMaxWorkers(1),\n\t\tTimeout(time.Second),\n\t\tKeepAlive(false),\n\t)\n\tresult := attacker.hit(targeter, \"fuzz\")\n\tif result.Error != \"\" {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\nfunc decodeFuzzResponse(fuzz []byte) (\n\tcode int,\n\theaders map[string][]string,\n\tbody []byte,\n\tok bool,\n) {\n\tif len(fuzz) < 2 {\n\t\treturn\n\t}\n\theaders = make(map[string][]string)\n\tbody = []byte{}\n\tcode = int(binary.LittleEndian.Uint16(fuzz[0:2]))\n\tif len(fuzz) == 2 {\n\t\tok = true\n\t\treturn\n\t}\n\tfuzz, ok = decodeFuzzHeaders(fuzz[2:], headers)\n\tif !ok {\n\t\treturn\n\t}\n\tbody = fuzz\n\tok = true\n\treturn\n}\n"
  },
  {
    "path": "lib/attack_test.go",
    "content": "package vegeta\n\nimport (\n\t\"bytes\"\n\t\"crypto/tls\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n\t\"net/url\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc TestAttackRate(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}),\n\t)\n\tdefer server.Close()\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\trate := Rate{Freq: 100, Per: time.Second}\n\tatk := NewAttacker()\n\tvar hits uint64\n\tfor range atk.Attack(tr, rate, 1*time.Second, \"\") {\n\t\thits++\n\t}\n\tif got, want := hits, uint64(rate.Freq); got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestAttackDuration(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}),\n\t)\n\tdefer server.Close()\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\tatk := NewAttacker()\n\trate := Rate{Freq: 100, Per: time.Second}\n\n\tvar m Metrics\n\tfor res := range atk.Attack(tr, rate, rate.Per, \"\") {\n\t\tm.Add(res)\n\t}\n\tm.Close()\n\n\tif got, want := m.Requests, uint64(rate.Freq); got != want {\n\t\tt.Errorf(\"got %v hits, want: %v\", got, want)\n\t} else if got, want := m.Duration.Round(time.Second), time.Second; got != want {\n\t\tt.Errorf(\"got duration %s, want %s\", got, want)\n\t}\n}\n\nfunc TestTLSConfig(t *testing.T) {\n\tatk := NewAttacker()\n\tgot := atk.client.Transport.(*http.Transport).TLSClientConfig\n\tif want := (&tls.Config{InsecureSkipVerify: false}); !reflect.DeepEqual(got, want) {\n\t\tt.Fatalf(\"got: %+v, want: %+v\", got, want)\n\t}\n}\n\nfunc TestRedirects(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\thttp.Redirect(w, r, \"/redirect\", 302)\n\t\t}),\n\t)\n\tdefer server.Close()\n\tredirects := 2\n\tatk := NewAttacker(Redirects(redirects))\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\twant := fmt.Sprintf(\"stopped after %d redirects\", redirects)\n\tif got := res.Error; !strings.HasSuffix(got, want) {\n\t\tt.Fatalf(\"want: '%v' in '%v'\", want, got)\n\t}\n}\n\nfunc TestNoFollow(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\thttp.Redirect(w, r, \"/redirect-here\", 302)\n\t\t}),\n\t)\n\tdefer server.Close()\n\tatk := NewAttacker(Redirects(NoFollow))\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif res.Error != \"\" {\n\t\tt.Fatalf(\"got err: %v\", res.Error)\n\t}\n\tif res.Code != 302 {\n\t\tt.Fatalf(\"res.Code => %d, want %d\", res.Code, 302)\n\t}\n}\n\nfunc TestTimeout(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\t<-time.After(20 * time.Millisecond)\n\t\t}),\n\t)\n\tdefer server.Close()\n\tatk := NewAttacker(Timeout(10 * time.Millisecond))\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\n\twant := \"Client.Timeout exceeded while awaiting headers\"\n\tif got := res.Error; !strings.Contains(got, want) {\n\t\tt.Fatalf(\"want: '%v' in '%v'\", want, got)\n\t}\n\n\tif res.Latency == 0 {\n\t\tt.Fatal(\"Latency wasn't captured with a timed-out result\")\n\t}\n}\n\nfunc TestLocalAddr(t *testing.T) {\n\tt.Parallel()\n\taddr, err := net.ResolveIPAddr(\"ip\", \"127.0.0.1\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tif got, _, err := net.SplitHostPort(r.RemoteAddr); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t} else if want := addr.String(); got != want {\n\t\t\t\tt.Fatalf(\"wrong source address. got %v, want: %v\", got, want)\n\t\t\t}\n\t\t}),\n\t)\n\tdefer server.Close()\n\tatk := NewAttacker(LocalAddr(*addr))\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\tatk.hit(tr, &attack{name: \"\", began: time.Now()})\n\n}\n\nfunc TestKeepAlive(t *testing.T) {\n\tt.Parallel()\n\tatk := NewAttacker(KeepAlive(false))\n\tif got, want := atk.dialer.KeepAlive, time.Duration(0); got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n\tgot := atk.client.Transport.(*http.Transport).DisableKeepAlives\n\tif want := true; got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\n// This test cannot be run in parallel with TestTLSConfig() because ClientSessionCache\n// is designed to be called concurrently from different goroutines.\nfunc TestSessionTickets(t *testing.T) {\n\tatk := NewAttacker(SessionTickets(true))\n\tcf := atk.client.Transport.(*http.Transport).TLSClientConfig\n\tgot, want := cf.SessionTicketsDisabled, false\n\tif got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n\tif cf.ClientSessionCache == nil {\n\t\tt.Fatalf(\"ClientSessionCache is nil\")\n\t}\n}\n\nfunc TestConnections(t *testing.T) {\n\tt.Parallel()\n\tatk := NewAttacker(Connections(23))\n\tgot := atk.client.Transport.(*http.Transport).MaxIdleConnsPerHost\n\tif want := 23; got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestStatusCodeErrors(t *testing.T) {\n\tt.Parallel()\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.WriteHeader(http.StatusBadRequest)\n\t\t}),\n\t)\n\tdefer server.Close()\n\tatk := NewAttacker()\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif got, want := res.Error, \"400 Bad Request\"; got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestBadTargeterError(t *testing.T) {\n\tt.Parallel()\n\tatk := NewAttacker()\n\ttr := func(*Target) error { return io.EOF }\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif got, want := res.Error, io.EOF.Error(); got != want {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestResponseBodyCapture(t *testing.T) {\n\tt.Parallel()\n\n\twant := []byte(\"VEGETA\")\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write(want)\n\t\t}),\n\t)\n\tdefer server.Close()\n\tatk := NewAttacker()\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif got := res.Body; !bytes.Equal(got, want) {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestProxyOption(t *testing.T) {\n\tt.Parallel()\n\n\tbody := []byte(\"PROXIED!\")\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write(body)\n\t\t}),\n\t)\n\tdefer server.Close()\n\n\tproxyURL, err := url.Parse(server.URL)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tatk := NewAttacker(Proxy(func(r *http.Request) (*url.URL, error) {\n\t\treturn proxyURL, nil\n\t}))\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: \"http://127.0.0.2\"})\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif got, want := res.Error, \"\"; got != want {\n\t\tt.Errorf(\"got error: %q, want %q\", got, want)\n\t}\n\n\tif got, want := res.Body, body; !bytes.Equal(got, want) {\n\t\tt.Errorf(\"got body: %q, want: %q\", got, want)\n\t}\n}\n\nfunc TestMaxBody(t *testing.T) {\n\tt.Parallel()\n\n\tbody := []byte(\"VEGETA\")\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write(body)\n\t\t}),\n\t)\n\tdefer server.Close()\n\n\tfor i := DefaultMaxBody; i < int64(len(body)); i++ {\n\t\tmaxBody := i\n\t\tt.Run(fmt.Sprint(maxBody), func(t *testing.T) {\n\t\t\tatk := NewAttacker(MaxBody(maxBody))\n\t\t\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\t\t\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\n\t\t\twant := body\n\t\t\tif maxBody >= 0 {\n\t\t\t\twant = want[:maxBody]\n\t\t\t}\n\n\t\t\tif got := res.Body; !bytes.Equal(got, want) {\n\t\t\t\tt.Fatalf(\"got: %s, want: %s\", got, want)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestUnixSocket(t *testing.T) {\n\tt.Parallel()\n\tbody := []byte(\"IT'S A UNIX SYSTEM, I KNOW THIS\")\n\n\tsocketDir, err := os.MkdirTemp(\"\", \"vegata\")\n\tif err != nil {\n\t\tt.Fatal(\"Failed to create socket dir\", err)\n\t}\n\tdefer os.RemoveAll(socketDir)\n\tsocketFile := filepath.Join(socketDir, \"test.sock\")\n\n\tunixListener, err := net.Listen(\"unix\", socketFile)\n\n\tif err != nil {\n\t\tt.Fatal(\"Failed to listen on unix socket\", err)\n\t}\n\n\tserver := http.Server{\n\t\tHandler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write(body)\n\t\t}),\n\t}\n\tdefer server.Close()\n\n\tgo server.Serve(unixListener)\n\n\tstart := time.Now()\n\tfor {\n\t\tif time.Since(start) > 1*time.Second {\n\t\t\tt.Fatal(\"Server didn't listen on unix socket in time\")\n\t\t}\n\t\t_, err := os.Stat(socketFile)\n\t\tif err == nil {\n\t\t\tbreak\n\t\t} else if os.IsNotExist(err) {\n\t\t\ttime.Sleep(10 * time.Millisecond)\n\t\t} else {\n\t\t\tt.Fatal(\"unexpected error from unix socket\", err)\n\t\t}\n\t}\n\n\tatk := NewAttacker(UnixSocket(socketFile))\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: \"http://anyserver/\"})\n\tres := atk.hit(tr, &attack{name: \"\", began: time.Now()})\n\tif !bytes.Equal(res.Body, body) {\n\t\tt.Fatalf(\"got: %s, want: %s\", string(res.Body), string(body))\n\t}\n}\n\nfunc TestClient(t *testing.T) {\n\tt.Parallel()\n\n\tdialer := &net.Dialer{\n\t\tLocalAddr: &net.TCPAddr{IP: DefaultLocalAddr.IP, Zone: DefaultLocalAddr.Zone},\n\t\tKeepAlive: 30 * time.Second,\n\t}\n\n\tclient := &http.Client{\n\t\tTimeout: 1 * time.Nanosecond,\n\t\tTransport: &http.Transport{\n\t\t\tProxy:               http.ProxyFromEnvironment,\n\t\t\tDialContext:         dialer.DialContext,\n\t\t\tTLSClientConfig:     DefaultTLSConfig,\n\t\t\tMaxIdleConnsPerHost: DefaultConnections,\n\t\t},\n\t}\n\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tselect {}\n\t\t}),\n\t)\n\tdefer server.Close()\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\n\tatk := NewAttacker(Client(client))\n\tresp := atk.hit(tr, &attack{name: \"TEST\", began: time.Now()})\n\tif !strings.Contains(resp.Error, \"Client.Timeout exceeded while awaiting headers\") {\n\t\tt.Errorf(\"Expected timeout error\")\n\t}\n}\n\nfunc TestVegetaHeaders(t *testing.T) {\n\tt.Parallel()\n\n\tserver := httptest.NewServer(\n\t\thttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\t_ = json.NewEncoder(w).Encode(r.Header)\n\t\t}),\n\t)\n\n\tdefer server.Close()\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: server.URL})\n\ta := NewAttacker()\n\tatk := &attack{name: \"ig-bang\", began: time.Now()}\n\tfor seq := 0; seq < 5; seq++ {\n\t\tres := a.hit(tr, atk)\n\n\t\tvar hdr http.Header\n\t\tif err := json.Unmarshal(res.Body, &hdr); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\n\t\tif have, want := hdr.Get(\"X-Vegeta-Attack\"), atk.name; have != want {\n\t\t\tt.Errorf(\"X-Vegeta-Attack: have %q, want %q\", have, want)\n\t\t}\n\n\t\tif have, want := hdr.Get(\"X-Vegeta-Seq\"), strconv.Itoa(seq); have != want {\n\t\t\tt.Errorf(\"X-Vegeta-Seq: have %q, want %q\", have, want)\n\t\t}\n\t}\n}\n\n// https://github.com/tsenart/vegeta/issues/649\nfunc TestDNSCaching_Issue649(t *testing.T) {\n\tdefer func() {\n\t\tif err := recover(); err != nil {\n\t\t\tt.Fatalf(\"panic: %v\", err)\n\t\t}\n\t}()\n\n\ttr := NewStaticTargeter(Target{Method: \"GET\", URL: \"https://[2a00:1450:4005:802::200e]\"})\n\tatk := NewAttacker(DNSCaching(0))\n\t_ = atk.hit(tr, &attack{name: \"TEST\", began: time.Now()})\n}\n\nfunc TestFirstOfEachIPFamily(t *testing.T) {\n\ttests := []struct {\n\t\tname  string\n\t\tinput []string\n\t\twant  []string\n\t}{\n\t\t{\n\t\t\tname:  \"empty list\",\n\t\t\tinput: []string{},\n\t\t\twant:  []string{},\n\t\t},\n\t\t{\n\t\t\tname:  \"single IPv4\",\n\t\t\tinput: []string{\"192.168.1.1\"},\n\t\t\twant:  []string{\"192.168.1.1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"single IPv6\",\n\t\t\tinput: []string{\"fe80::1\"},\n\t\t\twant:  []string{\"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"multiple IPv6\",\n\t\t\tinput: []string{\"fe80::1\", \"fe80::2\"},\n\t\t\twant:  []string{\"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"one IPv4 and one IPv6\",\n\t\t\tinput: []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t\twant:  []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"one IPv6 and one IPv4\",\n\t\t\tinput: []string{\"fe80::1\", \"192.168.1.1\"},\n\t\t\twant:  []string{\"fe80::1\", \"192.168.1.1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"multiple IPs with alternating versions\",\n\t\t\tinput: []string{\"192.168.1.1\", \"fe80::1\", \"192.168.1.2\", \"fe80::2\"},\n\t\t\twant:  []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"multiple IPs with same versions\",\n\t\t\tinput: []string{\"192.168.1.1\", \"192.168.1.2\", \"192.168.1.3\"},\n\t\t\twant:  []string{\"192.168.1.1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"multiple IPs with non-alternating versions\",\n\t\t\tinput: []string{\"192.168.1.1\", \"fe80::1\", \"192.168.1.2\", \"192.168.1.3\", \"fe80::2\"},\n\t\t\twant:  []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"invalid IP addresses\",\n\t\t\tinput: []string{\"invalid\", \"192.168.1.1\", \"fe80::1\"},\n\t\t\twant:  []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t},\n\t\t{\n\t\t\tname:  \"IPv4 with embedded IPv6\",\n\t\t\tinput: []string{\"192.168.1.1\", \"::ffff:c000:280\", \"fe80::1\"},\n\t\t\twant:  []string{\"192.168.1.1\", \"fe80::1\"},\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tresult := firstOfEachIPFamily(tt.input)\n\t\t\tif len(result) != len(tt.want) {\n\t\t\t\tt.Fatalf(\"want %v, got %v\", tt.want, result)\n\t\t\t}\n\t\t\tif diff := cmp.Diff(tt.want, result); diff != \"\" {\n\t\t\t\tt.Errorf(\"unexpected result (-want +got):\\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestAttackConnectTo(t *testing.T) {\n\tt.Parallel()\n\tvar mu sync.Mutex\n\thits := make(map[string]int)\n\tsrvs := make(map[string]int)\n\n\thandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\tmu.Lock()\n\t\thits[r.Host]++\n\t\tmu.Unlock()\n\t})\n\n\taddrs := make([]string, 3)\n\tfor i := range addrs {\n\t\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\taddrs[i] = ln.Addr().String()\n\n\t\tsrv := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\t\tmu.Lock()\n\t\t\tsrvs[ln.Addr().String()]++\n\t\t\tmu.Unlock()\n\t\t\thandler.ServeHTTP(w, r)\n\t\t}))\n\n\t\tsrv.Listener = ln\n\t\tsrv.Start()\n\t\tt.Cleanup(srv.Close)\n\t}\n\n\ttr := NewStaticTargeter(\n\t\tTarget{Method: \"GET\", URL: \"http://sapo.pt:80\"},\n\t\tTarget{Method: \"GET\", URL: \"http://sapo.pt:80\"},\n\t\tTarget{Method: \"GET\", URL: \"http://sapo.pt:80\"},\n\t\tTarget{Method: \"GET\", URL: \"http://\" + addrs[0]},\n\t)\n\n\tatk := NewAttacker(\n\t\tKeepAlive(false),\n\t\tConnectTo(map[string][]string{\"sapo.pt:80\": addrs}),\n\t)\n\n\ta := &attack{name: \"TEST\", began: time.Now()}\n\tfor i := 0; i < 4; i++ {\n\t\tresp := atk.hit(tr, a)\n\t\tif resp.Error != \"\" {\n\t\t\tt.Fatal(resp.Error)\n\t\t}\n\t}\n\n\twant := map[string]int{\"sapo.pt:80\": 3, addrs[0]: 1}\n\tif diff := cmp.Diff(want, hits); diff != \"\" {\n\t\tt.Errorf(\"unexpected hits (-want +got):\\n%s\", diff)\n\t}\n\n\twant = map[string]int{addrs[0]: 2, addrs[1]: 1, addrs[2]: 1}\n\tif diff := cmp.Diff(want, srvs); diff != \"\" {\n\t\tt.Errorf(\"unexpected hits (-want +got):\\n%s\", diff)\n\t}\n}\n"
  },
  {
    "path": "lib/histogram.go",
    "content": "package vegeta\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"strings\"\n\t\"time\"\n)\n\n// Buckets represents an Histogram's latency buckets.\ntype Buckets []time.Duration\n\n// Histogram is a bucketed latency Histogram.\ntype Histogram struct {\n\tBuckets Buckets\n\tCounts  []uint64\n\tTotal   uint64\n}\n\n// Add implements the Add method of the Report interface by finding the right\n// Bucket for the given Result latency and increasing its count by one as well\n// as the total count.\nfunc (h *Histogram) Add(r *Result) {\n\tif len(h.Counts) != len(h.Buckets) {\n\t\th.Counts = make([]uint64, len(h.Buckets))\n\t}\n\n\tvar i int\n\tfor ; i < len(h.Buckets)-1; i++ {\n\t\tif r.Latency >= h.Buckets[i] && r.Latency < h.Buckets[i+1] {\n\t\t\tbreak\n\t\t}\n\t}\n\n\th.Total++\n\th.Counts[i]++\n}\n\n// MarshalJSON returns a JSON encoding of the buckets and their counts.\nfunc (h *Histogram) MarshalJSON() ([]byte, error) {\n\tvar buf bytes.Buffer\n\n\t// Custom marshalling to guarantee order.\n\tbuf.WriteString(\"{\")\n\tfor i := range h.Buckets {\n\t\tif i > 0 {\n\t\t\tbuf.WriteString(\", \")\n\t\t}\n\t\tif _, err := fmt.Fprintf(&buf, \"\\\"%d\\\": %d\", h.Buckets[i], h.Counts[i]); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tbuf.WriteString(\"}\")\n\n\treturn buf.Bytes(), nil\n}\n\n// Nth returns the nth bucket represented as a string.\nfunc (bs Buckets) Nth(i int) (left, right string) {\n\tif i >= len(bs)-1 {\n\t\treturn bs[i].String(), \"+Inf\"\n\t}\n\treturn bs[i].String(), bs[i+1].String()\n}\n\n// UnmarshalText implements the encoding.TextUnmarshaler interface.\nfunc (bs *Buckets) UnmarshalText(value []byte) error {\n\tif len(value) < 2 || value[0] != '[' || value[len(value)-1] != ']' {\n\t\treturn fmt.Errorf(\"bad buckets: %s\", value)\n\t}\n\tfor i, v := range strings.Split(string(value[1:len(value)-1]), \",\") {\n\t\td, err := time.ParseDuration(strings.TrimSpace(v))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// add a default range of [0-Buckets[0]) if needed\n\t\tif i == 0 && d > 0 {\n\t\t\t*bs = append(*bs, 0)\n\t\t}\n\t\t*bs = append(*bs, d)\n\t}\n\tif len(*bs) == 0 {\n\t\treturn fmt.Errorf(\"bad buckets: %s\", value)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "lib/histogram_test.go",
    "content": "package vegeta\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n\t\"time\"\n)\n\nfunc TestHistogram_Add(t *testing.T) {\n\tt.Parallel()\n\thist := Histogram{\n\t\tBuckets: []time.Duration{\n\t\t\t0,\n\t\t\t10 * time.Millisecond,\n\t\t\t25 * time.Millisecond,\n\t\t\t50 * time.Millisecond,\n\t\t\t100 * time.Millisecond,\n\t\t\t1000 * time.Millisecond,\n\t\t},\n\t}\n\n\tfor _, d := range []time.Duration{\n\t\t5 * time.Millisecond,\n\t\t15 * time.Millisecond,\n\t\t30 * time.Millisecond,\n\t\t75 * time.Millisecond,\n\t\t200 * time.Millisecond,\n\t\t2000 * time.Millisecond,\n\t} {\n\t\thist.Add(&Result{Latency: d})\n\t}\n\n\tif got, want := hist.Counts, []uint64{1, 1, 1, 1, 1, 1}; !reflect.DeepEqual(got, want) {\n\t\tt.Errorf(\"Counts: got: %v, want: %v\", got, want)\n\t}\n\n\tif got, want := hist.Total, uint64(6); got != want {\n\t\tt.Errorf(\"Total: got %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestBuckets_UnmarshalText(t *testing.T) {\n\tt.Parallel()\n\tfor value, want := range map[string]string{\n\t\t\"\":       \"bad buckets: \",\n\t\t\" \":      \"bad buckets:  \",\n\t\t\"{0, 2}\": \"bad buckets: {0, 2}\",\n\t\t\"[]\":     `time: invalid duration \"\"`,\n\t\t\"[0, 2]\": `time: missing unit in duration \"2\"`,\n\t} {\n\t\tif got := (&Buckets{}).UnmarshalText([]byte(value)).Error(); got != want {\n\t\t\tt.Errorf(\"got: %v, want: %v\", got, want)\n\t\t}\n\t}\n\n\tfor value, want := range map[string]Buckets{\n\t\t\"[0,5ms]\":             {0, 5 * time.Millisecond},\n\t\t\"[0, 5ms]\":            {0, 5 * time.Millisecond},\n\t\t\"[   0,5ms, 10m    ]\": {0, 5 * time.Millisecond, 10 * time.Minute},\n\t\t\"[3ms,10ms]\":          {0, 3 * time.Millisecond, 10 * time.Millisecond},\n\t} {\n\t\tvar got Buckets\n\t\tif err := got.UnmarshalText([]byte(value)); err != nil {\n\t\t\tt.Fatal(err)\n\t\t} else if !reflect.DeepEqual(got, want) {\n\t\t\tt.Errorf(\"got: %v, want: %v\", got, want)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "lib/lttb/lttb.go",
    "content": "package lttb\n\nimport \"errors\"\n\n// A Point in a line chart.\ntype Point struct{ X, Y float64 }\n\n// An Iter is an iterator function that returns\n// count number of Points or an error.\ntype Iter func(count int) ([]Point, error)\n\n// Downsample `count` number of data points retrieved from the given iterator\n// function to contain only `threshold` number of points while maintaining close\n// visual similarity to the original data. The algorithm is called\n// Largest-Triangle-Three-Buckets and is described in:\n// https://skemman.is/bitstream/1946/15343/3/SS_MSthesis.pdf\n//\n// This implementation grew out of https://github.com/dgryski/go-lttb\n// to limit memory usage by leveraging iterators.\nfunc Downsample(count, threshold int, it Iter) ([]Point, error) {\n\tif threshold >= count || threshold == 0 {\n\t\tpoints, err := it(count)\n\t\treturn points, err\n\t}\n\n\tif threshold < 3 {\n\t\treturn nil, errors.New(\"lttb: min threshold is 3\")\n\t}\n\n\t// Bucket size. Leave room for start and end data points\n\tsize := float64(count-2) / float64(threshold-2)\n\n\t// Get the first point and the current bucket.\n\tpoints, err := it(int(1 + size))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tsamples := make([]Point, 0, threshold)\n\tsamples = append(samples, points[0]) // Always add the first point\n\tcurrent := points[1:]\n\n\tfor i := 0; i < threshold-2; i++ {\n\t\t// Calculate bucket boundaries (non inclusive hi)\n\t\tlo := int(float64(i+1)*size) + 1\n\t\thi := int(float64(i+2)*size) + 1\n\n\t\tnext, err := it(hi - lo)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tsamples = append(samples, sample(samples[len(samples)-1], current, next))\n\t\tcurrent = next\n\t}\n\n\t// Always add the last point unmodified\n\tif points, err = it(count - len(samples)); err != nil {\n\t\treturn nil, err\n\t} else if len(points) == 0 {\n\t\tpoints = current\n\t}\n\n\tif len(points) > 0 {\n\t\tsamples = append(samples, points[len(points)-1])\n\t}\n\n\treturn samples, nil\n}\n\nfunc sample(a Point, current, next []Point) (b Point) {\n\t// Calculate point c as the average point of all points in the next bucket.\n\tvar c Point\n\tfor i := range next {\n\t\tc.X, c.Y = c.X+next[i].X, c.Y+next[i].Y\n\t}\n\n\tlength := float64(len(next))\n\tc.X, c.Y = c.X/length, c.Y/length\n\n\t// Find index of point b that together with points a and c forms the largest triangle\n\t// amongst all points in the current bucket.\n\tvar largest float64\n\tvar index int\n\tfor i, p := range current {\n\t\t// Calculate triangle area over three buckets\n\t\tarea := (a.X-c.X)*(p.Y-a.Y) - (a.X-p.X)*(c.Y-a.Y)\n\n\t\t// We only care about the relative area here. Calling math.Abs() is slower than squaring.\n\t\tif area *= area; area > largest {\n\t\t\tlargest, index = area, i\n\t\t}\n\t}\n\n\treturn current[index]\n}\n"
  },
  {
    "path": "lib/lttb/lttb_test.go",
    "content": "package lttb\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\t\"sync\"\n\t\"testing\"\n\t\"unsafe\"\n\n\tgolttb \"github.com/dgryski/go-lttb\"\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc TestDownsample(t *testing.T) {\n\tt.Parallel()\n\n\tfor _, threshold := range []int{0, len(points[0]), len(points[0]) + 1} {\n\t\thave, err := Downsample(len(points[0]), threshold, newIterator(points[0]))\n\t\tif err != nil {\n\t\t\tt.Fatalf(\"threshold-%d: got err: %v\", threshold, err)\n\t\t}\n\n\t\twant := points[0]\n\t\tif diff := cmp.Diff(have, want, cmp.AllowUnexported(Point{})); diff != \"\" {\n\t\t\tt.Errorf(\"threshold-%d: %s\", threshold, diff)\n\t\t}\n\t}\n\n\tfor i := 1; i < 3; i++ {\n\t\tthreshold := i\n\t\t_, err := Downsample(len(points[0]), threshold, newIterator(points[0]))\n\t\tif have, want := fmt.Sprint(err), \"lttb: min threshold is 3\"; have != want {\n\t\t\tt.Errorf(\"threshold-%d: have err: %v, want %v\", threshold, have, want)\n\t\t}\n\t}\n\n\tvar wg sync.WaitGroup\n\tfor i, ps := range points {\n\t\tfor threshold := 3; threshold < len(ps); threshold++ {\n\t\t\twg.Add(1)\n\t\t\ti, ps, threshold := i, ps, threshold\n\t\t\tgo func() {\n\t\t\t\tdefer wg.Done()\n\n\t\t\t\tmsg := func(fmtstr string, args ...interface{}) string {\n\t\t\t\t\treturn fmt.Sprintf(\n\t\t\t\t\t\t\"points=%d len=%d threshold=%d: \"+fmtstr,\n\t\t\t\t\t\tappend([]interface{}{i, len(ps), threshold}, args...)...,\n\t\t\t\t\t)\n\t\t\t\t}\n\n\t\t\t\tours, err := Downsample(len(ps), threshold, newIterator(ps))\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Error(msg(\"error: %v\", err))\n\t\t\t\t}\n\n\t\t\t\tif have, want := len(ours), threshold; have != want {\n\t\t\t\t\tt.Error(msg(\"len(samples) != threshold: have %d, want %d\", have, want))\n\t\t\t\t}\n\n\t\t\t\tif have, want := ours[0], ps[0]; have != want {\n\t\t\t\t\tt.Error(msg(\"samples[0] != data[0]: have %v, want %v\", have, want))\n\t\t\t\t}\n\n\t\t\t\tif have, want := ours[len(ours)-1], ps[len(ps)-1]; have != want {\n\t\t\t\t\tt.Error(msg(\"samples[-1] != data[-1]: have %v, want %v\", have, want))\n\t\t\t\t}\n\n\t\t\t\t// Test LTTB algorithm's equivalence to dgrisky/go-lttb\n\t\t\t\tin := *(*[]golttb.Point[float64])(unsafe.Pointer(&ps)) // #skipcq: GSC-G103\n\t\t\t\tout := golttb.LTTB(in, threshold)\n\t\t\t\ttheirs := *(*[]Point)(unsafe.Pointer(&out)) // #skipcq: GSC-G103\n\n\t\t\t\tif !reflect.DeepEqual(ours, theirs) {\n\t\t\t\t\tt.Error(msg(cmp.Diff(ours, theirs, cmp.AllowUnexported(Point{}))))\n\t\t\t\t}\n\t\t\t}()\n\t\t}\n\t}\n\n\twg.Wait()\n}\n\nfunc BenchmarkLTTB(b *testing.B) {\n\tdata := *(*[]golttb.Point[float64])(unsafe.Pointer(&points[0])) // #skipcq: GSC-G103\n\tb.Run(\"dgryski\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\tgolttb.LTTB(data, 1000)\n\t\t}\n\t})\n\n\tb.Run(\"tsenart\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\tDownsample(len(data), 1000, newIterator(points[0]))\n\t\t}\n\t})\n}\n\nfunc newIterator(data []Point) Iter {\n\treturn func(count int) ([]Point, error) {\n\t\tif count > len(data) {\n\t\t\tcount = len(data)\n\t\t}\n\t\tps := data[:count]\n\t\tdata = data[count:]\n\t\treturn ps, nil\n\t}\n}\n\n// From https://raw.githubusercontent.com/sveinn-steinarsson/flot-downsample/master/demo_data.js\nvar points = [][]Point{\n\t{\n\t\t{0, 29.357995947822218},\n\t\t{1, 29.40932479606209},\n\t\t{2, 29.28168582006162},\n\t\t{3, 30.409965579108867},\n\t\t{4, 30.7726859735917},\n\t\t{5, 30.839942247539028},\n\t\t{6, 30.760611642264667},\n\t\t{7, 31.203663004229718},\n\t\t{8, 31.38899603525572},\n\t\t{9, 30.890299916955737},\n\t\t{10, 30.467811944911556},\n\t\t{11, 30.596837868069542},\n\t\t{12, 30.59789593509767},\n\t\t{13, 30.19693062465079},\n\t\t{14, 29.89081330734553},\n\t\t{15, 29.54668002901058},\n\t\t{16, 29.54890739422219},\n\t\t{17, 30.53743760171474},\n\t\t{18, 30.74066032317061},\n\t\t{19, 30.3774450601516},\n\t\t{20, 30.095148889986568},\n\t\t{21, 30.057979182917986},\n\t\t{22, 30.364655421168525},\n\t\t{23, 30.293450053773604},\n\t\t{24, 30.14578230340987},\n\t\t{25, 30.277772879951996},\n\t\t{26, 30.3711931235659},\n\t\t{27, 30.355932660992572},\n\t\t{28, 29.994740831603046},\n\t\t{29, 29.938012885023657},\n\t\t{30, 29.557268760451187},\n\t\t{31, 29.16161297604625},\n\t\t{32, 29.6921163421055},\n\t\t{33, 30.246270628292226},\n\t\t{34, 30.210955154680928},\n\t\t{35, 29.382964668934058},\n\t\t{36, 29.52892023906641},\n\t\t{37, 29.719742065732202},\n\t\t{38, 30.013856636945924},\n\t\t{39, 29.818636169776926},\n\t\t{40, 27.931224826933345},\n\t\t{41, 28.103057873678374},\n\t\t{42, 28.276025902356782},\n\t\t{43, 28.193497487789774},\n\t\t{44, 28.22099171488288},\n\t\t{45, 28.06872431241809},\n\t\t{46, 27.239835885250365},\n\t\t{47, 26.606504358317906},\n\t\t{48, 27.220308136213916},\n\t\t{49, 25.80790898978574},\n\t\t{50, 26.060334838062595},\n\t\t{51, 25.89611036822564},\n\t\t{52, 25.824433242208308},\n\t\t{53, 25.89212193260212},\n\t\t{54, 27.28963669872412},\n\t\t{55, 27.208259984780806},\n\t\t{56, 27.298211480886604},\n\t\t{57, 27.056163307023077},\n\t\t{58, 26.434701869643924},\n\t\t{59, 26.21938188318228},\n\t\t{60, 26.402877759468772},\n\t\t{61, 26.326019357967294},\n\t\t{62, 27.592635104460253},\n\t\t{63, 27.597468405434316},\n\t\t{64, 27.533410081050647},\n\t\t{65, 27.30713964830731},\n\t\t{66, 27.170789712751404},\n\t\t{67, 27.610166301145746},\n\t\t{68, 27.619847332319885},\n\t\t{69, 27.55974343996647},\n\t\t{70, 28.168803492093716},\n\t\t{71, 28.284229862452584},\n\t\t{72, 28.292638086760352},\n\t\t{73, 28.523718178262335},\n\t\t{74, 28.52268591410558},\n\t\t{75, 28.576637206595993},\n\t\t{76, 27.763715461946813},\n\t\t{77, 27.48488075310065},\n\t\t{78, 27.304006460281794},\n\t\t{79, 26.902025619666333},\n\t\t{80, 26.690162079132378},\n\t\t{81, 26.52277286738866},\n\t\t{82, 26.09406789919051},\n\t\t{83, 26.029039984983562},\n\t\t{84, 26.145181108429618},\n\t\t{85, 24.75335912549342},\n\t\t{86, 24.787772395126176},\n\t\t{87, 24.966652093726385},\n\t\t{88, 25.33621421606084},\n\t\t{89, 25.29283081429076},\n\t\t{90, 25.427452306231707},\n\t\t{91, 25.34334450564347},\n\t\t{92, 25.971939771661045},\n\t\t{93, 25.907910638400836},\n\t\t{94, 25.971895864171003},\n\t\t{95, 26.448419417928317},\n\t\t{96, 26.461057396494514},\n\t\t{97, 26.332417666691025},\n\t\t{98, 26.17395667752311},\n\t\t{99, 25.318121919340044},\n\t\t{100, 26.092918888834987},\n\t\t{101, 26.080903284583307},\n\t\t{102, 26.65713935644778},\n\t\t{103, 26.90227335392346},\n\t\t{104, 27.14904791481757},\n\t\t{105, 27.45775156727039},\n\t\t{106, 28.476933177720472},\n\t\t{107, 27.899526884805073},\n\t\t{108, 27.274094274806096},\n\t\t{109, 27.007320452528134},\n\t\t{110, 27.767594298696466},\n\t\t{111, 28.669197835798027},\n\t\t{112, 28.78287095361503},\n\t\t{113, 28.744062941208348},\n\t\t{114, 29.266136201836588},\n\t\t{115, 29.29631346563548},\n\t\t{116, 29.30576721224685},\n\t\t{117, 28.92417256867908},\n\t\t{118, 29.172020952087326},\n\t\t{119, 29.36572118529946},\n\t\t{120, 29.407882394097168},\n\t\t{121, 29.24581675687127},\n\t\t{122, 30.374496989862006},\n\t\t{123, 29.75867484229172},\n\t\t{124, 29.724977349500893},\n\t\t{125, 29.766232845230032},\n\t\t{126, 29.755425025733203},\n\t\t{127, 29.891515813029994},\n\t\t{128, 29.224842590902917},\n\t\t{129, 29.19894861750696},\n\t\t{130, 28.877260649054524},\n\t\t{131, 29.100160763856657},\n\t\t{132, 29.11303194254891},\n\t\t{133, 29.471499370130353},\n\t\t{134, 29.725430707066725},\n\t\t{135, 29.875645922022283},\n\t\t{136, 29.32336837740634},\n\t\t{137, 29.659223458914788},\n\t\t{138, 29.916122460150415},\n\t\t{139, 29.947591268372232},\n\t\t{140, 29.912720660976237},\n\t\t{141, 30.030001305562784},\n\t\t{142, 30.01603062688162},\n\t\t{143, 30.206305874273855},\n\t\t{144, 29.654798308068155},\n\t\t{145, 29.51005186796388},\n\t\t{146, 29.479249298103124},\n\t\t{147, 29.50465455692649},\n\t\t{148, 28.668390496723326},\n\t\t{149, 29.70235193454973},\n\t\t{150, 29.651621644229916},\n\t\t{151, 29.514646394709878},\n\t\t{152, 29.506006233800203},\n\t\t{153, 29.85094476486748},\n\t\t{154, 29.815453456016304},\n\t\t{155, 29.942433471924208},\n\t\t{156, 29.690047803042003},\n\t\t{157, 29.081114874079432},\n\t\t{158, 29.064499954878283},\n\t\t{159, 29.17427761652929},\n\t\t{160, 28.48135454514647},\n\t\t{161, 28.43614347392514},\n\t\t{162, 28.615830690136196},\n\t\t{163, 27.244815449582045},\n\t\t{164, 28.030839937141593},\n\t\t{165, 28.09433740820739},\n\t\t{166, 28.134090510807432},\n\t\t{167, 28.333335545414524},\n\t\t{168, 28.187860385951467},\n\t\t{169, 28.275647207865163},\n\t\t{170, 28.110663780904385},\n\t\t{171, 27.941108395946074},\n\t\t{172, 27.155839334130572},\n\t\t{173, 27.486338387798014},\n\t\t{174, 27.822551655905976},\n\t\t{175, 27.863745721980674},\n\t\t{176, 27.51492123912736},\n\t\t{177, 27.83845450366903},\n\t\t{178, 27.143346163904276},\n\t\t{179, 26.470510229480666},\n\t\t{180, 27.030260699355054},\n\t\t{181, 26.530046883178517},\n\t\t{182, 26.061343714664623},\n\t\t{183, 26.451944204073293},\n\t\t{184, 26.430516873002972},\n\t\t{185, 27.54560649645601},\n\t\t{186, 27.607455732128237},\n\t\t{187, 27.3151823435893},\n\t\t{188, 27.015508353290546},\n\t\t{189, 27.564104270774138},\n\t\t{190, 27.401004407024764},\n\t\t{191, 27.158236015306873},\n\t\t{192, 27.15560082391509},\n\t\t{193, 27.052060260660955},\n\t\t{194, 27.170854273897024},\n\t\t{195, 27.764649442110628},\n\t\t{196, 28.37485762180034},\n\t\t{197, 28.693644963914128},\n\t\t{198, 28.639988945921225},\n\t\t{199, 28.55415913033328},\n\t\t{200, 28.227269873938933},\n\t\t{201, 28.17193587609251},\n\t\t{202, 28.326544342536973},\n\t\t{203, 27.64207374329132},\n\t\t{204, 28.28132114918632},\n\t\t{205, 28.87895845286964},\n\t\t{206, 28.188530355189847},\n\t\t{207, 27.543826104728634},\n\t\t{208, 27.518668557969406},\n\t\t{209, 27.501005443892083},\n\t\t{210, 27.4034023213343},\n\t\t{211, 27.81919230719886},\n\t\t{212, 28.51752545491846},\n\t\t{213, 28.45642871817993},\n\t\t{214, 28.281434136230057},\n\t\t{215, 28.955222450571647},\n\t\t{216, 28.817758413114476},\n\t\t{217, 28.512855374048605},\n\t\t{218, 28.53649013938214},\n\t\t{219, 28.037741647416063},\n\t\t{220, 28.758762367232816},\n\t\t{221, 28.411225526795217},\n\t\t{222, 28.081382658095393},\n\t\t{223, 28.018197966678386},\n\t\t{224, 27.669840575416934},\n\t\t{225, 27.729482622798493},\n\t\t{226, 27.44804950151258},\n\t\t{227, 27.057357503159633},\n\t\t{228, 27.02667664651584},\n\t\t{229, 26.99034079421472},\n\t\t{230, 27.624460374012415},\n\t\t{231, 26.6107079586933},\n\t\t{232, 26.586632740266342},\n\t\t{233, 26.50503068257422},\n\t\t{234, 26.528094947562206},\n\t\t{235, 27.42586110225183},\n\t\t{236, 27.58607997646959},\n\t\t{237, 27.119751888180552},\n\t\t{238, 27.08687612699868},\n\t\t{239, 26.50890594997075},\n\t\t{240, 27.31126847238326},\n\t\t{241, 27.241646652930587},\n\t\t{242, 27.206837899664286},\n\t\t{243, 27.806910729195003},\n\t\t{244, 27.943871889687294},\n\t\t{245, 27.682133734768627},\n\t\t{246, 27.717567280916626},\n\t\t{247, 28.50754775235408},\n\t\t{248, 28.522618646129153},\n\t\t{249, 28.119450170073687},\n\t\t{250, 28.142446798473102},\n\t\t{251, 27.493875384325104},\n\t\t{252, 27.232866008532874},\n\t\t{253, 26.815819408391537},\n\t\t{254, 26.66806605894335},\n\t\t{255, 26.832795316319906},\n\t\t{256, 26.6709072973403},\n\t\t{257, 26.805339614467922},\n\t\t{258, 25.87709141573906},\n\t\t{259, 25.78663848060838},\n\t\t{260, 26.292688529709856},\n\t\t{261, 26.13540568260593},\n\t\t{262, 26.950679537489023},\n\t\t{263, 26.74360016328177},\n\t\t{264, 25.880978465490344},\n\t\t{265, 26.625349316487267},\n\t\t{266, 27.726596358113618},\n\t\t{267, 27.678660195691705},\n\t\t{268, 27.712915567796777},\n\t\t{269, 27.721698306913026},\n\t\t{270, 27.905267233295028},\n\t\t{271, 27.957187159455156},\n\t\t{272, 27.858194094400584},\n\t\t{273, 28.081932932040928},\n\t\t{274, 27.735044748607958},\n\t\t{275, 27.032793497721116},\n\t\t{276, 27.507939311361685},\n\t\t{277, 27.574645954142067},\n\t\t{278, 27.574051095225684},\n\t\t{279, 27.759761781417595},\n\t\t{280, 27.365795276665352},\n\t\t{281, 26.617667215269847},\n\t\t{282, 26.798097033417232},\n\t\t{283, 26.195989054524656},\n\t\t{284, 26.976938134909243},\n\t\t{285, 26.89198848346594},\n\t\t{286, 27.147250351373707},\n\t\t{287, 27.43948527543756},\n\t\t{288, 28.0008367927751},\n\t\t{289, 28.231697069321097},\n\t\t{290, 28.7967810312443},\n\t\t{291, 29.512759843423506},\n\t\t{292, 29.41555351035952},\n\t\t{293, 30.70537467842703},\n\t\t{294, 30.332009655179892},\n\t\t{295, 30.368538690398843},\n\t\t{296, 30.73440265654596},\n\t\t{297, 30.967799052657455},\n\t\t{298, 31.22392323854322},\n\t\t{299, 31.122470949743033},\n\t\t{300, 31.140432351354303},\n\t\t{301, 31.13729855237942},\n\t\t{302, 30.716789453632746},\n\t\t{303, 31.055606178854195},\n\t\t{304, 31.025310612429436},\n\t\t{305, 30.746317663776093},\n\t\t{306, 31.16989662941391},\n\t\t{307, 29.623226075091324},\n\t\t{308, 29.11707721446215},\n\t\t{309, 29.671462419401518},\n\t\t{310, 29.32656872224774},\n\t\t{311, 29.360034344664133},\n\t\t{312, 30.193073601940906},\n\t\t{313, 30.051282853224887},\n\t\t{314, 30.094809176026143},\n\t\t{315, 30.62616938793058},\n\t\t{316, 31.24738345775188},\n\t\t{317, 31.288951935975373},\n\t\t{318, 30.793680071961138},\n\t\t{319, 30.855230722079575},\n\t\t{320, 30.172789122099953},\n\t\t{321, 30.16588226960243},\n\t\t{322, 30.02896795596743},\n\t\t{323, 28.710256908027688},\n\t\t{324, 28.788445957400086},\n\t\t{325, 29.14084131034792},\n\t\t{326, 29.154793392113767},\n\t\t{327, 29.509956518244064},\n\t\t{328, 29.919766479376083},\n\t\t{329, 30.809790278228583},\n\t\t{330, 31.51994434827819},\n\t\t{331, 31.14360887134284},\n\t\t{332, 30.960009728867895},\n\t\t{333, 31.007757592227232},\n\t\t{334, 29.912529162927882},\n\t\t{335, 30.430549132609936},\n\t\t{336, 30.286270410087386},\n\t\t{337, 30.29853067098949},\n\t\t{338, 30.28484502358319},\n\t\t{339, 30.2649148646112},\n\t\t{340, 30.269814084876984},\n\t\t{341, 29.48743777656781},\n\t\t{342, 29.25324229055582},\n\t\t{343, 29.3224085984498},\n\t\t{344, 28.845749148292715},\n\t\t{345, 28.25734414947841},\n\t\t{346, 28.22244460496951},\n\t\t{347, 28.212727797755832},\n\t\t{348, 28.099709252761244},\n\t\t{349, 28.157686542165766},\n\t\t{350, 28.15110192590233},\n\t\t{351, 28.242118337655835},\n\t\t{352, 29.53367482995351},\n\t\t{353, 29.532585019641683},\n\t\t{354, 29.943653842668887},\n\t\t{355, 28.64740678713178},\n\t\t{356, 28.627878421859094},\n\t\t{357, 28.85948017439502},\n\t\t{358, 29.421837208187565},\n\t\t{359, 29.213674689162733},\n\t\t{360, 29.588524659441383},\n\t\t{361, 29.871736651370572},\n\t\t{362, 29.97536581410366},\n\t\t{363, 29.090848126781193},\n\t\t{364, 29.07367624649577},\n\t\t{365, 28.936182688349078},\n\t\t{366, 28.478980562612755},\n\t\t{367, 27.701450632319055},\n\t\t{368, 27.70314463302395},\n\t\t{369, 27.690633468393905},\n\t\t{370, 27.712418470005847},\n\t\t{371, 28.04360951096915},\n\t\t{372, 27.899319369636174},\n\t\t{373, 27.67953057101954},\n\t\t{374, 27.33713099741098},\n\t\t{375, 27.715275282261704},\n\t\t{376, 27.09457980740444},\n\t\t{377, 26.564904718909652},\n\t\t{378, 26.851805720484524},\n\t\t{379, 27.17971899490677},\n\t\t{380, 27.203035420946204},\n\t\t{381, 26.98833921789535},\n\t\t{382, 27.3376969508508},\n\t\t{383, 27.36673199620505},\n\t\t{384, 27.22367712016426},\n\t\t{385, 27.295774446517406},\n\t\t{386, 27.24426813335004},\n\t\t{387, 27.804345559349205},\n\t\t{388, 27.81107241888124},\n\t\t{389, 28.007141902081127},\n\t\t{390, 28.196204812447014},\n\t\t{391, 27.570724094739713},\n\t\t{392, 28.353947742891283},\n\t\t{393, 28.264285808134655},\n\t\t{394, 28.001544074943496},\n\t\t{395, 28.073693599174273},\n\t\t{396, 28.13948170648531},\n\t\t{397, 27.7246917685699},\n\t\t{398, 27.372056917732422},\n\t\t{399, 26.76664288679182},\n\t\t{400, 26.726530330089947},\n\t\t{401, 26.73659456496834},\n\t\t{402, 26.35282363879538},\n\t\t{403, 26.953655414803745},\n\t\t{404, 27.037728660238816},\n\t\t{405, 26.391122852260175},\n\t\t{406, 26.45637305967239},\n\t\t{407, 25.78486318168484},\n\t\t{408, 25.92078676697798},\n\t\t{409, 26.4970571420541},\n\t\t{410, 25.86809752383717},\n\t\t{411, 26.534413662015773},\n\t\t{412, 27.226357547185447},\n\t\t{413, 26.71252553894152},\n\t\t{414, 26.435002451423312},\n\t\t{415, 26.921455461481504},\n\t\t{416, 27.06045686220195},\n\t\t{417, 27.09418382303274},\n\t\t{418, 28.011098852919908},\n\t\t{419, 27.896959438752912},\n\t\t{420, 27.914042725695705},\n\t\t{421, 27.547368437091734},\n\t\t{422, 26.710013475304418},\n\t\t{423, 26.67332778875601},\n\t\t{424, 26.624659424882857},\n\t\t{425, 26.57172379809563},\n\t\t{426, 26.846697174621756},\n\t\t{427, 25.8834697613218},\n\t\t{428, 26.0400273638686},\n\t\t{429, 25.922770964698366},\n\t\t{430, 26.550977646141284},\n\t\t{431, 26.7196171595444},\n\t\t{432, 26.57693368973477},\n\t\t{433, 26.754937488902705},\n\t\t{434, 26.68923906981248},\n\t\t{435, 27.578054073124644},\n\t\t{436, 28.491944955522996},\n\t\t{437, 29.462067517762534},\n\t\t{438, 29.049663449716007},\n\t\t{439, 29.29125398211083},\n\t\t{440, 29.716399938469106},\n\t\t{441, 29.697795912329543},\n\t\t{442, 28.842426341018918},\n\t\t{443, 27.995794268014496},\n\t\t{444, 27.568707173494055},\n\t\t{445, 27.572194900322412},\n\t\t{446, 28.94876289646488},\n\t\t{447, 28.827587778805206},\n\t\t{448, 28.20122725800809},\n\t\t{449, 28.982543824618322},\n\t\t{450, 28.98764510982713},\n\t\t{451, 28.476638374330257},\n\t\t{452, 27.8971845311884},\n\t\t{453, 28.357599004387694},\n\t\t{454, 29.550067169716076},\n\t\t{455, 29.059986913307316},\n\t\t{456, 29.44698201092504},\n\t\t{457, 29.444893222605785},\n\t\t{458, 30.2987283695555},\n\t\t{459, 30.490753195685443},\n\t\t{460, 30.3712818585665},\n\t\t{461, 31.03092246398632},\n\t\t{462, 31.1306416649066},\n\t\t{463, 31.204020755490298},\n\t\t{464, 31.302761670091414},\n\t\t{465, 31.287884426895985},\n\t\t{466, 30.49414678626753},\n\t\t{467, 30.9842218570926},\n\t\t{468, 30.88247586217915},\n\t\t{469, 31.65627890749247},\n\t\t{470, 31.300373482363312},\n\t\t{471, 31.009412915052188},\n\t\t{472, 31.135319385771062},\n\t\t{473, 31.142947189076295},\n\t\t{474, 31.095825728106682},\n\t\t{475, 31.402733294236572},\n\t\t{476, 31.348161546083656},\n\t\t{477, 31.600766880442425},\n\t\t{478, 31.51732023898528},\n\t\t{479, 31.218212979786024},\n\t\t{480, 31.431310499487758},\n\t\t{481, 31.536799819023997},\n\t\t{482, 31.590576295671646},\n\t\t{483, 31.49429616322668},\n\t\t{484, 32.1816892011556},\n\t\t{485, 32.61239327037908},\n\t\t{486, 32.69902576477615},\n\t\t{487, 32.89146487332367},\n\t\t{488, 33.87564290993047},\n\t\t{489, 33.89045560640269},\n\t\t{490, 33.8295470579556},\n\t\t{491, 33.83070162926511},\n\t\t{492, 33.57726370546161},\n\t\t{493, 33.80516778960143},\n\t\t{494, 34.26212065396207},\n\t\t{495, 34.4134739195819},\n\t\t{496, 34.72554255082181},\n\t\t{497, 34.7082104992009},\n\t\t{498, 34.60279005425693},\n\t\t{499, 34.231204914439},\n\t\t{500, 34.099389551023904},\n\t\t{501, 34.22803109888905},\n\t\t{502, 34.610384365507166},\n\t\t{503, 34.902573683307146},\n\t\t{504, 35.0720672663373},\n\t\t{505, 35.02095234082352},\n\t\t{506, 35.21029830385259},\n\t\t{507, 36.39939489896903},\n\t\t{508, 36.49626843650683},\n\t\t{509, 36.91759867136517},\n\t\t{510, 36.62252163480901},\n\t\t{511, 36.637052547917165},\n\t\t{512, 37.07289132044249},\n\t\t{513, 37.943749079996564},\n\t\t{514, 37.31678988480502},\n\t\t{515, 37.10207023840552},\n\t\t{516, 37.50103188910752},\n\t\t{517, 36.711556296699854},\n\t\t{518, 36.69985201593515},\n\t\t{519, 35.88305508619134},\n\t\t{520, 35.819177348929244},\n\t\t{521, 35.238662967688704},\n\t\t{522, 35.204473848884604},\n\t\t{523, 35.73171925218891},\n\t\t{524, 37.10654099191614},\n\t\t{525, 36.97832117698606},\n\t\t{526, 37.88944422270623},\n\t\t{527, 37.566765945668905},\n\t\t{528, 36.952108419930035},\n\t\t{529, 37.16172877345256},\n\t\t{530, 36.79432449958657},\n\t\t{531, 36.83537718548058},\n\t\t{532, 37.241795032269486},\n\t\t{533, 36.98172720447497},\n\t\t{534, 37.12848852369968},\n\t\t{535, 37.144201171899056},\n\t\t{536, 37.291084012425635},\n\t\t{537, 37.20361280452033},\n\t\t{538, 37.14673041600966},\n\t\t{539, 36.56539045560211},\n\t\t{540, 36.46052858989325},\n\t\t{541, 36.577035838031236},\n\t\t{542, 36.413434939980604},\n\t\t{543, 36.830541819855966},\n\t\t{544, 36.708601164617306},\n\t\t{545, 36.754028252130254},\n\t\t{546, 36.86880281045058},\n\t\t{547, 36.20522653559122},\n\t\t{548, 36.19016853939169},\n\t\t{549, 35.60660078018533},\n\t\t{550, 35.58380480655832},\n\t\t{551, 36.15574897354542},\n\t\t{552, 35.96603587272573},\n\t\t{553, 36.01846266557714},\n\t\t{554, 36.1246059100681},\n\t\t{555, 35.776226062342324},\n\t\t{556, 35.53756438274776},\n\t\t{557, 36.09285691162272},\n\t\t{558, 36.024821241563764},\n\t\t{559, 36.07242575850486},\n\t\t{560, 36.902047436744915},\n\t\t{561, 36.783371618493575},\n\t\t{562, 36.97312505169229},\n\t\t{563, 38.33987731208528},\n\t\t{564, 38.12211125979531},\n\t\t{565, 37.867344065570286},\n\t\t{566, 37.91294220403035},\n\t\t{567, 37.90421561454514},\n\t\t{568, 37.52932323225818},\n\t\t{569, 38.09065950561944},\n\t\t{570, 38.3481668904528},\n\t\t{571, 38.38853417076884},\n\t\t{572, 38.82875488776441},\n\t\t{573, 39.30100206552399},\n\t\t{574, 39.22872668781665},\n\t\t{575, 39.26377992972712},\n\t\t{576, 39.11286987148877},\n\t\t{577, 38.55996270262097},\n\t\t{578, 39.53759984840164},\n\t\t{579, 39.434972831723044},\n\t\t{580, 39.58456959406775},\n\t\t{581, 40.02469156333131},\n\t\t{582, 39.83799518416734},\n\t\t{583, 41.066310308184526},\n\t\t{584, 41.249674158569356},\n\t\t{585, 41.84405324758257},\n\t\t{586, 42.44197850928179},\n\t\t{587, 42.44435586698777},\n\t\t{588, 42.51450858652831},\n\t\t{589, 42.497079884180856},\n\t\t{590, 41.86201338457368},\n\t\t{591, 41.97430910917171},\n\t\t{592, 42.38604395890263},\n\t\t{593, 42.77701512105045},\n\t\t{594, 42.917712727399795},\n\t\t{595, 41.92733574585986},\n\t\t{596, 41.98001270512809},\n\t\t{597, 42.21709441156598},\n\t\t{598, 41.73101118068132},\n\t\t{599, 41.511566903501254},\n\t\t{600, 41.151843749654674},\n\t\t{601, 40.936735208747976},\n\t\t{602, 41.07670022261416},\n\t\t{603, 41.00310883262705},\n\t\t{604, 41.175657930592564},\n\t\t{605, 39.65057441921113},\n\t\t{606, 40.59197307871199},\n\t\t{607, 40.19328008308628},\n\t\t{608, 39.96642122821799},\n\t\t{609, 39.980554983282815},\n\t\t{610, 39.198802516126015},\n\t\t{611, 40.28881956306739},\n\t\t{612, 40.835001630650424},\n\t\t{613, 40.96840019049191},\n\t\t{614, 41.47803284199829},\n\t\t{615, 42.31117692587696},\n\t\t{616, 42.56501744522036},\n\t\t{617, 40.75017426985965},\n\t\t{618, 40.54474737773533},\n\t\t{619, 40.32299207284596},\n\t\t{620, 40.59233541049153},\n\t\t{621, 39.799369403233875},\n\t\t{622, 39.90740256156506},\n\t\t{623, 39.84656589770128},\n\t\t{624, 40.51863738080248},\n\t\t{625, 40.36927897222197},\n\t\t{626, 39.577466020927666},\n\t\t{627, 40.24059624379228},\n\t\t{628, 39.888654784809695},\n\t\t{629, 39.06459566315487},\n\t\t{630, 39.21824625899819},\n\t\t{631, 39.707949621228416},\n\t\t{632, 39.6862655989382},\n\t\t{633, 39.232670266668386},\n\t\t{634, 38.72226788949448},\n\t\t{635, 38.90143970392931},\n\t\t{636, 38.58114412526509},\n\t\t{637, 37.47764070721714},\n\t\t{638, 38.14287868141234},\n\t\t{639, 37.95489640397961},\n\t\t{640, 37.978479310316544},\n\t\t{641, 38.08870157682401},\n\t\t{642, 37.86650279398312},\n\t\t{643, 37.83158400391423},\n\t\t{644, 37.661339861002425},\n\t\t{645, 37.77028468310174},\n\t\t{646, 38.19873503550377},\n\t\t{647, 37.84181306063926},\n\t\t{648, 36.15953352691078},\n\t\t{649, 36.15954745676219},\n\t\t{650, 36.70039654101666},\n\t\t{651, 36.747404928048674},\n\t\t{652, 36.45440618086992},\n\t\t{653, 36.50375344553345},\n\t\t{654, 36.12499971175383},\n\t\t{655, 36.25540639161984},\n\t\t{656, 36.14128341022631},\n\t\t{657, 36.13550126300937},\n\t\t{658, 36.47636290489859},\n\t\t{659, 36.52934581511136},\n\t\t{660, 36.180684191314654},\n\t\t{661, 36.1345774586021},\n\t\t{662, 35.88734753480093},\n\t\t{663, 35.910114094303935},\n\t\t{664, 37.494624894014834},\n\t\t{665, 37.388322481490356},\n\t\t{666, 37.51949607161456},\n\t\t{667, 37.42672416426224},\n\t\t{668, 37.607431895150505},\n\t\t{669, 38.1169043451165},\n\t\t{670, 38.198701944392226},\n\t\t{671, 37.672228180889036},\n\t\t{672, 37.573597996143555},\n\t\t{673, 37.61475549631909},\n\t\t{674, 37.704351969731974},\n\t\t{675, 36.526503465131775},\n\t\t{676, 37.14283711760895},\n\t\t{677, 37.042216595367044},\n\t\t{678, 37.19943347657908},\n\t\t{679, 37.030753837557455},\n\t\t{680, 37.29832109446188},\n\t\t{681, 37.34909191845969},\n\t\t{682, 37.396667764315495},\n\t\t{683, 37.71513970238973},\n\t\t{684, 37.035963822400284},\n\t\t{685, 37.09132966834279},\n\t\t{686, 36.671363246669195},\n\t\t{687, 36.725271547538746},\n\t\t{688, 36.732765304609515},\n\t\t{689, 37.049756926857675},\n\t\t{690, 37.100425916489115},\n\t\t{691, 37.80849557841213},\n\t\t{692, 38.00370168917147},\n\t\t{693, 38.65064301128746},\n\t\t{694, 38.16137008804746},\n\t\t{695, 38.16628690738749},\n\t\t{696, 38.509868983636345},\n\t\t{697, 38.51329094834429},\n\t\t{698, 38.63409846835321},\n\t\t{699, 38.33551139578646},\n\t\t{700, 37.86178126970245},\n\t\t{701, 37.20625176875522},\n\t\t{702, 37.13864013016608},\n\t\t{703, 36.598956314019325},\n\t\t{704, 36.73225170870823},\n\t\t{705, 36.645909925459954},\n\t\t{706, 36.931378033672665},\n\t\t{707, 37.15159698187774},\n\t\t{708, 37.20499450218726},\n\t\t{709, 37.312534314076736},\n\t\t{710, 38.234122213566266},\n\t\t{711, 38.23482019038691},\n\t\t{712, 39.50821685803287},\n\t\t{713, 39.3687472311753},\n\t\t{714, 40.43514365409954},\n\t\t{715, 40.44682389295688},\n\t\t{716, 39.81067959969004},\n\t\t{717, 39.4239320658717},\n\t\t{718, 39.54620136509768},\n\t\t{719, 39.70807547297041},\n\t\t{720, 39.66237013592385},\n\t\t{721, 39.72023820319751},\n\t\t{722, 40.02829005394066},\n\t\t{723, 39.9923106822397},\n\t\t{724, 39.88229973919716},\n\t\t{725, 39.577778632304906},\n\t\t{726, 39.42713453659046},\n\t\t{727, 39.43664948339558},\n\t\t{728, 39.90314312163109},\n\t\t{729, 40.00741574107013},\n\t\t{730, 40.7177664595581},\n\t\t{731, 40.72045099279074},\n\t\t{732, 38.3054003174184},\n\t\t{733, 37.63394119070095},\n\t\t{734, 37.190128597342806},\n\t\t{735, 37.63802392396217},\n\t\t{736, 37.09659077679385},\n\t\t{737, 37.08430082665866},\n\t\t{738, 37.031926029911546},\n\t\t{739, 36.92762266554352},\n\t\t{740, 36.768283960686276},\n\t\t{741, 36.80986118421022},\n\t\t{742, 37.00023584840072},\n\t\t{743, 37.37757227329164},\n\t\t{744, 37.65237108287256},\n\t\t{745, 37.65431119266612},\n\t\t{746, 37.78202911987313},\n\t\t{747, 37.26755576516154},\n\t\t{748, 37.253878362362926},\n\t\t{749, 37.25181149353707},\n\t\t{750, 38.046853987139436},\n\t\t{751, 38.52088550994239},\n\t\t{752, 38.50060736503108},\n\t\t{753, 39.721168829902766},\n\t\t{754, 39.714977806533284},\n\t\t{755, 41.2027128451164},\n\t\t{756, 41.271353835056736},\n\t\t{757, 41.42756394972893},\n\t\t{758, 41.20791889996719},\n\t\t{759, 41.51542890247571},\n\t\t{760, 41.533271125006856},\n\t\t{761, 41.57431095381387},\n\t\t{762, 42.43297879649776},\n\t\t{763, 42.697486616671064},\n\t\t{764, 42.943817792210965},\n\t\t{765, 43.00326844639773},\n\t\t{766, 43.04122373477804},\n\t\t{767, 42.72385932125831},\n\t\t{768, 42.91563938083615},\n\t\t{769, 43.09789890970447},\n\t\t{770, 43.21939147903337},\n\t\t{771, 42.593500985806116},\n\t\t{772, 42.552074422506266},\n\t\t{773, 41.96625047640962},\n\t\t{774, 42.43760021996765},\n\t\t{775, 42.15036608724706},\n\t\t{776, 42.01801170238841},\n\t\t{777, 42.108251206065354},\n\t\t{778, 42.13720797898185},\n\t\t{779, 41.734510693754125},\n\t\t{780, 41.98861197273539},\n\t\t{781, 41.855890804590906},\n\t\t{782, 41.83653956517087},\n\t\t{783, 41.84729249879647},\n\t\t{784, 41.34451591903922},\n\t\t{785, 41.198937855641844},\n\t\t{786, 40.9934126996872},\n\t\t{787, 40.33193886547389},\n\t\t{788, 40.42177093298795},\n\t\t{789, 40.56423832118387},\n\t\t{790, 40.56930078212437},\n\t\t{791, 40.44001792153413},\n\t\t{792, 39.36239492015202},\n\t\t{793, 39.2299512438198},\n\t\t{794, 39.98930528782557},\n\t\t{795, 39.78753261124546},\n\t\t{796, 39.7771218730521},\n\t\t{797, 40.08078557739916},\n\t\t{798, 39.9026881045777},\n\t\t{799, 39.846598822934695},\n\t\t{800, 39.819165988548605},\n\t\t{801, 39.779536346223246},\n\t\t{802, 39.417184051357914},\n\t\t{803, 39.04248228046798},\n\t\t{804, 39.04467471746209},\n\t\t{805, 39.19976668706493},\n\t\t{806, 38.62608414650186},\n\t\t{807, 38.56950606795273},\n\t\t{808, 38.11427821927686},\n\t\t{809, 38.003564811967195},\n\t\t{810, 38.9186775339263},\n\t\t{811, 39.32280711240079},\n\t\t{812, 39.37066040646152},\n\t\t{813, 39.35771550162152},\n\t\t{814, 39.82593927687213},\n\t\t{815, 39.41511912781052},\n\t\t{816, 39.632089125382805},\n\t\t{817, 39.7013716770543},\n\t\t{818, 39.71871324205181},\n\t\t{819, 39.3691037472924},\n\t\t{820, 39.4630528375144},\n\t\t{821, 39.463557590573124},\n\t\t{822, 39.84149848240294},\n\t\t{823, 39.731112944493475},\n\t\t{824, 39.46553273230596},\n\t\t{825, 38.983001317774516},\n\t\t{826, 39.111806633972954},\n\t\t{827, 39.11241986582127},\n\t\t{828, 39.060815486719235},\n\t\t{829, 38.62106612409818},\n\t\t{830, 38.45726527644363},\n\t\t{831, 38.46243114268653},\n\t\t{832, 37.81089603641852},\n\t\t{833, 37.06489698994548},\n\t\t{834, 35.65801215219413},\n\t\t{835, 35.598044467413054},\n\t\t{836, 35.51269552874315},\n\t\t{837, 35.26479970268285},\n\t\t{838, 36.55531335895278},\n\t\t{839, 36.707855369730034},\n\t\t{840, 36.5489032234404},\n\t\t{841, 36.3485272462068},\n\t\t{842, 36.365162732119266},\n\t\t{843, 36.175883792606705},\n\t\t{844, 36.16643352096541},\n\t\t{845, 36.721302046157795},\n\t\t{846, 36.738751647960406},\n\t\t{847, 36.499637035175965},\n\t\t{848, 36.461882187600125},\n\t\t{849, 36.474313661197286},\n\t\t{850, 36.138203284641186},\n\t\t{851, 36.47458889999187},\n\t\t{852, 36.9122685068765},\n\t\t{853, 36.84193719836966},\n\t\t{854, 36.016869149964144},\n\t\t{855, 35.908626743361204},\n\t\t{856, 35.853057192524155},\n\t\t{857, 35.49400703601318},\n\t\t{858, 35.23328368215224},\n\t\t{859, 35.43381027728788},\n\t\t{860, 35.441912396566295},\n\t\t{861, 36.11980562386126},\n\t\t{862, 35.987081872648865},\n\t\t{863, 35.354742046128464},\n\t\t{864, 35.11437170180045},\n\t\t{865, 35.10075744627144},\n\t\t{866, 35.33061979174065},\n\t\t{867, 35.26826901332004},\n\t\t{868, 34.76420766370852},\n\t\t{869, 34.36825504722903},\n\t\t{870, 33.95310090031108},\n\t\t{871, 34.76854906618263},\n\t\t{872, 34.96941220214851},\n\t\t{873, 34.89082477498721},\n\t\t{874, 34.930226673548425},\n\t\t{875, 34.818344629526955},\n\t\t{876, 33.46752591731415},\n\t\t{877, 32.4461932776035},\n\t\t{878, 32.63093881621515},\n\t\t{879, 32.571549274273316},\n\t\t{880, 31.70273743751098},\n\t\t{881, 31.560570134656707},\n\t\t{882, 30.11896242237412},\n\t\t{883, 29.976753491813355},\n\t\t{884, 30.151470049420453},\n\t\t{885, 29.968667652811302},\n\t\t{886, 29.914108861900175},\n\t\t{887, 29.315297425726456},\n\t\t{888, 29.465096537128055},\n\t\t{889, 30.38412313034993},\n\t\t{890, 30.529005936656326},\n\t\t{891, 30.377111661676715},\n\t\t{892, 30.690112657456975},\n\t\t{893, 31.19665096563887},\n\t\t{894, 30.23180166165202},\n\t\t{895, 30.214575260830543},\n\t\t{896, 30.61887791868095},\n\t\t{897, 31.69516453152183},\n\t\t{898, 31.724657127738052},\n\t\t{899, 31.3260343161325},\n\t\t{900, 31.448576476567858},\n\t\t{901, 31.384197051367188},\n\t\t{902, 31.42382604514501},\n\t\t{903, 31.77933470325809},\n\t\t{904, 31.54527210384609},\n\t\t{905, 31.662859065404803},\n\t\t{906, 31.952233276070345},\n\t\t{907, 31.710429406503827},\n\t\t{908, 31.69910928793987},\n\t\t{909, 31.26054806750292},\n\t\t{910, 31.252913740901814},\n\t\t{911, 31.069356216279907},\n\t\t{912, 31.450376052945543},\n\t\t{913, 31.446602308578885},\n\t\t{914, 32.88848724097737},\n\t\t{915, 32.97405474992589},\n\t\t{916, 32.95989543002121},\n\t\t{917, 33.50228160406862},\n\t\t{918, 33.57376811625785},\n\t\t{919, 33.49455873288756},\n\t\t{920, 32.739675795181945},\n\t\t{921, 32.69683391724602},\n\t\t{922, 33.81401934792278},\n\t\t{923, 33.68504119872676},\n\t\t{924, 33.08473835369315},\n\t\t{925, 32.71783936639953},\n\t\t{926, 33.576629314879405},\n\t\t{927, 33.496669377208725},\n\t\t{928, 32.32323980202774},\n\t\t{929, 32.19540083945545},\n\t\t{930, 31.681562294745188},\n\t\t{931, 31.21936553988134},\n\t\t{932, 32.02350301138198},\n\t\t{933, 31.99391696064781},\n\t\t{934, 31.222294641434715},\n\t\t{935, 31.49393327555392},\n\t\t{936, 31.60562877897029},\n\t\t{937, 31.719747501964054},\n\t\t{938, 31.631337228109494},\n\t\t{939, 31.876599195053196},\n\t\t{940, 31.839975677295737},\n\t\t{941, 31.57998061624259},\n\t\t{942, 32.247156373569744},\n\t\t{943, 33.13453225404717},\n\t\t{944, 33.57148226581986},\n\t\t{945, 33.67881606804257},\n\t\t{946, 34.27627744671606},\n\t\t{947, 34.2667236377486},\n\t\t{948, 35.0394972266412},\n\t\t{949, 35.06221556029825},\n\t\t{950, 35.317831610972426},\n\t\t{951, 35.47650956265658},\n\t\t{952, 35.92884652798027},\n\t\t{953, 36.40171114341679},\n\t\t{954, 35.651733034914436},\n\t\t{955, 36.021038886103796},\n\t\t{956, 36.194620959224366},\n\t\t{957, 36.14405991221338},\n\t\t{958, 36.02271118328351},\n\t\t{959, 36.01617792703485},\n\t\t{960, 36.718644368420634},\n\t\t{961, 36.658954226071046},\n\t\t{962, 36.58675202460727},\n\t\t{963, 35.89078679017791},\n\t\t{964, 35.94749384377098},\n\t\t{965, 35.92838317262612},\n\t\t{966, 34.32490064912566},\n\t\t{967, 33.68329350874763},\n\t\t{968, 33.72780060374807},\n\t\t{969, 33.521931400031036},\n\t\t{970, 33.48546378484414},\n\t\t{971, 33.729671379093105},\n\t\t{972, 32.483138764110244},\n\t\t{973, 32.70061143845538},\n\t\t{974, 31.882058598338592},\n\t\t{975, 31.85978103716163},\n\t\t{976, 31.360355110091252},\n\t\t{977, 31.338506662447838},\n\t\t{978, 31.4975196000238},\n\t\t{979, 31.636516566035457},\n\t\t{980, 31.76928554942759},\n\t\t{981, 31.596565826225252},\n\t\t{982, 31.24504603522091},\n\t\t{983, 30.97685607999551},\n\t\t{984, 30.776149614114455},\n\t\t{985, 30.369022511891757},\n\t\t{986, 30.65823464304316},\n\t\t{987, 30.536961423755283},\n\t\t{988, 30.543171096017304},\n\t\t{989, 29.709033348016842},\n\t\t{990, 29.787775153315135},\n\t\t{991, 30.020098011459627},\n\t\t{992, 30.161570003700696},\n\t\t{993, 30.110594653721783},\n\t\t{994, 30.269521765071406},\n\t\t{995, 30.887702552351005},\n\t\t{996, 31.092501292990715},\n\t\t{997, 30.96235060201595},\n\t\t{998, 31.371052725132344},\n\t\t{999, 31.652461552974707},\n\t\t{1000, 31.925382030352395},\n\t\t{1001, 32.09718279718192},\n\t\t{1002, 32.404705995647134},\n\t\t{1003, 32.40399854679425},\n\t\t{1004, 32.105619052543034},\n\t\t{1005, 32.123902211392696},\n\t\t{1006, 32.26894930916644},\n\t\t{1007, 32.06571185804976},\n\t\t{1008, 32.27138533885846},\n\t\t{1009, 32.459468377391936},\n\t\t{1010, 32.45637104295923},\n\t\t{1011, 33.97355416481095},\n\t\t{1012, 34.073372443262755},\n\t\t{1013, 34.555509854599876},\n\t\t{1014, 34.001992433795586},\n\t\t{1015, 34.028775375039515},\n\t\t{1016, 33.15444517016032},\n\t\t{1017, 33.25999551152861},\n\t\t{1018, 33.56889630842039},\n\t\t{1019, 33.836008073592865},\n\t\t{1020, 34.6557254577998},\n\t\t{1021, 34.16915786529838},\n\t\t{1022, 33.91355886515464},\n\t\t{1023, 33.53814944935212},\n\t\t{1024, 33.73093246034526},\n\t\t{1025, 33.779257221704746},\n\t\t{1026, 33.55901656076105},\n\t\t{1027, 33.522411543634334},\n\t\t{1028, 33.308377022855574},\n\t\t{1029, 33.46872487000558},\n\t\t{1030, 33.398428332372106},\n\t\t{1031, 32.78130678002823},\n\t\t{1032, 32.569113758452666},\n\t\t{1033, 31.58571790720343},\n\t\t{1034, 32.16172427938117},\n\t\t{1035, 31.661979621179476},\n\t\t{1036, 31.632175065844496},\n\t\t{1037, 31.789546741031184},\n\t\t{1038, 32.26513372369237},\n\t\t{1039, 32.18304328830448},\n\t\t{1040, 32.71362639662142},\n\t\t{1041, 31.299268596529224},\n\t\t{1042, 27.792537058477052},\n\t\t{1043, 31.385259077931753},\n\t\t{1044, 30.591065858607116},\n\t\t{1045, 31.272338876555935},\n\t\t{1046, 31.673417165689862},\n\t\t{1047, 31.185485416617453},\n\t\t{1048, 31.29116101415942},\n\t\t{1049, 31.420045699024275},\n\t\t{1050, 32.72027856671056},\n\t\t{1051, 32.70728464282712},\n\t\t{1052, 32.84488754596194},\n\t\t{1053, 33.19971370723099},\n\t\t{1054, 33.00087402494973},\n\t\t{1055, 32.99077340899255},\n\t\t{1056, 32.83232129107784},\n\t\t{1057, 32.30498262311541},\n\t\t{1058, 32.30946094376116},\n\t\t{1059, 32.940891339151776},\n\t\t{1060, 32.68854192681414},\n\t\t{1061, 32.73363409330329},\n\t\t{1062, 32.79589758581314},\n\t\t{1063, 32.289791532294295},\n\t\t{1064, 32.68604720099993},\n\t\t{1065, 33.33078243465505},\n\t\t{1066, 33.54826648297002},\n\t\t{1067, 33.40865566016796},\n\t\t{1068, 33.41296471315078},\n\t\t{1069, 32.77182145012062},\n\t\t{1070, 32.33224727266914},\n\t\t{1071, 32.27203157051601},\n\t\t{1072, 32.26109905266389},\n\t\t{1073, 32.921499096795074},\n\t\t{1074, 33.38395175893338},\n\t\t{1075, 33.78768855190261},\n\t\t{1076, 33.442367223026764},\n\t\t{1077, 33.237913854994794},\n\t\t{1078, 31.147232293821737},\n\t\t{1079, 31.146482126046756},\n\t\t{1080, 31.71150780117646},\n\t\t{1081, 31.814296312484636},\n\t\t{1082, 30.955859429080363},\n\t\t{1083, 30.987259649137073},\n\t\t{1084, 30.89065910781576},\n\t\t{1085, 31.16579586461409},\n\t\t{1086, 31.118733218136573},\n\t\t{1087, 30.533273297600925},\n\t\t{1088, 29.252834071159857},\n\t\t{1089, 29.685743434805644},\n\t\t{1090, 29.705920523322913},\n\t\t{1091, 29.85069842502032},\n\t\t{1092, 30.388305038615574},\n\t\t{1093, 30.161758590806624},\n\t\t{1094, 30.779652282941164},\n\t\t{1095, 30.91190072880913},\n\t\t{1096, 31.56528710281942},\n\t\t{1097, 31.768065818580393},\n\t\t{1098, 31.8230334699979},\n\t\t{1099, 32.1658225590106},\n\t\t{1100, 32.18402247418236},\n\t\t{1101, 33.487267406897004},\n\t\t{1102, 33.51902089155666},\n\t\t{1103, 33.39833431034105},\n\t\t{1104, 32.50713483623776},\n\t\t{1105, 32.66530621931014},\n\t\t{1106, 32.78927126650209},\n\t\t{1107, 32.650964726546256},\n\t\t{1108, 32.70706148431291},\n\t\t{1109, 32.916943844199004},\n\t\t{1110, 32.49004088753038},\n\t\t{1111, 32.945619481604744},\n\t\t{1112, 33.03101393088018},\n\t\t{1113, 33.01159487630862},\n\t\t{1114, 33.17414749212253},\n\t\t{1115, 34.21219988578758},\n\t\t{1116, 34.00043238845383},\n\t\t{1117, 33.61923485510282},\n\t\t{1118, 34.275948039809364},\n\t\t{1119, 33.87944072377637},\n\t\t{1120, 33.57361872056542},\n\t\t{1121, 33.60777850243776},\n\t\t{1122, 33.95519829789812},\n\t\t{1123, 34.101866130091636},\n\t\t{1124, 35.08344176854378},\n\t\t{1125, 35.290045657998256},\n\t\t{1126, 34.99789523160777},\n\t\t{1127, 35.11162512342385},\n\t\t{1128, 35.150203027075506},\n\t\t{1129, 34.9547553234651},\n\t\t{1130, 35.68267560816188},\n\t\t{1131, 35.94530333733083},\n\t\t{1132, 36.40684420002165},\n\t\t{1133, 36.90897436886569},\n\t\t{1134, 36.68925056413046},\n\t\t{1135, 36.77241779692453},\n\t\t{1136, 36.7768373962142},\n\t\t{1137, 36.615559524302526},\n\t\t{1138, 36.15108571210806},\n\t\t{1139, 36.31887166999472},\n\t\t{1140, 36.25359696272827},\n\t\t{1141, 36.04048635034041},\n\t\t{1142, 36.00631287066912},\n\t\t{1143, 36.459483786091326},\n\t\t{1144, 36.523711914237204},\n\t\t{1145, 35.76502964124057},\n\t\t{1146, 36.18603634547918},\n\t\t{1147, 36.143227345894964},\n\t\t{1148, 35.42846972819206},\n\t\t{1149, 34.22551552384586},\n\t\t{1150, 35.085356710729094},\n\t\t{1151, 34.978408345953554},\n\t\t{1152, 35.02162912627897},\n\t\t{1153, 34.6749544956021},\n\t\t{1154, 34.5294083257531},\n\t\t{1155, 33.989361791250865},\n\t\t{1156, 33.90560409554212},\n\t\t{1157, 34.22819180059112},\n\t\t{1158, 35.09979866464593},\n\t\t{1159, 35.459597394271825},\n\t\t{1160, 35.028413870661275},\n\t\t{1161, 35.07365163864229},\n\t\t{1162, 35.008455674695846},\n\t\t{1163, 34.87027987153975},\n\t\t{1164, 32.73740982908738},\n\t\t{1165, 35.86288920810587},\n\t\t{1166, 36.38448730256452},\n\t\t{1167, 35.69198792205293},\n\t\t{1168, 35.7287802068078},\n\t\t{1169, 35.67047911791235},\n\t\t{1170, 35.65931562676154},\n\t\t{1171, 35.63860255804954},\n\t\t{1172, 36.28377914027185},\n\t\t{1173, 36.31724433582806},\n\t\t{1174, 36.42873315721097},\n\t\t{1175, 36.55293797881833},\n\t\t{1176, 36.68858364718202},\n\t\t{1177, 36.68542383419321},\n\t\t{1178, 36.59630640724288},\n\t\t{1179, 36.46919978323624},\n\t\t{1180, 35.97612499492244},\n\t\t{1181, 35.97470028204401},\n\t\t{1182, 36.88186754506275},\n\t\t{1183, 36.89180762556425},\n\t\t{1184, 37.398624973193115},\n\t\t{1185, 37.6485574658129},\n\t\t{1186, 37.59944793075436},\n\t\t{1187, 37.52123044476694},\n\t\t{1188, 37.545545238118},\n\t\t{1189, 37.63568398432097},\n\t\t{1190, 37.60117292673316},\n\t\t{1191, 37.76737303107856},\n\t\t{1192, 37.796708933792935},\n\t\t{1193, 38.44788884052119},\n\t\t{1194, 38.433526334130406},\n\t\t{1195, 38.53261361058563},\n\t\t{1196, 38.20625193191746},\n\t\t{1197, 38.216892858955696},\n\t\t{1198, 38.10624817074387},\n\t\t{1199, 38.31498368822061},\n\t\t{1200, 38.28171670233931},\n\t\t{1201, 38.03504598890333},\n\t\t{1202, 37.469381149070585},\n\t\t{1203, 37.645843865994834},\n\t\t{1204, 37.996863546861626},\n\t\t{1205, 37.39010863231819},\n\t\t{1206, 37.916484620097826},\n\t\t{1207, 37.9792008265341},\n\t\t{1208, 37.56402382212345},\n\t\t{1209, 37.64236828858301},\n\t\t{1210, 38.20048604682538},\n\t\t{1211, 38.1135776386156},\n\t\t{1212, 38.06926736333271},\n\t\t{1213, 37.85109980183144},\n\t\t{1214, 37.8667193253515},\n\t\t{1215, 37.79731989239691},\n\t\t{1216, 37.79569290509785},\n\t\t{1217, 37.507680665850124},\n\t\t{1218, 37.86538998455543},\n\t\t{1219, 37.97413406343451},\n\t\t{1220, 38.153189871670634},\n\t\t{1221, 37.705945919911386},\n\t\t{1222, 38.003018638410715},\n\t\t{1223, 37.97804975659373},\n\t\t{1224, 37.86005819640923},\n\t\t{1225, 37.74622347438676},\n\t\t{1226, 37.24273013769576},\n\t\t{1227, 37.471847978186396},\n\t\t{1228, 36.574577925568015},\n\t\t{1229, 36.898112403986175},\n\t\t{1230, 37.93262825928585},\n\t\t{1231, 37.98350758652906},\n\t\t{1232, 37.3327630080204},\n\t\t{1233, 37.87253628352105},\n\t\t{1234, 37.03465628886385},\n\t\t{1235, 37.3628779234913},\n\t\t{1236, 37.257920892232235},\n\t\t{1237, 37.355020597223806},\n\t\t{1238, 36.42612381389829},\n\t\t{1239, 35.71849960760021},\n\t\t{1240, 35.569737001180215},\n\t\t{1241, 35.639328778372764},\n\t\t{1242, 36.67505414760637},\n\t\t{1243, 36.529877025906195},\n\t\t{1244, 36.17805747298349},\n\t\t{1245, 36.20730061152778},\n\t\t{1246, 36.7654190000416},\n\t\t{1247, 36.066963570873966},\n\t\t{1248, 34.80315462413555},\n\t\t{1249, 34.79204497446974},\n\t\t{1250, 34.96282416930701},\n\t\t{1251, 35.29525328571966},\n\t\t{1252, 35.39276674967225},\n\t\t{1253, 35.17789113339765},\n\t\t{1254, 35.1734239698592},\n\t\t{1255, 36.27186268761327},\n\t\t{1256, 36.12969032844646},\n\t\t{1257, 35.56797468172719},\n\t\t{1258, 35.413952983479305},\n\t\t{1259, 35.473554398381665},\n\t\t{1260, 34.959780400150386},\n\t\t{1261, 34.705612847987084},\n\t\t{1262, 35.122081505219015},\n\t\t{1263, 35.54647234411569},\n\t\t{1264, 35.56585165590874},\n\t\t{1265, 34.07163330273662},\n\t\t{1266, 34.061764136955},\n\t\t{1267, 34.98718482740182},\n\t\t{1268, 35.194478377248124},\n\t\t{1269, 34.814779163097306},\n\t\t{1270, 35.63339066284622},\n\t\t{1271, 36.248018614293784},\n\t\t{1272, 35.89931722172987},\n\t\t{1273, 36.02707673294714},\n\t\t{1274, 35.47928825105021},\n\t\t{1275, 35.339226659095814},\n\t\t{1276, 36.04365822060287},\n\t\t{1277, 36.12975065194946},\n\t\t{1278, 35.657328019340454},\n\t\t{1279, 35.92456974548614},\n\t\t{1280, 36.330656914157935},\n\t\t{1281, 36.192088120039486},\n\t\t{1282, 35.48734879533039},\n\t\t{1283, 35.20967589696835},\n\t\t{1284, 35.16528283177774},\n\t\t{1285, 35.05450151673027},\n\t\t{1286, 34.083660774124404},\n\t\t{1287, 33.772468853879964},\n\t\t{1288, 33.29191351706884},\n\t\t{1289, 33.40417208662001},\n\t\t{1290, 32.607679572698984},\n\t\t{1291, 32.60800666862871},\n\t\t{1292, 32.6060770265256},\n\t\t{1293, 32.50260313437235},\n\t\t{1294, 32.66708354095242},\n\t\t{1295, 32.66682027747426},\n\t\t{1296, 33.0078376785496},\n\t\t{1297, 32.79448909601},\n\t\t{1298, 33.33055451566498},\n\t\t{1299, 33.80720872380922},\n\t\t{1300, 34.03662018610426},\n\t\t{1301, 33.471561770605334},\n\t\t{1302, 33.464542278200675},\n\t\t{1303, 33.5135192502925},\n\t\t{1304, 33.522105679079196},\n\t\t{1305, 33.486732091763336},\n\t\t{1306, 34.102696294452976},\n\t\t{1307, 34.28410402104561},\n\t\t{1308, 34.50821094970082},\n\t\t{1309, 34.2800121277366},\n\t\t{1310, 34.07699583444763},\n\t\t{1311, 33.29032898991077},\n\t\t{1312, 33.447416548419994},\n\t\t{1313, 33.07070289905697},\n\t\t{1314, 32.76441433179846},\n\t\t{1315, 32.35364095869243},\n\t\t{1316, 32.19453136744108},\n\t\t{1317, 32.001227569765504},\n\t\t{1318, 32.1893553685659},\n\t\t{1319, 32.17192961357054},\n\t\t{1320, 32.05156175088731},\n\t\t{1321, 32.01319521995405},\n\t\t{1322, 31.361540797597904},\n\t\t{1323, 31.358737048716332},\n\t\t{1324, 31.4094163556713},\n\t\t{1325, 31.385674150907523},\n\t\t{1326, 30.397821572277874},\n\t\t{1327, 30.430993318308072},\n\t\t{1328, 30.559151734617863},\n\t\t{1329, 30.709052945784077},\n\t\t{1330, 30.762480629193092},\n\t\t{1331, 30.428823245671445},\n\t\t{1332, 30.549369360601233},\n\t\t{1333, 30.401524153538364},\n\t\t{1334, 30.862514784963658},\n\t\t{1335, 30.543179751483258},\n\t\t{1336, 30.546876105280212},\n\t\t{1337, 30.8118556608746},\n\t\t{1338, 30.73308277586123},\n\t\t{1339, 31.09586849152352},\n\t\t{1340, 30.443543543528172},\n\t\t{1341, 30.574438626388865},\n\t\t{1342, 30.433112514559557},\n\t\t{1343, 29.60468065056554},\n\t\t{1344, 29.518027759834045},\n\t\t{1345, 29.530716732475156},\n\t\t{1346, 29.258574444161773},\n\t\t{1347, 28.96213974116116},\n\t\t{1348, 30.094589411608464},\n\t\t{1349, 30.027880530088794},\n\t\t{1350, 30.00173657659883},\n\t\t{1351, 30.7570211333231},\n\t\t{1352, 30.905455874138642},\n\t\t{1353, 30.95776014140416},\n\t\t{1354, 31.25924961163502},\n\t\t{1355, 31.28781614068638},\n\t\t{1356, 31.259224092967646},\n\t\t{1357, 31.471490532081248},\n\t\t{1358, 30.66993696457886},\n\t\t{1359, 29.51601931381402},\n\t\t{1360, 29.658359527955362},\n\t\t{1361, 29.498776144228817},\n\t\t{1362, 29.0952884352307},\n\t\t{1363, 27.583844233928247},\n\t\t{1364, 27.104268459905846},\n\t\t{1365, 25.95144210780829},\n\t\t{1366, 25.823464503416666},\n\t\t{1367, 25.72514162857761},\n\t\t{1368, 25.654123815674225},\n\t\t{1369, 26.051979147188657},\n\t\t{1370, 25.841597348616787},\n\t\t{1371, 25.03088000259754},\n\t\t{1372, 24.40430526113091},\n\t\t{1373, 24.39450861715055},\n\t\t{1374, 24.868258110961357},\n\t\t{1375, 24.87891945990089},\n\t\t{1376, 24.826829203959203},\n\t\t{1377, 24.723127466527284},\n\t\t{1378, 25.189101108151846},\n\t\t{1379, 24.999892026613335},\n\t\t{1380, 25.403952465657824},\n\t\t{1381, 25.395818912419763},\n\t\t{1382, 25.361488701260853},\n\t\t{1383, 25.168837708367573},\n\t\t{1384, 25.822974064286573},\n\t\t{1385, 25.184633998151693},\n\t\t{1386, 25.673392593447062},\n\t\t{1387, 25.493115319468433},\n\t\t{1388, 25.616885562952366},\n\t\t{1389, 26.26185502334556},\n\t\t{1390, 26.63671721716633},\n\t\t{1391, 27.41659614028529},\n\t\t{1392, 27.180001027499763},\n\t\t{1393, 27.31191586358311},\n\t\t{1394, 27.41516507193562},\n\t\t{1395, 27.621542573182392},\n\t\t{1396, 28.333329103903207},\n\t\t{1397, 28.490364050694232},\n\t\t{1398, 28.282737229661876},\n\t\t{1399, 28.487368411327616},\n\t\t{1400, 27.619991904229085},\n\t\t{1401, 27.775228746290942},\n\t\t{1402, 27.75784788858771},\n\t\t{1403, 26.388008503362745},\n\t\t{1404, 26.390446759456594},\n\t\t{1405, 26.804841863728445},\n\t\t{1406, 26.645161583486924},\n\t\t{1407, 25.978560150820044},\n\t\t{1408, 25.928009125329705},\n\t\t{1409, 25.928237301882948},\n\t\t{1410, 25.750677096758384},\n\t\t{1411, 25.3386270250864},\n\t\t{1412, 25.140774560316675},\n\t\t{1413, 24.34074260607449},\n\t\t{1414, 24.754961425981048},\n\t\t{1415, 24.730194413283783},\n\t\t{1416, 24.920450795877183},\n\t\t{1417, 25.024801997124456},\n\t\t{1418, 24.6651943693905},\n\t\t{1419, 25.194960339720506},\n\t\t{1420, 25.34229435510204},\n\t\t{1421, 25.305380825552025},\n\t\t{1422, 25.412841036914795},\n\t\t{1423, 25.505668659821385},\n\t\t{1424, 25.930434241278466},\n\t\t{1425, 25.958267633145237},\n\t\t{1426, 26.031451433938873},\n\t\t{1427, 26.586990196306772},\n\t\t{1428, 27.292096678546},\n\t\t{1429, 28.12071488383503},\n\t\t{1430, 28.02832144500101},\n\t\t{1431, 28.58386148422691},\n\t\t{1432, 28.79404266374261},\n\t\t{1433, 29.738295917981866},\n\t\t{1434, 29.720007389392677},\n\t\t{1435, 29.63633778940114},\n\t\t{1436, 29.68841036823205},\n\t\t{1437, 29.575033122960512},\n\t\t{1438, 29.539149897548384},\n\t\t{1439, 29.80686249903287},\n\t\t{1440, 30.862182502538953},\n\t\t{1441, 30.42493141449586},\n\t\t{1442, 30.427703473898646},\n\t\t{1443, 30.502760352966796},\n\t\t{1444, 30.537509584235174},\n\t\t{1445, 30.206448675310977},\n\t\t{1446, 30.230172108384416},\n\t\t{1447, 30.164364772985248},\n\t\t{1448, 29.417259389108583},\n\t\t{1449, 29.280495127154293},\n\t\t{1450, 29.331776246449813},\n\t\t{1451, 28.98662862990845},\n\t\t{1452, 29.752510306571484},\n\t\t{1453, 29.70066010243845},\n\t\t{1454, 29.357272975382973},\n\t\t{1455, 29.25016590767666},\n\t\t{1456, 29.355245117563307},\n\t\t{1457, 29.533981898101043},\n\t\t{1458, 29.569017902727573},\n\t\t{1459, 29.611976373457114},\n\t\t{1460, 29.731805290138638},\n\t\t{1461, 29.757994213197602},\n\t\t{1462, 30.0901622202274},\n\t\t{1463, 31.279393484956277},\n\t\t{1464, 31.228915684424805},\n\t\t{1465, 31.39987446802975},\n\t\t{1466, 30.81523244839042},\n\t\t{1467, 31.19319811379786},\n\t\t{1468, 31.21869066135987},\n\t\t{1469, 31.378064726660238},\n\t\t{1470, 31.36503448737635},\n\t\t{1471, 30.890723656435668},\n\t\t{1472, 31.278271018448063},\n\t\t{1473, 31.27351266944355},\n\t\t{1474, 30.906433524045895},\n\t\t{1475, 31.094199381637562},\n\t\t{1476, 32.22446329349785},\n\t\t{1477, 31.755676495678124},\n\t\t{1478, 31.863329580086756},\n\t\t{1479, 34.1769485077606},\n\t\t{1480, 33.67109006952487},\n\t\t{1481, 34.032560599893785},\n\t\t{1482, 35.17463593455005},\n\t\t{1483, 34.68680491085987},\n\t\t{1484, 35.34323186904023},\n\t\t{1485, 36.06846197316916},\n\t\t{1486, 35.75474567916718},\n\t\t{1487, 34.95879681397107},\n\t\t{1488, 34.91513272089497},\n\t\t{1489, 34.27429545432343},\n\t\t{1490, 34.47677587538645},\n\t\t{1491, 34.8837191993053},\n\t\t{1492, 34.888682229883216},\n\t\t{1493, 34.6615444728743},\n\t\t{1494, 34.691697874937915},\n\t\t{1495, 34.673137205747096},\n\t\t{1496, 34.619588001105676},\n\t\t{1497, 34.67924802646811},\n\t\t{1498, 34.711467226688804},\n\t\t{1499, 34.378496298766606},\n\t\t{1500, 34.01906505065623},\n\t\t{1501, 34.1921149855785},\n\t\t{1502, 34.645939695035565},\n\t\t{1503, 34.55325778595661},\n\t\t{1504, 34.837013970080854},\n\t\t{1505, 34.3201819146262},\n\t\t{1506, 34.21433963893517},\n\t\t{1507, 34.209807913410046},\n\t\t{1508, 34.29503290261106},\n\t\t{1509, 34.372533557964495},\n\t\t{1510, 34.29249674028179},\n\t\t{1511, 34.1793952178106},\n\t\t{1512, 34.23027204162766},\n\t\t{1513, 34.30024655177506},\n\t\t{1514, 34.29076290991813},\n\t\t{1515, 34.872527881393644},\n\t\t{1516, 34.88183138613434},\n\t\t{1517, 34.99793065640857},\n\t\t{1518, 35.116718830483286},\n\t\t{1519, 35.11046533465197},\n\t\t{1520, 36.014438556584366},\n\t\t{1521, 36.02360905142489},\n\t\t{1522, 35.91482043384545},\n\t\t{1523, 35.809274512011065},\n\t\t{1524, 35.59619773000511},\n\t\t{1525, 35.44019543122139},\n\t\t{1526, 35.64144780604629},\n\t\t{1527, 35.58080982359661},\n\t\t{1528, 35.452624932745614},\n\t\t{1529, 35.467238834711935},\n\t\t{1530, 35.041073967062886},\n\t\t{1531, 34.27022167037798},\n\t\t{1532, 33.77867219668047},\n\t\t{1533, 33.675446148880425},\n\t\t{1534, 34.29649579312852},\n\t\t{1535, 33.80063094230085},\n\t\t{1536, 33.83706673096555},\n\t\t{1537, 34.19813699318839},\n\t\t{1538, 34.67898341154741},\n\t\t{1539, 34.61565170828406},\n\t\t{1540, 34.88435222539337},\n\t\t{1541, 34.74803849982474},\n\t\t{1542, 34.88836986733776},\n\t\t{1543, 34.316664346866176},\n\t\t{1544, 35.1429379016867},\n\t\t{1545, 35.236518386423754},\n\t\t{1546, 35.480022507695814},\n\t\t{1547, 35.51129848892317},\n\t\t{1548, 35.55074228557621},\n\t\t{1549, 35.47965462275921},\n\t\t{1550, 35.1614123321548},\n\t\t{1551, 34.649935916461956},\n\t\t{1552, 33.831408529297455},\n\t\t{1553, 33.68659149830347},\n\t\t{1554, 34.76348070802675},\n\t\t{1555, 34.75436175642519},\n\t\t{1556, 34.670519236256325},\n\t\t{1557, 34.40743801250581},\n\t\t{1558, 35.03821600965653},\n\t\t{1559, 35.074059881857586},\n\t\t{1560, 34.66313179952048},\n\t\t{1561, 34.05122520128333},\n\t\t{1562, 34.369261269504776},\n\t\t{1563, 34.306862410511414},\n\t\t{1564, 34.35513437341248},\n\t\t{1565, 34.42016699549108},\n\t\t{1566, 34.32411882750936},\n\t\t{1567, 35.10444315366103},\n\t\t{1568, 35.21667415434252},\n\t\t{1569, 34.56235394065422},\n\t\t{1570, 34.99569538327316},\n\t\t{1571, 35.051462529787685},\n\t\t{1572, 35.65901988130965},\n\t\t{1573, 35.30919470315533},\n\t\t{1574, 35.43427648307305},\n\t\t{1575, 35.26105873637407},\n\t\t{1576, 34.984210066219426},\n\t\t{1577, 34.974915529232504},\n\t\t{1578, 34.64250053081252},\n\t\t{1579, 34.855051142104344},\n\t\t{1580, 34.61935447447808},\n\t\t{1581, 33.30095950674964},\n\t\t{1582, 33.52159175029287},\n\t\t{1583, 33.30245847520868},\n\t\t{1584, 33.22017010546928},\n\t\t{1585, 33.302509858225584},\n\t\t{1586, 33.37904181575153},\n\t\t{1587, 33.25298440074963},\n\t\t{1588, 33.25372890621039},\n\t\t{1589, 33.55633290212615},\n\t\t{1590, 33.564240306946566},\n\t\t{1591, 33.77554531353173},\n\t\t{1592, 33.77747427631988},\n\t\t{1593, 33.758375775192526},\n\t\t{1594, 34.36417258641864},\n\t\t{1595, 34.31644882079321},\n\t\t{1596, 33.55182639869085},\n\t\t{1597, 33.56219047110169},\n\t\t{1598, 33.44110230199712},\n\t\t{1599, 33.37853776463871},\n\t\t{1600, 32.03520633056414},\n\t\t{1601, 32.091659309762015},\n\t\t{1602, 32.3728274207352},\n\t\t{1603, 32.32296532348558},\n\t\t{1604, 32.248876392188286},\n\t\t{1605, 32.2486900311155},\n\t\t{1606, 32.30827587355294},\n\t\t{1607, 31.55600150552031},\n\t\t{1608, 32.275031428073206},\n\t\t{1609, 32.27879842764017},\n\t\t{1610, 32.12685506952653},\n\t\t{1611, 32.04232751622579},\n\t\t{1612, 32.3717511617595},\n\t\t{1613, 32.90499426727991},\n\t\t{1614, 31.34160341506861},\n\t\t{1615, 32.79935984939758},\n\t\t{1616, 33.3133749284244},\n\t\t{1617, 33.330066949919654},\n\t\t{1618, 33.6696207424472},\n\t\t{1619, 33.44727416894953},\n\t\t{1620, 32.937035354917406},\n\t\t{1621, 32.42098193976603},\n\t\t{1622, 32.40919020921572},\n\t\t{1623, 32.40926615430823},\n\t\t{1624, 31.91939496950345},\n\t\t{1625, 31.745665996112034},\n\t\t{1626, 31.762245569926346},\n\t\t{1627, 31.76510278674478},\n\t\t{1628, 32.18895805255132},\n\t\t{1629, 32.17884231058142},\n\t\t{1630, 31.634810462741328},\n\t\t{1631, 31.569967535436145},\n\t\t{1632, 32.29578832893024},\n\t\t{1633, 32.930732352651475},\n\t\t{1634, 33.03934988366926},\n\t\t{1635, 33.21635409643862},\n\t\t{1636, 33.261326384884754},\n\t\t{1637, 33.39655980314689},\n\t\t{1638, 35.11945078307172},\n\t\t{1639, 35.076572468626274},\n\t\t{1640, 34.95856618844892},\n\t\t{1641, 34.85019550097897},\n\t\t{1642, 34.70787112679453},\n\t\t{1643, 34.64396731467868},\n\t\t{1644, 34.03523254807719},\n\t\t{1645, 34.599545249438016},\n\t\t{1646, 34.911136115744284},\n\t\t{1647, 35.12923123083873},\n\t\t{1648, 34.19771898956377},\n\t\t{1649, 34.081163717338875},\n\t\t{1650, 33.952021163589286},\n\t\t{1651, 34.03909563960654},\n\t\t{1652, 33.826004075423334},\n\t\t{1653, 33.69501183562262},\n\t\t{1654, 33.54101912632574},\n\t\t{1655, 33.534398838396605},\n\t\t{1656, 33.551479085175345},\n\t\t{1657, 34.17014679283176},\n\t\t{1658, 33.68298225679782},\n\t\t{1659, 33.914956135823154},\n\t\t{1660, 33.85350696847641},\n\t\t{1661, 33.5930418617416},\n\t\t{1662, 33.698585740003914},\n\t\t{1663, 33.53164709646962},\n\t\t{1664, 32.942749249597995},\n\t\t{1665, 32.78927293361512},\n\t\t{1666, 32.805622975726415},\n\t\t{1667, 32.678834731539396},\n\t\t{1668, 32.49005865138826},\n\t\t{1669, 32.45598674269622},\n\t\t{1670, 32.38305018611963},\n\t\t{1671, 32.39849660167694},\n\t\t{1672, 33.26082532734355},\n\t\t{1673, 33.32014170105489},\n\t\t{1674, 33.73004210039798},\n\t\t{1675, 33.724298776862106},\n\t\t{1676, 33.68423539254731},\n\t\t{1677, 33.563159682253556},\n\t\t{1678, 33.46610598060115},\n\t\t{1679, 33.46576401188156},\n\t\t{1680, 33.6082093792797},\n\t\t{1681, 34.06829829976045},\n\t\t{1682, 33.78773476628623},\n\t\t{1683, 33.847057378024175},\n\t\t{1684, 35.250271418221374},\n\t\t{1685, 35.09767253763393},\n\t\t{1686, 35.074861457363895},\n\t\t{1687, 35.40140497372611},\n\t\t{1688, 36.31807881704327},\n\t\t{1689, 37.93153971576717},\n\t\t{1690, 37.96917757654617},\n\t\t{1691, 38.22198787034048},\n\t\t{1692, 38.23678368537367},\n\t\t{1693, 38.20599590804662},\n\t\t{1694, 38.68369317469104},\n\t\t{1695, 38.79215511609461},\n\t\t{1696, 38.802109502845106},\n\t\t{1697, 38.753495704229714},\n\t\t{1698, 38.96421874631208},\n\t\t{1699, 38.90821233250077},\n\t\t{1700, 39.16182425119748},\n\t\t{1701, 38.853831057337715},\n\t\t{1702, 38.63611099293661},\n\t\t{1703, 38.24474852988975},\n\t\t{1704, 38.38469009174058},\n\t\t{1705, 38.32872094403988},\n\t\t{1706, 38.153737338484326},\n\t\t{1707, 38.264923332806745},\n\t\t{1708, 38.280563758044565},\n\t\t{1709, 38.18750466726223},\n\t\t{1710, 38.56983066481024},\n\t\t{1711, 39.505085657555355},\n\t\t{1712, 39.69872974322229},\n\t\t{1713, 40.39204144577866},\n\t\t{1714, 40.48553785053598},\n\t\t{1715, 41.3269897150344},\n\t\t{1716, 41.609581527655735},\n\t\t{1717, 41.65892696057186},\n\t\t{1718, 41.837313217148804},\n\t\t{1719, 41.8289668854985},\n\t\t{1720, 42.15881862704277},\n\t\t{1721, 42.73710053588433},\n\t\t{1722, 42.348456207492845},\n\t\t{1723, 42.096157824123665},\n\t\t{1724, 41.92253556951924},\n\t\t{1725, 41.917137854036646},\n\t\t{1726, 41.97608613143687},\n\t\t{1727, 41.72574431293022},\n\t\t{1728, 41.24861627279633},\n\t\t{1729, 41.87472943187815},\n\t\t{1730, 41.87568170648001},\n\t\t{1731, 42.17909911414902},\n\t\t{1732, 42.049177661936255},\n\t\t{1733, 41.97474828244962},\n\t\t{1734, 41.356541003497355},\n\t\t{1735, 41.22195929777421},\n\t\t{1736, 41.194030410051106},\n\t\t{1737, 41.392479793475935},\n\t\t{1738, 41.34843546848941},\n\t\t{1739, 41.34402528705148},\n\t\t{1740, 42.07661962525981},\n\t\t{1741, 41.52647896910617},\n\t\t{1742, 41.44561097861686},\n\t\t{1743, 40.958470191837534},\n\t\t{1744, 41.037829903821645},\n\t\t{1745, 41.07205195864329},\n\t\t{1746, 41.46906637533652},\n\t\t{1747, 41.49343224957735},\n\t\t{1748, 40.610182804195105},\n\t\t{1749, 41.017801824810185},\n\t\t{1750, 40.79059366319508},\n\t\t{1751, 40.70441966049171},\n\t\t{1752, 40.70503981535662},\n\t\t{1753, 39.93683574905368},\n\t\t{1754, 39.752239396736506},\n\t\t{1755, 39.7645522699645},\n\t\t{1756, 39.55588740392734},\n\t\t{1757, 39.74727156272358},\n\t\t{1758, 39.9737782466988},\n\t\t{1759, 40.39693575020464},\n\t\t{1760, 40.216674372755165},\n\t\t{1761, 40.25136763580497},\n\t\t{1762, 39.38556407545778},\n\t\t{1763, 39.26119592497736},\n\t\t{1764, 39.16195286452751},\n\t\t{1765, 38.86948923485995},\n\t\t{1766, 39.61600974311452},\n\t\t{1767, 39.39522112770508},\n\t\t{1768, 39.514089866690526},\n\t\t{1769, 39.45799756858736},\n\t\t{1770, 38.90570527579156},\n\t\t{1771, 38.80478381534035},\n\t\t{1772, 38.83322167157176},\n\t\t{1773, 39.64297039815119},\n\t\t{1774, 40.33223301684341},\n\t\t{1775, 40.41694728495109},\n\t\t{1776, 40.06020383799442},\n\t\t{1777, 40.07361881200165},\n\t\t{1778, 39.77916448556436},\n\t\t{1779, 39.96893684870016},\n\t\t{1780, 40.57894081959218},\n\t\t{1781, 39.89797496618613},\n\t\t{1782, 39.35261558123242},\n\t\t{1783, 39.36008989987693},\n\t\t{1784, 38.0512977550727},\n\t\t{1785, 38.264000581925124},\n\t\t{1786, 38.26169623365976},\n\t\t{1787, 39.10252385765842},\n\t\t{1788, 39.27088966509622},\n\t\t{1789, 39.15216453676914},\n\t\t{1790, 39.41049327702329},\n\t\t{1791, 39.39907719439436},\n\t\t{1792, 38.82328669157878},\n\t\t{1793, 39.35804609496024},\n\t\t{1794, 39.52870877903105},\n\t\t{1795, 40.562208982859616},\n\t\t{1796, 41.015089776340226},\n\t\t{1797, 40.87083252184389},\n\t\t{1798, 40.53994999420047},\n\t\t{1799, 41.02575733506004},\n\t\t{1800, 41.17619373256442},\n\t\t{1801, 41.19685023564847},\n\t\t{1802, 40.98189573065346},\n\t\t{1803, 41.159763360041595},\n\t\t{1804, 41.59421552557119},\n\t\t{1805, 41.20806640088285},\n\t\t{1806, 40.414699831836835},\n\t\t{1807, 39.92415966374783},\n\t\t{1808, 39.62606546104271},\n\t\t{1809, 39.857180263975444},\n\t\t{1810, 39.59080107893363},\n\t\t{1811, 39.6974862276464},\n\t\t{1812, 39.442229052918876},\n\t\t{1813, 39.30199180817845},\n\t\t{1814, 39.48025720867229},\n\t\t{1815, 39.5287187420122},\n\t\t{1816, 38.853563440015805},\n\t\t{1817, 38.77749075357144},\n\t\t{1818, 39.12960232658636},\n\t\t{1819, 39.07838534119988},\n\t\t{1820, 39.149292277699324},\n\t\t{1821, 39.00774814154133},\n\t\t{1822, 38.63589451271645},\n\t\t{1823, 38.95501568270912},\n\t\t{1824, 38.4982817921926},\n\t\t{1825, 39.10088500152322},\n\t\t{1826, 39.59621160868451},\n\t\t{1827, 39.45833354062081},\n\t\t{1828, 39.59936421761144},\n\t\t{1829, 39.57053924615646},\n\t\t{1830, 39.55660528183884},\n\t\t{1831, 39.71569674116191},\n\t\t{1832, 39.71328630121623},\n\t\t{1833, 39.5500745849456},\n\t\t{1834, 39.52081122302288},\n\t\t{1835, 38.74032920127892},\n\t\t{1836, 39.19864530117539},\n\t\t{1837, 39.06947571924525},\n\t\t{1838, 39.34422885689023},\n\t\t{1839, 39.6353362225693},\n\t\t{1840, 40.71459696346432},\n\t\t{1841, 40.66496952468566},\n\t\t{1842, 41.006778236777826},\n\t\t{1843, 40.98904213311685},\n\t\t{1844, 40.108733704463795},\n\t\t{1845, 39.422159369592656},\n\t\t{1846, 39.23842350070322},\n\t\t{1847, 37.531170184849564},\n\t\t{1848, 38.05353522108415},\n\t\t{1849, 38.31111320664359},\n\t\t{1850, 38.64900610422957},\n\t\t{1851, 38.686484249347565},\n\t\t{1852, 38.68434197825875},\n\t\t{1853, 38.72332458907287},\n\t\t{1854, 38.81119764084882},\n\t\t{1855, 38.46493433585336},\n\t\t{1856, 38.51556317974943},\n\t\t{1857, 38.764010535750494},\n\t\t{1858, 38.55294929767745},\n\t\t{1859, 38.078366113942565},\n\t\t{1860, 38.42988961361437},\n\t\t{1861, 39.047014068329304},\n\t\t{1862, 39.532635843081685},\n\t\t{1863, 39.10571993423328},\n\t\t{1864, 39.60131420080908},\n\t\t{1865, 38.81680138357229},\n\t\t{1866, 39.25082176080607},\n\t\t{1867, 38.15677220409511},\n\t\t{1868, 38.62555210254061},\n\t\t{1869, 38.47132788365266},\n\t\t{1870, 38.487714681626166},\n\t\t{1871, 38.39888830728324},\n\t\t{1872, 37.54975105530615},\n\t\t{1873, 36.620496899833185},\n\t\t{1874, 36.76592939311881},\n\t\t{1875, 36.77417927197788},\n\t\t{1876, 36.78457313190018},\n\t\t{1877, 36.726556157401774},\n\t\t{1878, 37.19484339680942},\n\t\t{1879, 37.12075085414386},\n\t\t{1880, 36.977258419880144},\n\t\t{1881, 36.91078025788851},\n\t\t{1882, 37.02130072401423},\n\t\t{1883, 36.55535121811925},\n\t\t{1884, 35.989467257305485},\n\t\t{1885, 35.963032268137205},\n\t\t{1886, 36.010752822606925},\n\t\t{1887, 36.02787704722448},\n\t\t{1888, 36.49326570398064},\n\t\t{1889, 36.23934542841747},\n\t\t{1890, 35.87776015328743},\n\t\t{1891, 35.09797528518658},\n\t\t{1892, 35.077065290325194},\n\t\t{1893, 35.311414001953885},\n\t\t{1894, 34.57305509209034},\n\t\t{1895, 34.6842074805997},\n\t\t{1896, 34.80183031401632},\n\t\t{1897, 35.47101264307737},\n\t\t{1898, 35.17048394585489},\n\t\t{1899, 35.089175368832215},\n\t\t{1900, 35.22509160122155},\n\t\t{1901, 35.01261679236839},\n\t\t{1902, 35.20621635881338},\n\t\t{1903, 35.37294264170206},\n\t\t{1904, 34.459027714667855},\n\t\t{1905, 35.092154761591416},\n\t\t{1906, 34.8517351148361},\n\t\t{1907, 34.86550272062247},\n\t\t{1908, 35.125600870401854},\n\t\t{1909, 34.83446288221645},\n\t\t{1910, 34.78242112077965},\n\t\t{1911, 34.31203602602105},\n\t\t{1912, 34.279540168694986},\n\t\t{1913, 35.1096803630126},\n\t\t{1914, 34.514233849300744},\n\t\t{1915, 34.53539867779291},\n\t\t{1916, 34.279414052434674},\n\t\t{1917, 34.36455267465703},\n\t\t{1918, 34.10174900420402},\n\t\t{1919, 34.41175163800032},\n\t\t{1920, 34.291999205288036},\n\t\t{1921, 34.19594013042914},\n\t\t{1922, 34.18838364564101},\n\t\t{1923, 36.07392483120914},\n\t\t{1924, 36.05098431555323},\n\t\t{1925, 36.76095964181586},\n\t\t{1926, 37.82863560027054},\n\t\t{1927, 37.52980493319014},\n\t\t{1928, 37.53527503569141},\n\t\t{1929, 37.512668716830554},\n\t\t{1930, 37.11106227609642},\n\t\t{1931, 37.349978643969806},\n\t\t{1932, 37.20979207398837},\n\t\t{1933, 37.29059943130983},\n\t\t{1934, 37.12675552575493},\n\t\t{1935, 37.34021255585861},\n\t\t{1936, 37.33863802694112},\n\t\t{1937, 36.93793225844994},\n\t\t{1938, 36.96147855185145},\n\t\t{1939, 37.079544775050316},\n\t\t{1940, 36.96800493367608},\n\t\t{1941, 36.62130515314802},\n\t\t{1942, 36.64654224799271},\n\t\t{1943, 36.564393168165026},\n\t\t{1944, 36.76798510268848},\n\t\t{1945, 36.34484500467934},\n\t\t{1946, 35.77622429269998},\n\t\t{1947, 36.28861461359311},\n\t\t{1948, 35.62308019530623},\n\t\t{1949, 35.44131748549641},\n\t\t{1950, 34.85392909768805},\n\t\t{1951, 34.55133668610086},\n\t\t{1952, 35.092025906373635},\n\t\t{1953, 34.768122961192404},\n\t\t{1954, 35.02372314142307},\n\t\t{1955, 35.11384033534372},\n\t\t{1956, 35.09859916781124},\n\t\t{1957, 35.63073140705392},\n\t\t{1958, 35.47556248383545},\n\t\t{1959, 34.87826460124942},\n\t\t{1960, 34.87959003890974},\n\t\t{1961, 34.025365090862095},\n\t\t{1962, 33.804380004654575},\n\t\t{1963, 32.78020946544929},\n\t\t{1964, 32.75918431846117},\n\t\t{1965, 32.75851314921747},\n\t\t{1966, 32.93198375479733},\n\t\t{1967, 35.25828074460553},\n\t\t{1968, 34.28240693566641},\n\t\t{1969, 34.339864432373425},\n\t\t{1970, 34.12397376413126},\n\t\t{1971, 34.79011341612875},\n\t\t{1972, 34.64686103755323},\n\t\t{1973, 34.599313028973235},\n\t\t{1974, 34.53242934134927},\n\t\t{1975, 34.606548457455425},\n\t\t{1976, 34.83272344102554},\n\t\t{1977, 34.49913157098365},\n\t\t{1978, 34.70437557256804},\n\t\t{1979, 35.19565588926615},\n\t\t{1980, 35.185492244262484},\n\t\t{1981, 33.550787666460536},\n\t\t{1982, 34.02484580154227},\n\t\t{1983, 34.15044793215261},\n\t\t{1984, 34.543313702949256},\n\t\t{1985, 34.49383893491851},\n\t\t{1986, 34.69468439935647},\n\t\t{1987, 34.36140916945972},\n\t\t{1988, 33.199535764838636},\n\t\t{1989, 33.54089185371181},\n\t\t{1990, 33.25543526295492},\n\t\t{1991, 33.126250139798344},\n\t\t{1992, 32.1006804695537},\n\t\t{1993, 32.11793625750763},\n\t\t{1994, 31.547141310894098},\n\t\t{1995, 31.358848538734513},\n\t\t{1996, 30.96324192071878},\n\t\t{1997, 31.081433577858583},\n\t\t{1998, 31.004611604459708},\n\t\t{1999, 30.86284767543519},\n\t\t{2000, 30.105433307161203},\n\t\t{2001, 29.32024170286219},\n\t\t{2002, 29.319658236582814},\n\t\t{2003, 29.758958255855212},\n\t\t{2004, 30.117663632341145},\n\t\t{2005, 29.548890824528907},\n\t\t{2006, 29.35044585015188},\n\t\t{2007, 29.38762759040267},\n\t\t{2008, 29.391950686507506},\n\t\t{2009, 30.353380249710128},\n\t\t{2010, 29.46899984490753},\n\t\t{2011, 29.33586115695675},\n\t\t{2012, 29.36114381531963},\n\t\t{2013, 29.256022938524392},\n\t\t{2014, 29.207874497314503},\n\t\t{2015, 29.266115045795534},\n\t\t{2016, 29.11037246533442},\n\t\t{2017, 29.98833975350206},\n\t\t{2018, 29.827356428113166},\n\t\t{2019, 29.196369679790173},\n\t\t{2020, 29.09133736287457},\n\t\t{2021, 29.35398305475309},\n\t\t{2022, 29.54604416792868},\n\t\t{2023, 28.36216318117799},\n\t\t{2024, 28.172545798424313},\n\t\t{2025, 29.167896346989487},\n\t\t{2026, 29.134747648857985},\n\t\t{2027, 28.0133642954549},\n\t\t{2028, 27.97694686027503},\n\t\t{2029, 28.374194072568063},\n\t\t{2030, 28.37095153088029},\n\t\t{2031, 28.388216858848796},\n\t\t{2032, 27.992329533869835},\n\t\t{2033, 27.367870148995426},\n\t\t{2034, 27.251995482961384},\n\t\t{2035, 27.746729670664767},\n\t\t{2036, 27.679330290354688},\n\t\t{2037, 28.028729073068334},\n\t\t{2038, 28.028705243794963},\n\t\t{2039, 28.350786367009555},\n\t\t{2040, 28.352026432670012},\n\t\t{2041, 28.225867429505602},\n\t\t{2042, 28.211139910084785},\n\t\t{2043, 28.126532263542863},\n\t\t{2044, 28.0111605756859},\n\t\t{2045, 28.037986830307158},\n\t\t{2046, 27.771048205304385},\n\t\t{2047, 28.101282898505325},\n\t\t{2048, 27.956754355558264},\n\t\t{2049, 28.898451768426284},\n\t\t{2050, 28.33803560429799},\n\t\t{2051, 28.51219696371789},\n\t\t{2052, 28.687032331939648},\n\t\t{2053, 28.519256261795114},\n\t\t{2054, 28.534411822889545},\n\t\t{2055, 28.475878463300383},\n\t\t{2056, 28.425823720753847},\n\t\t{2057, 28.531458363352172},\n\t\t{2058, 28.371986321151727},\n\t\t{2059, 27.281010674258564},\n\t\t{2060, 27.285423846392753},\n\t\t{2061, 26.982970399775176},\n\t\t{2062, 26.779917891194174},\n\t\t{2063, 27.334018434853117},\n\t\t{2064, 27.261844645356348},\n\t\t{2065, 27.08643958372844},\n\t\t{2066, 27.399456700893154},\n\t\t{2067, 27.35064731231653},\n\t\t{2068, 27.27964623953228},\n\t\t{2069, 27.594268915970815},\n\t\t{2070, 27.529530803142432},\n\t\t{2071, 27.57032488737316},\n\t\t{2072, 27.4481123592095},\n\t\t{2073, 26.840190037017013},\n\t\t{2074, 25.848284039508844},\n\t\t{2075, 27.842568040851305},\n\t\t{2076, 28.053732543316965},\n\t\t{2077, 28.626766043264496},\n\t\t{2078, 28.147220846160913},\n\t\t{2079, 28.116929624170805},\n\t\t{2080, 28.006707726319842},\n\t\t{2081, 28.30104291864807},\n\t\t{2082, 28.33894272086177},\n\t\t{2083, 28.44881078446907},\n\t\t{2084, 28.407665090419357},\n\t\t{2085, 29.120266868128827},\n\t\t{2086, 29.3317588176526},\n\t\t{2087, 29.665040474972592},\n\t\t{2088, 29.513552545038365},\n\t\t{2089, 29.692597123031344},\n\t\t{2090, 28.981378296214995},\n\t\t{2091, 29.09551924330645},\n\t\t{2092, 29.103036068928503},\n\t\t{2093, 29.546315663547908},\n\t\t{2094, 29.957633494290146},\n\t\t{2095, 29.904489752089027},\n\t\t{2096, 29.905243264397946},\n\t\t{2097, 29.046115152161175},\n\t\t{2098, 29.044952829872138},\n\t\t{2099, 29.266240445467794},\n\t\t{2100, 29.59245009354912},\n\t\t{2101, 29.711595098413557},\n\t\t{2102, 30.01909364831503},\n\t\t{2103, 30.02844709237877},\n\t\t{2104, 29.95602684268363},\n\t\t{2105, 29.966649831798698},\n\t\t{2106, 29.870132199150568},\n\t\t{2107, 30.054469107153587},\n\t\t{2108, 30.00047327238945},\n\t\t{2109, 29.56478041606059},\n\t\t{2110, 29.90146475387948},\n\t\t{2111, 29.622907648647697},\n\t\t{2112, 30.309630232664347},\n\t\t{2113, 29.964474309001496},\n\t\t{2114, 29.49100419801057},\n\t\t{2115, 29.961421989896223},\n\t\t{2116, 30.346134915473066},\n\t\t{2117, 30.604426349400814},\n\t\t{2118, 31.112159919665434},\n\t\t{2119, 31.422724201504558},\n\t\t{2120, 31.585365400843976},\n\t\t{2121, 31.996984724582912},\n\t\t{2122, 32.01819220164321},\n\t\t{2123, 29.835521461379106},\n\t\t{2124, 30.096046165850005},\n\t\t{2125, 30.103782504040677},\n\t\t{2126, 30.053631787942646},\n\t\t{2127, 29.906750519100672},\n\t\t{2128, 29.906138940448397},\n\t\t{2129, 29.852649788445774},\n\t\t{2130, 30.207615016068207},\n\t\t{2131, 30.820165055355577},\n\t\t{2132, 30.66806843164003},\n\t\t{2133, 29.933937853455785},\n\t\t{2134, 29.836930249713454},\n\t\t{2135, 29.643987595361455},\n\t\t{2136, 30.19074784312923},\n\t\t{2137, 30.22542736675569},\n\t\t{2138, 29.853735660522815},\n\t\t{2139, 29.84557151500528},\n\t\t{2140, 29.839193019325773},\n\t\t{2141, 31.156302724258683},\n\t\t{2142, 31.25546101123808},\n\t\t{2143, 31.108453918938817},\n\t\t{2144, 30.666860514055692},\n\t\t{2145, 30.645333186456657},\n\t\t{2146, 30.170151295689198},\n\t\t{2147, 30.295207809019463},\n\t\t{2148, 30.8518824742632},\n\t\t{2149, 31.113576998851187},\n\t\t{2150, 31.31604954619179},\n\t\t{2151, 31.312585749752536},\n\t\t{2152, 30.864704949670024},\n\t\t{2153, 30.89452281143898},\n\t\t{2154, 31.23342385585233},\n\t\t{2155, 31.404784721717572},\n\t\t{2156, 31.18805814717659},\n\t\t{2157, 31.837154644201334},\n\t\t{2158, 31.806849694846097},\n\t\t{2159, 31.730917911346975},\n\t\t{2160, 31.640559706015285},\n\t\t{2161, 31.04070924433706},\n\t\t{2162, 29.808188744723488},\n\t\t{2163, 30.56052952306829},\n\t\t{2164, 30.606670887563382},\n\t\t{2165, 30.40372997396476},\n\t\t{2166, 30.720199473446222},\n\t\t{2167, 30.76154769857017},\n\t\t{2168, 30.970925562360136},\n\t\t{2169, 31.019650519858754},\n\t\t{2170, 31.229380140618062},\n\t\t{2171, 31.388864514313752},\n\t\t{2172, 31.354301610850698},\n\t\t{2173, 30.99276274081928},\n\t\t{2174, 31.915179561018494},\n\t\t{2175, 31.918576205835393},\n\t\t{2176, 33.159103841393794},\n\t\t{2177, 33.29787809852651},\n\t\t{2178, 33.01252169346593},\n\t\t{2179, 33.02073471727393},\n\t\t{2180, 32.99606635802466},\n\t\t{2181, 33.00728410289347},\n\t\t{2182, 34.05607738376311},\n\t\t{2183, 33.15858774223605},\n\t\t{2184, 33.43289159046996},\n\t\t{2185, 33.4955768254167},\n\t\t{2186, 33.49850941243009},\n\t\t{2187, 33.6849166584474},\n\t\t{2188, 33.94841513146962},\n\t\t{2189, 33.30304766805812},\n\t\t{2190, 33.22108394356688},\n\t\t{2191, 32.69882923499378},\n\t\t{2192, 32.427937313925405},\n\t\t{2193, 32.18858592278298},\n\t\t{2194, 32.32103253993895},\n\t\t{2195, 32.71485240989556},\n\t\t{2196, 33.33520209595963},\n\t\t{2197, 33.263196044170755},\n\t\t{2198, 32.710035724800086},\n\t\t{2199, 33.15410338967067},\n\t\t{2200, 33.49162431986145},\n\t\t{2201, 33.710578425275074},\n\t\t{2202, 33.32543853826808},\n\t\t{2203, 33.25527764293191},\n\t\t{2204, 33.46839755330703},\n\t\t{2205, 33.683203814839125},\n\t\t{2206, 33.73810431818219},\n\t\t{2207, 33.26839137241745},\n\t\t{2208, 32.870015366666216},\n\t\t{2209, 33.00655626613422},\n\t\t{2210, 33.461231149892406},\n\t\t{2211, 33.89423423998636},\n\t\t{2212, 33.50309147431082},\n\t\t{2213, 33.579287468108},\n\t\t{2214, 33.66791505848393},\n\t\t{2215, 34.38967435369897},\n\t\t{2216, 36.28181224897229},\n\t\t{2217, 36.88357351027984},\n\t\t{2218, 36.84878280662571},\n\t\t{2219, 37.47217008391058},\n\t\t{2220, 37.84817431115949},\n\t\t{2221, 37.90417263033801},\n\t\t{2222, 37.83987872444627},\n\t\t{2223, 37.32997096688406},\n\t\t{2224, 37.4853701637283},\n\t\t{2225, 38.101980955554055},\n\t\t{2226, 37.634879540380766},\n\t\t{2227, 37.458475294951995},\n\t\t{2228, 37.24084436632412},\n\t\t{2229, 38.45249609002218},\n\t\t{2230, 37.85699416217567},\n\t\t{2231, 37.35638525020401},\n\t\t{2232, 37.34244352498811},\n\t\t{2233, 37.61816197522845},\n\t\t{2234, 37.16649173849021},\n\t\t{2235, 37.47322953068236},\n\t\t{2236, 37.2333430674181},\n\t\t{2237, 37.14977263499141},\n\t\t{2238, 36.93966508491671},\n\t\t{2239, 37.069212698488194},\n\t\t{2240, 37.13031285412952},\n\t\t{2241, 37.12637993171949},\n\t\t{2242, 36.91777324959473},\n\t\t{2243, 36.89130918063377},\n\t\t{2244, 36.83287503871216},\n\t\t{2245, 37.20202075141188},\n\t\t{2246, 36.83524257279788},\n\t\t{2247, 36.830944738890715},\n\t\t{2248, 36.98000618572528},\n\t\t{2249, 37.42482479721468},\n\t\t{2250, 37.63036405693426},\n\t\t{2251, 36.667366298537495},\n\t\t{2252, 36.752893008045845},\n\t\t{2253, 36.353792852732994},\n\t\t{2254, 36.68479700023098},\n\t\t{2255, 36.69141503905663},\n\t\t{2256, 36.87350479821814},\n\t\t{2257, 36.165233755112176},\n\t\t{2258, 35.733553198879285},\n\t\t{2259, 35.48805636280678},\n\t\t{2260, 35.620206059835176},\n\t\t{2261, 35.633174461262},\n\t\t{2262, 35.8437425347841},\n\t\t{2263, 35.9725442605288},\n\t\t{2264, 35.30481451302577},\n\t\t{2265, 34.799856216789664},\n\t\t{2266, 35.20793503084299},\n\t\t{2267, 35.15095956450417},\n\t\t{2268, 35.52063000497536},\n\t\t{2269, 35.7847373835048},\n\t\t{2270, 35.4149729701676},\n\t\t{2271, 35.20790810237125},\n\t\t{2272, 35.015963290895314},\n\t\t{2273, 35.152141159882405},\n\t\t{2274, 34.7677733076443},\n\t\t{2275, 34.48805775061282},\n\t\t{2276, 34.48754941675096},\n\t\t{2277, 34.31241590281594},\n\t\t{2278, 34.39912341428924},\n\t\t{2279, 34.214813920779555},\n\t\t{2280, 34.28073309875244},\n\t\t{2281, 33.48991097769715},\n\t\t{2282, 33.48007351832354},\n\t\t{2283, 34.358913453235225},\n\t\t{2284, 34.81847331063591},\n\t\t{2285, 35.01545093767003},\n\t\t{2286, 35.522962489940845},\n\t\t{2287, 35.4137445712856},\n\t\t{2288, 36.11012685056512},\n\t\t{2289, 36.22211408792958},\n\t\t{2290, 36.18967456479244},\n\t\t{2291, 36.19988717533946},\n\t\t{2292, 36.82497371024283},\n\t\t{2293, 36.828687017747605},\n\t\t{2294, 36.81449738807559},\n\t\t{2295, 36.83820772921837},\n\t\t{2296, 37.24345441577025},\n\t\t{2297, 36.92597317758977},\n\t\t{2298, 35.8576345692627},\n\t\t{2299, 35.88555065526424},\n\t\t{2300, 36.06990172210221},\n\t\t{2301, 35.94117611192266},\n\t\t{2302, 35.917302525035176},\n\t\t{2303, 35.67840840680457},\n\t\t{2304, 36.24622015952215},\n\t\t{2305, 36.3620909907333},\n\t\t{2306, 36.530845130699554},\n\t\t{2307, 37.10057430482785},\n\t\t{2308, 36.99538603909066},\n\t\t{2309, 37.317285421916054},\n\t\t{2310, 37.023853418725835},\n\t\t{2311, 37.331141223084856},\n\t\t{2312, 36.8562932336869},\n\t\t{2313, 36.872868345401656},\n\t\t{2314, 37.29544282161283},\n\t\t{2315, 37.162364534385944},\n\t\t{2316, 37.12578408822864},\n\t\t{2317, 37.27181141630765},\n\t\t{2318, 37.4312789350087},\n\t\t{2319, 37.13237760566537},\n\t\t{2320, 37.11211557589226},\n\t\t{2321, 36.8242524461256},\n\t\t{2322, 36.99871196220295},\n\t\t{2323, 36.53900862036208},\n\t\t{2324, 37.02861438655951},\n\t\t{2325, 36.87864302249147},\n\t\t{2326, 37.35471016767267},\n\t\t{2327, 37.48320749003392},\n\t\t{2328, 37.90669667178226},\n\t\t{2329, 38.226516715835075},\n\t\t{2330, 38.22517385982157},\n\t\t{2331, 38.517597628277066},\n\t\t{2332, 39.13171392966848},\n\t\t{2333, 38.43519575012611},\n\t\t{2334, 39.019538645173135},\n\t\t{2335, 38.96816384019192},\n\t\t{2336, 39.18980442092051},\n\t\t{2337, 39.20626086856055},\n\t\t{2338, 38.91508217017819},\n\t\t{2339, 39.768877736103605},\n\t\t{2340, 39.77576200648055},\n\t\t{2341, 39.70340066789778},\n\t\t{2342, 39.28514875368393},\n\t\t{2343, 39.45020952653042},\n\t\t{2344, 39.39155936608262},\n\t\t{2345, 38.98575368659195},\n\t\t{2346, 39.07457749590117},\n\t\t{2347, 39.315569014125366},\n\t\t{2348, 39.534223631257824},\n\t\t{2349, 39.46496086158911},\n\t\t{2350, 39.68920036760856},\n\t\t{2351, 39.76991133023266},\n\t\t{2352, 39.535528882389414},\n\t\t{2353, 38.78464337191674},\n\t\t{2354, 38.84802165134902},\n\t\t{2355, 39.13969405342098},\n\t\t{2356, 39.57233319093269},\n\t\t{2357, 39.4775906546037},\n\t\t{2358, 39.22345113789871},\n\t\t{2359, 38.57809299449735},\n\t\t{2360, 38.57645107268238},\n\t\t{2361, 38.972137312472306},\n\t\t{2362, 38.48045973837729},\n\t\t{2363, 38.13356592124918},\n\t\t{2364, 37.58820508109955},\n\t\t{2365, 37.201698739301705},\n\t\t{2366, 36.94671668201051},\n\t\t{2367, 37.2977080973896},\n\t\t{2368, 37.56900473168416},\n\t\t{2369, 38.107005730339885},\n\t\t{2370, 37.66230861685099},\n\t\t{2371, 37.91179580848597},\n\t\t{2372, 38.021982005474676},\n\t\t{2373, 37.980026494228056},\n\t\t{2374, 37.936145999397155},\n\t\t{2375, 38.02211453233284},\n\t\t{2376, 38.184818957491586},\n\t\t{2377, 38.001562339346805},\n\t\t{2378, 38.17115924132589},\n\t\t{2379, 38.02933185572005},\n\t\t{2380, 39.26672886459662},\n\t\t{2381, 39.438886818730374},\n\t\t{2382, 39.632666785719366},\n\t\t{2383, 39.69431724624071},\n\t\t{2384, 38.45229246819694},\n\t\t{2385, 38.92044292382193},\n\t\t{2386, 38.71930950151329},\n\t\t{2387, 38.743236180041634},\n\t\t{2388, 38.983429309450706},\n\t\t{2389, 38.97420423718335},\n\t\t{2390, 38.7215640748561},\n\t\t{2391, 37.29737183692541},\n\t\t{2392, 37.45124430298096},\n\t\t{2393, 37.528370436924256},\n\t\t{2394, 37.95222937643749},\n\t\t{2395, 37.83598429862198},\n\t\t{2396, 37.497742223483016},\n\t\t{2397, 37.445480102504746},\n\t\t{2398, 37.30971600962666},\n\t\t{2399, 37.35293634455916},\n\t\t{2400, 37.53645804280457},\n\t\t{2401, 37.39990233842864},\n\t\t{2402, 37.35307876697158},\n\t\t{2403, 37.20884959153676},\n\t\t{2404, 37.37721955667315},\n\t\t{2405, 38.163601842424356},\n\t\t{2406, 38.1744583572895},\n\t\t{2407, 38.22526886325096},\n\t\t{2408, 37.74537108958047},\n\t\t{2409, 37.695977476731315},\n\t\t{2410, 37.132399280518335},\n\t\t{2411, 37.58951197469921},\n\t\t{2412, 37.595014414031965},\n\t\t{2413, 37.8352174960965},\n\t\t{2414, 38.19482676835253},\n\t\t{2415, 38.81615407880503},\n\t\t{2416, 38.96954505622985},\n\t\t{2417, 38.51014481284331},\n\t\t{2418, 38.70949789629867},\n\t\t{2419, 38.8330673644232},\n\t\t{2420, 38.79852936780312},\n\t\t{2421, 38.36989947803435},\n\t\t{2422, 38.38299952696908},\n\t\t{2423, 38.37911293511124},\n\t\t{2424, 38.30523674843859},\n\t\t{2425, 38.2780523618985},\n\t\t{2426, 38.11238736059342},\n\t\t{2427, 38.146761901654045},\n\t\t{2428, 38.16577426042987},\n\t\t{2429, 37.21503059523459},\n\t\t{2430, 37.20194861904684},\n\t\t{2431, 37.93629061523524},\n\t\t{2432, 37.73740404804743},\n\t\t{2433, 38.19428643465362},\n\t\t{2434, 38.665082590845316},\n\t\t{2435, 38.73654599191024},\n\t\t{2436, 38.91621864442491},\n\t\t{2437, 38.91583279385087},\n\t\t{2438, 39.070111723777586},\n\t\t{2439, 39.020903222278925},\n\t\t{2440, 39.11691716267563},\n\t\t{2441, 38.48057387525625},\n\t\t{2442, 38.53568696118676},\n\t\t{2443, 38.643673021215534},\n\t\t{2444, 38.260311740941205},\n\t\t{2445, 38.22563157129045},\n\t\t{2446, 38.02954799036356},\n\t\t{2447, 38.37221447795219},\n\t\t{2448, 38.39689602415647},\n\t\t{2449, 38.39841000702669},\n\t\t{2450, 38.42466352375716},\n\t\t{2451, 38.54182197292112},\n\t\t{2452, 37.97168851025008},\n\t\t{2453, 37.98072923120449},\n\t\t{2454, 38.500048729444565},\n\t\t{2455, 38.51204601961472},\n\t\t{2456, 38.57119577782335},\n\t\t{2457, 38.66797170791196},\n\t\t{2458, 38.42048390776265},\n\t\t{2459, 38.37374323690084},\n\t\t{2460, 37.32968095967905},\n\t\t{2461, 37.08263012999697},\n\t\t{2462, 37.50308137969606},\n\t\t{2463, 37.74228959632586},\n\t\t{2464, 37.74069036775092},\n\t\t{2465, 37.17849832026422},\n\t\t{2466, 36.96662265441138},\n\t\t{2467, 36.94747312813148},\n\t\t{2468, 37.478003899130535},\n\t\t{2469, 36.78538811979787},\n\t\t{2470, 36.72166338143237},\n\t\t{2471, 36.05942648742004},\n\t\t{2472, 35.87090337493837},\n\t\t{2473, 35.86422187859753},\n\t\t{2474, 36.19415669239082},\n\t\t{2475, 36.4304121266589},\n\t\t{2476, 37.3789805517048},\n\t\t{2477, 37.50777745489909},\n\t\t{2478, 37.1957829652079},\n\t\t{2479, 37.17977294040911},\n\t\t{2480, 38.216074640194954},\n\t\t{2481, 39.76987261793349},\n\t\t{2482, 39.710123436790155},\n\t\t{2483, 39.46441746053927},\n\t\t{2484, 39.887390948196604},\n\t\t{2485, 40.47940528392495},\n\t\t{2486, 40.96173004505429},\n\t\t{2487, 40.80366573878367},\n\t\t{2488, 41.54175623171586},\n\t\t{2489, 41.9020390419709},\n\t\t{2490, 42.33439627394617},\n\t\t{2491, 43.42510969518392},\n\t\t{2492, 43.3467495490359},\n\t\t{2493, 43.55870952188062},\n\t\t{2494, 43.687712555042445},\n\t\t{2495, 43.5164043044117},\n\t\t{2496, 43.50241651823093},\n\t\t{2497, 44.29101702903774},\n\t\t{2498, 43.557445214897555},\n\t\t{2499, 43.93564846197703},\n\t\t{2500, 43.443137649447785},\n\t\t{2501, 42.20225850019654},\n\t\t{2502, 41.79435089000459},\n\t\t{2503, 41.76196350512668},\n\t\t{2504, 42.303354344610476},\n\t\t{2505, 43.10084057387829},\n\t\t{2506, 43.178994474468176},\n\t\t{2507, 42.428481094831376},\n\t\t{2508, 42.547354773308356},\n\t\t{2509, 42.76222854703309},\n\t\t{2510, 41.82251108158902},\n\t\t{2511, 39.95979151189301},\n\t\t{2512, 39.95821075474937},\n\t\t{2513, 40.79681508224348},\n\t\t{2514, 40.81708050706749},\n\t\t{2515, 40.86098377024993},\n\t\t{2516, 41.37066167344864},\n\t\t{2517, 40.811835396416136},\n\t\t{2518, 41.75210935179267},\n\t\t{2519, 42.081642066666376},\n\t\t{2520, 42.08290785008212},\n\t\t{2521, 42.24300735871055},\n\t\t{2522, 43.469996426408535},\n\t\t{2523, 43.07953421381988},\n\t\t{2524, 42.75861204389449},\n\t\t{2525, 42.68285436365714},\n\t\t{2526, 42.70557759253858},\n\t\t{2527, 42.48853467614813},\n\t\t{2528, 42.57942769581852},\n\t\t{2529, 41.641644251781955},\n\t\t{2530, 41.995153297318495},\n\t\t{2531, 41.948491392461136},\n\t\t{2532, 42.10736843531852},\n\t\t{2533, 42.09104450737047},\n\t\t{2534, 41.844893380773094},\n\t\t{2535, 41.604667841842605},\n\t\t{2536, 41.664479889713284},\n\t\t{2537, 41.721596977396956},\n\t\t{2538, 41.03970005650016},\n\t\t{2539, 41.02554512620144},\n\t\t{2540, 40.87794875769463},\n\t\t{2541, 39.90420781213615},\n\t\t{2542, 39.917556293894414},\n\t\t{2543, 39.854472672630656},\n\t\t{2544, 40.07480007115982},\n\t\t{2545, 39.67254038329676},\n\t\t{2546, 39.75546306998178},\n\t\t{2547, 39.738281539976},\n\t\t{2548, 40.68871115360799},\n\t\t{2549, 40.634406366307545},\n\t\t{2550, 40.825610497929816},\n\t\t{2551, 40.56134401134031},\n\t\t{2552, 40.49316949904079},\n\t\t{2553, 41.411980447849764},\n\t\t{2554, 41.45708514923727},\n\t\t{2555, 41.62699785722495},\n\t\t{2556, 40.73847974293596},\n\t\t{2557, 40.9036273444639},\n\t\t{2558, 40.835583475220645},\n\t\t{2559, 40.692726642278075},\n\t\t{2560, 40.02156508795992},\n\t\t{2561, 39.59727702576626},\n\t\t{2562, 39.85915504290939},\n\t\t{2563, 40.25776254670131},\n\t\t{2564, 38.98058165621274},\n\t\t{2565, 39.19626524671679},\n\t\t{2566, 40.27851337856},\n\t\t{2567, 40.42198078582052},\n\t\t{2568, 40.84324235005817},\n\t\t{2569, 41.43936550130537},\n\t\t{2570, 41.01778584521347},\n\t\t{2571, 41.71741296575474},\n\t\t{2572, 41.80764781109384},\n\t\t{2573, 41.86906945022645},\n\t\t{2574, 41.261486612033735},\n\t\t{2575, 41.05330428242297},\n\t\t{2576, 40.858767555527805},\n\t\t{2577, 41.20327089795783},\n\t\t{2578, 41.72211067822387},\n\t\t{2579, 42.24939510039889},\n\t\t{2580, 43.02032269889916},\n\t\t{2581, 43.169601435406285},\n\t\t{2582, 43.03240557408647},\n\t\t{2583, 44.058494616358495},\n\t\t{2584, 42.69632168879649},\n\t\t{2585, 42.70233698941648},\n\t\t{2586, 42.694697227758425},\n\t\t{2587, 42.88764129390405},\n\t\t{2588, 43.08913827262613},\n\t\t{2589, 42.89734340644753},\n\t\t{2590, 42.541548108008676},\n\t\t{2591, 42.810258239438845},\n\t\t{2592, 41.86604756233666},\n\t\t{2593, 41.62721508609488},\n\t\t{2594, 41.42397058232155},\n\t\t{2595, 41.226915898008365},\n\t\t{2596, 41.362278318282556},\n\t\t{2597, 40.55335045136749},\n\t\t{2598, 40.53227628820762},\n\t\t{2599, 40.55804572554107},\n\t\t{2600, 40.59654847444725},\n\t\t{2601, 40.600759547237764},\n\t\t{2602, 39.886740241510296},\n\t\t{2603, 39.74441936291896},\n\t\t{2604, 39.4574717226145},\n\t\t{2605, 40.060274508040756},\n\t\t{2606, 40.13087881643223},\n\t\t{2607, 40.034347420207766},\n\t\t{2608, 39.99959402815168},\n\t\t{2609, 39.96436408170099},\n\t\t{2610, 40.05829543634176},\n\t\t{2611, 39.36433405019379},\n\t\t{2612, 39.18728728622009},\n\t\t{2613, 39.24495519885113},\n\t\t{2614, 39.07757095227659},\n\t\t{2615, 39.274474362783934},\n\t\t{2616, 39.10484953636473},\n\t\t{2617, 38.82145181383544},\n\t\t{2618, 39.14891944323103},\n\t\t{2619, 38.38965006924832},\n\t\t{2620, 38.39353088180409},\n\t\t{2621, 37.5842486836372},\n\t\t{2622, 37.50572067949534},\n\t\t{2623, 37.47652007277792},\n\t\t{2624, 37.460762948164124},\n\t\t{2625, 37.70360102326645},\n\t\t{2626, 37.9284949964923},\n\t\t{2627, 37.94965323046383},\n\t\t{2628, 38.7335220955414},\n\t\t{2629, 38.261029750354496},\n\t\t{2630, 38.32794292196558},\n\t\t{2631, 38.15225856809112},\n\t\t{2632, 37.90928164592873},\n\t\t{2633, 38.23964767428957},\n\t\t{2634, 38.52123444438283},\n\t\t{2635, 38.42104882766221},\n\t\t{2636, 38.96022542956203},\n\t\t{2637, 39.24100815688652},\n\t\t{2638, 39.08793479950826},\n\t\t{2639, 39.08884782494273},\n\t\t{2640, 39.55798120001941},\n\t\t{2641, 39.105610334728816},\n\t\t{2642, 39.007630691250704},\n\t\t{2643, 38.20582502075655},\n\t\t{2644, 37.543315900244956},\n\t\t{2645, 37.57555493691154},\n\t\t{2646, 37.28692975360062},\n\t\t{2647, 36.23295703793576},\n\t\t{2648, 36.18918955965909},\n\t\t{2649, 36.08967399169209},\n\t\t{2650, 35.959764744648616},\n\t\t{2651, 36.19197227091526},\n\t\t{2652, 36.660749297052476},\n\t\t{2653, 36.64494239211856},\n\t\t{2654, 36.42558293570474},\n\t\t{2655, 35.6375906092785},\n\t\t{2656, 35.70674524011707},\n\t\t{2657, 35.57068617114742},\n\t\t{2658, 35.373679501491125},\n\t\t{2659, 34.672906766786355},\n\t\t{2660, 34.63171730160524},\n\t\t{2661, 34.67893812694516},\n\t\t{2662, 34.654847702252816},\n\t\t{2663, 34.65402092594314},\n\t\t{2664, 34.771606902340174},\n\t\t{2665, 34.88770410184326},\n\t\t{2666, 35.02613347813431},\n\t\t{2667, 34.46478240438498},\n\t\t{2668, 34.68568272903622},\n\t\t{2669, 34.44312396898851},\n\t\t{2670, 34.21234874898513},\n\t\t{2671, 34.22641653591384},\n\t\t{2672, 34.128223876429104},\n\t\t{2673, 34.11242598726876},\n\t\t{2674, 33.96946719921404},\n\t\t{2675, 33.96323823944133},\n\t\t{2676, 34.10711370082857},\n\t\t{2677, 33.61921918842873},\n\t\t{2678, 33.86921234418534},\n\t\t{2679, 34.38300717848694},\n\t\t{2680, 34.47612413434144},\n\t\t{2681, 33.878358516222164},\n\t\t{2682, 33.95450317313319},\n\t\t{2683, 34.15914443090066},\n\t\t{2684, 33.8706108159827},\n\t\t{2685, 34.38200284883451},\n\t\t{2686, 34.38499453227831},\n\t\t{2687, 34.540332423206024},\n\t\t{2688, 34.180253970681264},\n\t\t{2689, 34.23917159483758},\n\t\t{2690, 33.3409032838207},\n\t\t{2691, 33.31758465582364},\n\t\t{2692, 33.77426222148222},\n\t\t{2693, 33.98469402333139},\n\t\t{2694, 35.18897714992098},\n\t\t{2695, 35.27834052976643},\n\t\t{2696, 35.30947212883306},\n\t\t{2697, 34.697407680416966},\n\t\t{2698, 35.480822427408455},\n\t\t{2699, 35.56467660433882},\n\t\t{2700, 35.53420547926852},\n\t\t{2701, 35.541541884085056},\n\t\t{2702, 35.587731051837416},\n\t\t{2703, 35.20649466374446},\n\t\t{2704, 34.23840909461753},\n\t\t{2705, 34.03444342209502},\n\t\t{2706, 33.765366528347904},\n\t\t{2707, 33.83889062651724},\n\t\t{2708, 33.58019639477255},\n\t\t{2709, 33.404308515206424},\n\t\t{2710, 32.5794052072048},\n\t\t{2711, 32.585104546723436},\n\t\t{2712, 32.266279628194816},\n\t\t{2713, 31.763850208735782},\n\t\t{2714, 31.82468466746643},\n\t\t{2715, 31.693375409028246},\n\t\t{2716, 31.713589796403312},\n\t\t{2717, 31.89442805523013},\n\t\t{2718, 30.539601797884956},\n\t\t{2719, 30.419562355741576},\n\t\t{2720, 30.570511736331543},\n\t\t{2721, 30.436298375688793},\n\t\t{2722, 30.4150717914012},\n\t\t{2723, 30.65434061186432},\n\t\t{2724, 30.55584352842997},\n\t\t{2725, 30.666073288068162},\n\t\t{2726, 30.631386637749323},\n\t\t{2727, 30.253653739813487},\n\t\t{2728, 29.709659914781653},\n\t\t{2729, 28.896044518517407},\n\t\t{2730, 28.61563883266229},\n\t\t{2731, 28.70191534200063},\n\t\t{2732, 29.201426696903418},\n\t\t{2733, 29.55609328115069},\n\t\t{2734, 28.656892877727273},\n\t\t{2735, 29.07942162200021},\n\t\t{2736, 29.26501321868672},\n\t\t{2737, 29.646954975157882},\n\t\t{2738, 29.334935013945213},\n\t\t{2739, 29.050159467980038},\n\t\t{2740, 29.0197508395469},\n\t\t{2741, 28.774518059870104},\n\t\t{2742, 29.406230838159324},\n\t\t{2743, 29.384319812035454},\n\t\t{2744, 28.16252911704915},\n\t\t{2745, 28.370968057426175},\n\t\t{2746, 28.47565669331631},\n\t\t{2747, 28.557859294540695},\n\t\t{2748, 28.61247793755877},\n\t\t{2749, 28.290652073805152},\n\t\t{2750, 27.951340656361044},\n\t\t{2751, 28.423165549960824},\n\t\t{2752, 28.44548879989753},\n\t\t{2753, 28.43557149451693},\n\t\t{2754, 28.041081598237184},\n\t\t{2755, 27.037025918511283},\n\t\t{2756, 27.037046717739166},\n\t\t{2757, 26.76662330440143},\n\t\t{2758, 26.699917649004856},\n\t\t{2759, 26.889805976598808},\n\t\t{2760, 26.801047959108622},\n\t\t{2761, 26.760134602011636},\n\t\t{2762, 27.18343703683992},\n\t\t{2763, 27.16859736505303},\n\t\t{2764, 27.04599114188329},\n\t\t{2765, 27.07137489048196},\n\t\t{2766, 27.998508184180817},\n\t\t{2767, 27.90008295282876},\n\t\t{2768, 27.64403546500875},\n\t\t{2769, 27.526129921325765},\n\t\t{2770, 27.17477572419831},\n\t\t{2771, 27.341255122694978},\n\t\t{2772, 27.281292839268044},\n\t\t{2773, 27.457194113628123},\n\t\t{2774, 27.125831819180696},\n\t\t{2775, 27.153488900596923},\n\t\t{2776, 26.40548276755705},\n\t\t{2777, 26.20664419363637},\n\t\t{2778, 25.447443897366075},\n\t\t{2779, 25.436213063192547},\n\t\t{2780, 25.80691677092328},\n\t\t{2781, 25.911262332850754},\n\t\t{2782, 25.827467186922345},\n\t\t{2783, 25.93386934563249},\n\t\t{2784, 25.87141867343481},\n\t\t{2785, 26.127903579867812},\n\t\t{2786, 26.11594064081708},\n\t\t{2787, 25.968383286170432},\n\t\t{2788, 26.12819163023331},\n\t\t{2789, 26.528383252253256},\n\t\t{2790, 26.63041226276307},\n\t\t{2791, 26.12308929789773},\n\t\t{2792, 25.824556557378628},\n\t\t{2793, 25.705278327514673},\n\t\t{2794, 25.533179388113364},\n\t\t{2795, 25.111955575936644},\n\t\t{2796, 25.19306942608654},\n\t\t{2797, 25.315610017978926},\n\t\t{2798, 25.54647388963821},\n\t\t{2799, 25.487771689167698},\n\t\t{2800, 25.81216153045184},\n\t\t{2801, 25.763987775825093},\n\t\t{2802, 25.902526292298354},\n\t\t{2803, 25.968428482836103},\n\t\t{2804, 26.41323130119539},\n\t\t{2805, 26.49882702247749},\n\t\t{2806, 26.49213018635884},\n\t\t{2807, 27.54190493767045},\n\t\t{2808, 26.535580599916567},\n\t\t{2809, 26.57432320629819},\n\t\t{2810, 26.90159184032591},\n\t\t{2811, 26.587265607613453},\n\t\t{2812, 26.59291668712681},\n\t\t{2813, 26.423373614090597},\n\t\t{2814, 27.866860910585345},\n\t\t{2815, 28.207557672760228},\n\t\t{2816, 28.496172416512515},\n\t\t{2817, 28.42429902292854},\n\t\t{2818, 28.524648108317813},\n\t\t{2819, 28.611122350682358},\n\t\t{2820, 27.732969193443907},\n\t\t{2821, 27.399970276602343},\n\t\t{2822, 27.905344738574847},\n\t\t{2823, 27.942078810801064},\n\t\t{2824, 27.804282414772008},\n\t\t{2825, 27.8069558632371},\n\t\t{2826, 27.832235140508022},\n\t\t{2827, 27.37610449016281},\n\t\t{2828, 27.448768550966395},\n\t\t{2829, 27.772837570338186},\n\t\t{2830, 28.168201851600365},\n\t\t{2831, 28.149299964281663},\n\t\t{2832, 28.131056291061356},\n\t\t{2833, 27.900258674853603},\n\t\t{2834, 27.900129431796973},\n\t\t{2835, 27.703804331410204},\n\t\t{2836, 27.233402978544067},\n\t\t{2837, 28.62270120196561},\n\t\t{2838, 28.753984952852},\n\t\t{2839, 27.849450371851088},\n\t\t{2840, 28.607099713321475},\n\t\t{2841, 28.581922133054277},\n\t\t{2842, 28.44598231620244},\n\t\t{2843, 28.502126322789735},\n\t\t{2844, 28.33255356108348},\n\t\t{2845, 28.285305697352577},\n\t\t{2846, 28.09977585227804},\n\t\t{2847, 27.757945405078186},\n\t\t{2848, 26.392688537225578},\n\t\t{2849, 26.425165673292835},\n\t\t{2850, 26.545835303452666},\n\t\t{2851, 26.439538464328816},\n\t\t{2852, 26.269936477378405},\n\t\t{2853, 26.512109899359487},\n\t\t{2854, 27.512278345593856},\n\t\t{2855, 28.082715243376764},\n\t\t{2856, 28.41596094710675},\n\t\t{2857, 27.45862971920284},\n\t\t{2858, 27.39257771938314},\n\t\t{2859, 27.36345333435615},\n\t\t{2860, 27.47151777939197},\n\t\t{2861, 27.950894827790314},\n\t\t{2862, 27.60764930763731},\n\t\t{2863, 27.60813226132976},\n\t\t{2864, 27.372749995542335},\n\t\t{2865, 27.521145751594496},\n\t\t{2866, 27.940176424747328},\n\t\t{2867, 28.35191115083003},\n\t\t{2868, 27.83432934764762},\n\t\t{2869, 29.15786344470242},\n\t\t{2870, 29.79498828662717},\n\t\t{2871, 29.568955183772818},\n\t\t{2872, 29.517280037492394},\n\t\t{2873, 29.63961776908481},\n\t\t{2874, 30.662190826973372},\n\t\t{2875, 31.71938876522025},\n\t\t{2876, 31.826598098832324},\n\t\t{2877, 31.826543856914203},\n\t\t{2878, 31.789643116898706},\n\t\t{2879, 31.92180528432921},\n\t\t{2880, 31.80959471460479},\n\t\t{2881, 31.681403018636786},\n\t\t{2882, 31.191957159319717},\n\t\t{2883, 30.912044142938722},\n\t\t{2884, 30.34671826324825},\n\t\t{2885, 29.98006193864975},\n\t\t{2886, 29.472355419791427},\n\t\t{2887, 29.479494293595344},\n\t\t{2888, 29.752640347399335},\n\t\t{2889, 30.09718091452955},\n\t\t{2890, 30.431387560542564},\n\t\t{2891, 29.496695832798583},\n\t\t{2892, 29.246495986640035},\n\t\t{2893, 29.222427974948758},\n\t\t{2894, 29.124858728303685},\n\t\t{2895, 28.965028596965585},\n\t\t{2896, 29.08714179149652},\n\t\t{2897, 30.4283543168946},\n\t\t{2898, 31.215229365152215},\n\t\t{2899, 31.150712888260642},\n\t\t{2900, 30.857590831985288},\n\t\t{2901, 31.460128657051456},\n\t\t{2902, 31.159427314891474},\n\t\t{2903, 31.165617956156684},\n\t\t{2904, 31.299914014945326},\n\t\t{2905, 31.11690963033505},\n\t\t{2906, 30.967174302858048},\n\t\t{2907, 30.995885840876113},\n\t\t{2908, 31.29636960058828},\n\t\t{2909, 31.434858618252605},\n\t\t{2910, 31.416675748910425},\n\t\t{2911, 30.205448705736853},\n\t\t{2912, 29.93565034197684},\n\t\t{2913, 30.343706590216623},\n\t\t{2914, 30.21957109990217},\n\t\t{2915, 30.85282680317679},\n\t\t{2916, 30.968361747768547},\n\t\t{2917, 30.009066802972328},\n\t\t{2918, 29.932154181020326},\n\t\t{2919, 30.093782671075324},\n\t\t{2920, 30.404844874889584},\n\t\t{2921, 30.331546653465736},\n\t\t{2922, 30.147767848823545},\n\t\t{2923, 29.709117723930547},\n\t\t{2924, 29.3659833798085},\n\t\t{2925, 28.862774209616173},\n\t\t{2926, 28.51448224611682},\n\t\t{2927, 28.76793928928293},\n\t\t{2928, 28.673496746750068},\n\t\t{2929, 28.472443770823936},\n\t\t{2930, 29.022303006465368},\n\t\t{2931, 28.00637473939249},\n\t\t{2932, 28.031008433611056},\n\t\t{2933, 27.729183209158307},\n\t\t{2934, 27.9366018038988},\n\t\t{2935, 27.640659462246116},\n\t\t{2936, 27.171697419833},\n\t\t{2937, 26.408787788436918},\n\t\t{2938, 26.28204138551267},\n\t\t{2939, 25.932006217741982},\n\t\t{2940, 26.169627229499696},\n\t\t{2941, 25.822279798439705},\n\t\t{2942, 26.35586961220703},\n\t\t{2943, 26.18132397957769},\n\t\t{2944, 26.044539631613738},\n\t\t{2945, 25.974095714129387},\n\t\t{2946, 27.05091837318809},\n\t\t{2947, 26.974693513444837},\n\t\t{2948, 27.072069424664924},\n\t\t{2949, 26.25090442405271},\n\t\t{2950, 26.73596169363717},\n\t\t{2951, 25.905671210399422},\n\t\t{2952, 25.691113922860477},\n\t\t{2953, 26.299532712205195},\n\t\t{2954, 24.96955683778935},\n\t\t{2955, 24.888869198579197},\n\t\t{2956, 24.601211234973405},\n\t\t{2957, 24.034114487943505},\n\t\t{2958, 24.024743202429732},\n\t\t{2959, 25.019008794538035},\n\t\t{2960, 24.432773221953887},\n\t\t{2961, 24.544330149848985},\n\t\t{2962, 23.85023866590447},\n\t\t{2963, 24.036408763069247},\n\t\t{2964, 24.08876550655795},\n\t\t{2965, 24.05639813443458},\n\t\t{2966, 23.71814837085052},\n\t\t{2967, 24.703335417148605},\n\t\t{2968, 24.77916378099878},\n\t\t{2969, 24.839641043240448},\n\t\t{2970, 24.853870491674087},\n\t\t{2971, 25.840255119538664},\n\t\t{2972, 25.818729777629176},\n\t\t{2973, 25.73662194677672},\n\t\t{2974, 26.312249087826},\n\t\t{2975, 26.081048566805045},\n\t\t{2976, 26.039636620532686},\n\t\t{2977, 26.03568726819535},\n\t\t{2978, 26.063007917453888},\n\t\t{2979, 26.074627484746603},\n\t\t{2980, 26.040651463264155},\n\t\t{2981, 26.172289495364286},\n\t\t{2982, 26.62269151997738},\n\t\t{2983, 26.521078122843306},\n\t\t{2984, 26.48143361417722},\n\t\t{2985, 26.43597116107479},\n\t\t{2986, 26.479253919810066},\n\t\t{2987, 26.05243489612348},\n\t\t{2988, 26.065403680162337},\n\t\t{2989, 26.070748034587236},\n\t\t{2990, 26.054077155633216},\n\t\t{2991, 25.652831846415367},\n\t\t{2992, 25.876662312969824},\n\t\t{2993, 26.316574636642432},\n\t\t{2994, 26.27465443874206},\n\t\t{2995, 26.499843498562846},\n\t\t{2996, 26.427205343025584},\n\t\t{2997, 26.798259276629466},\n\t\t{2998, 26.901808522372313},\n\t\t{2999, 26.76079388053373},\n\t\t{3000, 26.95186823373628},\n\t\t{3001, 27.034524957712406},\n\t\t{3002, 26.87614970836558},\n\t\t{3003, 26.088631779268834},\n\t\t{3004, 26.258487166059158},\n\t\t{3005, 26.263116669541553},\n\t\t{3006, 26.556642147234385},\n\t\t{3007, 27.1359861481772},\n\t\t{3008, 27.05636721935326},\n\t\t{3009, 27.782632975155},\n\t\t{3010, 28.239461231129635},\n\t\t{3011, 28.171321453013107},\n\t\t{3012, 27.388829894601574},\n\t\t{3013, 27.765206394186475},\n\t\t{3014, 27.665523688066237},\n\t\t{3015, 27.652201388513607},\n\t\t{3016, 27.76330159496823},\n\t\t{3017, 27.652745228165806},\n\t\t{3018, 29.16493980313136},\n\t\t{3019, 29.760186326718667},\n\t\t{3020, 29.524598241887276},\n\t\t{3021, 29.871951567195385},\n\t\t{3022, 29.972022031694312},\n\t\t{3023, 29.991328977556655},\n\t\t{3024, 30.51114039017488},\n\t\t{3025, 30.358833052283288},\n\t\t{3026, 31.113437416596867},\n\t\t{3027, 30.73034455732333},\n\t\t{3028, 32.411088299325755},\n\t\t{3029, 32.448779387658455},\n\t\t{3030, 32.40261565557047},\n\t\t{3031, 33.32318930682262},\n\t\t{3032, 33.53986533177098},\n\t\t{3033, 34.14238204328724},\n\t\t{3034, 34.324204651156585},\n\t\t{3035, 34.55394232184136},\n\t\t{3036, 33.80917147487097},\n\t\t{3037, 33.87637554473631},\n\t\t{3038, 33.52627570280564},\n\t\t{3039, 32.710090552383846},\n\t\t{3040, 32.87558231122469},\n\t\t{3041, 32.83723732102603},\n\t\t{3042, 32.68286627184585},\n\t\t{3043, 32.645629659702166},\n\t\t{3044, 32.485577854400574},\n\t\t{3045, 32.54464973603174},\n\t\t{3046, 32.72824138287855},\n\t\t{3047, 32.569049941408885},\n\t\t{3048, 32.05613996926093},\n\t\t{3049, 31.418578354753414},\n\t\t{3050, 31.974802932294068},\n\t\t{3051, 31.517876027087098},\n\t\t{3052, 31.478771719965934},\n\t\t{3053, 32.33321726337759},\n\t\t{3054, 32.15907422841291},\n\t\t{3055, 32.39386557285096},\n\t\t{3056, 32.92288104967725},\n\t\t{3057, 32.58205659155766},\n\t\t{3058, 33.02979168623353},\n\t\t{3059, 33.104577943842884},\n\t\t{3060, 32.7508051872267},\n\t\t{3061, 30.759481316657414},\n\t\t{3062, 29.93908316497376},\n\t\t{3063, 30.168995523464204},\n\t\t{3064, 30.234201200937164},\n\t\t{3065, 29.60257745821407},\n\t\t{3066, 29.42426454491802},\n\t\t{3067, 29.780785754603404},\n\t\t{3068, 29.758857379324553},\n\t\t{3069, 30.339341677481386},\n\t\t{3070, 30.17509659780736},\n\t\t{3071, 30.39121521041002},\n\t\t{3072, 30.39268093037097},\n\t\t{3073, 30.119809979067465},\n\t\t{3074, 29.755321684850596},\n\t\t{3075, 30.254534421486376},\n\t\t{3076, 30.27128056523592},\n\t\t{3077, 30.269129730144403},\n\t\t{3078, 30.268406185451322},\n\t\t{3079, 30.808812815476546},\n\t\t{3080, 30.541034763482905},\n\t\t{3081, 30.616071356417166},\n\t\t{3082, 30.49034629358917},\n\t\t{3083, 30.327451475881006},\n\t\t{3084, 30.20172837588546},\n\t\t{3085, 30.552615556325403},\n\t\t{3086, 31.018620896589276},\n\t\t{3087, 31.016826954239793},\n\t\t{3088, 31.03257471371818},\n\t\t{3089, 30.76388835634399},\n\t\t{3090, 30.750773848565544},\n\t\t{3091, 28.90734498274122},\n\t\t{3092, 28.88512555430076},\n\t\t{3093, 29.235602659773928},\n\t\t{3094, 29.227088109152646},\n\t\t{3095, 29.265927078146902},\n\t\t{3096, 29.63113527441051},\n\t\t{3097, 30.325843427198762},\n\t\t{3098, 30.366277557982425},\n\t\t{3099, 30.81125656901041},\n\t\t{3100, 29.607530596142997},\n\t\t{3101, 30.157333515983648},\n\t\t{3102, 30.18646934065617},\n\t\t{3103, 30.27379415294111},\n\t\t{3104, 30.289365730425246},\n\t\t{3105, 30.283540247033166},\n\t\t{3106, 31.32710063553683},\n\t\t{3107, 30.380921899830913},\n\t\t{3108, 30.22467645076004},\n\t\t{3109, 30.23362298145734},\n\t\t{3110, 30.61875215657774},\n\t\t{3111, 30.98837784635033},\n\t\t{3112, 31.03260739138466},\n\t\t{3113, 30.976968690215546},\n\t\t{3114, 31.79541274581999},\n\t\t{3115, 32.30837337558492},\n\t\t{3116, 30.958484720733267},\n\t\t{3117, 31.248323567786898},\n\t\t{3118, 31.17080295379335},\n\t\t{3119, 31.490285494334042},\n\t\t{3120, 31.28299461589361},\n\t\t{3121, 31.12746538392657},\n\t\t{3122, 30.304134609467486},\n\t\t{3123, 30.482783363335685},\n\t\t{3124, 30.800000711544357},\n\t\t{3125, 30.923176972067218},\n\t\t{3126, 30.92985171567796},\n\t\t{3127, 31.237871497288655},\n\t\t{3128, 30.082238264022603},\n\t\t{3129, 30.6089077906634},\n\t\t{3130, 31.235939986705212},\n\t\t{3131, 31.14323375771582},\n\t\t{3132, 31.32918643869485},\n\t\t{3133, 31.47312641489513},\n\t\t{3134, 31.466063254090106},\n\t\t{3135, 31.425832509717182},\n\t\t{3136, 32.1719990071092},\n\t\t{3137, 32.41592307689316},\n\t\t{3138, 32.676500312625016},\n\t\t{3139, 33.35536331207698},\n\t\t{3140, 33.65570232797892},\n\t\t{3141, 33.04862310178812},\n\t\t{3142, 33.03181458653315},\n\t\t{3143, 32.67952645100101},\n\t\t{3144, 32.58771553180158},\n\t\t{3145, 32.60526161774588},\n\t\t{3146, 32.59144411017273},\n\t\t{3147, 33.328724603980014},\n\t\t{3148, 32.82736116656727},\n\t\t{3149, 32.585413549083036},\n\t\t{3150, 31.909366787173354},\n\t\t{3151, 31.890172235321025},\n\t\t{3152, 32.01030930891559},\n\t\t{3153, 31.876026787120207},\n\t\t{3154, 31.177003426608458},\n\t\t{3155, 31.269152245617928},\n\t\t{3156, 31.321299373154623},\n\t\t{3157, 31.185431050212017},\n\t\t{3158, 31.33308403249633},\n\t\t{3159, 31.396718431876668},\n\t\t{3160, 30.967056835014755},\n\t\t{3161, 31.937036635712108},\n\t\t{3162, 31.782999539504566},\n\t\t{3163, 31.463231624729538},\n\t\t{3164, 31.462330205674178},\n\t\t{3165, 32.38149340842041},\n\t\t{3166, 31.490726766628722},\n\t\t{3167, 31.180181319988332},\n\t\t{3168, 31.285452919047007},\n\t\t{3169, 32.61725672571165},\n\t\t{3170, 32.54476600813624},\n\t\t{3171, 32.867677415690224},\n\t\t{3172, 32.851230576948424},\n\t\t{3173, 32.447875933693695},\n\t\t{3174, 32.327497251158114},\n\t\t{3175, 32.54030609356738},\n\t\t{3176, 33.219908261056695},\n\t\t{3177, 33.05354548450645},\n\t\t{3178, 32.91346861269424},\n\t\t{3179, 32.972877044342646},\n\t\t{3180, 32.93786082284114},\n\t\t{3181, 33.05108392047543},\n\t\t{3182, 33.89537603616726},\n\t\t{3183, 33.82184220941501},\n\t\t{3184, 33.83547506546621},\n\t\t{3185, 33.46981809068626},\n\t\t{3186, 33.48014088578789},\n\t\t{3187, 33.99535008164156},\n\t\t{3188, 34.134687943016004},\n\t\t{3189, 34.116357932617554},\n\t\t{3190, 34.3777412140907},\n\t\t{3191, 34.47433796931576},\n\t\t{3192, 35.329063289425584},\n\t\t{3193, 36.389648583072216},\n\t\t{3194, 37.152845814499535},\n\t\t{3195, 37.04698767782292},\n\t\t{3196, 36.924986340055234},\n\t\t{3197, 36.72395148805289},\n\t\t{3198, 37.099937243992414},\n\t\t{3199, 37.03586955519982},\n\t\t{3200, 36.85659515898313},\n\t\t{3201, 37.68701715509432},\n\t\t{3202, 36.94563230667493},\n\t\t{3203, 36.9801530400879},\n\t\t{3204, 37.124204726164955},\n\t\t{3205, 37.21769294584},\n\t\t{3206, 37.36244560706185},\n\t\t{3207, 37.177958656048105},\n\t\t{3208, 37.17234726327357},\n\t\t{3209, 37.2334453881957},\n\t\t{3210, 37.443103290909},\n\t\t{3211, 37.47601907379215},\n\t\t{3212, 37.492358954797},\n\t\t{3213, 37.75965833545013},\n\t\t{3214, 37.44614357662946},\n\t\t{3215, 37.36038063096078},\n\t\t{3216, 37.05950813066276},\n\t\t{3217, 38.18103211360699},\n\t\t{3218, 36.53683047392274},\n\t\t{3219, 36.83403875076923},\n\t\t{3220, 36.799322175892655},\n\t\t{3221, 35.76343601069714},\n\t\t{3222, 35.732925176029},\n\t\t{3223, 36.030449190392034},\n\t\t{3224, 35.53535958118256},\n\t\t{3225, 35.46682168640866},\n\t\t{3226, 35.73775862190484},\n\t\t{3227, 35.61261356902764},\n\t\t{3228, 35.60401961780849},\n\t\t{3229, 35.7950184685732},\n\t\t{3230, 35.680731912648454},\n\t\t{3231, 35.91734464456234},\n\t\t{3232, 36.215345080856956},\n\t\t{3233, 36.169986316646735},\n\t\t{3234, 36.19636620447901},\n\t\t{3235, 35.68416087517605},\n\t\t{3236, 34.782382760280335},\n\t\t{3237, 34.682205263960896},\n\t\t{3238, 34.6915019903415},\n\t\t{3239, 34.01850844249432},\n\t\t{3240, 34.49164616505544},\n\t\t{3241, 34.81821831651344},\n\t\t{3242, 34.17367204635451},\n\t\t{3243, 33.50257123928646},\n\t\t{3244, 33.74605123682653},\n\t\t{3245, 33.207146127232235},\n\t\t{3246, 33.350131113450125},\n\t\t{3247, 33.31108845186046},\n\t\t{3248, 33.25208316113067},\n\t\t{3249, 32.96860920898072},\n\t\t{3250, 32.81656955503311},\n\t\t{3251, 32.596084703753874},\n\t\t{3252, 32.72681616233501},\n\t\t{3253, 32.989201391855794},\n\t\t{3254, 32.720933976649086},\n\t\t{3255, 32.76607998687764},\n\t\t{3256, 32.971731400496566},\n\t\t{3257, 32.978292043059476},\n\t\t{3258, 32.96571499076951},\n\t\t{3259, 33.54075000081999},\n\t\t{3260, 33.428210870837745},\n\t\t{3261, 33.37480509177156},\n\t\t{3262, 32.04401143262248},\n\t\t{3263, 31.758176393318287},\n\t\t{3264, 31.640748236625246},\n\t\t{3265, 31.64024961699623},\n\t\t{3266, 32.12120327486007},\n\t\t{3267, 32.09409145385511},\n\t\t{3268, 31.82108292829529},\n\t\t{3269, 31.767305808090345},\n\t\t{3270, 31.61485887968538},\n\t\t{3271, 31.25747957686745},\n\t\t{3272, 30.343098748976058},\n\t\t{3273, 30.310065993327697},\n\t\t{3274, 30.08147466217843},\n\t\t{3275, 29.06160851755138},\n\t\t{3276, 29.649133669716544},\n\t\t{3277, 29.479576201649866},\n\t\t{3278, 29.53734181807828},\n\t\t{3279, 29.875185928183274},\n\t\t{3280, 30.026430749893212},\n\t\t{3281, 29.070477635815827},\n\t\t{3282, 30.080721132734187},\n\t\t{3283, 30.213354081612774},\n\t\t{3284, 30.584419177806883},\n\t\t{3285, 30.554197032740483},\n\t\t{3286, 30.743451866698816},\n\t\t{3287, 32.72273350370443},\n\t\t{3288, 32.55596605650281},\n\t\t{3289, 32.58240930965781},\n\t\t{3290, 32.42498977194752},\n\t\t{3291, 32.61029965109377},\n\t\t{3292, 32.9308941823172},\n\t\t{3293, 32.89483722129089},\n\t\t{3294, 32.85881557046856},\n\t\t{3295, 32.726785325793635},\n\t\t{3296, 33.04118883100211},\n\t\t{3297, 33.83571180198559},\n\t\t{3298, 33.647394009337454},\n\t\t{3299, 33.520540287573574},\n\t\t{3300, 33.162168528911174},\n\t\t{3301, 33.508306024446206},\n\t\t{3302, 33.525507479986295},\n\t\t{3303, 33.52207711917462},\n\t\t{3304, 33.627821807306546},\n\t\t{3305, 33.198515456466744},\n\t\t{3306, 33.42607172054768},\n\t\t{3307, 33.07791501061832},\n\t\t{3308, 33.107977635263275},\n\t\t{3309, 32.842151272849485},\n\t\t{3310, 33.05292527827272},\n\t\t{3311, 32.957185834270064},\n\t\t{3312, 33.06230697948977},\n\t\t{3313, 33.61764522661923},\n\t\t{3314, 34.3994082345058},\n\t\t{3315, 34.29897488531151},\n\t\t{3316, 34.21313709031122},\n\t\t{3317, 34.15640542042003},\n\t\t{3318, 34.189075319669456},\n\t\t{3319, 34.065995348334695},\n\t\t{3320, 33.99963167652209},\n\t\t{3321, 33.824584145650626},\n\t\t{3322, 32.62903776472264},\n\t\t{3323, 32.07197931490158},\n\t\t{3324, 31.212041654609635},\n\t\t{3325, 31.35529289602581},\n\t\t{3326, 31.795752220664465},\n\t\t{3327, 32.055153913003146},\n\t\t{3328, 32.120788126976784},\n\t\t{3329, 32.11630360272935},\n\t\t{3330, 32.137853597557225},\n\t\t{3331, 32.09903615115943},\n\t\t{3332, 32.30648496829282},\n\t\t{3333, 32.07508894046564},\n\t\t{3334, 32.234779372557384},\n\t\t{3335, 31.75162714209973},\n\t\t{3336, 31.175617555355522},\n\t\t{3337, 31.132722428185286},\n\t\t{3338, 30.740013555537057},\n\t\t{3339, 30.80440681916967},\n\t\t{3340, 30.389128544023528},\n\t\t{3341, 30.923705876216804},\n\t\t{3342, 30.570681686489785},\n\t\t{3343, 30.56960911154055},\n\t\t{3344, 30.572573228321385},\n\t\t{3345, 30.56283258873671},\n\t\t{3346, 30.75768607862666},\n\t\t{3347, 30.70512333660316},\n\t\t{3348, 30.73660038831468},\n\t\t{3349, 31.14637617533282},\n\t\t{3350, 31.20431061055002},\n\t\t{3351, 31.20123522063627},\n\t\t{3352, 30.97866560996787},\n\t\t{3353, 31.09897337898735},\n\t\t{3354, 31.592251360854707},\n\t\t{3355, 31.658003377873115},\n\t\t{3356, 31.749358291626148},\n\t\t{3357, 31.615018574293643},\n\t\t{3358, 32.13348019004665},\n\t\t{3359, 32.26754114906748},\n\t\t{3360, 32.114108645990356},\n\t\t{3361, 32.09349668953626},\n\t\t{3362, 32.12743992074132},\n\t\t{3363, 33.26855777434632},\n\t\t{3364, 33.20672720628778},\n\t\t{3365, 33.222054502547586},\n\t\t{3366, 33.276565557113116},\n\t\t{3367, 33.24616375772876},\n\t\t{3368, 33.22546957275849},\n\t\t{3369, 33.197145715564346},\n\t\t{3370, 32.89226183861777},\n\t\t{3371, 32.63753378800023},\n\t\t{3372, 32.85392625336492},\n\t\t{3373, 32.654738825317295},\n\t\t{3374, 33.52629206488907},\n\t\t{3375, 33.551906915417874},\n\t\t{3376, 33.013300850717286},\n\t\t{3377, 32.45224067089088},\n\t\t{3378, 33.536730399855294},\n\t\t{3379, 33.382025520697695},\n\t\t{3380, 33.65246947890217},\n\t\t{3381, 33.729081781626235},\n\t\t{3382, 33.68914809456685},\n\t\t{3383, 34.27142675843858},\n\t\t{3384, 34.3384613970915},\n\t\t{3385, 33.041230980966134},\n\t\t{3386, 33.01273553419829},\n\t\t{3387, 33.81018910800749},\n\t\t{3388, 34.24585759532097},\n\t\t{3389, 34.61769546449783},\n\t\t{3390, 34.83617615053483},\n\t\t{3391, 35.197775455649},\n\t\t{3392, 35.41194481617064},\n\t\t{3393, 36.97802352361716},\n\t\t{3394, 36.955361245072574},\n\t\t{3395, 36.46776848088892},\n\t\t{3396, 36.439365640673294},\n\t\t{3397, 37.01957434647059},\n\t\t{3398, 36.90031551517573},\n\t\t{3399, 36.34320496911004},\n\t\t{3400, 36.27540466884174},\n\t\t{3401, 35.499445889025864},\n\t\t{3402, 35.438767477098544},\n\t\t{3403, 35.23819008394313},\n\t\t{3404, 35.19377350745659},\n\t\t{3405, 35.244867145440864},\n\t\t{3406, 34.786303985903714},\n\t\t{3407, 34.68233052858934},\n\t\t{3408, 34.68606294217492},\n\t\t{3409, 35.15865659415544},\n\t\t{3410, 36.152459222278075},\n\t\t{3411, 36.09225370958755},\n\t\t{3412, 36.43348782533814},\n\t\t{3413, 37.17740333669563},\n\t\t{3414, 37.09959143159908},\n\t\t{3415, 37.19283547903976},\n\t\t{3416, 37.067139992874246},\n\t\t{3417, 37.12896533687519},\n\t\t{3418, 37.374869441323746},\n\t\t{3419, 37.001095013732005},\n\t\t{3420, 35.8685171365076},\n\t\t{3421, 35.7790596667844},\n\t\t{3422, 35.767099214183794},\n\t\t{3423, 35.66846294670802},\n\t\t{3424, 36.04001746550384},\n\t\t{3425, 36.0480945234249},\n\t\t{3426, 36.02197200446126},\n\t\t{3427, 35.60312899342081},\n\t\t{3428, 35.61743213922281},\n\t\t{3429, 35.481336812650724},\n\t\t{3430, 35.6265808419118},\n\t\t{3431, 35.58736423372758},\n\t\t{3432, 34.924601234309385},\n\t\t{3433, 34.90979132407057},\n\t\t{3434, 35.12660838689912},\n\t\t{3435, 35.27414359176062},\n\t\t{3436, 34.4572696783567},\n\t\t{3437, 34.855188368960206},\n\t\t{3438, 34.7694402963776},\n\t\t{3439, 34.65799602194358},\n\t\t{3440, 34.63813926025997},\n\t\t{3441, 34.877437006370286},\n\t\t{3442, 34.15314684377819},\n\t\t{3443, 34.255400076640996},\n\t\t{3444, 34.396642283465276},\n\t\t{3445, 33.719365607039315},\n\t\t{3446, 33.641859553881055},\n\t\t{3447, 33.24778570063584},\n\t\t{3448, 33.03425968268789},\n\t\t{3449, 31.735215667970092},\n\t\t{3450, 32.52074978898301},\n\t\t{3451, 32.51001723815836},\n\t\t{3452, 31.988903384703473},\n\t\t{3453, 32.00635868003232},\n\t\t{3454, 33.15034114204495},\n\t\t{3455, 33.150708817243185},\n\t\t{3456, 33.160443645038676},\n\t\t{3457, 33.25145744811404},\n\t\t{3458, 31.855456989765536},\n\t\t{3459, 31.540691769358283},\n\t\t{3460, 31.22731634782854},\n\t\t{3461, 30.109943743087637},\n\t\t{3462, 30.081678413940462},\n\t\t{3463, 30.071462139339655},\n\t\t{3464, 31.811852478724177},\n\t\t{3465, 31.7817438259946},\n\t\t{3466, 31.65842780226553},\n\t\t{3467, 31.645232457369303},\n\t\t{3468, 31.577808697440936},\n\t\t{3469, 31.965622730682476},\n\t\t{3470, 31.55851189895187},\n\t\t{3471, 31.55400579073177},\n\t\t{3472, 31.615309544387085},\n\t\t{3473, 30.577964817545922},\n\t\t{3474, 31.380957115505957},\n\t\t{3475, 31.65967766234796},\n\t\t{3476, 31.650632080520086},\n\t\t{3477, 31.583511885018947},\n\t\t{3478, 31.46866237334157},\n\t\t{3479, 31.51539173204228},\n\t\t{3480, 31.683674297218584},\n\t\t{3481, 31.843475655353362},\n\t\t{3482, 31.833474481849517},\n\t\t{3483, 31.83374497628001},\n\t\t{3484, 31.297115220943716},\n\t\t{3485, 31.84548063776127},\n\t\t{3486, 30.76165139386353},\n\t\t{3487, 30.779380693616407},\n\t\t{3488, 30.560174724155342},\n\t\t{3489, 31.442644349165654},\n\t\t{3490, 31.23456150289414},\n\t\t{3491, 31.47065724426264},\n\t\t{3492, 31.04388200251078},\n\t\t{3493, 31.887381742205424},\n\t\t{3494, 31.022715733669997},\n\t\t{3495, 31.132724334176533},\n\t\t{3496, 31.254131102633508},\n\t\t{3497, 29.47070713463634},\n\t\t{3498, 30.102350147175464},\n\t\t{3499, 30.80347150519261},\n\t\t{3500, 31.10662961863165},\n\t\t{3501, 31.069676016670755},\n\t\t{3502, 31.26759264402205},\n\t\t{3503, 31.469315701418683},\n\t\t{3504, 31.42829010862853},\n\t\t{3505, 31.20304707788888},\n\t\t{3506, 30.880459790358785},\n\t\t{3507, 31.732791810278144},\n\t\t{3508, 31.666863184217398},\n\t\t{3509, 31.0372666719452},\n\t\t{3510, 30.95557997606788},\n\t\t{3511, 31.980223292918765},\n\t\t{3512, 32.012017886826364},\n\t\t{3513, 31.69007433474044},\n\t\t{3514, 31.768581447723278},\n\t\t{3515, 32.15852386773846},\n\t\t{3516, 31.853809576176754},\n\t\t{3517, 31.849132994909127},\n\t\t{3518, 32.43271679812625},\n\t\t{3519, 31.639885035846955},\n\t\t{3520, 31.634677292557605},\n\t\t{3521, 31.65931351662495},\n\t\t{3522, 31.64099204228493},\n\t\t{3523, 31.10736248404926},\n\t\t{3524, 30.95348491889584},\n\t\t{3525, 30.39386488435902},\n\t\t{3526, 30.082639749439995},\n\t\t{3527, 31.189586327936507},\n\t\t{3528, 31.43839740369831},\n\t\t{3529, 31.313018471682966},\n\t\t{3530, 31.24190268841608},\n\t\t{3531, 31.373635460402006},\n\t\t{3532, 31.26635675448505},\n\t\t{3533, 30.98293712220932},\n\t\t{3534, 31.431319445797822},\n\t\t{3535, 30.662258590716984},\n\t\t{3536, 31.555087070316418},\n\t\t{3537, 32.98014017195333},\n\t\t{3538, 32.718573086874514},\n\t\t{3539, 32.69374365847009},\n\t\t{3540, 32.334428458462085},\n\t\t{3541, 32.79981705652948},\n\t\t{3542, 32.54809889650045},\n\t\t{3543, 32.25529291766223},\n\t\t{3544, 31.785544957781138},\n\t\t{3545, 31.689101326443183},\n\t\t{3546, 31.617220851427742},\n\t\t{3547, 31.549033274787455},\n\t\t{3548, 32.92223632877409},\n\t\t{3549, 32.8330770506699},\n\t\t{3550, 33.014591854223255},\n\t\t{3551, 33.36379119283432},\n\t\t{3552, 33.055540509396565},\n\t\t{3553, 32.46582242202945},\n\t\t{3554, 32.09927951615547},\n\t\t{3555, 32.68733881264074},\n\t\t{3556, 33.86320988116308},\n\t\t{3557, 33.94494214738513},\n\t\t{3558, 33.529412010032885},\n\t\t{3559, 33.4888869543669},\n\t\t{3560, 33.38035950901418},\n\t\t{3561, 33.31012171482195},\n\t\t{3562, 33.48535073196302},\n\t\t{3563, 33.597392261160415},\n\t\t{3564, 33.4512300687611},\n\t\t{3565, 32.81838924040587},\n\t\t{3566, 33.41685969176084},\n\t\t{3567, 33.44158744976233},\n\t\t{3568, 31.864631180692385},\n\t\t{3569, 31.69972472198296},\n\t\t{3570, 31.62978284463028},\n\t\t{3571, 33.02109212331147},\n\t\t{3572, 33.012962884618574},\n\t\t{3573, 32.541542372624065},\n\t\t{3574, 31.491346373021337},\n\t\t{3575, 31.615350692550003},\n\t\t{3576, 31.804732803514614},\n\t\t{3577, 31.785970967334098},\n\t\t{3578, 31.302173527640477},\n\t\t{3579, 31.066768598626613},\n\t\t{3580, 30.83902872742016},\n\t\t{3581, 30.647189213101132},\n\t\t{3582, 30.679283971247305},\n\t\t{3583, 30.635220918876687},\n\t\t{3584, 30.474194541456203},\n\t\t{3585, 30.323171221808224},\n\t\t{3586, 30.231880521112476},\n\t\t{3587, 30.14165312650818},\n\t\t{3588, 30.587932180323367},\n\t\t{3589, 30.515797815362596},\n\t\t{3590, 30.697580128792886},\n\t\t{3591, 30.5092767324158},\n\t\t{3592, 30.22933286653618},\n\t\t{3593, 30.399883720364244},\n\t\t{3594, 30.563655322165122},\n\t\t{3595, 30.916284482811637},\n\t\t{3596, 31.266903691899042},\n\t\t{3597, 31.277953104128557},\n\t\t{3598, 31.248343781043335},\n\t\t{3599, 31.665546713305297},\n\t\t{3600, 31.780736348640186},\n\t\t{3601, 32.560705734243456},\n\t\t{3602, 32.58949125031766},\n\t\t{3603, 32.648379121925466},\n\t\t{3604, 32.648994209302636},\n\t\t{3605, 32.89262541394924},\n\t\t{3606, 32.386706534468246},\n\t\t{3607, 33.10476073358268},\n\t\t{3608, 32.127562371704016},\n\t\t{3609, 32.08021758550007},\n\t\t{3610, 32.01828734139976},\n\t\t{3611, 32.149616630644026},\n\t\t{3612, 32.24939276030207},\n\t\t{3613, 31.908269478103314},\n\t\t{3614, 31.75980113913783},\n\t\t{3615, 31.599177196466123},\n\t\t{3616, 30.82883453465096},\n\t\t{3617, 30.805848182195113},\n\t\t{3618, 30.67015361507686},\n\t\t{3619, 30.82551357191438},\n\t\t{3620, 31.231900275482825},\n\t\t{3621, 31.39570326592559},\n\t\t{3622, 31.220478731815824},\n\t\t{3623, 31.191057259483284},\n\t\t{3624, 31.71256738228641},\n\t\t{3625, 31.767353330007293},\n\t\t{3626, 31.7421965553774},\n\t\t{3627, 32.169320034067475},\n\t\t{3628, 32.83045534082564},\n\t\t{3629, 33.09082984672529},\n\t\t{3630, 33.091418882239445},\n\t\t{3631, 33.534698294315376},\n\t\t{3632, 34.98860015194777},\n\t\t{3633, 34.887785100600965},\n\t\t{3634, 34.52612439270598},\n\t\t{3635, 35.222998429400846},\n\t\t{3636, 35.32696073852328},\n\t\t{3637, 33.91614263793164},\n\t\t{3638, 33.955178987781},\n\t\t{3639, 32.98821123005988},\n\t\t{3640, 31.54612425654933},\n\t\t{3641, 30.47179194130409},\n\t\t{3642, 29.121801087250198},\n\t\t{3643, 28.98075756334753},\n\t\t{3644, 29.21120341558452},\n\t\t{3645, 28.94324522035289},\n\t\t{3646, 30.61040164869518},\n\t\t{3647, 30.938644800763065},\n\t\t{3648, 31.88964085600857},\n\t\t{3649, 31.104255236657654},\n\t\t{3650, 30.80739952109552},\n\t\t{3651, 30.87061979495017},\n\t\t{3652, 30.50628535976767},\n\t\t{3653, 30.526826937324103},\n\t\t{3654, 30.39733248162421},\n\t\t{3655, 30.396253710063263},\n\t\t{3656, 30.500732657862326},\n\t\t{3657, 30.464941464184626},\n\t\t{3658, 30.397674823493038},\n\t\t{3659, 31.559828803294607},\n\t\t{3660, 30.4775995110338},\n\t\t{3661, 30.605373430398316},\n\t\t{3662, 30.959781079195544},\n\t\t{3663, 30.686376335617936},\n\t\t{3664, 30.45394463567413},\n\t\t{3665, 30.836569443595376},\n\t\t{3666, 30.41004287663308},\n\t\t{3667, 30.76197883114409},\n\t\t{3668, 30.17037689073509},\n\t\t{3669, 30.057913986094512},\n\t\t{3670, 30.087583283388085},\n\t\t{3671, 30.21878224005264},\n\t\t{3672, 30.246448076959325},\n\t\t{3673, 30.58839113549538},\n\t\t{3674, 31.47426930437642},\n\t\t{3675, 31.010529526010682},\n\t\t{3676, 31.303422051514435},\n\t\t{3677, 31.003100220279816},\n\t\t{3678, 30.98326209088546},\n\t\t{3679, 30.69183779794675},\n\t\t{3680, 31.223367625034683},\n\t\t{3681, 30.789280075755688},\n\t\t{3682, 30.19829216553304},\n\t\t{3683, 30.363595369442493},\n\t\t{3684, 30.27935553254929},\n\t\t{3685, 30.1261971935347},\n\t\t{3686, 30.79863985302651},\n\t\t{3687, 31.047595403218057},\n\t\t{3688, 30.90228673518786},\n\t\t{3689, 30.543388017289054},\n\t\t{3690, 30.704356144092372},\n\t\t{3691, 30.63973229439528},\n\t\t{3692, 30.68310619503808},\n\t\t{3693, 30.603549759307885},\n\t\t{3694, 31.374934823463768},\n\t\t{3695, 31.389460746452443},\n\t\t{3696, 31.904273713484496},\n\t\t{3697, 31.885063882176844},\n\t\t{3698, 31.820524013817312},\n\t\t{3699, 31.82770668437377},\n\t\t{3700, 31.62129391692174},\n\t\t{3701, 33.01039885910495},\n\t\t{3702, 32.810936220934124},\n\t\t{3703, 33.11606920366353},\n\t\t{3704, 33.45236130557991},\n\t\t{3705, 34.35768750096602},\n\t\t{3706, 33.480461372240505},\n\t\t{3707, 33.73411429026118},\n\t\t{3708, 33.89279065017372},\n\t\t{3709, 34.23881544215997},\n\t\t{3710, 34.935789977307365},\n\t\t{3711, 34.77481188799792},\n\t\t{3712, 34.73666168190101},\n\t\t{3713, 34.049290860266446},\n\t\t{3714, 34.3821020789841},\n\t\t{3715, 34.6030641653466},\n\t\t{3716, 34.69594103398987},\n\t\t{3717, 34.17980982257179},\n\t\t{3718, 34.16518765028321},\n\t\t{3719, 34.23763587885022},\n\t\t{3720, 34.601596281681694},\n\t\t{3721, 35.4175582873499},\n\t\t{3722, 35.59749071347688},\n\t\t{3723, 34.32925786634385},\n\t\t{3724, 34.51637645217182},\n\t\t{3725, 34.525950151725944},\n\t\t{3726, 35.998069795400646},\n\t\t{3727, 35.963551274884786},\n\t\t{3728, 36.036689984025955},\n\t\t{3729, 37.24781768842208},\n\t\t{3730, 37.277514336598095},\n\t\t{3731, 37.30863902603817},\n\t\t{3732, 36.79217135191674},\n\t\t{3733, 36.79064349318625},\n\t\t{3734, 36.001098652284306},\n\t\t{3735, 35.86481428501773},\n\t\t{3736, 35.94802206870304},\n\t\t{3737, 37.14027447150489},\n\t\t{3738, 36.258549896818224},\n\t\t{3739, 36.802348037612525},\n\t\t{3740, 36.89335332794575},\n\t\t{3741, 37.908095460582},\n\t\t{3742, 37.71387537919735},\n\t\t{3743, 37.25060233029356},\n\t\t{3744, 36.911971103005506},\n\t\t{3745, 36.621626787271495},\n\t\t{3746, 36.78598563390066},\n\t\t{3747, 36.78867687247616},\n\t\t{3748, 36.846211552881314},\n\t\t{3749, 36.68451178474116},\n\t\t{3750, 36.30880218835804},\n\t\t{3751, 36.74490372547481},\n\t\t{3752, 36.93776738041527},\n\t\t{3753, 36.92794573529495},\n\t\t{3754, 36.88702244570728},\n\t\t{3755, 37.032752352208334},\n\t\t{3756, 37.09031587985092},\n\t\t{3757, 37.25861213788812},\n\t\t{3758, 37.0208483030904},\n\t\t{3759, 37.44627314073198},\n\t\t{3760, 36.60326002825027},\n\t\t{3761, 36.5349242191796},\n\t\t{3762, 36.18844767465498},\n\t\t{3763, 36.58284312296601},\n\t\t{3764, 36.501734860814345},\n\t\t{3765, 36.047516333562704},\n\t\t{3766, 35.32968089985233},\n\t\t{3767, 36.28983500653037},\n\t\t{3768, 35.9811194049413},\n\t\t{3769, 36.10451903716811},\n\t\t{3770, 36.34687133526118},\n\t\t{3771, 36.31609256803086},\n\t\t{3772, 37.63818828180108},\n\t\t{3773, 38.43083167710727},\n\t\t{3774, 38.457277972233115},\n\t\t{3775, 38.50074370521922},\n\t\t{3776, 38.57905462745658},\n\t\t{3777, 37.94556968927861},\n\t\t{3778, 38.250174481197824},\n\t\t{3779, 38.87016646551586},\n\t\t{3780, 38.96356411591443},\n\t\t{3781, 38.81436757446562},\n\t\t{3782, 38.70813805142539},\n\t\t{3783, 38.36257955910033},\n\t\t{3784, 38.334587300767666},\n\t\t{3785, 38.573334533834945},\n\t\t{3786, 38.706937363024785},\n\t\t{3787, 38.456878484269325},\n\t\t{3788, 38.59652287562196},\n\t\t{3789, 38.87303482456266},\n\t\t{3790, 38.26707578973226},\n\t\t{3791, 38.08710058110894},\n\t\t{3792, 38.107611873182606},\n\t\t{3793, 37.87348574106414},\n\t\t{3794, 38.467343581667315},\n\t\t{3795, 38.52284971229728},\n\t\t{3796, 38.80030552742671},\n\t\t{3797, 39.31444077052365},\n\t\t{3798, 39.36714339199697},\n\t\t{3799, 39.265510040584786},\n\t\t{3800, 39.35757249633458},\n\t\t{3801, 39.23029087940918},\n\t\t{3802, 40.236476990129525},\n\t\t{3803, 40.40447274896678},\n\t\t{3804, 39.90050059379676},\n\t\t{3805, 39.82968538918735},\n\t\t{3806, 39.568796564237815},\n\t\t{3807, 39.66844747677395},\n\t\t{3808, 39.48947001553621},\n\t\t{3809, 39.07804466925928},\n\t\t{3810, 39.08468133372294},\n\t\t{3811, 39.409077167178886},\n\t\t{3812, 39.59388813521032},\n\t\t{3813, 39.61292554954707},\n\t\t{3814, 39.53006069194008},\n\t\t{3815, 39.43424867493228},\n\t\t{3816, 39.364325046233276},\n\t\t{3817, 39.24878540639196},\n\t\t{3818, 38.91030638030182},\n\t\t{3819, 39.19021407549976},\n\t\t{3820, 39.52465873164222},\n\t\t{3821, 39.30579054542478},\n\t\t{3822, 39.066334049300906},\n\t\t{3823, 38.445919893706396},\n\t\t{3824, 38.82331512394734},\n\t\t{3825, 38.722751358387455},\n\t\t{3826, 39.18918989725993},\n\t\t{3827, 39.3325423377068},\n\t\t{3828, 40.07164954275041},\n\t\t{3829, 40.07074505067318},\n\t\t{3830, 40.27305857026511},\n\t\t{3831, 40.29841893573262},\n\t\t{3832, 40.35632841195591},\n\t\t{3833, 41.25954776973257},\n\t\t{3834, 41.08661644599172},\n\t\t{3835, 40.930860440282444},\n\t\t{3836, 40.67035270986339},\n\t\t{3837, 40.59686023107034},\n\t\t{3838, 40.966306832072135},\n\t\t{3839, 41.73206011126974},\n\t\t{3840, 41.83313880921912},\n\t\t{3841, 42.710027568498774},\n\t\t{3842, 43.09298354963694},\n\t\t{3843, 43.97481631223127},\n\t\t{3844, 43.06984802315324},\n\t\t{3845, 42.88682049659426},\n\t\t{3846, 42.70391340792306},\n\t\t{3847, 42.67733443704977},\n\t\t{3848, 42.312517547282376},\n\t\t{3849, 42.68248973003122},\n\t\t{3850, 41.89851060373508},\n\t\t{3851, 42.499365091434946},\n\t\t{3852, 42.04285692039637},\n\t\t{3853, 42.36335659371158},\n\t\t{3854, 43.00859290667485},\n\t\t{3855, 42.64595368210728},\n\t\t{3856, 42.84344419146314},\n\t\t{3857, 42.58554402244061},\n\t\t{3858, 42.94977322974173},\n\t\t{3859, 42.970561962196946},\n\t\t{3860, 43.09387131088587},\n\t\t{3861, 43.5526747563676},\n\t\t{3862, 43.59839466763858},\n\t\t{3863, 43.491401190645476},\n\t\t{3864, 43.890847555316626},\n\t\t{3865, 43.90554980755929},\n\t\t{3866, 43.29419748320046},\n\t\t{3867, 43.19271817040813},\n\t\t{3868, 43.15798450802592},\n\t\t{3869, 44.936354699949135},\n\t\t{3870, 44.925896564304466},\n\t\t{3871, 45.141313850266805},\n\t\t{3872, 45.15805553382705},\n\t\t{3873, 45.175146274315395},\n\t\t{3874, 44.602873917897206},\n\t\t{3875, 43.98425210064129},\n\t\t{3876, 44.21112444021221},\n\t\t{3877, 44.31207946892926},\n\t\t{3878, 44.32915256192521},\n\t\t{3879, 44.54003640246446},\n\t\t{3880, 44.43388783676019},\n\t\t{3881, 44.377913951958845},\n\t\t{3882, 44.08660155118512},\n\t\t{3883, 44.084088844428344},\n\t\t{3884, 44.678908282742874},\n\t\t{3885, 44.69090507621899},\n\t\t{3886, 44.66399823516045},\n\t\t{3887, 44.70003406608551},\n\t\t{3888, 44.64217161352199},\n\t\t{3889, 44.598427607594914},\n\t\t{3890, 44.64183638547881},\n\t\t{3891, 45.313385126126406},\n\t\t{3892, 45.213056881203656},\n\t\t{3893, 45.83751311620533},\n\t\t{3894, 45.97798477844367},\n\t\t{3895, 46.69554397624657},\n\t\t{3896, 46.780476914271844},\n\t\t{3897, 46.42161452367823},\n\t\t{3898, 46.485265361946965},\n\t\t{3899, 46.463419227463945},\n\t\t{3900, 46.40619518750473},\n\t\t{3901, 46.06654509998825},\n\t\t{3902, 46.57689530438109},\n\t\t{3903, 46.23083598006043},\n\t\t{3904, 46.574270685203786},\n\t\t{3905, 46.78507045779222},\n\t\t{3906, 46.762325322870765},\n\t\t{3907, 47.013171115464665},\n\t\t{3908, 47.35684909712627},\n\t\t{3909, 47.46573772776851},\n\t\t{3910, 47.79168684198062},\n\t\t{3911, 46.864811059928705},\n\t\t{3912, 46.19102604217612},\n\t\t{3913, 45.57512279475959},\n\t\t{3914, 45.27697004686091},\n\t\t{3915, 44.43233105401431},\n\t\t{3916, 44.48913258511433},\n\t\t{3917, 44.05739070330766},\n\t\t{3918, 43.43326838667846},\n\t\t{3919, 43.18101584512046},\n\t\t{3920, 43.12661207742961},\n\t\t{3921, 43.20235581216143},\n\t\t{3922, 43.21124585054493},\n\t\t{3923, 43.54158862241011},\n\t\t{3924, 43.50571782863192},\n\t\t{3925, 43.711364180631804},\n\t\t{3926, 43.18168675879529},\n\t\t{3927, 42.89854097019134},\n\t\t{3928, 42.910583730646124},\n\t\t{3929, 43.18510405314944},\n\t\t{3930, 42.639952988135626},\n\t\t{3931, 42.797465701366804},\n\t\t{3932, 43.44286812172023},\n\t\t{3933, 43.19594242280566},\n\t\t{3934, 43.423279844975504},\n\t\t{3935, 43.637554324106404},\n\t\t{3936, 43.56664792791941},\n\t\t{3937, 44.47718122890482},\n\t\t{3938, 42.71893554253818},\n\t\t{3939, 42.68619011219234},\n\t\t{3940, 42.764744246822005},\n\t\t{3941, 42.368141211578596},\n\t\t{3942, 42.72177242428145},\n\t\t{3943, 42.58290514752061},\n\t\t{3944, 42.500109121456575},\n\t\t{3945, 43.06917028887632},\n\t\t{3946, 43.1390878438651},\n\t\t{3947, 43.67566420376484},\n\t\t{3948, 43.32879166406192},\n\t\t{3949, 43.12282803410909},\n\t\t{3950, 43.53504871953674},\n\t\t{3951, 43.11341790856445},\n\t\t{3952, 43.09460900193214},\n\t\t{3953, 42.975278393392486},\n\t\t{3954, 43.02716626297875},\n\t\t{3955, 43.28841760595471},\n\t\t{3956, 43.15013781306844},\n\t\t{3957, 43.05005871018039},\n\t\t{3958, 42.643291525484216},\n\t\t{3959, 41.40330273303392},\n\t\t{3960, 41.190483201302776},\n\t\t{3961, 41.18851255115125},\n\t\t{3962, 41.139227053508684},\n\t\t{3963, 41.262957426835335},\n\t\t{3964, 41.56188105204588},\n\t\t{3965, 41.29178612732812},\n\t\t{3966, 42.1903083759515},\n\t\t{3967, 43.24502540234582},\n\t\t{3968, 43.53636550586511},\n\t\t{3969, 43.2653460646287},\n\t\t{3970, 43.08283306703269},\n\t\t{3971, 42.4092975371573},\n\t\t{3972, 42.339747488590305},\n\t\t{3973, 42.17938430330037},\n\t\t{3974, 42.9302231459865},\n\t\t{3975, 44.14104375702491},\n\t\t{3976, 44.32654181837024},\n\t\t{3977, 44.85103730540091},\n\t\t{3978, 43.686022699020185},\n\t\t{3979, 43.52045377054748},\n\t\t{3980, 44.066949791075196},\n\t\t{3981, 43.54943797407643},\n\t\t{3982, 43.55681098163001},\n\t\t{3983, 43.62378293786004},\n\t\t{3984, 43.27719869525927},\n\t\t{3985, 43.520080202226026},\n\t\t{3986, 43.48833320696304},\n\t\t{3987, 43.528692784115066},\n\t\t{3988, 43.39572733345793},\n\t\t{3989, 43.66669909833283},\n\t\t{3990, 43.627624602729895},\n\t\t{3991, 44.99085408453511},\n\t\t{3992, 44.957885207190635},\n\t\t{3993, 44.75608239056898},\n\t\t{3994, 44.79205318911418},\n\t\t{3995, 45.071567286436604},\n\t\t{3996, 45.0773216187218},\n\t\t{3997, 45.20628655580068},\n\t\t{3998, 45.042340799331626},\n\t\t{3999, 44.40459780963831},\n\t\t{4000, 44.84911779417697},\n\t\t{4001, 44.84679216126694},\n\t\t{4002, 44.9926860827092},\n\t\t{4003, 45.332476785661704},\n\t\t{4004, 45.32599258516697},\n\t\t{4005, 44.97196102902279},\n\t\t{4006, 44.975532895597816},\n\t\t{4007, 45.03190754404627},\n\t\t{4008, 43.66039558703255},\n\t\t{4009, 43.82989258131152},\n\t\t{4010, 44.06126134232322},\n\t\t{4011, 44.30529606181042},\n\t\t{4012, 44.44658393531378},\n\t\t{4013, 43.738910733073006},\n\t\t{4014, 44.212806733919},\n\t\t{4015, 44.10630077043948},\n\t\t{4016, 43.99563053457421},\n\t\t{4017, 44.095566651377375},\n\t\t{4018, 43.83450825940757},\n\t\t{4019, 43.84846576986777},\n\t\t{4020, 42.71505037386405},\n\t\t{4021, 43.00488908696087},\n\t\t{4022, 42.4995621932694},\n\t\t{4023, 42.28588980382473},\n\t\t{4024, 42.304954106759766},\n\t\t{4025, 41.580902668274064},\n\t\t{4026, 42.195928955837026},\n\t\t{4027, 42.32891452704911},\n\t\t{4028, 42.394421598632725},\n\t\t{4029, 42.88514428175226},\n\t\t{4030, 42.88411017501612},\n\t\t{4031, 42.44465234171097},\n\t\t{4032, 42.423161360690465},\n\t\t{4033, 42.06024809501421},\n\t\t{4034, 41.46983767233033},\n\t\t{4035, 41.450540092235606},\n\t\t{4036, 41.551824782132655},\n\t\t{4037, 41.497581890358525},\n\t\t{4038, 41.74337678928221},\n\t\t{4039, 42.01458088760071},\n\t\t{4040, 42.000161946828975},\n\t\t{4041, 42.09809076103792},\n\t\t{4042, 40.40121722063858},\n\t\t{4043, 40.405347534544276},\n\t\t{4044, 41.45596015966376},\n\t\t{4045, 41.34524024668175},\n\t\t{4046, 41.48790124860581},\n\t\t{4047, 40.85226478482957},\n\t\t{4048, 41.72644422704275},\n\t\t{4049, 42.28054826801833},\n\t\t{4050, 42.470889350803844},\n\t\t{4051, 42.58707283732388},\n\t\t{4052, 43.376033472640444},\n\t\t{4053, 43.273463592859194},\n\t\t{4054, 42.91653543267234},\n\t\t{4055, 43.68837327519839},\n\t\t{4056, 44.35550220099082},\n\t\t{4057, 44.303862119305684},\n\t\t{4058, 44.268994539070036},\n\t\t{4059, 44.12291558250871},\n\t\t{4060, 44.15997387053544},\n\t\t{4061, 43.847891173179995},\n\t\t{4062, 43.88605800805093},\n\t\t{4063, 43.76622485923872},\n\t\t{4064, 44.08049094209474},\n\t\t{4065, 43.52840705131174},\n\t\t{4066, 43.47588617544269},\n\t\t{4067, 43.42547149366908},\n\t\t{4068, 43.620164305725254},\n\t\t{4069, 43.62469613986601},\n\t\t{4070, 43.35722721012197},\n\t\t{4071, 43.11523304678633},\n\t\t{4072, 43.21270244719499},\n\t\t{4073, 42.799008504053795},\n\t\t{4074, 42.579441010470354},\n\t\t{4075, 43.616467334850654},\n\t\t{4076, 44.21857842681485},\n\t\t{4077, 44.096520800225065},\n\t\t{4078, 44.076122818906754},\n\t\t{4079, 43.882145702606714},\n\t\t{4080, 44.025173271395175},\n\t\t{4081, 44.08675228361723},\n\t\t{4082, 44.08280580012843},\n\t\t{4083, 44.089090764695634},\n\t\t{4084, 44.63027712418217},\n\t\t{4085, 44.64257806553344},\n\t\t{4086, 44.63488930186029},\n\t\t{4087, 43.49185769105879},\n\t\t{4088, 43.81922760361489},\n\t\t{4089, 44.55770909655596},\n\t\t{4090, 44.495768552475916},\n\t\t{4091, 44.70529568081817},\n\t\t{4092, 44.608267360939585},\n\t\t{4093, 44.32192140208638},\n\t\t{4094, 44.32913149339295},\n\t\t{4095, 43.92083958045917},\n\t\t{4096, 43.93629699159078},\n\t\t{4097, 44.42006096186749},\n\t\t{4098, 44.436560493979954},\n\t\t{4099, 45.03381928301654},\n\t\t{4100, 44.89092252034728},\n\t\t{4101, 45.228836061954944},\n\t\t{4102, 44.96315616449893},\n\t\t{4103, 45.317252160358144},\n\t\t{4104, 45.3699223441705},\n\t\t{4105, 44.99809335119828},\n\t\t{4106, 45.31350010825937},\n\t\t{4107, 45.28642508634763},\n\t\t{4108, 45.23753191697613},\n\t\t{4109, 45.55004475954644},\n\t\t{4110, 46.058774601853955},\n\t\t{4111, 45.83557796236126},\n\t\t{4112, 45.67893880941216},\n\t\t{4113, 45.58586429125116},\n\t\t{4114, 45.483336441906616},\n\t\t{4115, 44.95324979965775},\n\t\t{4116, 44.766511487040916},\n\t\t{4117, 44.863928712529},\n\t\t{4118, 45.521105859507294},\n\t\t{4119, 45.597789271022776},\n\t\t{4120, 45.548218639658785},\n\t\t{4121, 45.5671964393491},\n\t\t{4122, 45.66840481231619},\n\t\t{4123, 45.421280141591325},\n\t\t{4124, 45.42131956848279},\n\t\t{4125, 46.48565429648017},\n\t\t{4126, 46.691978861656345},\n\t\t{4127, 46.7203310903226},\n\t\t{4128, 47.83269632839022},\n\t\t{4129, 47.818072148512215},\n\t\t{4130, 47.904859885869236},\n\t\t{4131, 47.7041273974865},\n\t\t{4132, 47.69720727111671},\n\t\t{4133, 48.00314297086582},\n\t\t{4134, 46.56039022043427},\n\t\t{4135, 44.90413846099235},\n\t\t{4136, 45.52514774325245},\n\t\t{4137, 46.058621957431804},\n\t\t{4138, 46.12588682589276},\n\t\t{4139, 46.58227592497253},\n\t\t{4140, 46.17055554294809},\n\t\t{4141, 46.80784968189301},\n\t\t{4142, 46.49508518393976},\n\t\t{4143, 46.500309270278464},\n\t\t{4144, 46.414835172420304},\n\t\t{4145, 46.304075582190514},\n\t\t{4146, 46.22819939150845},\n\t\t{4147, 45.85490163160914},\n\t\t{4148, 46.16449836318747},\n\t\t{4149, 46.36607159615689},\n\t\t{4150, 45.33765696135226},\n\t\t{4151, 45.51784949111958},\n\t\t{4152, 45.27464232646123},\n\t\t{4153, 45.64354971534378},\n\t\t{4154, 45.57676214832657},\n\t\t{4155, 45.56569880057714},\n\t\t{4156, 45.645824829272414},\n\t\t{4157, 45.6060530616635},\n\t\t{4158, 45.78376908108006},\n\t\t{4159, 45.92037288384215},\n\t\t{4160, 45.93018712100647},\n\t\t{4161, 45.04435615370153},\n\t\t{4162, 43.97591673735583},\n\t\t{4163, 43.60804290415924},\n\t\t{4164, 43.25559660341626},\n\t\t{4165, 43.30560502979643},\n\t\t{4166, 43.32162929680021},\n\t\t{4167, 43.220797929589125},\n\t\t{4168, 43.88958904031423},\n\t\t{4169, 43.92613927037596},\n\t\t{4170, 43.28570468545945},\n\t\t{4171, 43.33758546950846},\n\t\t{4172, 43.38200781871171},\n\t\t{4173, 43.37439151387566},\n\t\t{4174, 43.62114145159183},\n\t\t{4175, 42.583155075251156},\n\t\t{4176, 41.79257202974383},\n\t\t{4177, 41.5301578370286},\n\t\t{4178, 40.72846655122725},\n\t\t{4179, 40.9074303438794},\n\t\t{4180, 41.486828841681415},\n\t\t{4181, 41.43693955839994},\n\t\t{4182, 41.25469470037508},\n\t\t{4183, 41.3152306690082},\n\t\t{4184, 42.05756123320117},\n\t\t{4185, 41.976765116312805},\n\t\t{4186, 42.55329890940964},\n\t\t{4187, 42.32763877115726},\n\t\t{4188, 42.331621409998704},\n\t\t{4189, 41.678572270110294},\n\t\t{4190, 41.78167622000538},\n\t\t{4191, 41.57841592927911},\n\t\t{4192, 41.41582587790593},\n\t\t{4193, 40.829011801535664},\n\t\t{4194, 42.57985084363515},\n\t\t{4195, 42.4375122885433},\n\t\t{4196, 42.32575825185156},\n\t\t{4197, 42.800600639022605},\n\t\t{4198, 42.07267000939594},\n\t\t{4199, 41.991890779837725},\n\t\t{4200, 42.01125834670128},\n\t\t{4201, 42.01783872316503},\n\t\t{4202, 41.99633327331731},\n\t\t{4203, 42.2264225459579},\n\t\t{4204, 42.41931446868698},\n\t\t{4205, 42.5104434476498},\n\t\t{4206, 42.51820041440961},\n\t\t{4207, 43.10274662201198},\n\t\t{4208, 43.03752438898408},\n\t\t{4209, 43.19323932573483},\n\t\t{4210, 43.15253357742187},\n\t\t{4211, 42.158082291323616},\n\t\t{4212, 42.18530485919557},\n\t\t{4213, 42.179672734709584},\n\t\t{4214, 42.08370843694731},\n\t\t{4215, 42.062223021469975},\n\t\t{4216, 41.67838942952538},\n\t\t{4217, 41.49506764318014},\n\t\t{4218, 41.59881716888323},\n\t\t{4219, 41.926024236261355},\n\t\t{4220, 42.11947567033156},\n\t\t{4221, 42.26187787539394},\n\t\t{4222, 42.65015253639434},\n\t\t{4223, 42.441042770154844},\n\t\t{4224, 43.08690587956467},\n\t\t{4225, 44.39310986424937},\n\t\t{4226, 44.94461257206579},\n\t\t{4227, 44.78804776055559},\n\t\t{4228, 45.53797859707034},\n\t\t{4229, 45.55187883708798},\n\t\t{4230, 45.88537683206737},\n\t\t{4231, 45.825185517872704},\n\t\t{4232, 46.07574947104996},\n\t\t{4233, 46.060884716412254},\n\t\t{4234, 45.76160043499644},\n\t\t{4235, 45.76931072837809},\n\t\t{4236, 45.51959493255436},\n\t\t{4237, 45.554677642229564},\n\t\t{4238, 45.52426093953901},\n\t\t{4239, 46.109945660686115},\n\t\t{4240, 45.99257414377729},\n\t\t{4241, 46.07894808606258},\n\t\t{4242, 44.286086348874676},\n\t\t{4243, 44.4865400708932},\n\t\t{4244, 44.234913797823154},\n\t\t{4245, 44.16033974830902},\n\t\t{4246, 43.44966049381201},\n\t\t{4247, 43.08447818539749},\n\t\t{4248, 43.205930480034986},\n\t\t{4249, 43.27174171858989},\n\t\t{4250, 43.37829207780095},\n\t\t{4251, 43.10867398251995},\n\t\t{4252, 43.143056746791466},\n\t\t{4253, 43.184584390833216},\n\t\t{4254, 43.2384965784782},\n\t\t{4255, 43.64269672822312},\n\t\t{4256, 43.95024182576365},\n\t\t{4257, 44.34389839798999},\n\t\t{4258, 44.779096753781424},\n\t\t{4259, 44.81584343357247},\n\t\t{4260, 44.862897971461486},\n\t\t{4261, 44.809095330679426},\n\t\t{4262, 44.82258689695792},\n\t\t{4263, 44.94257959545199},\n\t\t{4264, 44.70649326700459},\n\t\t{4265, 44.83403801956116},\n\t\t{4266, 44.69375741776056},\n\t\t{4267, 44.246909347585806},\n\t\t{4268, 44.31131992100262},\n\t\t{4269, 44.30870396354328},\n\t\t{4270, 45.277184693727},\n\t\t{4271, 45.325741450057016},\n\t\t{4272, 45.35787945327525},\n\t\t{4273, 46.26696427252453},\n\t\t{4274, 46.3349833461467},\n\t\t{4275, 46.262367003647526},\n\t\t{4276, 45.88415082220467},\n\t\t{4277, 45.69088772324733},\n\t\t{4278, 46.30744653697344},\n\t\t{4279, 46.109976226034966},\n\t\t{4280, 46.00659771921764},\n\t\t{4281, 45.98327288475588},\n\t\t{4282, 45.93683158647156},\n\t\t{4283, 45.827017445641175},\n\t\t{4284, 44.898780786668084},\n\t\t{4285, 44.857946447901604},\n\t\t{4286, 44.78129029650326},\n\t\t{4287, 44.460979780768575},\n\t\t{4288, 43.781370713844545},\n\t\t{4289, 43.80346385692286},\n\t\t{4290, 43.70136533034899},\n\t\t{4291, 43.59605587452415},\n\t\t{4292, 46.60711089281704},\n\t\t{4293, 43.20999116221206},\n\t\t{4294, 43.61705810567689},\n\t\t{4295, 43.10115465773163},\n\t\t{4296, 43.384267987646375},\n\t\t{4297, 43.335817467294284},\n\t\t{4298, 43.450535768186434},\n\t\t{4299, 43.27624559738883},\n\t\t{4300, 43.74264705432361},\n\t\t{4301, 43.80047106789878},\n\t\t{4302, 43.1793620620206},\n\t\t{4303, 44.06844891439754},\n\t\t{4304, 44.122958015118876},\n\t\t{4305, 44.16868478059633},\n\t\t{4306, 43.763355009011846},\n\t\t{4307, 44.24245012746741},\n\t\t{4308, 43.6667108237416},\n\t\t{4309, 43.44755931800053},\n\t\t{4310, 43.8388540119679},\n\t\t{4311, 43.84684532813053},\n\t\t{4312, 43.891606967283025},\n\t\t{4313, 43.61609318450177},\n\t\t{4314, 43.50391313644561},\n\t\t{4315, 43.4370124294098},\n\t\t{4316, 43.320512498718685},\n\t\t{4317, 43.43317762888966},\n\t\t{4318, 43.441565229865844},\n\t\t{4319, 43.89166237920707},\n\t\t{4320, 43.79297096639801},\n\t\t{4321, 42.86616397750371},\n\t\t{4322, 42.492817070603124},\n\t\t{4323, 42.463597734904255},\n\t\t{4324, 42.099203979340935},\n\t\t{4325, 43.148352379283736},\n\t\t{4326, 43.14393983822119},\n\t\t{4327, 43.802920465762334},\n\t\t{4328, 43.787438894126545},\n\t\t{4329, 44.8390211407645},\n\t\t{4330, 43.9210831019679},\n\t\t{4331, 44.160162794499165},\n\t\t{4332, 44.603706152703076},\n\t\t{4333, 44.6029921449433},\n\t\t{4334, 45.71896157142412},\n\t\t{4335, 45.7186083077643},\n\t\t{4336, 46.132237714004425},\n\t\t{4337, 45.29810811659616},\n\t\t{4338, 45.44893704926406},\n\t\t{4339, 44.56756839730384},\n\t\t{4340, 44.84857422415435},\n\t\t{4341, 44.59101148982434},\n\t\t{4342, 45.832174813792975},\n\t\t{4343, 46.24568332480992},\n\t\t{4344, 46.27972490525816},\n\t\t{4345, 46.220037760327614},\n\t\t{4346, 46.26785697686892},\n\t\t{4347, 45.91029124256099},\n\t\t{4348, 46.01333033455775},\n\t\t{4349, 45.55640134102827},\n\t\t{4350, 45.07332328943664},\n\t\t{4351, 44.05034495051119},\n\t\t{4352, 44.37631641742659},\n\t\t{4353, 44.47510379397457},\n\t\t{4354, 44.481536987385375},\n\t\t{4355, 45.09815452419815},\n\t\t{4356, 44.23545269297595},\n\t\t{4357, 44.35190888940349},\n\t\t{4358, 44.44376512206195},\n\t\t{4359, 44.35377582256026},\n\t\t{4360, 44.182956840667266},\n\t\t{4361, 44.4297999192324},\n\t\t{4362, 44.13473879958124},\n\t\t{4363, 44.055995402850435},\n\t\t{4364, 44.005471335161786},\n\t\t{4365, 43.25758809794344},\n\t\t{4366, 43.817908095986404},\n\t\t{4367, 43.822056761477334},\n\t\t{4368, 44.14477410502386},\n\t\t{4369, 43.797486505074176},\n\t\t{4370, 43.79800963408963},\n\t\t{4371, 42.8796997482786},\n\t\t{4372, 42.88556424491737},\n\t\t{4373, 42.77727527309622},\n\t\t{4374, 42.35778308150795},\n\t\t{4375, 42.16975466552083},\n\t\t{4376, 41.93028553518078},\n\t\t{4377, 42.09563715627173},\n\t\t{4378, 41.17204610689614},\n\t\t{4379, 41.78572427771177},\n\t\t{4380, 41.92150205271964},\n\t\t{4381, 42.09741338103042},\n\t\t{4382, 43.69386481163199},\n\t\t{4383, 42.96742035210106},\n\t\t{4384, 42.343580110976134},\n\t\t{4385, 42.22399465949221},\n\t\t{4386, 42.6091386627358},\n\t\t{4387, 42.568896188906415},\n\t\t{4388, 42.64410302487118},\n\t\t{4389, 41.95886131685545},\n\t\t{4390, 40.80681239206415},\n\t\t{4391, 39.38331357790885},\n\t\t{4392, 39.78427361503698},\n\t\t{4393, 39.93810078981509},\n\t\t{4394, 40.13352169285055},\n\t\t{4395, 40.21778170710591},\n\t\t{4396, 40.16970625785058},\n\t\t{4397, 40.49257098503543},\n\t\t{4398, 39.526963187820655},\n\t\t{4399, 39.39632170400282},\n\t\t{4400, 38.65146414419247},\n\t\t{4401, 38.69622195198017},\n\t\t{4402, 38.82824084957831},\n\t\t{4403, 38.35894467631948},\n\t\t{4404, 38.374288310893164},\n\t\t{4405, 38.30201987865161},\n\t\t{4406, 39.040498102853704},\n\t\t{4407, 38.739032917012814},\n\t\t{4408, 38.21513757304971},\n\t\t{4409, 37.79412671670286},\n\t\t{4410, 37.572863184633725},\n\t\t{4411, 36.71659398164643},\n\t\t{4412, 36.9686014580944},\n\t\t{4413, 36.61396796753844},\n\t\t{4414, 36.21992527315708},\n\t\t{4415, 36.544907354858005},\n\t\t{4416, 36.94702029184928},\n\t\t{4417, 37.040712123103496},\n\t\t{4418, 37.86983316239789},\n\t\t{4419, 37.9133259993023},\n\t\t{4420, 37.740462632345725},\n\t\t{4421, 37.80334582875091},\n\t\t{4422, 38.06669175124991},\n\t\t{4423, 38.82569943174218},\n\t\t{4424, 38.79645166307203},\n\t\t{4425, 38.138183023387136},\n\t\t{4426, 37.343389010610906},\n\t\t{4427, 37.06893203484559},\n\t\t{4428, 36.974042644355606},\n\t\t{4429, 37.10878943344164},\n\t\t{4430, 36.92199614208741},\n\t\t{4431, 36.31927104688222},\n\t\t{4432, 36.318646750338225},\n\t\t{4433, 35.93959392178788},\n\t\t{4434, 35.957928276775064},\n\t\t{4435, 36.57803220920125},\n\t\t{4436, 36.48729877130802},\n\t\t{4437, 36.08934258703699},\n\t\t{4438, 35.92075815637091},\n\t\t{4439, 35.97790853205448},\n\t\t{4440, 37.10428719217352},\n\t\t{4441, 37.34763949569804},\n\t\t{4442, 37.54555366814172},\n\t\t{4443, 38.21664941647024},\n\t\t{4444, 38.15910673215726},\n\t\t{4445, 38.18389302943226},\n\t\t{4446, 38.15032771707228},\n\t\t{4447, 38.257644304614324},\n\t\t{4448, 37.89935320642902},\n\t\t{4449, 37.92806972052069},\n\t\t{4450, 38.44876254366418},\n\t\t{4451, 38.39207298891007},\n\t\t{4452, 37.688682446222174},\n\t\t{4453, 37.5187537924215},\n\t\t{4454, 37.51914139540737},\n\t\t{4455, 37.09540108270616},\n\t\t{4456, 37.73546306496036},\n\t\t{4457, 37.81369411954859},\n\t\t{4458, 36.83626164610845},\n\t\t{4459, 36.93994071270752},\n\t\t{4460, 36.95018579100306},\n\t\t{4461, 37.26709009753631},\n\t\t{4462, 37.15237030254232},\n\t\t{4463, 37.049394970609185},\n\t\t{4464, 37.7162630971784},\n\t\t{4465, 37.778299282663106},\n\t\t{4466, 38.730315146387746},\n\t\t{4467, 38.7451015147541},\n\t\t{4468, 38.61705719495839},\n\t\t{4469, 37.872865556491874},\n\t\t{4470, 37.89246439250997},\n\t\t{4471, 38.16788956159939},\n\t\t{4472, 37.860151832562025},\n\t\t{4473, 37.73726372456453},\n\t\t{4474, 37.69142767992998},\n\t\t{4475, 37.63232006550031},\n\t\t{4476, 37.423877674083585},\n\t\t{4477, 37.4556569056629},\n\t\t{4478, 37.96421499308509},\n\t\t{4479, 37.81211863240172},\n\t\t{4480, 38.05702647753458},\n\t\t{4481, 38.210884926434076},\n\t\t{4482, 38.312564817548534},\n\t\t{4483, 38.6074646961431},\n\t\t{4484, 38.61409094278309},\n\t\t{4485, 38.017765676373614},\n\t\t{4486, 38.13255323384495},\n\t\t{4487, 38.08371503820191},\n\t\t{4488, 39.74784443380604},\n\t\t{4489, 39.581076576624355},\n\t\t{4490, 39.560969587140264},\n\t\t{4491, 39.633230280700445},\n\t\t{4492, 39.4716793618942},\n\t\t{4493, 39.85116292164824},\n\t\t{4494, 40.13334579775557},\n\t\t{4495, 40.63456793316489},\n\t\t{4496, 40.71073257614338},\n\t\t{4497, 40.614825837238605},\n\t\t{4498, 40.52093195142476},\n\t\t{4499, 40.625992282699016},\n\t\t{4500, 40.61279333802842},\n\t\t{4501, 40.60312836705065},\n\t\t{4502, 40.45124308705166},\n\t\t{4503, 39.813179582460556},\n\t\t{4504, 39.40056608371914},\n\t\t{4505, 39.400036014144824},\n\t\t{4506, 40.068292685250626},\n\t\t{4507, 39.85851159258621},\n\t\t{4508, 40.22426761068521},\n\t\t{4509, 40.20179430857556},\n\t\t{4510, 40.195867059687664},\n\t\t{4511, 40.17841644766825},\n\t\t{4512, 40.33883934166413},\n\t\t{4513, 40.43097043722167},\n\t\t{4514, 39.97935686013634},\n\t\t{4515, 40.35201602305827},\n\t\t{4516, 40.362381301668016},\n\t\t{4517, 41.646176394626345},\n\t\t{4518, 41.090525592460445},\n\t\t{4519, 40.79730768415044},\n\t\t{4520, 40.72921199361499},\n\t\t{4521, 40.41889455210564},\n\t\t{4522, 40.379424134550845},\n\t\t{4523, 40.39436450202139},\n\t\t{4524, 40.009568103338225},\n\t\t{4525, 40.60519761105382},\n\t\t{4526, 40.20213007918731},\n\t\t{4527, 40.39015160569152},\n\t\t{4528, 39.9454660982101},\n\t\t{4529, 39.075001110176856},\n\t\t{4530, 39.13454982085495},\n\t\t{4531, 39.648058502641085},\n\t\t{4532, 39.648144119118776},\n\t\t{4533, 39.324207361611386},\n\t\t{4534, 39.53997526505957},\n\t\t{4535, 39.97557044175399},\n\t\t{4536, 40.26787350849},\n\t\t{4537, 40.17369778686508},\n\t\t{4538, 40.44006641312129},\n\t\t{4539, 40.57083491561394},\n\t\t{4540, 40.66689326871952},\n\t\t{4541, 40.65187955527909},\n\t\t{4542, 39.934274637704824},\n\t\t{4543, 40.300330136488476},\n\t\t{4544, 39.967275063438045},\n\t\t{4545, 40.042315039135865},\n\t\t{4546, 40.142830573608606},\n\t\t{4547, 40.061258001400915},\n\t\t{4548, 40.404909259369646},\n\t\t{4549, 40.450392865002364},\n\t\t{4550, 40.87269030449907},\n\t\t{4551, 41.296599615123064},\n\t\t{4552, 41.304588768416615},\n\t\t{4553, 41.90167025496052},\n\t\t{4554, 41.923025365981076},\n\t\t{4555, 42.16170196977729},\n\t\t{4556, 42.10361415553816},\n\t\t{4557, 42.10129865988418},\n\t\t{4558, 42.31197566235926},\n\t\t{4559, 42.826247977993646},\n\t\t{4560, 42.74728359084352},\n\t\t{4561, 42.667331833071664},\n\t\t{4562, 42.928631961847074},\n\t\t{4563, 43.00083178487252},\n\t\t{4564, 43.37357490404957},\n\t\t{4565, 43.2237675498371},\n\t\t{4566, 43.86137004897719},\n\t\t{4567, 43.98416288339857},\n\t\t{4568, 44.0470084423368},\n\t\t{4569, 44.11391700866567},\n\t\t{4570, 43.33351237600878},\n\t\t{4571, 43.34757034996372},\n\t\t{4572, 44.14608921239006},\n\t\t{4573, 43.315144980691606},\n\t\t{4574, 43.1647218607577},\n\t\t{4575, 42.10202383999383},\n\t\t{4576, 42.045575631273714},\n\t\t{4577, 41.92172379039672},\n\t\t{4578, 41.61112748037281},\n\t\t{4579, 41.46655883593124},\n\t\t{4580, 42.135593115850845},\n\t\t{4581, 42.28588201326873},\n\t\t{4582, 42.15472962179464},\n\t\t{4583, 41.752838975392386},\n\t\t{4584, 41.91347248013341},\n\t\t{4585, 41.92681361497359},\n\t\t{4586, 41.9507666881852},\n\t\t{4587, 41.90301229148557},\n\t\t{4588, 41.95079936213436},\n\t\t{4589, 42.01550498847925},\n\t\t{4590, 42.13012135355233},\n\t\t{4591, 42.119576747364945},\n\t\t{4592, 42.11677669401778},\n\t\t{4593, 41.43172999572018},\n\t\t{4594, 41.49388864519924},\n\t\t{4595, 41.37380290015346},\n\t\t{4596, 41.370035845679794},\n\t\t{4597, 41.81317893158739},\n\t\t{4598, 41.718756954520984},\n\t\t{4599, 41.7298553763554},\n\t\t{4600, 41.53894095306525},\n\t\t{4601, 41.75447883581544},\n\t\t{4602, 41.885739012000045},\n\t\t{4603, 42.06290639339678},\n\t\t{4604, 42.01765532193647},\n\t\t{4605, 42.09963693863422},\n\t\t{4606, 42.121746882846026},\n\t\t{4607, 42.40289053451183},\n\t\t{4608, 42.43904810148321},\n\t\t{4609, 42.073085450783054},\n\t\t{4610, 42.003884006662666},\n\t\t{4611, 42.02391206710711},\n\t\t{4612, 42.43143955801055},\n\t\t{4613, 42.418444114505455},\n\t\t{4614, 42.50130186535948},\n\t\t{4615, 42.50861804985267},\n\t\t{4616, 42.8667351445971},\n\t\t{4617, 43.2708291680743},\n\t\t{4618, 43.258875230182355},\n\t\t{4619, 43.41983125615069},\n\t\t{4620, 43.02540169744918},\n\t\t{4621, 43.03671781336059},\n\t\t{4622, 43.51115813355301},\n\t\t{4623, 43.620694664026104},\n\t\t{4624, 44.28128377598449},\n\t\t{4625, 45.28965233946238},\n\t\t{4626, 45.984997240186246},\n\t\t{4627, 45.98395822876192},\n\t\t{4628, 46.06556368008116},\n\t\t{4629, 45.196081738035325},\n\t\t{4630, 44.651596037353286},\n\t\t{4631, 45.8360412664365},\n\t\t{4632, 45.030975374089174},\n\t\t{4633, 45.34523081375098},\n\t\t{4634, 45.516897796124226},\n\t\t{4635, 45.41290103045353},\n\t\t{4636, 45.783086761335824},\n\t\t{4637, 45.729375501632695},\n\t\t{4638, 46.30543062423142},\n\t\t{4639, 46.97672701088541},\n\t\t{4640, 46.47744540724059},\n\t\t{4641, 46.43460283813155},\n\t\t{4642, 46.176535515295534},\n\t\t{4643, 46.1267773587671},\n\t\t{4644, 46.07078753090914},\n\t\t{4645, 45.90463206174146},\n\t\t{4646, 45.55249821676164},\n\t\t{4647, 46.10452178892155},\n\t\t{4648, 46.657238306997954},\n\t\t{4649, 46.676446405868745},\n\t\t{4650, 46.61931105547808},\n\t\t{4651, 46.75145539959066},\n\t\t{4652, 47.15614626698322},\n\t\t{4653, 47.87910231233235},\n\t\t{4654, 47.90315790426083},\n\t\t{4655, 48.13748706690984},\n\t\t{4656, 48.14012518669324},\n\t\t{4657, 48.12478834534791},\n\t\t{4658, 47.721710829839914},\n\t\t{4659, 47.75882142791673},\n\t\t{4660, 48.62175299672685},\n\t\t{4661, 49.44973560609625},\n\t\t{4662, 49.45655590836775},\n\t\t{4663, 49.467384079074314},\n\t\t{4664, 49.36632082510971},\n\t\t{4665, 49.361539089859946},\n\t\t{4666, 48.923792508100405},\n\t\t{4667, 48.82936960309324},\n\t\t{4668, 48.696827533051106},\n\t\t{4669, 49.021992536039356},\n\t\t{4670, 48.88792946529902},\n\t\t{4671, 49.049698787091685},\n\t\t{4672, 49.08423254107231},\n\t\t{4673, 48.92829127058939},\n\t\t{4674, 48.38289408354073},\n\t\t{4675, 48.92579198716452},\n\t\t{4676, 48.49132529951036},\n\t\t{4677, 48.54115658361094},\n\t\t{4678, 48.22070675260601},\n\t\t{4679, 47.92838519785814},\n\t\t{4680, 47.732252711009075},\n\t\t{4681, 45.99113534110142},\n\t\t{4682, 44.72899549055614},\n\t\t{4683, 44.55687451719093},\n\t\t{4684, 44.55628471776198},\n\t\t{4685, 44.44930616361875},\n\t\t{4686, 44.69514501843518},\n\t\t{4687, 44.08997798757562},\n\t\t{4688, 44.326776424034165},\n\t\t{4689, 44.5246373562509},\n\t\t{4690, 44.77024206609575},\n\t\t{4691, 44.41279660589304},\n\t\t{4692, 44.29090624408688},\n\t\t{4693, 43.49452874948875},\n\t\t{4694, 43.31906915186023},\n\t\t{4695, 42.936317507114055},\n\t\t{4696, 42.887727362033345},\n\t\t{4697, 42.05490971051252},\n\t\t{4698, 42.14072479814179},\n\t\t{4699, 40.804558836186786},\n\t\t{4700, 41.48316460835661},\n\t\t{4701, 41.52072176780903},\n\t\t{4702, 41.5348100852975},\n\t\t{4703, 41.75692669456157},\n\t\t{4704, 41.49643711525131},\n\t\t{4705, 42.35954965911466},\n\t\t{4706, 42.254443486387316},\n\t\t{4707, 42.346428230827634},\n\t\t{4708, 42.26152211995296},\n\t\t{4709, 42.978169988498536},\n\t\t{4710, 42.523208465380144},\n\t\t{4711, 42.92136840228886},\n\t\t{4712, 42.491877240874906},\n\t\t{4713, 42.43808793916936},\n\t\t{4714, 42.31386731961688},\n\t\t{4715, 42.40503671098323},\n\t\t{4716, 41.51956996493458},\n\t\t{4717, 41.51666400077679},\n\t\t{4718, 41.47426644424032},\n\t\t{4719, 41.642970570173034},\n\t\t{4720, 41.62187072416654},\n\t\t{4721, 41.15180912858265},\n\t\t{4722, 41.894760156551904},\n\t\t{4723, 42.092594714290364},\n\t\t{4724, 42.27635546119988},\n\t\t{4725, 42.69832068724076},\n\t\t{4726, 42.980504524777594},\n\t\t{4727, 45.87658310035213},\n\t\t{4728, 43.6183451512828},\n\t\t{4729, 43.92197152986545},\n\t\t{4730, 43.97403155795249},\n\t\t{4731, 43.83776224600831},\n\t\t{4732, 44.01998787494774},\n\t\t{4733, 43.74137827823208},\n\t\t{4734, 43.51842058845427},\n\t\t{4735, 43.28245959362667},\n\t\t{4736, 42.931398042043796},\n\t\t{4737, 42.81785284737095},\n\t\t{4738, 43.3507423739577},\n\t\t{4739, 42.53626377548142},\n\t\t{4740, 43.32318432190919},\n\t\t{4741, 44.1194336467924},\n\t\t{4742, 44.256900789761175},\n\t\t{4743, 44.471678262389915},\n\t\t{4744, 44.52826323886761},\n\t\t{4745, 44.28324388592612},\n\t\t{4746, 44.23885158768107},\n\t\t{4747, 44.118008732018836},\n\t\t{4748, 44.126076154771745},\n\t\t{4749, 43.920419005974225},\n\t\t{4750, 43.47296751071649},\n\t\t{4751, 43.54310189974708},\n\t\t{4752, 43.53066942512155},\n\t\t{4753, 44.49097326057114},\n\t\t{4754, 44.60107183314088},\n\t\t{4755, 42.77090560264186},\n\t\t{4756, 42.99334677650617},\n\t\t{4757, 42.929199954491246},\n\t\t{4758, 42.4663653797701},\n\t\t{4759, 42.63510417353381},\n\t\t{4760, 41.15252150405892},\n\t\t{4761, 41.65062666173321},\n\t\t{4762, 41.63569595747878},\n\t\t{4763, 41.80167602812174},\n\t\t{4764, 41.54305663974481},\n\t\t{4765, 41.09851635788159},\n\t\t{4766, 40.44563966701578},\n\t\t{4767, 40.533880450251715},\n\t\t{4768, 40.8690019227734},\n\t\t{4769, 40.88937124246862},\n\t\t{4770, 41.183809565163905},\n\t\t{4771, 41.23702889676266},\n\t\t{4772, 41.98448907911279},\n\t\t{4773, 41.95032094100293},\n\t\t{4774, 41.831147917269575},\n\t\t{4775, 41.61384516565436},\n\t\t{4776, 41.337855349523466},\n\t\t{4777, 41.31691388756026},\n\t\t{4778, 41.00824360651651},\n\t\t{4779, 40.66303052923502},\n\t\t{4780, 40.75233960523218},\n\t\t{4781, 40.74691723991323},\n\t\t{4782, 41.224220277952135},\n\t\t{4783, 41.24176898114373},\n\t\t{4784, 41.19227291002064},\n\t\t{4785, 41.455618057185966},\n\t\t{4786, 41.793314227583664},\n\t\t{4787, 41.169085632598424},\n\t\t{4788, 41.147687532911064},\n\t\t{4789, 41.308688926534245},\n\t\t{4790, 41.159786924004884},\n\t\t{4791, 41.8142881123724},\n\t\t{4792, 41.552546791536315},\n\t\t{4793, 41.63707209178867},\n\t\t{4794, 41.36580909924643},\n\t\t{4795, 40.810470695252555},\n\t\t{4796, 40.90861666010221},\n\t\t{4797, 40.9449761604474},\n\t\t{4798, 41.15181950532048},\n\t\t{4799, 41.13789218005914},\n\t\t{4800, 41.08509141277718},\n\t\t{4801, 41.05365891335565},\n\t\t{4802, 40.980911652896054},\n\t\t{4803, 41.734203454889105},\n\t\t{4804, 41.31916007992194},\n\t\t{4805, 41.4215682147432},\n\t\t{4806, 41.51414417468774},\n\t\t{4807, 42.37111482324612},\n\t\t{4808, 42.70943804743709},\n\t\t{4809, 42.666757607996296},\n\t\t{4810, 42.12147053040958},\n\t\t{4811, 42.464100810348334},\n\t\t{4812, 42.62139441696377},\n\t\t{4813, 41.94637435030276},\n\t\t{4814, 41.99684563449916},\n\t\t{4815, 42.54816794861336},\n\t\t{4816, 42.28223265087694},\n\t\t{4817, 42.24550930900591},\n\t\t{4818, 42.282491306075286},\n\t\t{4819, 42.58423495563741},\n\t\t{4820, 41.359861111288104},\n\t\t{4821, 42.10481353702761},\n\t\t{4822, 42.24941093960088},\n\t\t{4823, 41.19941990664588},\n\t\t{4824, 41.21364184446058},\n\t\t{4825, 41.72506184259513},\n\t\t{4826, 42.53601771160175},\n\t\t{4827, 42.67420054464686},\n\t\t{4828, 42.76426057329836},\n\t\t{4829, 42.78798548069922},\n\t\t{4830, 42.76148923124109},\n\t\t{4831, 43.55500018064631},\n\t\t{4832, 43.52818564137662},\n\t\t{4833, 43.71030227628026},\n\t\t{4834, 43.69559859751488},\n\t\t{4835, 42.75390903216747},\n\t\t{4836, 42.95452875778498},\n\t\t{4837, 43.365066775687346},\n\t\t{4838, 43.36814790382736},\n\t\t{4839, 43.89333739845817},\n\t\t{4840, 43.989916759215},\n\t\t{4841, 43.56253598246386},\n\t\t{4842, 43.377743454747105},\n\t\t{4843, 42.924400615882426},\n\t\t{4844, 43.12304670119044},\n\t\t{4845, 42.58288520924721},\n\t\t{4846, 42.6192440085378},\n\t\t{4847, 42.65060540788467},\n\t\t{4848, 42.41222623035344},\n\t\t{4849, 41.646360968682984},\n\t\t{4850, 41.424134917273825},\n\t\t{4851, 41.10868413269653},\n\t\t{4852, 41.172396017699},\n\t\t{4853, 41.36004588804885},\n\t\t{4854, 40.800077988280925},\n\t\t{4855, 40.86912290176179},\n\t\t{4856, 39.88125368753376},\n\t\t{4857, 40.413562336579986},\n\t\t{4858, 40.30739366800392},\n\t\t{4859, 40.4448665834484},\n\t\t{4860, 40.67992036846289},\n\t\t{4861, 39.19323041879348},\n\t\t{4862, 38.934776988261994},\n\t\t{4863, 38.6635282389286},\n\t\t{4864, 38.018950718551935},\n\t\t{4865, 38.04674518139207},\n\t\t{4866, 38.01853292656019},\n\t\t{4867, 37.71021607139222},\n\t\t{4868, 38.422846767406455},\n\t\t{4869, 38.450019969893354},\n\t\t{4870, 38.3997470792123},\n\t\t{4871, 38.34361998177123},\n\t\t{4872, 39.091980399463395},\n\t\t{4873, 39.5198852558182},\n\t\t{4874, 39.5472385581927},\n\t\t{4875, 39.52236007766908},\n\t\t{4876, 39.37969949452826},\n\t\t{4877, 40.222868236832014},\n\t\t{4878, 39.66661286220836},\n\t\t{4879, 40.283042854444616},\n\t\t{4880, 40.229716416585205},\n\t\t{4881, 40.445190873458},\n\t\t{4882, 41.20372788803875},\n\t\t{4883, 41.40919784184403},\n\t\t{4884, 41.40205136110032},\n\t\t{4885, 41.489596657482274},\n\t\t{4886, 41.63320805924114},\n\t\t{4887, 41.74501472339082},\n\t\t{4888, 41.59463339227347},\n\t\t{4889, 41.89165418164628},\n\t\t{4890, 42.429906756721266},\n\t\t{4891, 42.51566334270849},\n\t\t{4892, 42.43112651097444},\n\t\t{4893, 42.65573412390896},\n\t\t{4894, 42.5649774287204},\n\t\t{4895, 42.20578627338075},\n\t\t{4896, 42.19905186404266},\n\t\t{4897, 42.063060621486514},\n\t\t{4898, 40.8631606909062},\n\t\t{4899, 41.4015851042295},\n\t\t{4900, 40.88944459737443},\n\t\t{4901, 41.365721619037295},\n\t\t{4902, 40.08190763242786},\n\t\t{4903, 40.11091422145917},\n\t\t{4904, 40.97087104137605},\n\t\t{4905, 41.15805729486192},\n\t\t{4906, 41.27896864220977},\n\t\t{4907, 41.170130110377485},\n\t\t{4908, 41.019095916064586},\n\t\t{4909, 41.19823454109512},\n\t\t{4910, 40.71222352487721},\n\t\t{4911, 40.604096585580145},\n\t\t{4912, 40.22428726447587},\n\t\t{4913, 38.86084836942058},\n\t\t{4914, 38.70041746310922},\n\t\t{4915, 38.8194506164692},\n\t\t{4916, 38.64467182897344},\n\t\t{4917, 38.639870243656844},\n\t\t{4918, 38.929014450694986},\n\t\t{4919, 38.80087908949201},\n\t\t{4920, 38.474735694735124},\n\t\t{4921, 38.66300047873025},\n\t\t{4922, 38.684455038039566},\n\t\t{4923, 38.29265621342109},\n\t\t{4924, 38.49017410077791},\n\t\t{4925, 38.88748571310341},\n\t\t{4926, 39.34561928924596},\n\t\t{4927, 39.41078759839496},\n\t\t{4928, 39.753432401888055},\n\t\t{4929, 39.66725496587569},\n\t\t{4930, 39.64503039721447},\n\t\t{4931, 39.74434633216348},\n\t\t{4932, 39.24422485817575},\n\t\t{4933, 39.357176347703124},\n\t\t{4934, 39.083868743073175},\n\t\t{4935, 38.77958154299146},\n\t\t{4936, 38.784739437051876},\n\t\t{4937, 38.84416930772779},\n\t\t{4938, 38.531983904133995},\n\t\t{4939, 38.13839982421345},\n\t\t{4940, 38.19834116299139},\n\t\t{4941, 38.384878790359856},\n\t\t{4942, 37.41788048991505},\n\t\t{4943, 38.32825078053794},\n\t\t{4944, 37.27571543485687},\n\t\t{4945, 37.381643210593964},\n\t\t{4946, 37.139400383368596},\n\t\t{4947, 37.686425234248986},\n\t\t{4948, 37.603432975092},\n\t\t{4949, 37.64359097418195},\n\t\t{4950, 37.23329232367846},\n\t\t{4951, 36.994849462220934},\n\t\t{4952, 36.826705097979186},\n\t\t{4953, 36.10850429296769},\n\t\t{4954, 36.10515278531009},\n\t\t{4955, 36.27585866868438},\n\t\t{4956, 35.877106950223286},\n\t\t{4957, 35.06902417472288},\n\t\t{4958, 35.68954496717155},\n\t\t{4959, 34.429975016070486},\n\t\t{4960, 33.9039081124664},\n\t\t{4961, 34.50994734260132},\n\t\t{4962, 34.24726508634311},\n\t\t{4963, 34.27196566995411},\n\t\t{4964, 34.53854603237626},\n\t\t{4965, 33.18029169046981},\n\t\t{4966, 33.74849740086445},\n\t\t{4967, 33.7660814446232},\n\t\t{4968, 33.690731394344716},\n\t\t{4969, 33.75687045286519},\n\t\t{4970, 33.94382441333488},\n\t\t{4971, 33.56341790269826},\n\t\t{4972, 33.64387610469928},\n\t\t{4973, 33.603199106999526},\n\t\t{4974, 33.55490176741914},\n\t\t{4975, 33.76379562158691},\n\t\t{4976, 33.76315401597445},\n\t\t{4977, 32.8267558087521},\n\t\t{4978, 32.45241276131267},\n\t\t{4979, 32.55733463964615},\n\t\t{4980, 33.319801723754786},\n\t\t{4981, 33.59341126615778},\n\t\t{4982, 33.73081923269426},\n\t\t{4983, 34.37346764688176},\n\t\t{4984, 35.07176548766099},\n\t\t{4985, 35.37591959109057},\n\t\t{4986, 35.471233571041964},\n\t\t{4987, 35.13016122517179},\n\t\t{4988, 34.65099719562258},\n\t\t{4989, 34.37111074112498},\n\t\t{4990, 34.51523331821902},\n\t\t{4991, 34.357189444832144},\n\t\t{4992, 34.36407537164143},\n\t\t{4993, 34.34124435265085},\n\t\t{4994, 34.71701325993874},\n\t\t{4995, 34.535111124444725},\n\t\t{4996, 34.12819607955428},\n\t\t{4997, 33.476805201968794},\n\t\t{4998, 33.21364571883214},\n\t\t{4999, 34.07622604782128},\n\t},\n\t{\n\t\t{0, 0.1914345437063385},\n\t\t{1, -3.4947066313635853},\n\t\t{2, -0.9012035232019713},\n\t\t{3, -1.2917234135635458},\n\t\t{4, -1.6201434723336083},\n\t\t{5, -0.11959001409322911},\n\t\t{6, 0.06991019914916345},\n\t\t{7, 1.8891389677842017},\n\t\t{8, 2.871091958695281},\n\t\t{9, 1.1787358303375146},\n\t\t{10, -2.0768580265100094},\n\t\t{11, 3.794369215409862},\n\t\t{12, 1.5276510011875892},\n\t\t{13, 0.48684884260988703},\n\t\t{14, 1.6236249468526378},\n\t\t{15, -0.24846588954417326},\n\t\t{16, 0.5218634555370912},\n\t\t{17, 1.5632739797608988},\n\t\t{18, -1.7140974489224434},\n\t\t{19, 0.48847898637375486},\n\t\t{20, -2.431355287741206},\n\t\t{21, -1.3047332002869514},\n\t\t{22, -0.056262024497085006},\n\t\t{23, 3.5280937799870453},\n\t\t{24, 1.431121485137867},\n\t\t{25, -1.1605230787409155},\n\t\t{26, 1.531155772131144},\n\t\t{27, 2.4421145713003467},\n\t\t{28, 0.07528067356218182},\n\t\t{29, -1.9472656022334065},\n\t\t{30, -1.6203621394151857},\n\t\t{31, 2.005336574225008},\n\t\t{32, 0.6057826871490144},\n\t\t{33, 1.8000737806803708},\n\t\t{34, 1.6215940425083741},\n\t\t{35, -0.19060198061318312},\n\t\t{36, -1.544810626264314},\n\t\t{37, 1.711336220094734},\n\t\t{38, -1.921805906299878},\n\t\t{39, -0.813649126888345},\n\t\t{40, -0.5761299283902863},\n\t\t{41, 1.6860178215600943},\n\t\t{42, 0.7043996825596841},\n\t\t{43, -0.5391619157688288},\n\t\t{44, -0.5671736960385907},\n\t\t{45, 2.914019458989815},\n\t\t{46, 1.1719608720494954},\n\t\t{47, 0.5550525224245844},\n\t\t{48, 3.7572954111154684},\n\t\t{49, 4.293123827593757},\n\t\t{50, 2.1806300710041686},\n\t\t{51, 0.7981645356975979},\n\t\t{52, -1.003991733674428},\n\t\t{53, 1.9534274857036642},\n\t\t{54, 0.6263315280488905},\n\t\t{55, -1.9357987011915598},\n\t\t{56, -0.633094814374466},\n\t\t{57, -1.61856108443581},\n\t\t{58, 0.8707220998375396},\n\t\t{59, 1.645145470229907},\n\t\t{60, 1.5670439746129827},\n\t\t{61, 0.5437595369770154},\n\t\t{62, 0.8861213608718086},\n\t\t{63, 0.7213355298992676},\n\t\t{64, 0.09447097996431672},\n\t\t{65, -0.7176166254326667},\n\t\t{66, 2.6574395780199938},\n\t\t{67, 3.4291173474222525},\n\t\t{68, 5.144375804019528},\n\t\t{69, 2.2440085959076197},\n\t\t{70, -1.06438249866055},\n\t\t{71, 4.11937879576129},\n\t\t{72, 1.5090335951755183},\n\t\t{73, 2.138744226081619},\n\t\t{74, 1.846894200840455},\n\t\t{75, -0.12944628869250874},\n\t\t{76, 0.2733860100995408},\n\t\t{77, 2.102847830315348},\n\t\t{78, -0.7678587235388828},\n\t\t{79, 1.2446741102733658},\n\t\t{80, -6.371245475391389},\n\t\t{81, 1.183149399051611},\n\t\t{82, -0.516701697245843},\n\t\t{83, 0.15004775959177327},\n\t\t{84, 2.5336783475235065},\n\t\t{85, 1.1620200696574},\n\t\t{86, 1.914561665492958},\n\t\t{87, 0.47461696831381145},\n\t\t{88, 2.932661399927433},\n\t\t{89, 2.2125454767105195},\n\t\t{90, 1.6437094852415006},\n\t\t{91, -2.4354202154950206},\n\t\t{92, -1.2434689178429748},\n\t\t{93, -1.701123639149033},\n\t\t{94, 0.16102472057520067},\n\t\t{95, -2.1689933751939043},\n\t\t{96, 0.15979474556292605},\n\t\t{97, -1.8835506489198282},\n\t\t{98, 2.225919900098449},\n\t\t{99, 1.056353980509323},\n\t\t{100, 0.5392521510736928},\n\t\t{101, 0.655161928523947},\n\t\t{102, 2.946448123961281},\n\t\t{103, 0.946214180388804},\n\t\t{104, 0.26627413112851805},\n\t\t{105, 0.36499584953208275},\n\t\t{106, 0.6599343574550318},\n\t\t{107, 4.160685111014811},\n\t\t{108, 1.8761842050857926},\n\t\t{109, 1.1203217007417934},\n\t\t{110, -0.5066597349350801},\n\t\t{111, 1.003204568793838},\n\t\t{112, -2.061551095492853},\n\t\t{113, -0.8499410415193758},\n\t\t{114, -2.5392624174178655},\n\t\t{115, -0.5635429549350353},\n\t\t{116, 1.3247694178929177},\n\t\t{117, 2.2777492374110513},\n\t\t{118, 1.517502018391243},\n\t\t{119, -0.44456001711365756},\n\t\t{120, -0.004273024982576673},\n\t\t{121, -2.515295713444981},\n\t\t{122, -0.6258764114592799},\n\t\t{123, -0.6075514102552615},\n\t\t{124, -0.07359117698335635},\n\t\t{125, -1.1740964103194875},\n\t\t{126, 1.9832094964379476},\n\t\t{127, 2.3884801154098225},\n\t\t{128, 1.0222850420997118},\n\t\t{129, -1.8744308023313296},\n\t\t{130, -0.5723578266591844},\n\t\t{131, -0.20744365417803964},\n\t\t{132, 5.312848317264722},\n\t\t{133, 0.928171507803693},\n\t\t{134, 1.7625607577844846},\n\t\t{135, 1.763638664029866},\n\t\t{136, 4.1926436928829265},\n\t\t{137, 1.6930089662453347},\n\t\t{138, 0.45771918687082785},\n\t\t{139, -0.9714705695595833},\n\t\t{140, -0.6127099727607993},\n\t\t{141, 2.949944584452612},\n\t\t{142, 2.4543796657493973},\n\t\t{143, 0.5529312533570623},\n\t\t{144, -1.2496301717683609},\n\t\t{145, -0.6925946006027088},\n\t\t{146, 2.9679746672265406},\n\t\t{147, -0.4599939477837862},\n\t\t{148, -1.3123905831873859},\n\t\t{149, -1.3114897892129915},\n\t\t{150, 0.4033914751854041},\n\t\t{151, 4.84605658718049},\n\t\t{152, 1.9043024790847238},\n\t\t{153, 0.4207874054886426},\n\t\t{154, 0.4429669645531573},\n\t\t{155, 1.18845208292863},\n\t\t{156, 0.6763322354409822},\n\t\t{157, 1.719787155275486},\n\t\t{158, 0.8959576416381267},\n\t\t{159, 0.5323070538962835},\n\t\t{160, 2.560762003914965},\n\t\t{161, 0.2328218526285023},\n\t\t{162, 1.1523234708781018},\n\t\t{163, -1.0871082720776921},\n\t\t{164, -0.27172483253218027},\n\t\t{165, -0.2885680296845306},\n\t\t{166, 6.425106427954243},\n\t\t{167, 2.810841525229628},\n\t\t{168, 0.4063350211557355},\n\t\t{169, -1.435789927064955},\n\t\t{170, 1.7734577470382753},\n\t\t{171, 2.839113025612226},\n\t\t{172, 8.759655219079058},\n\t\t{173, 3.3928785703278153},\n\t\t{174, 1.06013157368414},\n\t\t{175, 0.5011142780654699},\n\t\t{176, -1.7686693003724094},\n\t\t{177, -3.3532892843069764},\n\t\t{178, -0.8307467938745446},\n\t\t{179, -1.270871884262671},\n\t\t{180, -0.18504385765931847},\n\t\t{181, 3.0922039749495953},\n\t\t{182, 1.9907151401464138},\n\t\t{183, -2.7193152405597347},\n\t\t{184, 0.3882329488756855},\n\t\t{185, -0.6914547887139258},\n\t\t{186, -1.7496009432281185},\n\t\t{187, 1.9444804134838325},\n\t\t{188, -4.686997071783333},\n\t\t{189, -2.4049369407912726},\n\t\t{190, -0.9718592065669222},\n\t\t{191, -1.5371314765168353},\n\t\t{192, -1.7618524756531995},\n\t\t{193, -1.6492806293264348},\n\t\t{194, -2.667812508637397},\n\t\t{195, -0.8567156746244795},\n\t\t{196, -0.4007033464156529},\n\t\t{197, 0.08157678227560089},\n\t\t{198, 1.0251162263611484},\n\t\t{199, -0.8257654004510804},\n\t\t{200, 1.7408007890885706},\n\t\t{201, -3.3663441294319494},\n\t\t{202, 0.10094704272979182},\n\t\t{203, 2.7034427501337075},\n\t\t{204, 1.82784412413814},\n\t\t{205, 2.05356375566654},\n\t\t{206, -2.0617773007294535},\n\t\t{207, -1.2958720101234902},\n\t\t{208, 1.1256838407796659},\n\t\t{209, 1.2639254875866712},\n\t\t{210, 1.0366014827928711},\n\t\t{211, -2.5649326694095396},\n\t\t{212, 2.981750087687558},\n\t\t{213, 4.70439233766783},\n\t\t{214, -0.7898491429262997},\n\t\t{215, -0.3750502694541982},\n\t\t{216, -9.717892891169717},\n\t\t{217, -2.8788148819778354},\n\t\t{218, -1.2033779903071709},\n\t\t{219, -0.6987890129709864},\n\t\t{220, -0.5961047589163492},\n\t\t{221, -0.9122395466919095},\n\t\t{222, 0.9398462418765141},\n\t\t{223, 1.2939552044374718},\n\t\t{224, -3.4556744258749257},\n\t\t{225, -1.4512676823165467},\n\t\t{226, -0.8311134267761506},\n\t\t{227, -2.56510233962969},\n\t\t{228, -0.4871319357349335},\n\t\t{229, 1.303112430584604},\n\t\t{230, -0.6967311237318775},\n\t\t{231, -0.844824622182186},\n\t\t{232, -0.3164074698442635},\n\t\t{233, 0.5111176630532143},\n\t\t{234, -2.122635598091093},\n\t\t{235, -9.334086089393669},\n\t\t{236, -4.266857424975437},\n\t\t{237, -4.002731573278378},\n\t\t{238, 0.008254170391277516},\n\t\t{239, -3.2493841091537368},\n\t\t{240, -2.313716918479099},\n\t\t{241, -0.15781231041775434},\n\t\t{242, -0.29973641052920735},\n\t\t{243, 0.9448994631447766},\n\t\t{244, -0.2469656028254712},\n\t\t{245, 1.0757665552133373},\n\t\t{246, -0.23346214178393815},\n\t\t{247, -4.509194841032029},\n\t\t{248, -3.7095374359186435},\n\t\t{249, -2.7818707263686626},\n\t\t{250, 7.488717016798557},\n\t\t{251, 5.204956831910136},\n\t\t{252, 2.3419837429452293},\n\t\t{253, -2.722647341011651},\n\t\t{254, 0.80109904054008},\n\t\t{255, -3.4754987634021584},\n\t\t{256, -2.584114141383827},\n\t\t{257, -2.4476391373028097},\n\t\t{258, -2.9150246761326137},\n\t\t{259, -0.8672661309184031},\n\t\t{260, -1.1725528418673332},\n\t\t{261, -4.364673616828553},\n\t\t{262, -0.6442270392415905},\n\t\t{263, -1.9259012598705205},\n\t\t{264, -1.0157664374137276},\n\t\t{265, 2.176054366072152},\n\t\t{266, 1.695161561967442},\n\t\t{267, 0.853546609529878},\n\t\t{268, 0.31990152377531167},\n\t\t{269, -1.811605723582938},\n\t\t{270, -4.0787193875056},\n\t\t{271, -2.8051104789476797},\n\t\t{272, 2.189613042429574},\n\t\t{273, 0.08457153675293116},\n\t\t{274, 7.9307901304401},\n\t\t{275, 2.3587286770202147},\n\t\t{276, 1.5852118405803106},\n\t\t{277, 0.8628347302068253},\n\t\t{278, -0.09792511675652688},\n\t\t{279, 4.2174743584765295},\n\t\t{280, 2.7688877672218712},\n\t\t{281, 1.9903117033951752},\n\t\t{282, -0.16722364516277788},\n\t\t{283, 4.191334813097746},\n\t\t{284, 5.653437832039614},\n\t\t{285, 2.5807430125944206},\n\t\t{286, 0.9498955484494385},\n\t\t{287, 2.285538135290795},\n\t\t{288, -3.6228768766881823},\n\t\t{289, -2.755252159991336},\n\t\t{290, -8.842051654058304},\n\t\t{291, -3.5248693055681084},\n\t\t{292, -0.6233286891270041},\n\t\t{293, 5.1837147391217995},\n\t\t{294, 1.8145170891614328},\n\t\t{295, -1.6011395216872848},\n\t\t{296, -3.208875482468396},\n\t\t{297, 1.3127027286943918},\n\t\t{298, 0.9408887587279604},\n\t\t{299, 0.8726523204653636},\n\t\t{300, -2.9977629080080694},\n\t\t{301, 0.41337859458862414},\n\t\t{302, -2.404315930677144},\n\t\t{303, 3.365737779565705},\n\t\t{304, 0.8355014589979994},\n\t\t{305, -1.2940576722230808},\n\t\t{306, -3.0844537505736147},\n\t\t{307, -4.314730825481584},\n\t\t{308, 1.9744452791678582},\n\t\t{309, 5.295895251068488},\n\t\t{310, 2.6264847886532},\n\t\t{311, 0.41846762975042917},\n\t\t{312, 0.2161439132481338},\n\t\t{313, -3.177606420884945},\n\t\t{314, -3.1885750205466357},\n\t\t{315, -5.948572689763958},\n\t\t{316, -0.025607593745959},\n\t\t{317, -0.9247199889121526},\n\t\t{318, 1.0679878219895718},\n\t\t{319, 0.49264902354690737},\n\t\t{320, -1.5477640987304628},\n\t\t{321, -0.616920843537844},\n\t\t{322, -1.3142669989042493},\n\t\t{323, -4.772593862210578},\n\t\t{324, -3.5999977028689303},\n\t\t{325, 2.473491559452559},\n\t\t{326, -2.0979530291173623},\n\t\t{327, 0.12107711436982893},\n\t\t{328, -0.03888999523767664},\n\t\t{329, 1.3928448016975756},\n\t\t{330, -1.7880476516853978},\n\t\t{331, -4.273769378522248},\n\t\t{332, -3.9305938111922156},\n\t\t{333, -0.6388761694227411},\n\t\t{334, -2.5809339087924816},\n\t\t{335, -1.045958670265378},\n\t\t{336, -4.0496752959036675},\n\t\t{337, -0.8872962081351521},\n\t\t{338, -0.001049821261518702},\n\t\t{339, 3.0980970769019613},\n\t\t{340, 1.2176177751926238},\n\t\t{341, 0.09950811716233882},\n\t\t{342, -0.5984208938626945},\n\t\t{343, -5.480953933976579},\n\t\t{344, -2.8294877023867078},\n\t\t{345, 0.04896616996286052},\n\t\t{346, -7.124188517291678},\n\t\t{347, -4.09890717690312},\n\t\t{348, -1.0573448701199746},\n\t\t{349, -0.35891182383272374},\n\t\t{350, 5.068268022329972},\n\t\t{351, 1.342847149988731},\n\t\t{352, 0.48648418235079777},\n\t\t{353, -0.45694466050623916},\n\t\t{354, 1.725520510531638},\n\t\t{355, -1.4555671865194495},\n\t\t{356, 0.8731575438527951},\n\t\t{357, -5.739025179756},\n\t\t{358, 5.780315712954591},\n\t\t{359, 2.0955752464565065},\n\t\t{360, 0.8728188902293061},\n\t\t{361, -2.9154136130843167},\n\t\t{362, -8.722478830520327},\n\t\t{363, -3.4288134699912907},\n\t\t{364, 1.5881904400889102},\n\t\t{365, 3.6885989767493035},\n\t\t{366, 1.4257634144770264},\n\t\t{367, 0.8203173917777384},\n\t\t{368, -6.194417962223472},\n\t\t{369, -2.3579947208087444},\n\t\t{370, -0.8501973488362331},\n\t\t{371, 1.6429124556431134},\n\t\t{372, 1.7521097827374783},\n\t\t{373, -0.6485459557402405},\n\t\t{374, -1.19054257131004},\n\t\t{375, -2.5079512145360705},\n\t\t{376, -1.6142789812138787},\n\t\t{377, 1.493120853714955},\n\t\t{378, 0.1502189552245657},\n\t\t{379, 1.965753775585022},\n\t\t{380, 2.556277377292205},\n\t\t{381, 0.9580054901104009},\n\t\t{382, 1.2506661650370159},\n\t\t{383, 0.4452499039539756},\n\t\t{384, -0.7890080994183144},\n\t\t{385, 1.1987270812835835},\n\t\t{386, 0.25338048454722245},\n\t\t{387, 0.185937733253716},\n\t\t{388, 0.6545941251512096},\n\t\t{389, 0.7709942139441459},\n\t\t{390, 6.228216500767825},\n\t\t{391, 3.9317896605690783},\n\t\t{392, 2.426753023419997},\n\t\t{393, 1.0428286555491084},\n\t\t{394, 0.5553075440869526},\n\t\t{395, 0.7274155268590293},\n\t\t{396, -0.23018042258105564},\n\t\t{397, 6.764618345199662},\n\t\t{398, 2.5217186614753024},\n\t\t{399, 1.2638711667293046},\n\t\t{400, -0.6629872204824352},\n\t\t{401, -1.565903352753156},\n\t\t{402, 0.016349396123733206},\n\t\t{403, -3.5080026794915415},\n\t\t{404, -5.034120440662629},\n\t\t{405, -1.6231883850345745},\n\t\t{406, 1.7460362889141436},\n\t\t{407, 2.38385159893849},\n\t\t{408, -1.4077710083562036},\n\t\t{409, 2.830508600462809},\n\t\t{410, 3.2235384235166733},\n\t\t{411, 10.680162966307382},\n\t\t{412, 3.1503344124374237},\n\t\t{413, 0.44975918496117073},\n\t\t{414, 1.9743524162643762},\n\t\t{415, 3.8112723944386278},\n\t\t{416, 2.5952251826597994},\n\t\t{417, 2.782416931607755},\n\t\t{418, 1.0859203580782602},\n\t\t{419, -0.5950496195834831},\n\t\t{420, 0.006446387318461311},\n\t\t{421, -3.3371252647158993},\n\t\t{422, -1.7738901802447735},\n\t\t{423, 2.1646793240115008},\n\t\t{424, -2.1737042717456854},\n\t\t{425, -0.698900566406741},\n\t\t{426, 1.0277893465324768},\n\t\t{427, 0.7280176394459692},\n\t\t{428, -1.070039249965446},\n\t\t{429, 1.3719854196367511},\n\t\t{430, 2.082375803270201},\n\t\t{431, 1.5949388227783636},\n\t\t{432, 2.0450765071096346},\n\t\t{433, 1.6277950703453512},\n\t\t{434, 1.7885510774656295},\n\t\t{435, 0.6543433124067691},\n\t\t{436, 0.25526736341238876},\n\t\t{437, 3.1626111377950044},\n\t\t{438, -0.9420397328235681},\n\t\t{439, -3.99214829980081},\n\t\t{440, 5.926245253925511},\n\t\t{441, 4.002669567003816},\n\t\t{442, 1.1463759187271014},\n\t\t{443, -0.838323971716292},\n\t\t{444, -2.1478453299511395},\n\t\t{445, 5.040462206388455},\n\t\t{446, -1.1665147598848877},\n\t\t{447, -5.767199178697785},\n\t\t{448, -3.788076493252116},\n\t\t{449, -2.4117641182868783},\n\t\t{450, 7.428849070328937},\n\t\t{451, 2.8907181411531693},\n\t\t{452, -1.474095846971491},\n\t\t{453, 0.21638163666260024},\n\t\t{454, -0.4180384078231692},\n\t\t{455, 1.9754725415064809},\n\t\t{456, 0.6171839703004453},\n\t\t{457, -0.7068646577807739},\n\t\t{458, 3.456474060246713},\n\t\t{459, 0.9148891125351392},\n\t\t{460, 1.9323983868216643},\n\t\t{461, 0.6658973843054514},\n\t\t{462, 2.8818483248013265},\n\t\t{463, 2.1958098430458244},\n\t\t{464, -2.4199517011682765},\n\t\t{465, -2.6962072816522826},\n\t\t{466, -4.450158760656216},\n\t\t{467, -1.714735285612154},\n\t\t{468, -0.6797236071338637},\n\t\t{469, -0.830031164897902},\n\t\t{470, -0.5173091105825354},\n\t\t{471, -0.7542165344029724},\n\t\t{472, 1.4266739459271878},\n\t\t{473, 2.923268271701274},\n\t\t{474, 1.324894302880223},\n\t\t{475, -1.5236035898006808},\n\t\t{476, 1.0670328486306233},\n\t\t{477, 0.1640119488555175},\n\t\t{478, 0.8069651668455848},\n\t\t{479, 3.2637034425480893},\n\t\t{480, 1.7758455595232152},\n\t\t{481, -6.187334607725115},\n\t\t{482, -5.194746201695879},\n\t\t{483, -5.2940283763606},\n\t\t{484, 5.478690596756662},\n\t\t{485, 3.925248837284192},\n\t\t{486, 2.3872932263665168},\n\t\t{487, 0.7475748353929562},\n\t\t{488, 3.3162404840511686},\n\t\t{489, 1.0486103412852126},\n\t\t{490, 3.105025481182797},\n\t\t{491, -2.7163367774294467},\n\t\t{492, -0.1874594826483008},\n\t\t{493, 1.2886644937661624},\n\t\t{494, -0.7265025956842696},\n\t\t{495, 0.26901130847247595},\n\t\t{496, -0.39318780757090566},\n\t\t{497, 2.927962080344786},\n\t\t{498, 1.033554306801928},\n\t\t{499, -1.4938938794085295},\n\t\t{500, -1.1713677003070506},\n\t\t{501, 0.4349070647450149},\n\t\t{502, -1.6765616896701363},\n\t\t{503, 0.9803733627235269},\n\t\t{504, 4.219458402551453},\n\t\t{505, 4.901846260516893},\n\t\t{506, 1.5556333333710586},\n\t\t{507, 0.029560801919495172},\n\t\t{508, 0.49406448911624856},\n\t\t{509, -0.09544421470320144},\n\t\t{510, -0.853012774660948},\n\t\t{511, -3.087811525386968},\n\t\t{512, 4.575936435452966},\n\t\t{513, 2.053673612587058},\n\t\t{514, -2.3545526667133214},\n\t\t{515, -2.172153007701302},\n\t\t{516, -2.557612633917088},\n\t\t{517, -0.5295302974271412},\n\t\t{518, -1.4251486430631748},\n\t\t{519, -1.6049620871068024},\n\t\t{520, -4.438075881194919},\n\t\t{521, -1.8056534625916354},\n\t\t{522, -0.7006808889927207},\n\t\t{523, -2.7316607023649624},\n\t\t{524, -1.518735990180021},\n\t\t{525, 1.9164977043143034},\n\t\t{526, 3.042743425585678},\n\t\t{527, 1.5508371266356353},\n\t\t{528, 3.3296781521893197},\n\t\t{529, 0.13637620373321746},\n\t\t{530, -0.6940547317320769},\n\t\t{531, -0.5248128507193897},\n\t\t{532, -0.3093799839893248},\n\t\t{533, -1.318529177734886},\n\t\t{534, 3.0734615938849985},\n\t\t{535, 1.364796941037128},\n\t\t{536, 2.7208077555716415},\n\t\t{537, -1.8539194130521746},\n\t\t{538, 5.1208728215766985},\n\t\t{539, 0.9243576203951707},\n\t\t{540, 0.284722674932578},\n\t\t{541, -1.3796325597715227},\n\t\t{542, -2.853896057173713},\n\t\t{543, -6.64979622922069},\n\t\t{544, -0.3512102421745871},\n\t\t{545, 0.8374314849987796},\n\t\t{546, -1.917736042253964},\n\t\t{547, -0.49308614746566204},\n\t\t{548, 1.1131183843396806},\n\t\t{549, 1.0435926091237036},\n\t\t{550, 3.0926028434199377},\n\t\t{551, 1.132955076351417},\n\t\t{552, 0.8829127295051288},\n\t\t{553, 0.8106936892043155},\n\t\t{554, -5.973083026326699},\n\t\t{555, -2.171808373671146},\n\t\t{556, -2.331011404477491},\n\t\t{557, -0.2245890413296009},\n\t\t{558, 0.63198778475827},\n\t\t{559, 0.8107149948523004},\n\t\t{560, 2.393561994243787},\n\t\t{561, 3.3040616281628425},\n\t\t{562, -1.4356639132312219},\n\t\t{563, 1.0282839248481226},\n\t\t{564, 0.8867489153855117},\n\t\t{565, 0.18027075917740956},\n\t\t{566, -1.3559177946979581},\n\t\t{567, -1.632007271209547},\n\t\t{568, -7.58913614620494},\n\t\t{569, -2.980336111732328},\n\t\t{570, -1.5265333690392953},\n\t\t{571, -3.2059265194754683},\n\t\t{572, -1.3939910721276518},\n\t\t{573, 0.9143774579024243},\n\t\t{574, 0.1916928234676105},\n\t\t{575, 0.9684076188855067},\n\t\t{576, -0.6123610795238493},\n\t\t{577, -0.35273748480225775},\n\t\t{578, -0.9871026635957046},\n\t\t{579, 0.0421448144751686},\n\t\t{580, 0.39116219919394424},\n\t\t{581, 2.19153593939719},\n\t\t{582, 0.7219026215079757},\n\t\t{583, -0.04718691700485933},\n\t\t{584, -0.37530525168303136},\n\t\t{585, -0.8628488026666725},\n\t\t{586, -1.4794558546514847},\n\t\t{587, -1.6431402742994978},\n\t\t{588, -0.7097071169167412},\n\t\t{589, -0.3717221921617687},\n\t\t{590, -0.45671370862561994},\n\t\t{591, -0.20378366272470277},\n\t\t{592, 0.5039991666650537},\n\t\t{593, -0.1524275550651076},\n\t\t{594, -1.3398789140867537},\n\t\t{595, 0.25725932553913466},\n\t\t{596, 0.1225828189342533},\n\t\t{597, -0.22733429241420783},\n\t\t{598, -0.6394987034621353},\n\t\t{599, 0.7491886221036683},\n\t\t{600, -0.2877049554705119},\n\t\t{601, 0.686964389352406},\n\t\t{602, 0.021674610183780696},\n\t\t{603, 3.4812137369614455},\n\t\t{604, 0.9133678801852028},\n\t\t{605, -1.3596553236078919},\n\t\t{606, 1.512956610157548},\n\t\t{607, -1.535634141846325},\n\t\t{608, -0.5957350233668306},\n\t\t{609, -3.5517044925428736},\n\t\t{610, -2.3195659383809635},\n\t\t{611, 3.1807960743517683},\n\t\t{612, 1.028863552784148},\n\t\t{613, -4.909337140803901},\n\t\t{614, -6.052581382408974},\n\t\t{615, -2.554279162283053},\n\t\t{616, -2.2865909478751343},\n\t\t{617, -3.8844764757928383},\n\t\t{618, -1.5574783998158384},\n\t\t{619, 0.4218355580654204},\n\t\t{620, 0.2663329757698134},\n\t\t{621, 4.103454499667303},\n\t\t{622, 0.5618766930882393},\n\t\t{623, -0.537739264283743},\n\t\t{624, 3.146933323699527},\n\t\t{625, 2.4807393099261716},\n\t\t{626, 0.864865216588693},\n\t\t{627, 0.9263274349150967},\n\t\t{628, 0.07772825860401789},\n\t\t{629, -0.4276678358704391},\n\t\t{630, -1.525561603450226},\n\t\t{631, -0.5251757334912615},\n\t\t{632, -0.7679406482513123},\n\t\t{633, 2.007707004838056},\n\t\t{634, -1.5585645659426035},\n\t\t{635, -1.2361847257102874},\n\t\t{636, -1.1858958590318345},\n\t\t{637, -0.3446618741535768},\n\t\t{638, -0.5462017780057382},\n\t\t{639, 4.580715771548457},\n\t\t{640, 2.2089411940437698},\n\t\t{641, 1.0352047317927364},\n\t\t{642, 4.268552882862046},\n\t\t{643, 1.3158532660360782},\n\t\t{644, 0.8852957574672027},\n\t\t{645, 2.9428971707789415},\n\t\t{646, 1.1962164604248657},\n\t\t{647, 0.37345231165532083},\n\t\t{648, 0.27032862775926464},\n\t\t{649, 0.10814361644854498},\n\t\t{650, 0.10138263090037708},\n\t\t{651, -0.39588850668702125},\n\t\t{652, -2.802767410612327},\n\t\t{653, -1.1123863257386444},\n\t\t{654, -2.308729372856542},\n\t\t{655, -1.0798971868310354},\n\t\t{656, 1.3129170692721122},\n\t\t{657, 0.7393410913588886},\n\t\t{658, 3.6651012236017277},\n\t\t{659, -0.051046478928732375},\n\t\t{660, 2.8657924708893456},\n\t\t{661, 0.9657261671286878},\n\t\t{662, 0.8572019488426964},\n\t\t{663, 0.07713828925886501},\n\t\t{664, -5.059821883249842},\n\t\t{665, -3.371332360125992},\n\t\t{666, -3.1808007129214086},\n\t\t{667, -0.8975641323453148},\n\t\t{668, -2.561358651494711},\n\t\t{669, -1.8198764983528042},\n\t\t{670, 0.6349517458649239},\n\t\t{671, 2.140792860360975},\n\t\t{672, 0.7359313548164224},\n\t\t{673, 0.36249264596929187},\n\t\t{674, -0.4021198521615083},\n\t\t{675, 0.420916167625928},\n\t\t{676, 0.09153426309042893},\n\t\t{677, -0.563528020369867},\n\t\t{678, 0.8827229485218783},\n\t\t{679, 0.07186545692953644},\n\t\t{680, -1.6926523140631595},\n\t\t{681, -0.7396376183150042},\n\t\t{682, -0.4715180811285632},\n\t\t{683, -2.6151217281663484},\n\t\t{684, -2.2120850540825483},\n\t\t{685, -0.19942840662563655},\n\t\t{686, 1.90472165474662},\n\t\t{687, 0.44291319984030836},\n\t\t{688, 0.40762463907671365},\n\t\t{689, -2.8007048351079185},\n\t\t{690, 4.606816710736399},\n\t\t{691, 1.3875603305034827},\n\t\t{692, -0.005844796177935652},\n\t\t{693, 0.11127712449794935},\n\t\t{694, 0.17430005383126396},\n\t\t{695, 5.251324165463329},\n\t\t{696, -0.5406960567928363},\n\t\t{697, -0.6105622090905771},\n\t\t{698, -0.7321600860623754},\n\t\t{699, 0.45527923350066796},\n\t\t{700, 2.699908559423271},\n\t\t{701, 0.5974310629535398},\n\t\t{702, 1.2389816784116179},\n\t\t{703, -0.47064007556310244},\n\t\t{704, 0.2740311551135818},\n\t\t{705, -0.08193568618507148},\n\t\t{706, -0.09741612095404859},\n\t\t{707, -0.03557582417880731},\n\t\t{708, -0.22059369824149594},\n\t\t{709, 0.025378669969027393},\n\t\t{710, 0.08669341465848773},\n\t\t{711, -0.29349687312360845},\n\t\t{712, -0.5352404751080106},\n\t\t{713, 0.30602684279033987},\n\t\t{714, 0.9517109390674441},\n\t\t{715, 1.2838993200785203},\n\t\t{716, -3.84532715538551},\n\t\t{717, -1.597232117189238},\n\t\t{718, -0.0673026220482491},\n\t\t{719, 0.3062652010317667},\n\t\t{720, -0.23477845189737118},\n\t\t{721, -1.2860389808116095},\n\t\t{722, 0.6471225663234876},\n\t\t{723, 3.685362922185199},\n\t\t{724, 1.8780105558443014},\n\t\t{725, 1.725255206628551},\n\t\t{726, -1.496492475135371},\n\t\t{727, -3.0904418171845056},\n\t\t{728, -0.6031342827894787},\n\t\t{729, 0.9980242464281925},\n\t\t{730, 5.484394280593881},\n\t\t{731, 5.263024938222562},\n\t\t{732, 2.3158808594437943},\n\t\t{733, 1.0375823628037384},\n\t\t{734, 0.9080197201361612},\n\t\t{735, -0.3266292000867431},\n\t\t{736, 0.3740649888018903},\n\t\t{737, -0.8951118242983469},\n\t\t{738, -0.008694146006163195},\n\t\t{739, 1.5760419482452819},\n\t\t{740, 1.6568965566033338},\n\t\t{741, 1.362080339041464},\n\t\t{742, 0.1172494560102651},\n\t\t{743, -0.5243469856547921},\n\t\t{744, -1.0764533421297946},\n\t\t{745, -1.3953609508651772},\n\t\t{746, 1.2575520284032842},\n\t\t{747, -0.5688454976597641},\n\t\t{748, -1.236726597050751},\n\t\t{749, 0.9549921667672163},\n\t\t{750, -0.03411113433626417},\n\t\t{751, 0.18843797456841602},\n\t\t{752, 3.5325442097447035},\n\t\t{753, -2.060639543075947},\n\t\t{754, -0.4818234343441015},\n\t\t{755, -0.0029557205143259935},\n\t\t{756, 0.7604652561796137},\n\t\t{757, 2.6385528245113754},\n\t\t{758, 1.9805984940536887},\n\t\t{759, 1.3219218985121803},\n\t\t{760, 1.308735979682801},\n\t\t{761, 1.04913607487119},\n\t\t{762, -0.006535345252570435},\n\t\t{763, 0.65790927603002},\n\t\t{764, 0.09816155346956429},\n\t\t{765, -2.93994394976615},\n\t\t{766, -4.397035860157518},\n\t\t{767, -2.297548449235193},\n\t\t{768, -2.3772375486805193},\n\t\t{769, -0.29404482476376814},\n\t\t{770, -1.0672470463841006},\n\t\t{771, 0.29494817946107393},\n\t\t{772, -0.17785317897980307},\n\t\t{773, 0.15573117695629046},\n\t\t{774, 1.6944586741518857},\n\t\t{775, 0.4500577511307101},\n\t\t{776, 3.361302702898243},\n\t\t{777, 1.7476223131749937},\n\t\t{778, 4.164177219197379},\n\t\t{779, 0.2641500670144885},\n\t\t{780, 0.6310495900166455},\n\t\t{781, -2.2416041466491694},\n\t\t{782, -0.21141364966509935},\n\t\t{783, -0.17861656087987615},\n\t\t{784, -4.551560622611826},\n\t\t{785, -0.8503502147562148},\n\t\t{786, -1.9840941270085284},\n\t\t{787, 0.8350622231372448},\n\t\t{788, 0.3959723263828643},\n\t\t{789, -1.8773496150203761},\n\t\t{790, -1.6253236173123664},\n\t\t{791, -0.667292338618356},\n\t\t{792, -0.8527503425168907},\n\t\t{793, 0.9426302610657384},\n\t\t{794, -3.052536953812949},\n\t\t{795, -1.9091022132088074},\n\t\t{796, 2.1586801848042554},\n\t\t{797, 2.634988213645425},\n\t\t{798, -3.150935083329458},\n\t\t{799, -1.6618302945595709},\n\t\t{800, 1.0115293199254833},\n\t\t{801, 0.04425817580322494},\n\t\t{802, 0.5040229585908809},\n\t\t{803, 0.30116949581622493},\n\t\t{804, 0.12731949042708884},\n\t\t{805, -3.487769943836523},\n\t\t{806, -2.5165290241220335},\n\t\t{807, -0.449692179231186},\n\t\t{808, -5.700310245011747},\n\t\t{809, 0.9530533042230185},\n\t\t{810, 2.343457197097518},\n\t\t{811, 4.208818120160133},\n\t\t{812, 2.526627704880281},\n\t\t{813, -0.2335243848280566},\n\t\t{814, 4.6373849251015455},\n\t\t{815, 1.463990397326367},\n\t\t{816, -0.09795617128605538},\n\t\t{817, -3.04684056114075},\n\t\t{818, -1.4839354307809165},\n\t\t{819, 2.3328273786128877},\n\t\t{820, 1.2503747371457512},\n\t\t{821, 1.0080764940154037},\n\t\t{822, 4.619127136660354},\n\t\t{823, 3.2956410102433313},\n\t\t{824, 2.352743934533067},\n\t\t{825, -0.11644128315691316},\n\t\t{826, 0.004654656225646182},\n\t\t{827, 1.4300675115990378},\n\t\t{828, -3.078938149973093},\n\t\t{829, -2.814316956416535},\n\t\t{830, 0.2558259480845799},\n\t\t{831, -0.0036211937165492175},\n\t\t{832, 0.836167482875796},\n\t\t{833, 2.909919750926119},\n\t\t{834, 2.2598763230700794},\n\t\t{835, 2.011491869840956},\n\t\t{836, 1.6165952150832996},\n\t\t{837, 0.7662737298383531},\n\t\t{838, 4.4914156318969605},\n\t\t{839, 5.273887014210655},\n\t\t{840, 1.9942327616203093},\n\t\t{841, 0.8304087766440931},\n\t\t{842, 0.8465742196317071},\n\t\t{843, 1.9986742892499467},\n\t\t{844, -0.09293240554373905},\n\t\t{845, -0.7223956916271372},\n\t\t{846, 0.032929861852148856},\n\t\t{847, 1.2094575991518906},\n\t\t{848, 0.48134226000043706},\n\t\t{849, -2.055849696262347},\n\t\t{850, 2.7343299903530864},\n\t\t{851, 1.2017529158632534},\n\t\t{852, -0.6509522570277488},\n\t\t{853, 0.8336117543710233},\n\t\t{854, 1.447031461678498},\n\t\t{855, 0.6772064632632366},\n\t\t{856, 2.184096582295235},\n\t\t{857, 0.8684547494066969},\n\t\t{858, -0.8376040188930207},\n\t\t{859, -0.9220382239599365},\n\t\t{860, -1.30510461044829},\n\t\t{861, 4.449606805276277},\n\t\t{862, 2.1997107515660437},\n\t\t{863, 1.8467097574217237},\n\t\t{864, 1.3490892876368203},\n\t\t{865, -0.10081947852141526},\n\t\t{866, 4.143247293571973},\n\t\t{867, -0.832124123639743},\n\t\t{868, -0.1432821519023044},\n\t\t{869, -0.23585170541286354},\n\t\t{870, -0.9305991564033012},\n\t\t{871, -0.5322563258809004},\n\t\t{872, -1.1509011959654973},\n\t\t{873, -1.4945513697647927},\n\t\t{874, -5.594617805429758},\n\t\t{875, -4.488060950178165},\n\t\t{876, 4.955508988475826},\n\t\t{877, 0.7392227737605825},\n\t\t{878, 0.08920194151455543},\n\t\t{879, -4.337423062090759},\n\t\t{880, -2.26041002007487},\n\t\t{881, -7.820650280623007},\n\t\t{882, -0.5484904590064499},\n\t\t{883, 1.161876885865979},\n\t\t{884, -2.2706184638744693},\n\t\t{885, -1.8636722909093641},\n\t\t{886, -1.3741159192694186},\n\t\t{887, 1.4924958324217754},\n\t\t{888, 4.2172500741526715},\n\t\t{889, 2.728950596185547},\n\t\t{890, 1.3004787616573679},\n\t\t{891, 0.3742087117039523},\n\t\t{892, 0.8318856779947059},\n\t\t{893, 0.5199511341064373},\n\t\t{894, -0.09086336078394952},\n\t\t{895, 2.50696915687815},\n\t\t{896, 1.444123642942994},\n\t\t{897, 0.5341605087531349},\n\t\t{898, 0.9382727728752811},\n\t\t{899, 0.6698783132824384},\n\t\t{900, 0.6868974203111965},\n\t\t{901, 3.463542789497685},\n\t\t{902, 1.4147582495079924},\n\t\t{903, 0.80714593278944},\n\t\t{904, 0.5114969122276751},\n\t\t{905, 0.22741231880237425},\n\t\t{906, -0.8889489229090706},\n\t\t{907, -4.611429213511713},\n\t\t{908, 0.160806082932204},\n\t\t{909, 2.6321586135076167},\n\t\t{910, -2.011491226038337},\n\t\t{911, -2.1622537111007087},\n\t\t{912, 0.7656718785015024},\n\t\t{913, 1.1002585768178086},\n\t\t{914, 0.8283339978126004},\n\t\t{915, 0.3330853816871364},\n\t\t{916, 0.07843656716092111},\n\t\t{917, 0.8754550082260723},\n\t\t{918, 0.5754249350887833},\n\t\t{919, 2.5262511207313536},\n\t\t{920, 0.9040900948879211},\n\t\t{921, -4.06927762558898},\n\t\t{922, 1.2383971730580643},\n\t\t{923, 3.7287420205652744},\n\t\t{924, -1.6343959270627226},\n\t\t{925, 4.7595239935470435},\n\t\t{926, 1.8234504073525968},\n\t\t{927, -0.17477633124742264},\n\t\t{928, 1.100164502138179},\n\t\t{929, -1.796265655903103},\n\t\t{930, -3.550669008999186},\n\t\t{931, -0.3427821548910792},\n\t\t{932, -0.8086726732116141},\n\t\t{933, -5.456704909724856},\n\t\t{934, 0.6135004380473457},\n\t\t{935, 0.1263456959949772},\n\t\t{936, 3.581162950258055},\n\t\t{937, -0.8266432641855588},\n\t\t{938, 2.829509797008712},\n\t\t{939, 0.7917926915385811},\n\t\t{940, 1.967022332141343},\n\t\t{941, 7.649741059579023},\n\t\t{942, 9.32635957623812},\n\t\t{943, 2.851186443552971},\n\t\t{944, 3.7624134757008303},\n\t\t{945, 0.1625127823862813},\n\t\t{946, -0.267785231175632},\n\t\t{947, 1.25177695167891},\n\t\t{948, -3.0075485449729764},\n\t\t{949, -0.6410323025242585},\n\t\t{950, 0.9892760314378537},\n\t\t{951, 0.3751200755510685},\n\t\t{952, -0.8514310777827894},\n\t\t{953, -3.6462259490834543},\n\t\t{954, -1.0293697477160744},\n\t\t{955, -2.2042046790038605},\n\t\t{956, -0.4154195725291746},\n\t\t{957, -0.008812675140503018},\n\t\t{958, 1.2509971550815455},\n\t\t{959, 0.09937023163718761},\n\t\t{960, 0.14018984476612104},\n\t\t{961, 0.7064849455368751},\n\t\t{962, 1.850491191425549},\n\t\t{963, -0.37583938673560124},\n\t\t{964, -0.13641066683325123},\n\t\t{965, -1.7390494173320847},\n\t\t{966, -0.9378941760958647},\n\t\t{967, 0.9846224877247118},\n\t\t{968, -3.0614148328826043},\n\t\t{969, -1.1784509628642545},\n\t\t{970, -0.8944315830340808},\n\t\t{971, -0.4688990977377501},\n\t\t{972, -1.538063287491706},\n\t\t{973, -0.31638693182749844},\n\t\t{974, 0.07447213507753242},\n\t\t{975, -0.4452362718533946},\n\t\t{976, 0.9943926377718899},\n\t\t{977, -1.2705281910620296},\n\t\t{978, -0.9520413472692737},\n\t\t{979, -0.16459694990741974},\n\t\t{980, -4.387148133666137},\n\t\t{981, -0.12480357776919737},\n\t\t{982, -0.3652699919855605},\n\t\t{983, 2.6403437073868403},\n\t\t{984, -1.6439994814716699},\n\t\t{985, -1.2229204760930563},\n\t\t{986, 1.6437110625477154},\n\t\t{987, 0.9741703557133164},\n\t\t{988, -5.461880122106444},\n\t\t{989, -7.631367894446474},\n\t\t{990, -5.947892290735805},\n\t\t{991, -2.509428205307425},\n\t\t{992, -1.5815940063612142},\n\t\t{993, -0.09541106835633817},\n\t\t{994, 0.13547818356703675},\n\t\t{995, -1.6842493662941616},\n\t\t{996, -0.6324785739109252},\n\t\t{997, -0.9797264066846805},\n\t\t{998, -5.353432863380168},\n\t\t{999, -4.942345069680021},\n\t\t{1000, -1.9767032477414341},\n\t\t{1001, -0.12173340867975857},\n\t\t{1002, -1.8989777876514837},\n\t\t{1003, -2.1889228924625894},\n\t\t{1004, 0.5018846756127787},\n\t\t{1005, -1.0474753082525514},\n\t\t{1006, 1.013410534742523},\n\t\t{1007, -3.1981081522821677},\n\t\t{1008, -1.9728349545267032},\n\t\t{1009, -1.503900935213173},\n\t\t{1010, -0.11505664994574721},\n\t\t{1011, 2.712615743858978},\n\t\t{1012, 7.202777962756665},\n\t\t{1013, 3.6759016554672783},\n\t\t{1014, 6.892831759764684},\n\t\t{1015, 1.7545575103581537},\n\t\t{1016, 0.6635217333449616},\n\t\t{1017, 1.1360561980958919},\n\t\t{1018, 4.019354120741262},\n\t\t{1019, -1.0679048912566123},\n\t\t{1020, -0.21971038617821625},\n\t\t{1021, -4.17853108551789},\n\t\t{1022, -1.2712540464131559},\n\t\t{1023, 0.1560021224324546},\n\t\t{1024, 0.7915711838674928},\n\t\t{1025, 3.425445933271888},\n\t\t{1026, 4.7573798051141365},\n\t\t{1027, -0.0220388095263524},\n\t\t{1028, -2.5052040533672137},\n\t\t{1029, 0.21298859294202122},\n\t\t{1030, -1.7854912051136465},\n\t\t{1031, -3.3288265301758604},\n\t\t{1032, -4.465125942489238},\n\t\t{1033, -1.2467103510020325},\n\t\t{1034, 0.38735431470353615},\n\t\t{1035, 0.16659504040877535},\n\t\t{1036, 3.6308213651629315},\n\t\t{1037, -1.744593729602403},\n\t\t{1038, -3.02025119607125},\n\t\t{1039, -0.7905559998484648},\n\t\t{1040, 1.232349753899285},\n\t\t{1041, 2.2964233470166517},\n\t\t{1042, 1.403072029697316},\n\t\t{1043, -1.5192045610379377},\n\t\t{1044, 0.4114782598614126},\n\t\t{1045, 1.4164686387539098},\n\t\t{1046, 1.7613414873072861},\n\t\t{1047, 0.2541207461157947},\n\t\t{1048, -1.1220241495291858},\n\t\t{1049, -0.37487161979387107},\n\t\t{1050, -1.493168299403439},\n\t\t{1051, -0.45583010898505405},\n\t\t{1052, -1.858561776380648},\n\t\t{1053, 1.522464819832893},\n\t\t{1054, 2.4540788628251713},\n\t\t{1055, 1.6372138134886458},\n\t\t{1056, -0.1545691119435818},\n\t\t{1057, -0.44927807672786335},\n\t\t{1058, -0.6916965100022838},\n\t\t{1059, -3.1294713452722114},\n\t\t{1060, -1.5695471823983764},\n\t\t{1061, -1.2242795987907498},\n\t\t{1062, 1.9924985837201024},\n\t\t{1063, 4.179807688764242},\n\t\t{1064, -2.744878735812537},\n\t\t{1065, -4.018176225952731},\n\t\t{1066, -1.8731783609587007},\n\t\t{1067, -0.925641143708177},\n\t\t{1068, -0.2508275011513015},\n\t\t{1069, 0.9372807324083351},\n\t\t{1070, 0.37737852401911615},\n\t\t{1071, 2.5451647486609623},\n\t\t{1072, 2.5383636856535166},\n\t\t{1073, -1.276173850066572},\n\t\t{1074, -0.6499246632086646},\n\t\t{1075, -3.5004264934042704},\n\t\t{1076, -0.7691664017569197},\n\t\t{1077, -2.3764523675276585},\n\t\t{1078, -1.091421058999182},\n\t\t{1079, 1.3033996837869193},\n\t\t{1080, -0.689712042925962},\n\t\t{1081, 0.09766257817028567},\n\t\t{1082, 1.8031356601652129},\n\t\t{1083, 0.5078555033706204},\n\t\t{1084, -0.159712734317946},\n\t\t{1085, -0.9846037125075181},\n\t\t{1086, -1.580786583842342},\n\t\t{1087, -0.0746674245985971},\n\t\t{1088, 3.3708413612975026},\n\t\t{1089, 1.3532495352153515},\n\t\t{1090, -1.564191223139765},\n\t\t{1091, -0.5308588040759545},\n\t\t{1092, -0.5282134927854645},\n\t\t{1093, -1.1588588206890484},\n\t\t{1094, 0.913966567770696},\n\t\t{1095, 0.36319742841928093},\n\t\t{1096, -0.17091525711921793},\n\t\t{1097, 0.37181353425579794},\n\t\t{1098, 6.6157138361338035},\n\t\t{1099, 5.4260939351888275},\n\t\t{1100, 3.9291122403980037},\n\t\t{1101, 2.304573303281604},\n\t\t{1102, 1.169259735963037},\n\t\t{1103, 0.06676533144926844},\n\t\t{1104, 0.7885500895650779},\n\t\t{1105, 1.193404762116266},\n\t\t{1106, -0.891819909412454},\n\t\t{1107, -4.807673638549589},\n\t\t{1108, 2.2024395949442632},\n\t\t{1109, 2.5774193231133045},\n\t\t{1110, 2.392600002368141},\n\t\t{1111, -3.2757918800353742},\n\t\t{1112, -1.130894435673593},\n\t\t{1113, -0.2140526636075635},\n\t\t{1114, -0.0703302341800644},\n\t\t{1115, 3.208084523407074},\n\t\t{1116, 0.8401756045637071},\n\t\t{1117, 0.328289561712496},\n\t\t{1118, 3.435519902892176},\n\t\t{1119, 0.4715924123423577},\n\t\t{1120, -2.937201816972818},\n\t\t{1121, -8.840127063755203},\n\t\t{1122, -3.0475205154096443},\n\t\t{1123, -7.958275039564295},\n\t\t{1124, -4.590745138952405},\n\t\t{1125, -1.6226812218138473},\n\t\t{1126, -1.342164794844372},\n\t\t{1127, 2.9465125787639943},\n\t\t{1128, 3.8319234906634128},\n\t\t{1129, 1.1838323760964398},\n\t\t{1130, 0.6973278350730985},\n\t\t{1131, 1.5531861282355153},\n\t\t{1132, 1.3626308027509335},\n\t\t{1133, 0.5752023252692363},\n\t\t{1134, 1.2023680067165063},\n\t\t{1135, 2.918649102983747},\n\t\t{1136, 1.0761418203808395},\n\t\t{1137, 1.0700378273716287},\n\t\t{1138, 0.6056407062212603},\n\t\t{1139, -0.11560287389589938},\n\t\t{1140, 4.250569510286743},\n\t\t{1141, 3.4181100136448785},\n\t\t{1142, 1.7424591897044317},\n\t\t{1143, 2.2430498578624025},\n\t\t{1144, -3.756099892949023},\n\t\t{1145, -1.8874201295707569},\n\t\t{1146, 4.060576084471169},\n\t\t{1147, 1.5234789106671527},\n\t\t{1148, -0.2919670436878542},\n\t\t{1149, -0.7564562392043133},\n\t\t{1150, 0.5889854598137041},\n\t\t{1151, 3.6116549735770294},\n\t\t{1152, 4.132270098028595},\n\t\t{1153, 0.795669610562663},\n\t\t{1154, 0.5565354949602446},\n\t\t{1155, 0.5659554731354154},\n\t\t{1156, 0.23485377889604814},\n\t\t{1157, 1.042240934084846},\n\t\t{1158, 5.182362108862529},\n\t\t{1159, 4.33649442668553},\n\t\t{1160, 0.7380303189703217},\n\t\t{1161, -1.7630159735261146},\n\t\t{1162, -6.326983492467595},\n\t\t{1163, -5.7186839161664835},\n\t\t{1164, 0.13641811715775898},\n\t\t{1165, -1.7030012712983946},\n\t\t{1166, -3.5355595256293704},\n\t\t{1167, -1.1417643303314091},\n\t\t{1168, -0.5194495446741861},\n\t\t{1169, -0.1413138190770573},\n\t\t{1170, -0.18536172890429603},\n\t\t{1171, -2.1387189400389652},\n\t\t{1172, 3.248418448720487},\n\t\t{1173, -0.6037596933211551},\n\t\t{1174, -0.8847028822138476},\n\t\t{1175, -0.4009736625550283},\n\t\t{1176, -0.5235606425892978},\n\t\t{1177, -4.735635544354674},\n\t\t{1178, -1.5968810418405757},\n\t\t{1179, -2.4206981264633343},\n\t\t{1180, 1.6853284305568277},\n\t\t{1181, -0.14959471412671943},\n\t\t{1182, -0.2268572716983429},\n\t\t{1183, 8.009430712501162},\n\t\t{1184, 4.226693442585662},\n\t\t{1185, -2.7433060385802985},\n\t\t{1186, -3.510303678699679},\n\t\t{1187, -0.17182221493036187},\n\t\t{1188, 0.15748915273786873},\n\t\t{1189, 3.8143673488118215},\n\t\t{1190, 1.9503660015828477},\n\t\t{1191, 0.890433988471184},\n\t\t{1192, 1.9130763695252966},\n\t\t{1193, -1.833027876528427},\n\t\t{1194, -2.742044645454723},\n\t\t{1195, -0.47488004309141507},\n\t\t{1196, -4.035884771532241},\n\t\t{1197, 0.42429221706635944},\n\t\t{1198, 2.2359243767424712},\n\t\t{1199, 0.549362076041766},\n\t\t{1200, 0.24440770273570517},\n\t\t{1201, -0.3360615035146291},\n\t\t{1202, -0.2778907745872328},\n\t\t{1203, 0.9138009123933042},\n\t\t{1204, -0.1479654415183143},\n\t\t{1205, 1.7136413165491882},\n\t\t{1206, 2.934289013152436},\n\t\t{1207, 1.0731940800896742},\n\t\t{1208, 0.13560518058483445},\n\t\t{1209, 2.38358758420854},\n\t\t{1210, 2.734428529452748},\n\t\t{1211, -4.041789356108857},\n\t\t{1212, -4.539042049881521},\n\t\t{1213, -2.9841112565601926},\n\t\t{1214, -1.0670613855314817},\n\t\t{1215, -1.894942046183513},\n\t\t{1216, 0.6081106279793247},\n\t\t{1217, 1.159388018989162},\n\t\t{1218, 0.9016236593863172},\n\t\t{1219, 0.3592332555514793},\n\t\t{1220, -1.728486314938787},\n\t\t{1221, -1.368522486308104},\n\t\t{1222, 0.9866238913431316},\n\t\t{1223, 0.2666651798390664},\n\t\t{1224, -0.7935790749200822},\n\t\t{1225, 4.707864233341095},\n\t\t{1226, 1.4591719461798989},\n\t\t{1227, 0.6586627066978925},\n\t\t{1228, 0.5819364093323061},\n\t\t{1229, 0.1710374431762603},\n\t\t{1230, -1.3492726338089613},\n\t\t{1231, -1.8389200384707585},\n\t\t{1232, -2.907575053060525},\n\t\t{1233, 5.088232847839355},\n\t\t{1234, 4.027463664053041},\n\t\t{1235, -2.9194808724671137},\n\t\t{1236, 2.7228062682717695},\n\t\t{1237, 0.15542207064329416},\n\t\t{1238, -3.2317099411923533},\n\t\t{1239, 0.16843764866992372},\n\t\t{1240, 0.23781910393282835},\n\t\t{1241, 1.5391542298775456},\n\t\t{1242, 0.6860091654713558},\n\t\t{1243, -1.931761537517844},\n\t\t{1244, -0.7698550164539355},\n\t\t{1245, -1.6013411768899104},\n\t\t{1246, 3.0360238348438857},\n\t\t{1247, -1.209484556649047},\n\t\t{1248, 3.025370588462953},\n\t\t{1249, -2.1932739777537082},\n\t\t{1250, -2.6783230286925908},\n\t\t{1251, -2.5489684149076473},\n\t\t{1252, -1.0902658237730243},\n\t\t{1253, -1.9709134454445885},\n\t\t{1254, 0.8712455768683711},\n\t\t{1255, -2.352879289131102},\n\t\t{1256, -1.149460127625121},\n\t\t{1257, 3.164888250331585},\n\t\t{1258, 1.6850995737230814},\n\t\t{1259, 0.5145586393616726},\n\t\t{1260, 1.239414133200514},\n\t\t{1261, 2.1556600143258144},\n\t\t{1262, 0.8408219812514216},\n\t\t{1263, 0.8530818538777675},\n\t\t{1264, 0.4298743245939972},\n\t\t{1265, 0.013969632999970671},\n\t\t{1266, 0.4664384990167074},\n\t\t{1267, -1.7298944328109824},\n\t\t{1268, 1.8191530530787374},\n\t\t{1269, 0.5973059928173138},\n\t\t{1270, 1.5718912216089098},\n\t\t{1271, 1.0187481705349997},\n\t\t{1272, 0.8106703277783249},\n\t\t{1273, 2.1583928654362308},\n\t\t{1274, -1.883645599867616},\n\t\t{1275, 0.5169472957691834},\n\t\t{1276, -0.17051801876269596},\n\t\t{1277, -0.8890570536695241},\n\t\t{1278, -1.6344792969011104},\n\t\t{1279, -4.470560590150113},\n\t\t{1280, -1.6584456743993545},\n\t\t{1281, 1.3905372668120353},\n\t\t{1282, 1.5268333009639767},\n\t\t{1283, 0.5763501816661231},\n\t\t{1284, 1.1751574007221077},\n\t\t{1285, 3.5731366973359573},\n\t\t{1286, 0.96214985911665},\n\t\t{1287, 1.4553118505762621},\n\t\t{1288, -1.6257309118425205},\n\t\t{1289, -0.6098605928816531},\n\t\t{1290, 0.49168833052301386},\n\t\t{1291, -1.820871878693475},\n\t\t{1292, -0.5807867351904447},\n\t\t{1293, -3.328443942055976},\n\t\t{1294, 2.1960960535054572},\n\t\t{1295, 0.7442515033343204},\n\t\t{1296, 1.0864364897347742},\n\t\t{1297, -3.454261078002848},\n\t\t{1298, 0.7332993293882608},\n\t\t{1299, 0.06965036865486188},\n\t\t{1300, -0.08089269639186826},\n\t\t{1301, 0.5603074816091945},\n\t\t{1302, -2.382621484278481},\n\t\t{1303, -2.020300144585899},\n\t\t{1304, 0.7771656239482074},\n\t\t{1305, -0.27183435119523836},\n\t\t{1306, 1.2129845782199662},\n\t\t{1307, 0.1197848852179424},\n\t\t{1308, -0.8434772984250948},\n\t\t{1309, 1.3303078231056003},\n\t\t{1310, -4.646142168470022},\n\t\t{1311, -1.8600333947505843},\n\t\t{1312, 1.0264896014978127},\n\t\t{1313, -2.522645750470158},\n\t\t{1314, 3.735572937790156},\n\t\t{1315, 0.7139323849882611},\n\t\t{1316, 1.466282643684217},\n\t\t{1317, -0.5223469479060654},\n\t\t{1318, -0.30482216161330633},\n\t\t{1319, -0.5330693731101168},\n\t\t{1320, 0.14509226123376906},\n\t\t{1321, -0.8402377505523949},\n\t\t{1322, -0.49335548299061094},\n\t\t{1323, 2.2071384112188834},\n\t\t{1324, 0.39444322373240415},\n\t\t{1325, 0.2571271030304063},\n\t\t{1326, 0.3628442760659169},\n\t\t{1327, 1.110637158316231},\n\t\t{1328, -3.3713200538414765},\n\t\t{1329, -1.5285040994721997},\n\t\t{1330, -1.039644700563335},\n\t\t{1331, -0.13693802583341802},\n\t\t{1332, 0.24012723097354446},\n\t\t{1333, 0.8510226907903072},\n\t\t{1334, 0.3018028871080348},\n\t\t{1335, -0.28913989977705223},\n\t\t{1336, -2.8484680086981276},\n\t\t{1337, 0.5659934602757057},\n\t\t{1338, 3.87317444923262},\n\t\t{1339, 1.5514423587825519},\n\t\t{1340, -2.1190859701862377},\n\t\t{1341, 2.9986633245404573},\n\t\t{1342, 5.761367019276657},\n\t\t{1343, 2.5005399620250897},\n\t\t{1344, 9.684705700423464},\n\t\t{1345, 6.294505614598388},\n\t\t{1346, 3.1911568425324655},\n\t\t{1347, 2.595472568358627},\n\t\t{1348, -0.4137307176595506},\n\t\t{1349, 2.3177206538332493},\n\t\t{1350, 1.512782522872891},\n\t\t{1351, -6.100936437444041},\n\t\t{1352, -2.4829092142916465},\n\t\t{1353, -0.8470704266288768},\n\t\t{1354, -1.3565074574089562},\n\t\t{1355, -0.10721479675572276},\n\t\t{1356, -0.3493225339452013},\n\t\t{1357, 0.8707227253411013},\n\t\t{1358, 0.37719939228559607},\n\t\t{1359, 0.7100766029640788},\n\t\t{1360, 0.08630717107864053},\n\t\t{1361, -0.0607856486584007},\n\t\t{1362, 0.14459160845136923},\n\t\t{1363, -2.6674080488634755},\n\t\t{1364, -4.38112630781154},\n\t\t{1365, -4.735694488678014},\n\t\t{1366, -3.3722319665970133},\n\t\t{1367, -6.106114766786172},\n\t\t{1368, 2.1376644264930906},\n\t\t{1369, 1.336356044453791},\n\t\t{1370, 0.7354617257688426},\n\t\t{1371, -0.05846108438666758},\n\t\t{1372, -0.02635698914501041},\n\t\t{1373, 2.406016748273669},\n\t\t{1374, 1.1378651340140518},\n\t\t{1375, 0.7875136139278269},\n\t\t{1376, -1.560405669422732},\n\t\t{1377, -0.19412509223968694},\n\t\t{1378, -0.13763366593352688},\n\t\t{1379, -0.41090174774459265},\n\t\t{1380, -0.5128217389659675},\n\t\t{1381, -0.48411275366343093},\n\t\t{1382, -0.3006514512260015},\n\t\t{1383, -3.0052959236866217},\n\t\t{1384, -0.6522613166824651},\n\t\t{1385, -1.2417553208879637},\n\t\t{1386, -1.5980893266129066},\n\t\t{1387, 1.6326005659741591},\n\t\t{1388, -1.2298354901656758},\n\t\t{1389, -1.3872238759747595},\n\t\t{1390, -1.277317964923307},\n\t\t{1391, 1.1851692799565265},\n\t\t{1392, 0.5218809238864076},\n\t\t{1393, 1.4954416611266375},\n\t\t{1394, 0.5373669339877764},\n\t\t{1395, -2.391972542216768},\n\t\t{1396, -0.5517288816237749},\n\t\t{1397, -0.16629955632665802},\n\t\t{1398, -4.2632387399198635},\n\t\t{1399, -4.635100691231299},\n\t\t{1400, -7.110001736114018},\n\t\t{1401, -2.1245097650238245},\n\t\t{1402, -0.40197256663046255},\n\t\t{1403, -0.21992779683008618},\n\t\t{1404, -4.859866723650084},\n\t\t{1405, -0.7746397920852106},\n\t\t{1406, -2.6824408508699005},\n\t\t{1407, -0.8521537373508848},\n\t\t{1408, -0.8530214328853423},\n\t\t{1409, 2.327362071521189},\n\t\t{1410, 4.3693438730486305},\n\t\t{1411, 2.029888413390829},\n\t\t{1412, -0.05201064009262335},\n\t\t{1413, -0.7906025200523498},\n\t\t{1414, -0.05627283619163653},\n\t\t{1415, -1.9418234843816597},\n\t\t{1416, -2.6677090791172806},\n\t\t{1417, -1.1799672998632535},\n\t\t{1418, -1.4736701548596058},\n\t\t{1419, 1.8392104626082608},\n\t\t{1420, 0.797178900262403},\n\t\t{1421, 3.837307350311048},\n\t\t{1422, 1.5263117843414418},\n\t\t{1423, 1.9652461584508931},\n\t\t{1424, 0.961231420212767},\n\t\t{1425, 1.4684512916784902},\n\t\t{1426, -0.8221798818322279},\n\t\t{1427, -1.1171873145543691},\n\t\t{1428, -0.5010538038622496},\n\t\t{1429, 0.8370108308261766},\n\t\t{1430, -2.3915541878247084},\n\t\t{1431, -3.7058750275822367},\n\t\t{1432, 3.809018095100254},\n\t\t{1433, -2.0999398889399155},\n\t\t{1434, -1.5038867105894775},\n\t\t{1435, -3.281960511874818},\n\t\t{1436, 4.5411702489644465},\n\t\t{1437, 3.137020974742362},\n\t\t{1438, 0.29597097648032844},\n\t\t{1439, 0.48580317325584255},\n\t\t{1440, 1.0277484201700107},\n\t\t{1441, 5.920296997542591},\n\t\t{1442, 1.7553805982706767},\n\t\t{1443, -0.2762937727400562},\n\t\t{1444, -0.4779774025131348},\n\t\t{1445, -6.856485641014716},\n\t\t{1446, -3.1038900953497603},\n\t\t{1447, -1.2508745023996033},\n\t\t{1448, 3.6345606635115475},\n\t\t{1449, 2.3429317086950627},\n\t\t{1450, 4.149518625547424},\n\t\t{1451, 0.8190939868855394},\n\t\t{1452, 7.370984629851606},\n\t\t{1453, 2.8797942108407812},\n\t\t{1454, 1.057625031975485},\n\t\t{1455, 2.823711774081786},\n\t\t{1456, -0.6611660956146441},\n\t\t{1457, -0.33521690008483085},\n\t\t{1458, -2.8317895022922004},\n\t\t{1459, 2.220909487893608},\n\t\t{1460, -1.3177631121947575},\n\t\t{1461, -1.8487462405591268},\n\t\t{1462, -0.09740058409466923},\n\t\t{1463, -6.2316802622909115},\n\t\t{1464, -4.351006990946448},\n\t\t{1465, -0.2852885567718342},\n\t\t{1466, -1.908371558847051},\n\t\t{1467, -1.7333891968418333},\n\t\t{1468, 1.5242302186846874},\n\t\t{1469, -3.190048294533906},\n\t\t{1470, 0.7370423674214097},\n\t\t{1471, 2.161838485877223},\n\t\t{1472, 1.073784698393274},\n\t\t{1473, 8.456899590062646},\n\t\t{1474, 4.602963300213601},\n\t\t{1475, 1.9007872069281564},\n\t\t{1476, 0.4924108136780714},\n\t\t{1477, -2.908330837836086},\n\t\t{1478, 0.08013486167399386},\n\t\t{1479, 0.3728648282595119},\n\t\t{1480, -0.4414854059521493},\n\t\t{1481, -2.8637255283901566},\n\t\t{1482, -2.8407418171283947},\n\t\t{1483, -0.37961028023359344},\n\t\t{1484, 5.09928534187917},\n\t\t{1485, 1.3412692856240354},\n\t\t{1486, 2.0472903023214117},\n\t\t{1487, 0.4446945395737501},\n\t\t{1488, 0.6001913106734689},\n\t\t{1489, -2.101043204413802},\n\t\t{1490, 0.6456120982210549},\n\t\t{1491, 0.7985919601583051},\n\t\t{1492, 2.3067028906894826},\n\t\t{1493, 1.061753540305504},\n\t\t{1494, 0.5198520982767226},\n\t\t{1495, 1.0801608428343479},\n\t\t{1496, 0.4353328751701283},\n\t\t{1497, -0.9452293088332749},\n\t\t{1498, 0.07316547423422132},\n\t\t{1499, -1.441592087673726},\n\t\t{1500, -0.7918021468252867},\n\t\t{1501, -0.19516044750878903},\n\t\t{1502, 3.1122859739494517},\n\t\t{1503, 4.553142438333481},\n\t\t{1504, 0.20705701395977982},\n\t\t{1505, -8.360493536168361},\n\t\t{1506, -3.6163548850088016},\n\t\t{1507, -5.086508516603473},\n\t\t{1508, -3.8163509100358555},\n\t\t{1509, -3.2505799548248193},\n\t\t{1510, -2.977247144147009},\n\t\t{1511, 3.905530154303458},\n\t\t{1512, 2.754797438253135},\n\t\t{1513, 1.183823123841138},\n\t\t{1514, -1.3152941369792872},\n\t\t{1515, 0.09876048458507225},\n\t\t{1516, 1.7552290398039303},\n\t\t{1517, 0.17750449157994352},\n\t\t{1518, -1.5010138919299845},\n\t\t{1519, -0.7259438627927103},\n\t\t{1520, -0.5453547004260415},\n\t\t{1521, 0.4499383209974993},\n\t\t{1522, -2.780894877749338},\n\t\t{1523, -0.7412784615120118},\n\t\t{1524, -1.2434634185770994},\n\t\t{1525, -0.8184716117097173},\n\t\t{1526, -0.28145796183726807},\n\t\t{1527, 0.9048689138321924},\n\t\t{1528, 0.8098004110171007},\n\t\t{1529, 0.34789785366220066},\n\t\t{1530, 0.2179884993047545},\n\t\t{1531, -1.7920567091359185},\n\t\t{1532, -0.003213539380083952},\n\t\t{1533, 0.2239419165604665},\n\t\t{1534, 1.7927268849659557},\n\t\t{1535, -0.9166733909167643},\n\t\t{1536, -0.35871729402484287},\n\t\t{1537, 4.080018394073955},\n\t\t{1538, -0.374792910265352},\n\t\t{1539, 3.2961011764587185},\n\t\t{1540, 0.07952187786264542},\n\t\t{1541, -6.222166659122913},\n\t\t{1542, -5.447502952676054},\n\t\t{1543, -1.6522366853305663},\n\t\t{1544, -0.0484909497947541},\n\t\t{1545, -0.01978831600980841},\n\t\t{1546, -0.008459012833394093},\n\t\t{1547, -1.5598198817998117},\n\t\t{1548, 6.478665268389666},\n\t\t{1549, 2.920998083962441},\n\t\t{1550, 0.39247381225111777},\n\t\t{1551, 0.7131014352547447},\n\t\t{1552, 0.4822696457567224},\n\t\t{1553, 0.31337781919658353},\n\t\t{1554, 0.17460257782245217},\n\t\t{1555, 3.9861961918290865},\n\t\t{1556, 4.280030644159919},\n\t\t{1557, 1.5915113077236331},\n\t\t{1558, 0.7977654150091268},\n\t\t{1559, 0.8787956993854376},\n\t\t{1560, 0.7574926911030345},\n\t\t{1561, 0.0807751016148261},\n\t\t{1562, 0.5639956263216438},\n\t\t{1563, 5.917155238044591},\n\t\t{1564, 4.025280856480598},\n\t\t{1565, 3.177256637404212},\n\t\t{1566, 1.4368996047355975},\n\t\t{1567, 4.1091520516503826},\n\t\t{1568, 3.8027768213970123},\n\t\t{1569, -1.1080618294953268},\n\t\t{1570, 3.734874618993904},\n\t\t{1571, 0.7798845305977561},\n\t\t{1572, 1.657354001861104},\n\t\t{1573, 0.4472991372666527},\n\t\t{1574, -0.26687716846245546},\n\t\t{1575, 6.696426303724373},\n\t\t{1576, 4.609355871026603},\n\t\t{1577, 0.29985905795131496},\n\t\t{1578, -0.487541530141561},\n\t\t{1579, 0.5261064414614154},\n\t\t{1580, 0.3045794598318048},\n\t\t{1581, 1.8436637656583943},\n\t\t{1582, 1.972252443889294},\n\t\t{1583, -0.4584776637570749},\n\t\t{1584, -0.256665445392951},\n\t\t{1585, 0.3079822649759647},\n\t\t{1586, 0.275229824442014},\n\t\t{1587, 4.2552259467915965},\n\t\t{1588, 1.6753866129854698},\n\t\t{1589, 2.3470872265727105},\n\t\t{1590, 0.9550614002826752},\n\t\t{1591, 5.57820691420845},\n\t\t{1592, 6.967459707438015},\n\t\t{1593, 3.9456537877685607},\n\t\t{1594, 0.5481719151110764},\n\t\t{1595, 0.22327871581005201},\n\t\t{1596, 0.3537527984067912},\n\t\t{1597, -1.551168778687852},\n\t\t{1598, 0.050036094027675726},\n\t\t{1599, -0.7904583095875892},\n\t\t{1600, -0.711190300797069},\n\t\t{1601, -0.40063982850452073},\n\t\t{1602, -3.0895299904589666},\n\t\t{1603, -3.7895029523264907},\n\t\t{1604, -2.8950027912232548},\n\t\t{1605, -1.1810596041013601},\n\t\t{1606, 1.361870570561297},\n\t\t{1607, 2.0402209535292686},\n\t\t{1608, 0.3647696227413807},\n\t\t{1609, 2.3502488376338677},\n\t\t{1610, 1.1686748133697509},\n\t\t{1611, 3.045246870152562},\n\t\t{1612, 5.891967345464777},\n\t\t{1613, -0.0898926111524534},\n\t\t{1614, -0.7417274443593768},\n\t\t{1615, -0.4441786669809267},\n\t\t{1616, -2.2526193475832286},\n\t\t{1617, 1.9618096398271123},\n\t\t{1618, 6.455698311540212},\n\t\t{1619, 4.704815978582291},\n\t\t{1620, -1.7951023059742703},\n\t\t{1621, -2.0687205616873876},\n\t\t{1622, -1.1836988807125999},\n\t\t{1623, -0.021717983642627614},\n\t\t{1624, 0.19879682219653433},\n\t\t{1625, 0.7880379904121191},\n\t\t{1626, -1.2969384708023008},\n\t\t{1627, -0.9299132054109676},\n\t\t{1628, -8.904882111178363},\n\t\t{1629, -0.23925097008503293},\n\t\t{1630, -0.9619039510091345},\n\t\t{1631, 1.5152807979525158},\n\t\t{1632, 1.2408265691277374},\n\t\t{1633, 0.2126201485591661},\n\t\t{1634, -0.015097384314178522},\n\t\t{1635, 3.462104377282962},\n\t\t{1636, 2.429598918288754},\n\t\t{1637, -0.3309915832173491},\n\t\t{1638, -1.1350375930343553},\n\t\t{1639, -0.29212232050937426},\n\t\t{1640, 2.7399648781647867},\n\t\t{1641, 0.5400642049066471},\n\t\t{1642, -0.9874320474895332},\n\t\t{1643, 0.022949446539447416},\n\t\t{1644, 1.9629807142283215},\n\t\t{1645, -4.57058358724791},\n\t\t{1646, -1.8437763357746826},\n\t\t{1647, 1.5757765299758155},\n\t\t{1648, 0.6557612209014597},\n\t\t{1649, 1.645675812773225},\n\t\t{1650, -0.26379861735208154},\n\t\t{1651, 0.5888908168417802},\n\t\t{1652, 0.69638977380988},\n\t\t{1653, -0.9541013188421699},\n\t\t{1654, -3.6789239794544857},\n\t\t{1655, -6.098330022219628},\n\t\t{1656, -2.1055549439213728},\n\t\t{1657, 1.3903060713588298},\n\t\t{1658, -0.2826125368179414},\n\t\t{1659, -0.15731078444657381},\n\t\t{1660, 0.31589191764032876},\n\t\t{1661, -1.3105755631257054},\n\t\t{1662, -2.3517786944753345},\n\t\t{1663, -3.76963645254161},\n\t\t{1664, -1.51815290646032},\n\t\t{1665, -0.16870201698547654},\n\t\t{1666, 7.011838225463239},\n\t\t{1667, 2.694939897557991},\n\t\t{1668, 1.341287087009806},\n\t\t{1669, -5.497899317545717},\n\t\t{1670, -2.2556705552561573},\n\t\t{1671, 4.998478903448072},\n\t\t{1672, 3.7162316220288627},\n\t\t{1673, 1.3299949839141096},\n\t\t{1674, -0.42407219366132853},\n\t\t{1675, -2.090388813550331},\n\t\t{1676, -1.5555903875870327},\n\t\t{1677, 0.5235885782552866},\n\t\t{1678, 0.4715632223202757},\n\t\t{1679, 2.2042694466880417},\n\t\t{1680, 1.5371226166768661},\n\t\t{1681, 0.5861429454626592},\n\t\t{1682, 3.010336383542044},\n\t\t{1683, 1.2819509088584535},\n\t\t{1684, 0.9702766986335079},\n\t\t{1685, 2.8793332543644534},\n\t\t{1686, -2.2502195041812323},\n\t\t{1687, -5.801788229804142},\n\t\t{1688, -3.57235353592964},\n\t\t{1689, -5.476977195341316},\n\t\t{1690, -1.9284229941607667},\n\t\t{1691, 0.8019051706936664},\n\t\t{1692, 3.607736113541032},\n\t\t{1693, -0.26580636954414416},\n\t\t{1694, 0.17807955747368387},\n\t\t{1695, 4.090092603696913},\n\t\t{1696, 1.991240033399493},\n\t\t{1697, -0.02029776869873612},\n\t\t{1698, -0.2102366831101744},\n\t\t{1699, 0.4785700480151526},\n\t\t{1700, 1.2215594979288416},\n\t\t{1701, -0.8136060516223772},\n\t\t{1702, -1.218270543585871},\n\t\t{1703, -0.7425257242496361},\n\t\t{1704, -0.5787885551825825},\n\t\t{1705, -1.7486509700269153},\n\t\t{1706, -2.445384710689969},\n\t\t{1707, -3.381106009587705},\n\t\t{1708, -2.2467460880091195},\n\t\t{1709, 0.5783655995127321},\n\t\t{1710, 0.6367913691240249},\n\t\t{1711, 0.17938075958109273},\n\t\t{1712, 2.9623567751496584},\n\t\t{1713, 0.07409938623653578},\n\t\t{1714, 4.230276519738167},\n\t\t{1715, 1.1629333825666488},\n\t\t{1716, 1.1026378455932202},\n\t\t{1717, 0.97976589599163},\n\t\t{1718, 2.215504081171289},\n\t\t{1719, 1.6266022408912777},\n\t\t{1720, -7.302905224148934},\n\t\t{1721, -0.3594226648662415},\n\t\t{1722, -0.1918601899212488},\n\t\t{1723, 1.8676244558775439},\n\t\t{1724, 1.1165704642302714},\n\t\t{1725, -4.374255244922507},\n\t\t{1726, 3.7711656707375605},\n\t\t{1727, 1.595760727218944},\n\t\t{1728, -0.5192181446946155},\n\t\t{1729, -5.883320496617901},\n\t\t{1730, -2.686299602215407},\n\t\t{1731, -1.4123061710138118},\n\t\t{1732, -0.30414005398382443},\n\t\t{1733, -0.05513997605290202},\n\t\t{1734, -0.35417512673400336},\n\t\t{1735, 2.0089210923677387},\n\t\t{1736, 1.7156117099380412},\n\t\t{1737, -0.30958795682794216},\n\t\t{1738, -1.6800057619558209},\n\t\t{1739, -0.7673558578551819},\n\t\t{1740, 1.189747988831154},\n\t\t{1741, 3.4299543800612113},\n\t\t{1742, 2.3564094546807044},\n\t\t{1743, -0.934026536404255},\n\t\t{1744, -0.5858126836094147},\n\t\t{1745, 1.0227216197241338},\n\t\t{1746, 0.44685014092908026},\n\t\t{1747, -0.18644369560540477},\n\t\t{1748, 0.2660382272489602},\n\t\t{1749, 0.10728676158944059},\n\t\t{1750, 0.492055295445045},\n\t\t{1751, -2.1533966782181113},\n\t\t{1752, 0.2941882782459959},\n\t\t{1753, 2.5476702578864487},\n\t\t{1754, -0.13308171344716646},\n\t\t{1755, 0.06127734854472514},\n\t\t{1756, 0.6235011334771682},\n\t\t{1757, -4.1848714467696455},\n\t\t{1758, -1.7733657895403252},\n\t\t{1759, -0.5886761632640042},\n\t\t{1760, -0.2686983222729117},\n\t\t{1761, -0.11185465120909478},\n\t\t{1762, -1.3482172736717872},\n\t\t{1763, -0.14703622215299406},\n\t\t{1764, -0.8943359894816696},\n\t\t{1765, -0.6182383203627311},\n\t\t{1766, -0.3533698291199343},\n\t\t{1767, 5.531781510064832},\n\t\t{1768, 3.7621896032254663},\n\t\t{1769, 3.499278713263857},\n\t\t{1770, 1.5083511138991512},\n\t\t{1771, 2.7011213230664346},\n\t\t{1772, 1.7988513343563242},\n\t\t{1773, -1.017414590380442},\n\t\t{1774, -0.5132377647731874},\n\t\t{1775, 0.0554345523358622},\n\t\t{1776, -0.20553782385350033},\n\t\t{1777, -0.05873301280634831},\n\t\t{1778, -6.664700586932413},\n\t\t{1779, -1.0338404986157304},\n\t\t{1780, -1.3761092659264877},\n\t\t{1781, -0.6181464956303887},\n\t\t{1782, -0.29823566420822967},\n\t\t{1783, -0.3859394503305176},\n\t\t{1784, 0.16366422972298045},\n\t\t{1785, -2.8522926713556256},\n\t\t{1786, 0.04872241374958097},\n\t\t{1787, 1.3213731139462377},\n\t\t{1788, -6.1730361074815505},\n\t\t{1789, 5.654036711284216},\n\t\t{1790, 1.917428290372935},\n\t\t{1791, -1.3643323331016168},\n\t\t{1792, -5.463554146256742},\n\t\t{1793, -2.2960746587783514},\n\t\t{1794, -3.4588912771661686},\n\t\t{1795, 0.10734282982334875},\n\t\t{1796, -5.500960653141919},\n\t\t{1797, -3.41777398184099},\n\t\t{1798, -0.9108499879826484},\n\t\t{1799, -0.7810785860774376},\n\t\t{1800, -1.226472192188076},\n\t\t{1801, -4.092145362158016},\n\t\t{1802, -3.0567263847848176},\n\t\t{1803, -0.4367294194812975},\n\t\t{1804, -3.319740373299292},\n\t\t{1805, -0.822739711492482},\n\t\t{1806, -0.4145174351035504},\n\t\t{1807, -0.45494195921524827},\n\t\t{1808, -1.2641232276635632},\n\t\t{1809, 3.5033674263560526},\n\t\t{1810, 6.454182337371713},\n\t\t{1811, 5.381388733082188},\n\t\t{1812, 2.178132904590227},\n\t\t{1813, 0.675292713174831},\n\t\t{1814, 2.746943358458573},\n\t\t{1815, 0.3245676763820312},\n\t\t{1816, 0.3351406396200248},\n\t\t{1817, 1.587179838053857},\n\t\t{1818, 0.4574668064765296},\n\t\t{1819, 0.18906501768529987},\n\t\t{1820, 1.7118767821703427},\n\t\t{1821, -2.0982888183019295},\n\t\t{1822, 2.7159195503679614},\n\t\t{1823, 2.728109168204603},\n\t\t{1824, 0.6885653346253366},\n\t\t{1825, -1.6879912896859455},\n\t\t{1826, -0.27877692735099624},\n\t\t{1827, 0.2849073001683168},\n\t\t{1828, 0.3513267734765556},\n\t\t{1829, 0.03576722832283072},\n\t\t{1830, 0.10527151954181542},\n\t\t{1831, 0.5713038888185831},\n\t\t{1832, 0.1416259082507797},\n\t\t{1833, -0.4379988968488149},\n\t\t{1834, 0.5717761137797193},\n\t\t{1835, -0.9799711385807263},\n\t\t{1836, -4.095487077485156},\n\t\t{1837, -0.27567697529723567},\n\t\t{1838, -0.07052095148848053},\n\t\t{1839, -1.1249025910127481},\n\t\t{1840, -1.2492450116745994},\n\t\t{1841, -1.2821695698039939},\n\t\t{1842, -0.5192478685252283},\n\t\t{1843, 1.6032924292231747},\n\t\t{1844, 1.3938262705133813},\n\t\t{1845, -0.6598374904874906},\n\t\t{1846, -3.340862878202045},\n\t\t{1847, 0.5519122035614421},\n\t\t{1848, 0.4836453117525924},\n\t\t{1849, 1.4210962604748907},\n\t\t{1850, -2.450517661946151},\n\t\t{1851, -2.2642849984241447},\n\t\t{1852, -3.7218457213383047},\n\t\t{1853, -1.4173063685683605},\n\t\t{1854, 0.6966987044664344},\n\t\t{1855, -0.9346296279211808},\n\t\t{1856, -1.1130301537041474},\n\t\t{1857, -0.5403513985379464},\n\t\t{1858, 0.08368553981079299},\n\t\t{1859, 1.866412033058049},\n\t\t{1860, -0.10537254504864124},\n\t\t{1861, 1.1339489544841446},\n\t\t{1862, 1.0312511993791251},\n\t\t{1863, 2.698127519368784},\n\t\t{1864, 0.6979942946108773},\n\t\t{1865, -0.27955873520341995},\n\t\t{1866, -0.363598619137794},\n\t\t{1867, -4.79119196203075},\n\t\t{1868, -5.345286648526772},\n\t\t{1869, 1.3111841631394259},\n\t\t{1870, 0.2832868353021444},\n\t\t{1871, 1.51025351756583},\n\t\t{1872, 3.5214008170225584},\n\t\t{1873, 5.2663944180689635},\n\t\t{1874, 2.809673220275741},\n\t\t{1875, -0.42369822220483777},\n\t\t{1876, 1.3424411103237495},\n\t\t{1877, 0.8266013694003702},\n\t\t{1878, 1.8152391550678448},\n\t\t{1879, 2.7591200622794685},\n\t\t{1880, 3.9093590447370286},\n\t\t{1881, 0.4443859505898753},\n\t\t{1882, 2.486034974297612},\n\t\t{1883, 0.3927499001266622},\n\t\t{1884, -1.5761386921875646},\n\t\t{1885, -0.7315790090623888},\n\t\t{1886, -2.498252217835974},\n\t\t{1887, 2.2935881748889098},\n\t\t{1888, 1.3948274721171572},\n\t\t{1889, 0.5776029629047527},\n\t\t{1890, 2.05874790655203},\n\t\t{1891, 0.21547291695393334},\n\t\t{1892, 0.3570892252061603},\n\t\t{1893, -0.06221124604187836},\n\t\t{1894, -0.28695199835947693},\n\t\t{1895, -3.6655000207832926},\n\t\t{1896, -1.443128252350602},\n\t\t{1897, -4.036729695296774},\n\t\t{1898, -2.9266876725034097},\n\t\t{1899, -0.9161748398881531},\n\t\t{1900, -2.4159875823112102},\n\t\t{1901, -2.7722390417695664},\n\t\t{1902, -1.0375503690564416},\n\t\t{1903, 1.6027073840978998},\n\t\t{1904, 0.7478354855930643},\n\t\t{1905, -1.7297855273793372},\n\t\t{1906, -0.6848840983376177},\n\t\t{1907, -2.924163208957069},\n\t\t{1908, 1.3607393079649786},\n\t\t{1909, -0.8919494182677227},\n\t\t{1910, -1.3076172817648364},\n\t\t{1911, -3.8407823206610634},\n\t\t{1912, -2.340422072926102},\n\t\t{1913, -1.339777135789347},\n\t\t{1914, 5.190323965776324},\n\t\t{1915, 3.951602340859465},\n\t\t{1916, 2.339262890199535},\n\t\t{1917, -0.05034180310035474},\n\t\t{1918, -2.598854412102168},\n\t\t{1919, -3.210795426469667},\n\t\t{1920, -2.973491245343324},\n\t\t{1921, -0.436210845078317},\n\t\t{1922, -1.1412986327152534},\n\t\t{1923, -0.5830164500182778},\n\t\t{1924, 2.236815724255573},\n\t\t{1925, 2.4117770112942756},\n\t\t{1926, 7.893751764872615},\n\t\t{1927, 3.9538742307477523},\n\t\t{1928, 1.2277604209029704},\n\t\t{1929, 0.5348649351522733},\n\t\t{1930, 1.1960282720597442},\n\t\t{1931, 3.257698359306139},\n\t\t{1932, 1.5631434988728465},\n\t\t{1933, 2.61280291536003},\n\t\t{1934, 2.464489221766904},\n\t\t{1935, 7.7235146153450005},\n\t\t{1936, 3.5020959063935564},\n\t\t{1937, 0.4204895480712394},\n\t\t{1938, 1.7733638193078474},\n\t\t{1939, 1.5264540607012727},\n\t\t{1940, -1.0143072183751354},\n\t\t{1941, 1.9548644279425025},\n\t\t{1942, 1.8135315946268689},\n\t\t{1943, 0.8801563798462086},\n\t\t{1944, 0.36872405263617686},\n\t\t{1945, 0.5016793178234329},\n\t\t{1946, 0.7468234511571644},\n\t\t{1947, 0.5516803110059425},\n\t\t{1948, 0.07491316231767287},\n\t\t{1949, -0.5409644873153676},\n\t\t{1950, -1.7273827828612331},\n\t\t{1951, -1.6958517820034587},\n\t\t{1952, 2.571557711100016},\n\t\t{1953, 1.3591644108928387},\n\t\t{1954, 0.32452005848002774},\n\t\t{1955, 13.40662057015061},\n\t\t{1956, 5.064044656851605},\n\t\t{1957, 4.215324399881627},\n\t\t{1958, 1.2548156348825534},\n\t\t{1959, -8.017997857116901},\n\t\t{1960, -3.780352899861857},\n\t\t{1961, 4.789536353210147},\n\t\t{1962, 1.4141701561194262},\n\t\t{1963, 1.7637975267425614},\n\t\t{1964, 0.808647653868915},\n\t\t{1965, -0.09298159653100563},\n\t\t{1966, -0.5445829189050986},\n\t\t{1967, 0.23999408484862914},\n\t\t{1968, 1.7045406514144452},\n\t\t{1969, 1.2864251334403063},\n\t\t{1970, 0.23595190619905676},\n\t\t{1971, -0.16998876795567106},\n\t\t{1972, 1.7981568631939713},\n\t\t{1973, 1.8402637436984306},\n\t\t{1974, 2.6168820867379785},\n\t\t{1975, 6.73795131386144},\n\t\t{1976, 3.398955576940164},\n\t\t{1977, 1.7407524153032157},\n\t\t{1978, -2.5630717555428246},\n\t\t{1979, 0.660308187748007},\n\t\t{1980, 0.30092149715451044},\n\t\t{1981, -0.7377904638704325},\n\t\t{1982, -0.4144148915320455},\n\t\t{1983, -2.4780535764313516},\n\t\t{1984, 5.536130807875712},\n\t\t{1985, 5.09966644211762},\n\t\t{1986, 0.9464671036370131},\n\t\t{1987, 1.9575286178533995},\n\t\t{1988, 1.1310466859304777},\n\t\t{1989, 0.02589367021637473},\n\t\t{1990, -0.9086752110902208},\n\t\t{1991, 6.969753043303118},\n\t\t{1992, -1.6851724296789334},\n\t\t{1993, -0.4231415231762114},\n\t\t{1994, -1.2060445700385123},\n\t\t{1995, -0.37599475673370863},\n\t\t{1996, -1.2005041061953134},\n\t\t{1997, 0.9359792763308203},\n\t\t{1998, 3.814280824564994},\n\t\t{1999, 3.4028864793221762},\n\t\t{2000, 2.2368008825766763},\n\t\t{2001, -2.533837269958161},\n\t\t{2002, 2.601570929197199},\n\t\t{2003, 1.372697742611765},\n\t\t{2004, 0.2234123281785954},\n\t\t{2005, 0.053303021300518665},\n\t\t{2006, 0.5102248323551459},\n\t\t{2007, 3.405770213252337},\n\t\t{2008, -1.6454959618658944},\n\t\t{2009, -2.9017617186657794},\n\t\t{2010, -1.1506474683494534},\n\t\t{2011, -0.5038505334071172},\n\t\t{2012, -2.531754532884621},\n\t\t{2013, 0.6187727501350015},\n\t\t{2014, 3.230395660218953},\n\t\t{2015, 2.7897360420286645},\n\t\t{2016, 0.23496354641592465},\n\t\t{2017, 0.16282966736534202},\n\t\t{2018, 0.30860878050946144},\n\t\t{2019, -0.46454732681558286},\n\t\t{2020, -2.728371930600952},\n\t\t{2021, 0.5087594042836696},\n\t\t{2022, -0.010963135375945454},\n\t\t{2023, -2.913162840700314},\n\t\t{2024, -1.233686706823515},\n\t\t{2025, -0.5152772711141118},\n\t\t{2026, -3.203633517483002},\n\t\t{2027, -1.8983852343665344},\n\t\t{2028, -5.524058829492587},\n\t\t{2029, -4.705757340294058},\n\t\t{2030, -1.3297666958282468},\n\t\t{2031, 3.5970308674432268},\n\t\t{2032, 3.470529636068519},\n\t\t{2033, -0.8006520799753918},\n\t\t{2034, -0.7478885215868666},\n\t\t{2035, -0.30246616489287625},\n\t\t{2036, -4.385557820435351},\n\t\t{2037, -5.182673225696429},\n\t\t{2038, -2.5028392649812443},\n\t\t{2039, -0.07689337867143708},\n\t\t{2040, 0.20104667827499453},\n\t\t{2041, -3.001047690782968},\n\t\t{2042, -1.800585680382203},\n\t\t{2043, -0.6700467668164836},\n\t\t{2044, 0.8797761987955407},\n\t\t{2045, 0.026598277948519322},\n\t\t{2046, 0.3610147682670878},\n\t\t{2047, 1.4659878318511521},\n\t\t{2048, 3.4734739021424965},\n\t\t{2049, 4.693594753662188},\n\t\t{2050, -0.7525126804436022},\n\t\t{2051, -0.1429340377414655},\n\t\t{2052, 2.940047733961252},\n\t\t{2053, 5.0674653506347465},\n\t\t{2054, 0.24255686666427612},\n\t\t{2055, -1.5988537813122332},\n\t\t{2056, -0.7997497008282674},\n\t\t{2057, -0.9139025149408466},\n\t\t{2058, 1.2250856141956228},\n\t\t{2059, -0.24338384541109415},\n\t\t{2060, -0.23166139739579494},\n\t\t{2061, -1.5378508428662983},\n\t\t{2062, 0.7511011733338366},\n\t\t{2063, 0.526182883894954},\n\t\t{2064, -5.371571964442196},\n\t\t{2065, -4.2175722813378815},\n\t\t{2066, -1.6523754029380404},\n\t\t{2067, -3.6940486746408006},\n\t\t{2068, -0.30149189732720005},\n\t\t{2069, 1.2058825059025726},\n\t\t{2070, -0.7602483139899091},\n\t\t{2071, -0.10166380310160811},\n\t\t{2072, 4.112541419941205},\n\t\t{2073, 2.197615817282448},\n\t\t{2074, -2.3587072952102273},\n\t\t{2075, -0.8272849649817339},\n\t\t{2076, -0.2871762539388914},\n\t\t{2077, 2.0277219392900343},\n\t\t{2078, 0.8517925867471035},\n\t\t{2079, -0.2776758159192565},\n\t\t{2080, -1.9017133270310038},\n\t\t{2081, 1.8249482322672748},\n\t\t{2082, 0.9162178275463287},\n\t\t{2083, 0.053926892862837306},\n\t\t{2084, -1.0512064552218914},\n\t\t{2085, 2.5579517946085044},\n\t\t{2086, -0.9648914800588124},\n\t\t{2087, 0.7219826648981014},\n\t\t{2088, 1.535869027264538},\n\t\t{2089, 2.209968518628158},\n\t\t{2090, -2.1721533733380314},\n\t\t{2091, -1.582290135630036},\n\t\t{2092, 1.4022921082486717},\n\t\t{2093, -0.4788176165809881},\n\t\t{2094, 0.5922236438784418},\n\t\t{2095, 3.888944994601128},\n\t\t{2096, -1.9816758338851284},\n\t\t{2097, 2.5524673950076937},\n\t\t{2098, 0.19032303101568515},\n\t\t{2099, -0.6412555332080425},\n\t\t{2100, 0.9109249629918326},\n\t\t{2101, -1.1596685136530216},\n\t\t{2102, -1.1846318840123957},\n\t\t{2103, -3.4354858303370235},\n\t\t{2104, -1.5313381785089397},\n\t\t{2105, -4.513270443930894},\n\t\t{2106, 0.21785258344410607},\n\t\t{2107, 1.8908859069066841},\n\t\t{2108, 2.141178601733353},\n\t\t{2109, 3.56381262832591},\n\t\t{2110, 0.7926152152452789},\n\t\t{2111, -3.9413865126885717},\n\t\t{2112, -1.8828585088703222},\n\t\t{2113, -1.1559719335043117},\n\t\t{2114, 2.035820058914016},\n\t\t{2115, -0.30538879264536667},\n\t\t{2116, 3.3461052698966496},\n\t\t{2117, 0.5453745326281086},\n\t\t{2118, -2.0429441057700872},\n\t\t{2119, -0.733733159190301},\n\t\t{2120, 0.9068829996499148},\n\t\t{2121, 1.0430877419032083},\n\t\t{2122, 0.07042114536705968},\n\t\t{2123, 3.900917065678452},\n\t\t{2124, -1.7506270739621594},\n\t\t{2125, -0.11306064019178019},\n\t\t{2126, 1.9224873852248525},\n\t\t{2127, -2.31067702035073},\n\t\t{2128, -5.347880277981635},\n\t\t{2129, -2.7363104280811568},\n\t\t{2130, -1.181325014438742},\n\t\t{2131, 0.3460922898708438},\n\t\t{2132, 6.765345605877256},\n\t\t{2133, 2.8081278267589904},\n\t\t{2134, 2.291913108258975},\n\t\t{2135, -2.8567328742110556},\n\t\t{2136, -7.158972847862644},\n\t\t{2137, -1.5218091632094781},\n\t\t{2138, -1.4035913084542262},\n\t\t{2139, 5.079335565009442},\n\t\t{2140, 1.8894578159562119},\n\t\t{2141, 2.6281142000702724},\n\t\t{2142, 4.725952453225383},\n\t\t{2143, 3.3315939310586},\n\t\t{2144, 4.569311265839343},\n\t\t{2145, -1.008982272724144},\n\t\t{2146, -0.3094387214527915},\n\t\t{2147, -0.8528546562253151},\n\t\t{2148, -2.2486694607560467},\n\t\t{2149, -0.9374191311610379},\n\t\t{2150, 0.0682997767384656},\n\t\t{2151, 1.8364128440630842},\n\t\t{2152, 0.7250485587430949},\n\t\t{2153, -0.4509406746639649},\n\t\t{2154, -1.6656619165813646},\n\t\t{2155, 4.701661299922804},\n\t\t{2156, 1.725239856722534},\n\t\t{2157, -1.4827673539709745},\n\t\t{2158, 2.578991269057628},\n\t\t{2159, -0.9203885151506095},\n\t\t{2160, -2.1448729385397565},\n\t\t{2161, -0.8445950659191573},\n\t\t{2162, 0.6877527694898713},\n\t\t{2163, 4.881046790210102},\n\t\t{2164, -1.9694950903748805},\n\t\t{2165, -0.6801293201444104},\n\t\t{2166, 4.820397809628112},\n\t\t{2167, 5.454348683359417},\n\t\t{2168, 2.3559492014961485},\n\t\t{2169, 7.083227447672722},\n\t\t{2170, 3.2940670304647277},\n\t\t{2171, 0.5756532383255607},\n\t\t{2172, -6.001861298809395},\n\t\t{2173, 3.662303892088325},\n\t\t{2174, 1.562854568278409},\n\t\t{2175, 1.010595955126512},\n\t\t{2176, -3.424834550052116},\n\t\t{2177, -4.391118031989927},\n\t\t{2178, -4.480333827510096},\n\t\t{2179, -2.4748219554005937},\n\t\t{2180, -1.1641728858766203},\n\t\t{2181, 1.4182385617401523},\n\t\t{2182, 0.2598298049369104},\n\t\t{2183, 2.3878881487049313},\n\t\t{2184, 1.5882613747040253},\n\t\t{2185, 1.292313811048738},\n\t\t{2186, 1.3382494650426755},\n\t\t{2187, -0.31493922513920913},\n\t\t{2188, -1.2703682775007337},\n\t\t{2189, 0.16745729915088925},\n\t\t{2190, -0.5538534604592188},\n\t\t{2191, 2.7272040595816227},\n\t\t{2192, 2.8731812196824933},\n\t\t{2193, 1.2165560744841413},\n\t\t{2194, 0.41035729865131626},\n\t\t{2195, 2.147259676421221},\n\t\t{2196, 1.275899654078085},\n\t\t{2197, 8.013359256287037},\n\t\t{2198, 2.517809027245013},\n\t\t{2199, 2.8821075257154205},\n\t\t{2200, 1.8353697271417064},\n\t\t{2201, 2.058767106843514},\n\t\t{2202, -0.5818238004761849},\n\t\t{2203, -0.7854485514076848},\n\t\t{2204, 0.2446762635500409},\n\t\t{2205, 0.20360971065496444},\n\t\t{2206, -2.5141070905219083},\n\t\t{2207, -1.2399137721719091},\n\t\t{2208, 0.7295117610398828},\n\t\t{2209, 2.544442798251788},\n\t\t{2210, 3.6765981304373727},\n\t\t{2211, 1.8575196326843737},\n\t\t{2212, -0.61895896515988},\n\t\t{2213, -0.4784736503009458},\n\t\t{2214, 4.892172164934781},\n\t\t{2215, 4.046978517067679},\n\t\t{2216, 1.75190114974783},\n\t\t{2217, -2.7699050530316},\n\t\t{2218, -2.8790895075121004},\n\t\t{2219, -2.8888732909592783},\n\t\t{2220, -0.29056142670269536},\n\t\t{2221, 3.519856760525575},\n\t\t{2222, 0.40248648861216707},\n\t\t{2223, -0.4208394031921321},\n\t\t{2224, 0.2637138917993353},\n\t\t{2225, -3.85405040131762},\n\t\t{2226, -4.7612786216268885},\n\t\t{2227, -4.812868673936585},\n\t\t{2228, -2.700000689104999},\n\t\t{2229, 3.6668602427948267},\n\t\t{2230, 1.4872445356599924},\n\t\t{2231, 1.483680774648931},\n\t\t{2232, 0.43687266061373176},\n\t\t{2233, 1.7222876305475356},\n\t\t{2234, 3.392638647603307},\n\t\t{2235, 0.9712328977019},\n\t\t{2236, 2.4719815269750693},\n\t\t{2237, 0.7395008419626804},\n\t\t{2238, 0.4536244132396775},\n\t\t{2239, 0.20852741013854126},\n\t\t{2240, -0.7039084318734519},\n\t\t{2241, 1.0693899739672617},\n\t\t{2242, 0.4633646798319709},\n\t\t{2243, -0.25925453814005883},\n\t\t{2244, 1.3218747595984262},\n\t\t{2245, 0.5232862684783017},\n\t\t{2246, -0.48101217420693854},\n\t\t{2247, -0.1580205076636517},\n\t\t{2248, -1.4265255353679762},\n\t\t{2249, -1.2448135622026442},\n\t\t{2250, -1.0067365302296185},\n\t\t{2251, 2.0910080916752043},\n\t\t{2252, -2.7778873661537657},\n\t\t{2253, -0.009306325166254847},\n\t\t{2254, 0.5544717559451805},\n\t\t{2255, -3.196029777753724},\n\t\t{2256, 0.5509946778670918},\n\t\t{2257, 1.6584338583543548},\n\t\t{2258, 0.10174000446340159},\n\t\t{2259, -0.07306772268374886},\n\t\t{2260, 0.22481124847342135},\n\t\t{2261, 0.3192183543075873},\n\t\t{2262, -0.9380196204289794},\n\t\t{2263, -1.545382194685365},\n\t\t{2264, -0.18456344077390785},\n\t\t{2265, -2.630827555172676},\n\t\t{2266, -5.30829446836303},\n\t\t{2267, -1.8593905507615662},\n\t\t{2268, -0.6868909458645763},\n\t\t{2269, -0.7424490813510054},\n\t\t{2270, 0.16618445516520375},\n\t\t{2271, 0.6439790873872773},\n\t\t{2272, 2.406981184222743},\n\t\t{2273, 0.42522256742851483},\n\t\t{2274, 3.8059283428756947},\n\t\t{2275, 1.5558485391864694},\n\t\t{2276, -2.9441148129280004},\n\t\t{2277, -3.76697299468376},\n\t\t{2278, -1.7572308797460063},\n\t\t{2279, -1.3547730857166251},\n\t\t{2280, -0.4322706557549671},\n\t\t{2281, -4.514902307613175},\n\t\t{2282, 0.8170221994994225},\n\t\t{2283, 1.519459463243293},\n\t\t{2284, -2.0516281628868622},\n\t\t{2285, -3.2778607038182046},\n\t\t{2286, 9.380269842924411},\n\t\t{2287, 0.8208196518085042},\n\t\t{2288, -1.3383710614437179},\n\t\t{2289, -1.6549207897208662},\n\t\t{2290, -0.6689780526481571},\n\t\t{2291, -0.3373529414358622},\n\t\t{2292, -1.2839495741767135},\n\t\t{2293, -1.2035930102523464},\n\t\t{2294, -0.505097179019797},\n\t\t{2295, -0.25730162611428004},\n\t\t{2296, 1.53361864196592},\n\t\t{2297, -0.6156261764276424},\n\t\t{2298, 1.8719190124342617},\n\t\t{2299, 0.5092350731326171},\n\t\t{2300, 1.7097949220881752},\n\t\t{2301, 0.6064762442462821},\n\t\t{2302, 0.25482631231420155},\n\t\t{2303, -3.9540567228048142},\n\t\t{2304, -1.045385795114054},\n\t\t{2305, -0.8369893396351336},\n\t\t{2306, -0.3172214892523457},\n\t\t{2307, 2.5747604916540796},\n\t\t{2308, 4.776239681250443},\n\t\t{2309, 1.539887380695463},\n\t\t{2310, -1.0144360720869146},\n\t\t{2311, -2.364609607121339},\n\t\t{2312, -1.636459645507577},\n\t\t{2313, -0.6553903602441644},\n\t\t{2314, -3.199295351129731},\n\t\t{2315, 3.2839436740562187},\n\t\t{2316, 2.2077169508799868},\n\t\t{2317, 0.9479276877254036},\n\t\t{2318, -1.93579570090396},\n\t\t{2319, -4.081403959529948},\n\t\t{2320, -6.53430857383653},\n\t\t{2321, -2.358017446181436},\n\t\t{2322, 2.368681397730067},\n\t\t{2323, 2.187774845783552},\n\t\t{2324, 0.6492435977478925},\n\t\t{2325, 2.9970989970499806},\n\t\t{2326, 1.285548305490472},\n\t\t{2327, 7.498616630878812},\n\t\t{2328, 1.285305288115088},\n\t\t{2329, -0.959914985200094},\n\t\t{2330, -3.0369623716964207},\n\t\t{2331, -2.092263380055835},\n\t\t{2332, -0.5826025145790976},\n\t\t{2333, 0.7060632825669202},\n\t\t{2334, -1.976766338490524},\n\t\t{2335, 6.183174327475902},\n\t\t{2336, 2.467911218855738},\n\t\t{2337, 1.1493599611201304},\n\t\t{2338, -1.833326068108682},\n\t\t{2339, -3.4193260851893594},\n\t\t{2340, -9.90288231308415},\n\t\t{2341, -4.632311720157663},\n\t\t{2342, -8.456405887605541},\n\t\t{2343, -3.04837385086767},\n\t\t{2344, -6.3534748749040375},\n\t\t{2345, -2.508770502586404},\n\t\t{2346, -1.2108866839127876},\n\t\t{2347, -2.324380350873942},\n\t\t{2348, -2.3891308657963632},\n\t\t{2349, -1.6045933420792766},\n\t\t{2350, 1.9274169991379195},\n\t\t{2351, 0.9882205196217104},\n\t\t{2352, 2.4818559721915725},\n\t\t{2353, -0.25822336408482516},\n\t\t{2354, 0.3871376405500784},\n\t\t{2355, -6.935371057349963},\n\t\t{2356, -3.0606131547243627},\n\t\t{2357, -3.1423089276609293},\n\t\t{2358, -4.4525305471334296},\n\t\t{2359, -2.6549302172879434},\n\t\t{2360, 1.003618459931597},\n\t\t{2361, 1.752717735051477},\n\t\t{2362, 1.948928627459105},\n\t\t{2363, 0.9331198978702255},\n\t\t{2364, -1.8593460110866544},\n\t\t{2365, -1.5840759854428956},\n\t\t{2366, -0.8345982092001061},\n\t\t{2367, 2.4506034485851673},\n\t\t{2368, 1.827358341220378},\n\t\t{2369, 2.1354476936649975},\n\t\t{2370, 11.167118584430359},\n\t\t{2371, 2.6556564672947203},\n\t\t{2372, 1.5116797668674429},\n\t\t{2373, 2.146936170440836},\n\t\t{2374, -1.8886478527979849},\n\t\t{2375, -0.6244179842963303},\n\t\t{2376, 0.9545697710159557},\n\t\t{2377, -0.7967060758082687},\n\t\t{2378, 0.31351157395672863},\n\t\t{2379, -0.9077894542342008},\n\t\t{2380, -0.9442634892287118},\n\t\t{2381, -6.123530886119469},\n\t\t{2382, -2.998684071931041},\n\t\t{2383, -1.1128586725186216},\n\t\t{2384, 2.346791263302618},\n\t\t{2385, 6.519126857201609},\n\t\t{2386, -0.7513315383326851},\n\t\t{2387, 0.5609916185396582},\n\t\t{2388, 5.871005890699055},\n\t\t{2389, 3.317319950771305},\n\t\t{2390, 6.924506712140568},\n\t\t{2391, 2.4616764242847013},\n\t\t{2392, 0.014864713079566827},\n\t\t{2393, 1.1600764055157788},\n\t\t{2394, 0.6126162930676882},\n\t\t{2395, 3.31680123848806},\n\t\t{2396, 1.3539507295098638},\n\t\t{2397, 1.1316995947339983},\n\t\t{2398, -0.5197218743835353},\n\t\t{2399, -0.17664324224761538},\n\t\t{2400, -0.34737194585942927},\n\t\t{2401, -0.4030027326989405},\n\t\t{2402, -0.11016169318278628},\n\t\t{2403, 0.25760128211934175},\n\t\t{2404, -0.8619465356136948},\n\t\t{2405, -1.0623273682922427},\n\t\t{2406, -0.06372624073730665},\n\t\t{2407, -1.2762452565222377},\n\t\t{2408, 0.07483281325225144},\n\t\t{2409, 0.015489318543038616},\n\t\t{2410, -0.47960624617290654},\n\t\t{2411, -1.190036261916962},\n\t\t{2412, 2.613050313128902},\n\t\t{2413, -0.7801029162937076},\n\t\t{2414, -1.9152449191615075},\n\t\t{2415, -1.0807747793483218},\n\t\t{2416, -0.09820882581060247},\n\t\t{2417, -1.3029275675693608},\n\t\t{2418, -0.8720637124499631},\n\t\t{2419, 1.9923899617172278},\n\t\t{2420, 1.2331625625856524},\n\t\t{2421, -0.29252569796470773},\n\t\t{2422, 1.6096985097904903},\n\t\t{2423, 0.6557301672762174},\n\t\t{2424, -2.1069832099337953},\n\t\t{2425, -2.3403481065947607},\n\t\t{2426, -1.4360298970556964},\n\t\t{2427, 2.9243967261364743},\n\t\t{2428, 2.5175576452294104},\n\t\t{2429, 1.9895456754699548},\n\t\t{2430, -0.2949414286212606},\n\t\t{2431, 0.2523436142415772},\n\t\t{2432, 0.3608759126057654},\n\t\t{2433, 0.8822148191532098},\n\t\t{2434, 1.918001790319565},\n\t\t{2435, 1.488805396353943},\n\t\t{2436, 2.727072438816257},\n\t\t{2437, 1.8625001636966851},\n\t\t{2438, 0.24466601103967545},\n\t\t{2439, 0.4535609359171422},\n\t\t{2440, -0.03404206377320934},\n\t\t{2441, -1.7893095585369914},\n\t\t{2442, -1.0486419732889998},\n\t\t{2443, -4.78531546043221},\n\t\t{2444, -2.7534896498934023},\n\t\t{2445, -4.370951476742899},\n\t\t{2446, -0.1266705110245716},\n\t\t{2447, -5.722890494739227},\n\t\t{2448, -0.16013186554584724},\n\t\t{2449, -5.791395441010053},\n\t\t{2450, 0.35097690188923014},\n\t\t{2451, 1.070598000292344},\n\t\t{2452, 0.4085791197541224},\n\t\t{2453, 1.7385041906017729},\n\t\t{2454, 0.5992859532108158},\n\t\t{2455, 2.8299392934973016},\n\t\t{2456, 0.9164147831629301},\n\t\t{2457, -3.1228604072045543},\n\t\t{2458, -6.343226530986285},\n\t\t{2459, -0.7898481725938786},\n\t\t{2460, -1.528039239662501},\n\t\t{2461, 1.2117178673527835},\n\t\t{2462, -0.5190738864279494},\n\t\t{2463, -0.44277631607498735},\n\t\t{2464, -0.06503769768798741},\n\t\t{2465, -2.994407217775744},\n\t\t{2466, 0.06562334148780247},\n\t\t{2467, 0.00829164438526896},\n\t\t{2468, 4.485005058532328},\n\t\t{2469, 5.019932959093665},\n\t\t{2470, 0.42421695331849296},\n\t\t{2471, 3.375520493164291},\n\t\t{2472, 0.3121561957337018},\n\t\t{2473, 1.314394049759347},\n\t\t{2474, 1.9689969373525165},\n\t\t{2475, 0.29078494521141424},\n\t\t{2476, 5.656498222213303},\n\t\t{2477, 3.9271067455728286},\n\t\t{2478, -5.702918252681913},\n\t\t{2479, -3.7358381978063173},\n\t\t{2480, -1.156154426517952},\n\t\t{2481, 1.0847010488725808},\n\t\t{2482, 0.6155746797189414},\n\t\t{2483, 1.4117934454124488},\n\t\t{2484, 0.5546134267570109},\n\t\t{2485, 7.493490832748605},\n\t\t{2486, 2.834163261993176},\n\t\t{2487, 1.4262535512086183},\n\t\t{2488, 4.312782541430438},\n\t\t{2489, 0.21078481992274933},\n\t\t{2490, -0.6523763933795719},\n\t\t{2491, -4.710987165559514},\n\t\t{2492, -4.308470489552351},\n\t\t{2493, 1.5177338551051975},\n\t\t{2494, 3.336664030610239},\n\t\t{2495, 1.03748289139169},\n\t\t{2496, 1.2886337540299508},\n\t\t{2497, 0.10572391228256711},\n\t\t{2498, -1.1879926811762098},\n\t\t{2499, -2.3753679747529395},\n\t\t{2500, -1.094615354204732},\n\t\t{2501, 0.2790146560820532},\n\t\t{2502, 1.61663006516697},\n\t\t{2503, -1.0031720564440296},\n\t\t{2504, -0.3888113058180892},\n\t\t{2505, 0.6876922550406408},\n\t\t{2506, 3.0378824631375965},\n\t\t{2507, -5.86485412208614},\n\t\t{2508, -2.062572711791141},\n\t\t{2509, -0.2236206974772349},\n\t\t{2510, -0.17915145534715995},\n\t\t{2511, 0.7722103057774081},\n\t\t{2512, 0.2765284523809051},\n\t\t{2513, 2.1402751548586476},\n\t\t{2514, -1.6638648935469273},\n\t\t{2515, -0.6732191088640509},\n\t\t{2516, 2.9828012673380524},\n\t\t{2517, 0.7888722922331073},\n\t\t{2518, 0.6988685284029765},\n\t\t{2519, 5.432087439546415},\n\t\t{2520, 3.2069994037635734},\n\t\t{2521, 3.6026811262245566},\n\t\t{2522, -5.22340177685686},\n\t\t{2523, -1.3028167869980414},\n\t\t{2524, 0.6323959761440688},\n\t\t{2525, 1.2891945857629041},\n\t\t{2526, -1.2132949069858956},\n\t\t{2527, 0.8421039027682831},\n\t\t{2528, -1.2514778913693079},\n\t\t{2529, 5.758075143172992},\n\t\t{2530, 0.5330895110898546},\n\t\t{2531, 0.029475108824590424},\n\t\t{2532, -0.3434026292511491},\n\t\t{2533, 0.2960957010064031},\n\t\t{2534, -0.08423789931672701},\n\t\t{2535, -1.9792095789913915},\n\t\t{2536, -0.8319122870372051},\n\t\t{2537, 2.1657310283113302},\n\t\t{2538, 1.2555174211929843},\n\t\t{2539, -2.886645397070607},\n\t\t{2540, -0.29167662784616477},\n\t\t{2541, 0.32315877458149983},\n\t\t{2542, -0.521942666131929},\n\t\t{2543, 0.9706135477248169},\n\t\t{2544, 2.3137307055346263},\n\t\t{2545, -1.2788039357786327},\n\t\t{2546, -1.736665882552293},\n\t\t{2547, -1.730425962630914},\n\t\t{2548, -0.5913989882922093},\n\t\t{2549, -2.034501508116309},\n\t\t{2550, -1.0021745030550777},\n\t\t{2551, -0.3523307400407339},\n\t\t{2552, 2.778247649752519},\n\t\t{2553, 3.0335727324452133},\n\t\t{2554, 1.0707673377200715},\n\t\t{2555, 0.1328317084037181},\n\t\t{2556, 1.4975943590754541},\n\t\t{2557, 0.5579250381106804},\n\t\t{2558, -5.28142392668464},\n\t\t{2559, -1.9010141724177654},\n\t\t{2560, 2.4425499447804695},\n\t\t{2561, 2.047179685081415},\n\t\t{2562, -6.579599611432589},\n\t\t{2563, -3.8417602101669504},\n\t\t{2564, -3.466765061613761},\n\t\t{2565, -1.361628226737223},\n\t\t{2566, 0.36042109647066833},\n\t\t{2567, 0.06481537066496079},\n\t\t{2568, -7.169338799589761},\n\t\t{2569, -3.6283795132684244},\n\t\t{2570, -1.834772544723884},\n\t\t{2571, -5.21027363841999},\n\t\t{2572, -5.151623445123411},\n\t\t{2573, -4.749705886318473},\n\t\t{2574, -1.6164471288743343},\n\t\t{2575, 2.1317114566582434},\n\t\t{2576, -2.6973371554574896},\n\t\t{2577, -0.6093231635829994},\n\t\t{2578, -5.919356347489001},\n\t\t{2579, -5.115197236390259},\n\t\t{2580, -2.0249228847283316},\n\t\t{2581, -0.6710361991216449},\n\t\t{2582, -0.5957541240792815},\n\t\t{2583, 1.3860058531961412},\n\t\t{2584, 0.518879098620981},\n\t\t{2585, 2.280522947931778},\n\t\t{2586, 7.031952352627274},\n\t\t{2587, 3.2464240363409815},\n\t\t{2588, 0.787353612042264},\n\t\t{2589, 3.8069899298667513},\n\t\t{2590, 2.518233733068578},\n\t\t{2591, 1.7397715396786007},\n\t\t{2592, -0.4466150895022878},\n\t\t{2593, -0.7628207565931057},\n\t\t{2594, -2.818478375016418},\n\t\t{2595, 0.7203815180821611},\n\t\t{2596, -6.086142237136778},\n\t\t{2597, -2.7301471558226975},\n\t\t{2598, -1.1227396225080026},\n\t\t{2599, 3.6919535042821003},\n\t\t{2600, -1.2241345621669004},\n\t\t{2601, -0.01278744669635451},\n\t\t{2602, 0.2230127385025658},\n\t\t{2603, 0.0317901027506237},\n\t\t{2604, -0.4332071879192148},\n\t\t{2605, -0.06760985050759744},\n\t\t{2606, -1.2476957287553347},\n\t\t{2607, -0.49409711846678517},\n\t\t{2608, 0.9007326910768805},\n\t\t{2609, -1.1667544632688642},\n\t\t{2610, 1.842176574999661},\n\t\t{2611, 0.6977969482251878},\n\t\t{2612, 1.4598969916395697},\n\t\t{2613, 0.5783100274308494},\n\t\t{2614, 0.8919402932890941},\n\t\t{2615, -0.2981414579022361},\n\t\t{2616, 0.6103415937009841},\n\t\t{2617, 2.8454061438466023},\n\t\t{2618, -0.14139726570783062},\n\t\t{2619, -4.687415340950194},\n\t\t{2620, -2.5480221996232446},\n\t\t{2621, -11.479809387898252},\n\t\t{2622, -8.723284761210696},\n\t\t{2623, -6.550102394618799},\n\t\t{2624, -5.87969475153505},\n\t\t{2625, -1.9651884138580626},\n\t\t{2626, 2.0417213960196987},\n\t\t{2627, -0.055372954198546376},\n\t\t{2628, 0.21832564812333977},\n\t\t{2629, 1.0089347734452803},\n\t\t{2630, -0.8727334847696173},\n\t\t{2631, -1.5746296332905785},\n\t\t{2632, -3.0789136601287903},\n\t\t{2633, -1.5133562649256422},\n\t\t{2634, 2.3454763372338028},\n\t\t{2635, -1.7901019209899913},\n\t\t{2636, 0.7094094038990466},\n\t\t{2637, 5.317431896905036},\n\t\t{2638, 1.5621579403580534},\n\t\t{2639, -0.10123049744212842},\n\t\t{2640, 3.475999438167371},\n\t\t{2641, 0.6539220561007664},\n\t\t{2642, 1.5480858560041113},\n\t\t{2643, 2.2950959905294455},\n\t\t{2644, 0.42818915211387365},\n\t\t{2645, 1.2164016615556192},\n\t\t{2646, 1.0272390193522787},\n\t\t{2647, 1.436328299260126},\n\t\t{2648, -0.23643319932104156},\n\t\t{2649, 1.065681762839583},\n\t\t{2650, 1.054063255878005},\n\t\t{2651, 0.7602961503702268},\n\t\t{2652, -1.6131733707145801},\n\t\t{2653, 0.07540802328336427},\n\t\t{2654, 0.1752586879231756},\n\t\t{2655, 0.3421440163255895},\n\t\t{2656, 2.5511089008653083},\n\t\t{2657, 3.1208644970901105},\n\t\t{2658, 2.0930801902907046},\n\t\t{2659, 0.8764554308869623},\n\t\t{2660, 0.5985826318541073},\n\t\t{2661, 0.12984715200448},\n\t\t{2662, -4.779230879176144},\n\t\t{2663, -4.061120189950192},\n\t\t{2664, 0.5566476339823927},\n\t\t{2665, -1.4582793854193157},\n\t\t{2666, 0.8844858153473883},\n\t\t{2667, -0.1549834109811612},\n\t\t{2668, -2.118834806567754},\n\t\t{2669, 6.025250957638738},\n\t\t{2670, 3.1228448058697986},\n\t\t{2671, 1.70431470031208},\n\t\t{2672, 0.9433824590278245},\n\t\t{2673, -0.5485915805817524},\n\t\t{2674, -0.19360002569650636},\n\t\t{2675, 0.3937255673223166},\n\t\t{2676, -2.3822146259024173},\n\t\t{2677, -0.9168567601187981},\n\t\t{2678, -0.49997214454687744},\n\t\t{2679, 0.02654877584535581},\n\t\t{2680, -5.903752734706935},\n\t\t{2681, -8.871137060394659},\n\t\t{2682, -7.347965694424206},\n\t\t{2683, -2.4345393339062773},\n\t\t{2684, -1.040192347184557},\n\t\t{2685, -1.9702194272642157},\n\t\t{2686, -1.64612370344563},\n\t\t{2687, -0.4353414455424328},\n\t\t{2688, -1.9870276075295634},\n\t\t{2689, 0.5816778680737054},\n\t\t{2690, 4.185613487910101},\n\t\t{2691, 3.0481890776634177},\n\t\t{2692, -0.014118486172473244},\n\t\t{2693, -6.42966078269949},\n\t\t{2694, -3.6837314775594843},\n\t\t{2695, -0.9804354634735839},\n\t\t{2696, 3.9241926196540904},\n\t\t{2697, 1.819983190433026},\n\t\t{2698, -0.8414566830424961},\n\t\t{2699, -1.7607634175891935},\n\t\t{2700, 2.771281063927651},\n\t\t{2701, 1.128586824243509},\n\t\t{2702, -0.03642992213462515},\n\t\t{2703, 3.2735706006720875},\n\t\t{2704, 0.49901313661046987},\n\t\t{2705, -2.2489969780536274},\n\t\t{2706, 1.4131622747345793},\n\t\t{2707, -3.457546420579296},\n\t\t{2708, -3.487274802697844},\n\t\t{2709, 1.7054667687943108},\n\t\t{2710, -1.015962536849444},\n\t\t{2711, -0.8692863169283973},\n\t\t{2712, -1.5902530286299177},\n\t\t{2713, -4.072821335514558},\n\t\t{2714, -0.19949445669763355},\n\t\t{2715, 2.089910006794851},\n\t\t{2716, -1.5779826145558589},\n\t\t{2717, 4.504799675650527},\n\t\t{2718, -0.049293049299998115},\n\t\t{2719, -1.0920286761343985},\n\t\t{2720, -0.1457403420485937},\n\t\t{2721, 3.5913896309960545},\n\t\t{2722, 3.1568439056435293},\n\t\t{2723, 1.7185477697817308},\n\t\t{2724, -2.0889614919548594},\n\t\t{2725, 5.363630653790146},\n\t\t{2726, -1.100402528958441},\n\t\t{2727, -4.009785928202986},\n\t\t{2728, -4.136594136239643},\n\t\t{2729, -2.8817185584518814},\n\t\t{2730, -1.325034331923308},\n\t\t{2731, 1.1025273550231933},\n\t\t{2732, -1.3039324966349726},\n\t\t{2733, 3.3827539442515775},\n\t\t{2734, -2.0183327021262527},\n\t\t{2735, -2.2166014757352195},\n\t\t{2736, -5.522290009343159},\n\t\t{2737, 0.4914540027299177},\n\t\t{2738, 0.327476817679055},\n\t\t{2739, 1.5522211667538337},\n\t\t{2740, 1.4686507171232916},\n\t\t{2741, -4.260449710167407},\n\t\t{2742, -1.576246723699202},\n\t\t{2743, 1.0384925451828213},\n\t\t{2744, 1.3881143965392235},\n\t\t{2745, 1.6397578354854767},\n\t\t{2746, -1.9312025332764704},\n\t\t{2747, -2.7326261301401438},\n\t\t{2748, -9.74022899781386},\n\t\t{2749, -3.7780863854327746},\n\t\t{2750, 2.3156614191944263},\n\t\t{2751, -0.7921435977967175},\n\t\t{2752, 1.8264088975526556},\n\t\t{2753, 1.3846978748918695},\n\t\t{2754, 0.23259430458253832},\n\t\t{2755, -2.0563850069148755},\n\t\t{2756, -4.796231508265559},\n\t\t{2757, -2.6468602428925463},\n\t\t{2758, -1.2144762982458714},\n\t\t{2759, -0.11718425665772159},\n\t\t{2760, -1.3761433750147183},\n\t\t{2761, -8.858367793483852},\n\t\t{2762, -0.3014127020995758},\n\t\t{2763, 0.7607724896482395},\n\t\t{2764, 0.3026573215043018},\n\t\t{2765, 0.4540139920233084},\n\t\t{2766, 1.0225942556134076},\n\t\t{2767, -3.565260742140125},\n\t\t{2768, -1.0873770880213225},\n\t\t{2769, -1.0232305806453026},\n\t\t{2770, -0.21184656609450842},\n\t\t{2771, -0.10195136073133615},\n\t\t{2772, 0.8553482199401655},\n\t\t{2773, -0.7309870737654864},\n\t\t{2774, 0.8790815659495539},\n\t\t{2775, 0.05744497342632776},\n\t\t{2776, 0.5823586651573369},\n\t\t{2777, -0.7823636768283317},\n\t\t{2778, -2.9476104086034183},\n\t\t{2779, 0.40815734484273136},\n\t\t{2780, 0.4758091496783761},\n\t\t{2781, 0.4299970460702908},\n\t\t{2782, 1.2693917708776647},\n\t\t{2783, -3.588897741578766},\n\t\t{2784, -0.005557342794870523},\n\t\t{2785, -1.1718558556828516},\n\t\t{2786, -0.6704625123256684},\n\t\t{2787, -4.903376919823369},\n\t\t{2788, -1.9015966028492886},\n\t\t{2789, -0.708875212834064},\n\t\t{2790, -4.041787286034525},\n\t\t{2791, -0.11270571754714798},\n\t\t{2792, -0.22559697830740735},\n\t\t{2793, -0.3271446275816067},\n\t\t{2794, -3.0206054043327577},\n\t\t{2795, 1.9658336562476082},\n\t\t{2796, -2.1327629688259697},\n\t\t{2797, -0.28955055026934073},\n\t\t{2798, -1.642638576468148},\n\t\t{2799, 1.0327860271974805},\n\t\t{2800, 0.3706422515095},\n\t\t{2801, -3.6703980853955125},\n\t\t{2802, -3.9897990268255557},\n\t\t{2803, 1.1941360268050234},\n\t\t{2804, 0.3838906499169208},\n\t\t{2805, -2.255394423328145},\n\t\t{2806, -4.458104195088911},\n\t\t{2807, -1.7158987462637303},\n\t\t{2808, -1.4818418557740303},\n\t\t{2809, 0.5797863919084156},\n\t\t{2810, 0.23076029501218268},\n\t\t{2811, 0.5052177941203301},\n\t\t{2812, -1.9986590329136023},\n\t\t{2813, -3.968035382374734},\n\t\t{2814, -7.953246281514676},\n\t\t{2815, -3.793771801581811},\n\t\t{2816, -1.6625584477400954},\n\t\t{2817, -0.5084816047447149},\n\t\t{2818, -0.28681806372203905},\n\t\t{2819, -0.2824814775537562},\n\t\t{2820, 2.4063273278208315},\n\t\t{2821, 1.4708671716228383},\n\t\t{2822, 0.8373129738118636},\n\t\t{2823, -1.8638886560051886},\n\t\t{2824, -1.9104465033068148},\n\t\t{2825, -1.4702468278041714},\n\t\t{2826, -0.25146669950275624},\n\t\t{2827, 0.055133433859721886},\n\t\t{2828, -3.4863735171524137},\n\t\t{2829, -4.21848627708564},\n\t\t{2830, -1.6104946435951233},\n\t\t{2831, -1.145134063622684},\n\t\t{2832, 0.4685413738988973},\n\t\t{2833, 0.21215524203740682},\n\t\t{2834, -0.9501992988031602},\n\t\t{2835, -1.629383276145903},\n\t\t{2836, -0.7477598454918031},\n\t\t{2837, -0.6194687594949355},\n\t\t{2838, 0.6021113574752421},\n\t\t{2839, 4.734526685917843},\n\t\t{2840, -1.6506224282768298},\n\t\t{2841, -0.2791023757333173},\n\t\t{2842, 2.483955781874896},\n\t\t{2843, 1.0134730782207357},\n\t\t{2844, 2.428093845057015},\n\t\t{2845, 1.2139270578621937},\n\t\t{2846, 4.1254603721763585},\n\t\t{2847, 3.5031485660937127},\n\t\t{2848, 0.307767027692335},\n\t\t{2849, 2.1634856793283364},\n\t\t{2850, -0.5971658568728271},\n\t\t{2851, -3.721801081774384},\n\t\t{2852, -9.280662970044725},\n\t\t{2853, -4.280007111561263},\n\t\t{2854, -2.0689574616659394},\n\t\t{2855, -0.7777944683055574},\n\t\t{2856, -0.056838040579720306},\n\t\t{2857, -0.53915029394585},\n\t\t{2858, -0.2336452825335895},\n\t\t{2859, -2.122185345135698},\n\t\t{2860, -0.9975515408657263},\n\t\t{2861, 1.6471723385674126},\n\t\t{2862, 0.4282359736896837},\n\t\t{2863, -0.47309707592969297},\n\t\t{2864, -3.399919275731638},\n\t\t{2865, 1.5175701785360147},\n\t\t{2866, 1.499422461204661},\n\t\t{2867, -0.2079167302254621},\n\t\t{2868, -5.007068142903045},\n\t\t{2869, -2.036982990632476},\n\t\t{2870, -3.6427127222780293},\n\t\t{2871, -1.5726862777209611},\n\t\t{2872, -5.477396034425059},\n\t\t{2873, -8.69818323074708},\n\t\t{2874, -0.5553131554485855},\n\t\t{2875, -1.2941733175310082},\n\t\t{2876, -0.2863423988831974},\n\t\t{2877, -2.163255263418175},\n\t\t{2878, 0.1256951695918258},\n\t\t{2879, -5.117952967026661},\n\t\t{2880, -0.1458141952484675},\n\t\t{2881, 0.06910209538562319},\n\t\t{2882, -1.0390459318495051},\n\t\t{2883, -0.4778020449712107},\n\t\t{2884, 0.7354348492957297},\n\t\t{2885, -0.7908795145609446},\n\t\t{2886, -0.30319166149249865},\n\t\t{2887, 0.01251056425572393},\n\t\t{2888, -0.7016224559059285},\n\t\t{2889, 0.9168731510644221},\n\t\t{2890, 0.4753551795716026},\n\t\t{2891, 0.2683455247806897},\n\t\t{2892, 4.704720556722834},\n\t\t{2893, 3.891866176319808},\n\t\t{2894, 3.47755515191798},\n\t\t{2895, 3.0341682231555263},\n\t\t{2896, 6.872563087638162},\n\t\t{2897, 6.947281835122414},\n\t\t{2898, -0.741815214284546},\n\t\t{2899, -0.22338164651818482},\n\t\t{2900, 1.091386111563783},\n\t\t{2901, 1.165141999066148},\n\t\t{2902, 0.44739766502693},\n\t\t{2903, 0.02734914596380872},\n\t\t{2904, -1.2422567437270242},\n\t\t{2905, 0.8963931286455886},\n\t\t{2906, 0.13807517444276718},\n\t\t{2907, 0.7994874747310817},\n\t\t{2908, -0.3489606224853149},\n\t\t{2909, 5.9380528594876765},\n\t\t{2910, 5.042506145452073},\n\t\t{2911, 3.2985022864855864},\n\t\t{2912, -0.29155065113093337},\n\t\t{2913, 2.333163109838315},\n\t\t{2914, 0.7225165805078064},\n\t\t{2915, 0.8728843051463344},\n\t\t{2916, -0.21573641417559453},\n\t\t{2917, 0.6696935292265799},\n\t\t{2918, 0.8634268093891694},\n\t\t{2919, 0.6387493789922947},\n\t\t{2920, -1.066088047556552},\n\t\t{2921, 0.2870830625084744},\n\t\t{2922, 4.368042476483579},\n\t\t{2923, -0.134351119704486},\n\t\t{2924, -2.536381605980541},\n\t\t{2925, -0.831375436206817},\n\t\t{2926, -1.8641152546592674},\n\t\t{2927, 2.199788960825248},\n\t\t{2928, -6.693955043287469},\n\t\t{2929, -8.653962586832874},\n\t\t{2930, 0.8426799572847705},\n\t\t{2931, -0.8635455570726671},\n\t\t{2932, -0.43304011133499243},\n\t\t{2933, -3.6231206416054116},\n\t\t{2934, -0.21443564867919673},\n\t\t{2935, -0.35556853096643354},\n\t\t{2936, 1.4975677047897884},\n\t\t{2937, 1.9884593275498603},\n\t\t{2938, 5.59726078810444},\n\t\t{2939, 4.077303721134671},\n\t\t{2940, 0.902027035436961},\n\t\t{2941, -2.3836989520678946},\n\t\t{2942, -0.3575067245176966},\n\t\t{2943, 1.1562960013978785},\n\t\t{2944, 4.9951203638556},\n\t\t{2945, 3.392231602529498},\n\t\t{2946, 1.069286971622113},\n\t\t{2947, -1.8727101179139818},\n\t\t{2948, -1.5380782532999229},\n\t\t{2949, 1.4608659955389007},\n\t\t{2950, 0.8434628398637047},\n\t\t{2951, 3.454961594377814},\n\t\t{2952, 2.169254840779498},\n\t\t{2953, -0.6465362770127656},\n\t\t{2954, -3.001454364273441},\n\t\t{2955, -0.16378935329735445},\n\t\t{2956, 0.29467981372140506},\n\t\t{2957, 0.9773015926973174},\n\t\t{2958, 0.5846897233561579},\n\t\t{2959, 0.1949649100344332},\n\t\t{2960, 2.6520707064140465},\n\t\t{2961, 1.5620228849842217},\n\t\t{2962, -1.019638270163962},\n\t\t{2963, -1.4307766042829018},\n\t\t{2964, -2.2309021004915737},\n\t\t{2965, 1.8713225347712399},\n\t\t{2966, 3.308282618847436},\n\t\t{2967, 1.316064401463378},\n\t\t{2968, -0.17517731347318077},\n\t\t{2969, 0.05357352790932929},\n\t\t{2970, -0.20046884427478595},\n\t\t{2971, 2.4287126871785585},\n\t\t{2972, 0.4103209438701796},\n\t\t{2973, 4.629895252559033},\n\t\t{2974, 2.424224148450027},\n\t\t{2975, 0.8965357939000183},\n\t\t{2976, 2.318496786405469},\n\t\t{2977, -1.8494521649521138},\n\t\t{2978, -1.065455287881004},\n\t\t{2979, 0.4903567943394889},\n\t\t{2980, 0.19018077910596873},\n\t\t{2981, -4.82394303263925},\n\t\t{2982, -2.498122064279756},\n\t\t{2983, 2.660802259741359},\n\t\t{2984, 4.512935217504796},\n\t\t{2985, -1.6523391238435696},\n\t\t{2986, -4.99202933751446},\n\t\t{2987, -1.6857442903307478},\n\t\t{2988, -0.6605028867856009},\n\t\t{2989, 1.5936373857311834},\n\t\t{2990, -1.2981647872137374},\n\t\t{2991, -2.937490818056503},\n\t\t{2992, -0.6646705259802081},\n\t\t{2993, -1.5551974364281473},\n\t\t{2994, -1.653046545166242},\n\t\t{2995, -4.478946423892171},\n\t\t{2996, -2.046191721889008},\n\t\t{2997, 1.371271698280268},\n\t\t{2998, 0.5458322769901551},\n\t\t{2999, 0.005942356340884608},\n\t\t{3000, -0.021889156130614477},\n\t\t{3001, 0.6134669361336337},\n\t\t{3002, 0.59224448714449},\n\t\t{3003, 2.8033533789329135},\n\t\t{3004, 0.47127687368594073},\n\t\t{3005, -0.580282829702645},\n\t\t{3006, 0.08929618397126707},\n\t\t{3007, -3.9206243356281387},\n\t\t{3008, -4.867426535040597},\n\t\t{3009, -8.1174563661528},\n\t\t{3010, -1.7117671549357694},\n\t\t{3011, 1.8297340171058463},\n\t\t{3012, -0.08015933092771366},\n\t\t{3013, 0.2695439511462532},\n\t\t{3014, 0.10462876003729889},\n\t\t{3015, 0.06269144877200294},\n\t\t{3016, -6.7613848851497504},\n\t\t{3017, -2.7573050216405233},\n\t\t{3018, 4.4065126798220415},\n\t\t{3019, -0.24607973331714894},\n\t\t{3020, 0.873932316265579},\n\t\t{3021, 0.5314336597805744},\n\t\t{3022, 5.916624470840528},\n\t\t{3023, 4.6154567933921715},\n\t\t{3024, 2.0032235781044676},\n\t\t{3025, -1.2964828055712758},\n\t\t{3026, 0.6694503447123251},\n\t\t{3027, 0.9464854860298957},\n\t\t{3028, -2.553922631123597},\n\t\t{3029, 0.8139854160768611},\n\t\t{3030, 0.21184628370811365},\n\t\t{3031, 1.3691074160557315},\n\t\t{3032, 2.08559184731858},\n\t\t{3033, 0.7941314967055972},\n\t\t{3034, 1.8070735797330177},\n\t\t{3035, 0.25831466575710976},\n\t\t{3036, -2.167300372692259},\n\t\t{3037, -1.5120000137678618},\n\t\t{3038, 0.2917982668224993},\n\t\t{3039, 2.1438864514904954},\n\t\t{3040, 1.009518623335178},\n\t\t{3041, -0.18350701997622848},\n\t\t{3042, 0.5964384207474862},\n\t\t{3043, 0.24017634111824623},\n\t\t{3044, -1.3664224761006967},\n\t\t{3045, 1.3158646272421772},\n\t\t{3046, 0.8089182549742986},\n\t\t{3047, 2.012224508545627},\n\t\t{3048, 1.1016685335031176},\n\t\t{3049, -2.1032530129217197},\n\t\t{3050, 0.2415957663579016},\n\t\t{3051, 6.603661857470284},\n\t\t{3052, 4.722536879281861},\n\t\t{3053, -0.9188532692752507},\n\t\t{3054, -1.5495560068937317},\n\t\t{3055, 3.1200551841198414},\n\t\t{3056, 6.258008784111389},\n\t\t{3057, 2.5730879502652284},\n\t\t{3058, 0.5212699649366465},\n\t\t{3059, 0.75640586591271},\n\t\t{3060, 5.0936687649070995},\n\t\t{3061, -5.17013635249095},\n\t\t{3062, -2.5905790303768734},\n\t\t{3063, -2.787157322288717},\n\t\t{3064, 3.9001026059622497},\n\t\t{3065, 1.4686809384919934},\n\t\t{3066, 0.7848044357409844},\n\t\t{3067, -6.729824519456675},\n\t\t{3068, -2.901765043046497},\n\t\t{3069, -1.2162742478676174},\n\t\t{3070, -0.4225723348030648},\n\t\t{3071, -1.079539882989691},\n\t\t{3072, -2.301600022625738},\n\t\t{3073, -1.2197486525976933},\n\t\t{3074, -2.532802007599388},\n\t\t{3075, -1.701101581349481},\n\t\t{3076, -0.7396222623688208},\n\t\t{3077, 1.4226114922722812},\n\t\t{3078, 0.3411530858553503},\n\t\t{3079, 1.900405776862524},\n\t\t{3080, 0.8859082105599385},\n\t\t{3081, 0.30189466719240643},\n\t\t{3082, -0.08073282196283577},\n\t\t{3083, 0.33068267008817315},\n\t\t{3084, 0.48021460850021247},\n\t\t{3085, -2.6925990167762164},\n\t\t{3086, -1.4420260922575638},\n\t\t{3087, -0.8198984379874156},\n\t\t{3088, -0.8969272197905644},\n\t\t{3089, -0.9910802720556426},\n\t\t{3090, -0.2932561558964055},\n\t\t{3091, 0.42466525299806535},\n\t\t{3092, 2.5240774970621254},\n\t\t{3093, -1.6066494200545967},\n\t\t{3094, -1.0850536942635085},\n\t\t{3095, -4.636471326640537},\n\t\t{3096, -7.596887920058231},\n\t\t{3097, 0.11465166980345964},\n\t\t{3098, -1.8891126791392174},\n\t\t{3099, -1.9751699867030847},\n\t\t{3100, -3.1751514213694296},\n\t\t{3101, -0.9611889661723114},\n\t\t{3102, -4.2240533901527835},\n\t\t{3103, -2.920570786479122},\n\t\t{3104, -2.2563974811962124},\n\t\t{3105, -1.9911431908276187},\n\t\t{3106, -1.471262491920951},\n\t\t{3107, -7.233882407312646},\n\t\t{3108, -0.9812432329486742},\n\t\t{3109, -1.1345835328971505},\n\t\t{3110, 0.5506006412234994},\n\t\t{3111, -0.9319535960467329},\n\t\t{3112, -0.44257718999659845},\n\t\t{3113, 0.7649292874485628},\n\t\t{3114, 1.4189070453303227},\n\t\t{3115, 0.013682780472447531},\n\t\t{3116, 0.4453304390201259},\n\t\t{3117, 0.23072429684286838},\n\t\t{3118, -0.45457413551832543},\n\t\t{3119, -1.6269003205257244},\n\t\t{3120, -0.2168809116921543},\n\t\t{3121, 0.6823530912549468},\n\t\t{3122, 1.5691364939423453},\n\t\t{3123, -1.6525114644954848},\n\t\t{3124, 2.2999626651174756},\n\t\t{3125, 1.681233853755264},\n\t\t{3126, 7.4411888931211205},\n\t\t{3127, 2.8600648583309916},\n\t\t{3128, 0.015741475876890565},\n\t\t{3129, 0.06641145539379699},\n\t\t{3130, 0.16561637551356173},\n\t\t{3131, 5.7255477697068375},\n\t\t{3132, 0.9396120518607889},\n\t\t{3133, -5.843592958896051},\n\t\t{3134, 2.0373279219093217},\n\t\t{3135, 0.9255171996545122},\n\t\t{3136, 1.5387651536265383},\n\t\t{3137, 0.7734746025607809},\n\t\t{3138, -1.220235017285657},\n\t\t{3139, 3.8594057536703574},\n\t\t{3140, -3.9646837626434603},\n\t\t{3141, -1.3464501309343706},\n\t\t{3142, -1.1623802103107939},\n\t\t{3143, -0.26021831850718774},\n\t\t{3144, -0.27817132535068545},\n\t\t{3145, -1.0648016799279123},\n\t\t{3146, -1.3419451340211141},\n\t\t{3147, -0.22110719054434785},\n\t\t{3148, -0.6648196449121446},\n\t\t{3149, -0.6648349896858936},\n\t\t{3150, -0.4589808585786279},\n\t\t{3151, 1.822423477189921},\n\t\t{3152, 1.1706108216399547},\n\t\t{3153, -0.5893982156626945},\n\t\t{3154, 9.757573174589815},\n\t\t{3155, 11.301914954647897},\n\t\t{3156, 3.1184217168479753},\n\t\t{3157, 0.45558003098376587},\n\t\t{3158, 6.043824373186178},\n\t\t{3159, 1.6229384965620581},\n\t\t{3160, 1.567477448347181},\n\t\t{3161, -0.12905479133661002},\n\t\t{3162, -0.9677316472650409},\n\t\t{3163, -2.4284911517850025},\n\t\t{3164, -1.1310784334795847},\n\t\t{3165, -1.9029098719634414},\n\t\t{3166, -2.3121383810668372},\n\t\t{3167, -3.3869206136379475},\n\t\t{3168, -1.315944705126176},\n\t\t{3169, 0.016764854289352704},\n\t\t{3170, -4.597281137640761},\n\t\t{3171, -1.809411650071589},\n\t\t{3172, -0.05053167168292494},\n\t\t{3173, -0.14077855189943075},\n\t\t{3174, -0.946283544744339},\n\t\t{3175, -2.6432441306526098},\n\t\t{3176, -0.37385713584580726},\n\t\t{3177, -0.112025339113283},\n\t\t{3178, 1.2438402283317953},\n\t\t{3179, 0.7469360477167348},\n\t\t{3180, -2.553282799520712},\n\t\t{3181, -1.7508355623075782},\n\t\t{3182, 2.374392078904858},\n\t\t{3183, 1.049840870475472},\n\t\t{3184, -0.8412292145242308},\n\t\t{3185, -1.6438026107202877},\n\t\t{3186, 3.501613308865459},\n\t\t{3187, 2.820020443046028},\n\t\t{3188, 1.1876728708406252},\n\t\t{3189, 0.6965919451351277},\n\t\t{3190, -3.2139453866878256},\n\t\t{3191, -3.905929171434189},\n\t\t{3192, -5.687279299607525},\n\t\t{3193, -0.7248789865410732},\n\t\t{3194, -0.5724531183231758},\n\t\t{3195, -0.28437639886909216},\n\t\t{3196, -0.19749465362127966},\n\t\t{3197, -1.6349883264419576},\n\t\t{3198, -1.0785663997844335},\n\t\t{3199, -3.6737207007421038},\n\t\t{3200, -0.6663196505287051},\n\t\t{3201, -1.5442439523670262},\n\t\t{3202, -1.761647300681016},\n\t\t{3203, 2.9231669719969893},\n\t\t{3204, 4.849726594132493},\n\t\t{3205, 2.0693736032662637},\n\t\t{3206, 1.6592345178172296},\n\t\t{3207, 3.6989776122395615},\n\t\t{3208, 2.7454432206287125},\n\t\t{3209, 1.3259717389978052},\n\t\t{3210, 2.8048813940429076},\n\t\t{3211, 1.6466007965792189},\n\t\t{3212, -1.4421239426390573},\n\t\t{3213, 0.23856429328902062},\n\t\t{3214, 1.374935386377447},\n\t\t{3215, -1.369551864388458},\n\t\t{3216, -0.7308283336504797},\n\t\t{3217, -1.4206844775068834},\n\t\t{3218, -0.10963990411163987},\n\t\t{3219, 0.19497018259819865},\n\t\t{3220, -0.011753537951629159},\n\t\t{3221, 0.02136090514022639},\n\t\t{3222, 3.6333720542356507},\n\t\t{3223, -0.25547422217692795},\n\t\t{3224, -2.301892733950634},\n\t\t{3225, -0.8249512858502619},\n\t\t{3226, -0.24433811126608435},\n\t\t{3227, 0.23956878303343004},\n\t\t{3228, -2.3211986873178656},\n\t\t{3229, -0.8496337356615131},\n\t\t{3230, 1.2171397029400246},\n\t\t{3231, 3.218168461298179},\n\t\t{3232, 0.9018732908095002},\n\t\t{3233, 1.9342532718865273},\n\t\t{3234, 0.18749522279858644},\n\t\t{3235, 0.25325117811722886},\n\t\t{3236, 2.6557751830602743},\n\t\t{3237, -2.3663055588663076},\n\t\t{3238, -1.7268393934537039},\n\t\t{3239, -1.6363013891386577},\n\t\t{3240, -0.6547638136365955},\n\t\t{3241, -1.4777698841237814},\n\t\t{3242, -4.630028585861867},\n\t\t{3243, -2.8637642256343923},\n\t\t{3244, -4.232264768685361},\n\t\t{3245, 0.3010055659085549},\n\t\t{3246, 0.15540377267650218},\n\t\t{3247, 1.4389893984328834},\n\t\t{3248, 2.5546121896222065},\n\t\t{3249, 1.310049106011679},\n\t\t{3250, 0.06679864975632283},\n\t\t{3251, -0.2224707953487741},\n\t\t{3252, -0.8837789190237955},\n\t\t{3253, 0.10145267675204322},\n\t\t{3254, -0.8542916876352927},\n\t\t{3255, -0.28665507257198974},\n\t\t{3256, 0.46050585047116804},\n\t\t{3257, 0.7314462388653797},\n\t\t{3258, -4.549639766253245},\n\t\t{3259, 4.834701982846138},\n\t\t{3260, -3.3334490115060196},\n\t\t{3261, -0.72185911463243},\n\t\t{3262, 1.0992778888508903},\n\t\t{3263, -3.614681464520967},\n\t\t{3264, -2.288177944055445},\n\t\t{3265, -0.9037161745003117},\n\t\t{3266, -2.772010123623196},\n\t\t{3267, -0.6942963432754331},\n\t\t{3268, 0.14674930170337414},\n\t\t{3269, -0.4922051761586409},\n\t\t{3270, -3.09399224065798},\n\t\t{3271, -1.1961419386544727},\n\t\t{3272, 0.2865145722035036},\n\t\t{3273, 0.794105599482598},\n\t\t{3274, 1.188467845239849},\n\t\t{3275, 1.8127518783408376},\n\t\t{3276, -0.4746690010622917},\n\t\t{3277, 0.12077453597862242},\n\t\t{3278, -5.28395938452937},\n\t\t{3279, 1.639714665604051},\n\t\t{3280, -1.4393075572773382},\n\t\t{3281, -4.721419078972631},\n\t\t{3282, -1.7920040144368525},\n\t\t{3283, -1.5173170810140246},\n\t\t{3284, 1.7425218657932477},\n\t\t{3285, -0.6063318087728284},\n\t\t{3286, -1.4771862527008974},\n\t\t{3287, 0.38090120811096506},\n\t\t{3288, 1.9621688973051805},\n\t\t{3289, -3.2151574527926714},\n\t\t{3290, 3.921579427937406},\n\t\t{3291, 0.8522262740519965},\n\t\t{3292, 0.29858286728633976},\n\t\t{3293, 0.382013634168903},\n\t\t{3294, 2.6185909319504383},\n\t\t{3295, -0.28664952275206335},\n\t\t{3296, 0.21675753510010892},\n\t\t{3297, 0.03425218077967597},\n\t\t{3298, -0.04070483792528275},\n\t\t{3299, 0.04605325174367114},\n\t\t{3300, -0.837963271928355},\n\t\t{3301, 1.0496707599453088},\n\t\t{3302, -0.9119769623353375},\n\t\t{3303, 0.5563993203799009},\n\t\t{3304, -1.7468638628022155},\n\t\t{3305, -3.527281756557568},\n\t\t{3306, -1.0815097550867363},\n\t\t{3307, 0.4983546153095182},\n\t\t{3308, 1.2777178190411465},\n\t\t{3309, 3.302433769405343},\n\t\t{3310, 3.3347878356801646},\n\t\t{3311, 0.07743859540899045},\n\t\t{3312, -0.7304062587814399},\n\t\t{3313, -0.32974829469939426},\n\t\t{3314, -1.2277651270676229},\n\t\t{3315, 1.9194326778561845},\n\t\t{3316, 4.557973533323188},\n\t\t{3317, 2.9049794701968796},\n\t\t{3318, 1.7069903254979097},\n\t\t{3319, 0.014900999680489746},\n\t\t{3320, 0.359232733322449},\n\t\t{3321, -1.4895166606402215},\n\t\t{3322, -0.44446189579445916},\n\t\t{3323, 0.9420802126888999},\n\t\t{3324, 0.5940824283464141},\n\t\t{3325, 0.08227770291097797},\n\t\t{3326, -0.007913751505067984},\n\t\t{3327, -3.44850073113839},\n\t\t{3328, -1.1037844163914003},\n\t\t{3329, -0.8833883016746005},\n\t\t{3330, -0.23692071471592796},\n\t\t{3331, -1.4479259414637702},\n\t\t{3332, -1.3989708295021677},\n\t\t{3333, -0.7375778243106275},\n\t\t{3334, 3.441179924537405},\n\t\t{3335, 1.0144910924012736},\n\t\t{3336, -0.4720292137005732},\n\t\t{3337, -3.4392315261815805},\n\t\t{3338, -0.03813743017542759},\n\t\t{3339, -0.019536953093575216},\n\t\t{3340, 1.1845639121623557},\n\t\t{3341, 0.48224005420927957},\n\t\t{3342, 0.17010477968792756},\n\t\t{3343, -0.5878043634773589},\n\t\t{3344, 0.27492603156515605},\n\t\t{3345, 2.214362173983477},\n\t\t{3346, 0.43930430459527386},\n\t\t{3347, 2.3900130527791354},\n\t\t{3348, 1.4633748630598356},\n\t\t{3349, 1.9015932852067396},\n\t\t{3350, 0.7134666679626732},\n\t\t{3351, -1.3779273782321606},\n\t\t{3352, 3.3557498258870306},\n\t\t{3353, 1.5362283765911147},\n\t\t{3354, -0.803789819640666},\n\t\t{3355, -1.7851577744936489},\n\t\t{3356, -0.623733947090548},\n\t\t{3357, -0.29645932465283503},\n\t\t{3358, 1.6550341126123285},\n\t\t{3359, -0.5420083703048337},\n\t\t{3360, -1.6183585289614444},\n\t\t{3361, -0.5867243677861461},\n\t\t{3362, -0.04343336562009084},\n\t\t{3363, 2.4534104736510387},\n\t\t{3364, 4.160301001587996},\n\t\t{3365, 4.6168572057284685},\n\t\t{3366, 3.8579498564215644},\n\t\t{3367, 1.5257096356355018},\n\t\t{3368, 2.1599163501331504},\n\t\t{3369, 0.6049463969981193},\n\t\t{3370, -0.742965855868237},\n\t\t{3371, -2.972177090547649},\n\t\t{3372, -2.594909142580179},\n\t\t{3373, -0.906107390411771},\n\t\t{3374, 1.512108118926779},\n\t\t{3375, 1.2643535020912688},\n\t\t{3376, -2.9663855678247297},\n\t\t{3377, -1.7577474046486354},\n\t\t{3378, 0.3197108121355806},\n\t\t{3379, -1.3425438232056053},\n\t\t{3380, -0.9303367860079368},\n\t\t{3381, -0.7669858346184695},\n\t\t{3382, 0.31683659280229154},\n\t\t{3383, 0.6663792495854027},\n\t\t{3384, 0.7581243386273291},\n\t\t{3385, -1.294234375398452},\n\t\t{3386, 0.8574099487672004},\n\t\t{3387, 1.5448268911390846},\n\t\t{3388, 3.696855493047551},\n\t\t{3389, -0.33283905435911953},\n\t\t{3390, 2.3576584374338596},\n\t\t{3391, -2.094309715300025},\n\t\t{3392, -2.372401183017178},\n\t\t{3393, -1.491667361375127},\n\t\t{3394, -0.9182426494332743},\n\t\t{3395, -0.5668619249642253},\n\t\t{3396, -0.26827408961629773},\n\t\t{3397, -0.9489968106849853},\n\t\t{3398, 0.5219182241835842},\n\t\t{3399, -1.263439829398148},\n\t\t{3400, 1.4466405190786569},\n\t\t{3401, -0.00902702507022457},\n\t\t{3402, -1.6660122917071492},\n\t\t{3403, -0.6769869646011409},\n\t\t{3404, 0.5258550786280587},\n\t\t{3405, -0.3104575592757068},\n\t\t{3406, -0.19850360350652757},\n\t\t{3407, 2.303818208162693},\n\t\t{3408, 3.5217295411320433},\n\t\t{3409, -4.453591766367026},\n\t\t{3410, -2.6181050959873344},\n\t\t{3411, 0.8905377903316667},\n\t\t{3412, 1.8282777461920623},\n\t\t{3413, 1.35723814478877},\n\t\t{3414, 0.9164080061569506},\n\t\t{3415, -2.1016430296880735},\n\t\t{3416, 0.4052258840313093},\n\t\t{3417, 2.534329108346545},\n\t\t{3418, 0.447902221517246},\n\t\t{3419, -2.8947081033695183},\n\t\t{3420, -0.3612702282796464},\n\t\t{3421, 3.9439526694836093},\n\t\t{3422, 3.7302593688902803},\n\t\t{3423, 1.5779766290914872},\n\t\t{3424, -3.984050085807984},\n\t\t{3425, -1.678037382918316},\n\t\t{3426, -6.838972983218538},\n\t\t{3427, 1.9144706300644039},\n\t\t{3428, 2.0295962928738756},\n\t\t{3429, -1.5096599071465233},\n\t\t{3430, -0.6735166514124974},\n\t\t{3431, 0.6957713867547404},\n\t\t{3432, -1.1174833319895452},\n\t\t{3433, -0.7556752707704717},\n\t\t{3434, -0.3894017705533286},\n\t\t{3435, -3.327675686943565},\n\t\t{3436, -0.35332420499511297},\n\t\t{3437, -3.269675168663621},\n\t\t{3438, -1.1374963621711838},\n\t\t{3439, -0.10507551834010248},\n\t\t{3440, 0.24012493177409464},\n\t\t{3441, 1.0433239525692803},\n\t\t{3442, -3.457331834784135},\n\t\t{3443, -0.8419813526148783},\n\t\t{3444, -1.771794613807026},\n\t\t{3445, -0.5002542251675972},\n\t\t{3446, -1.0324364026857087},\n\t\t{3447, -1.2470030202791786},\n\t\t{3448, -1.241993304293668},\n\t\t{3449, -0.15031931254503045},\n\t\t{3450, 2.8077625878366277},\n\t\t{3451, 1.3102720890350639},\n\t\t{3452, 0.9900297677910657},\n\t\t{3453, -0.12514785268008055},\n\t\t{3454, -0.7611220477014748},\n\t\t{3455, 0.9952682149779505},\n\t\t{3456, 0.5141390084095174},\n\t\t{3457, 0.16364672080123516},\n\t\t{3458, -2.244745284504577},\n\t\t{3459, 2.482143184019395},\n\t\t{3460, 2.810907191784789},\n\t\t{3461, 0.5280419829620705},\n\t\t{3462, 4.02456469669884},\n\t\t{3463, 1.6627531031308167},\n\t\t{3464, 3.435877214413484},\n\t\t{3465, -2.828522333093734},\n\t\t{3466, -3.0116602601906846},\n\t\t{3467, -1.196464552964846},\n\t\t{3468, 1.773338371205283},\n\t\t{3469, -1.5609837461970595},\n\t\t{3470, 0.4656114009008133},\n\t\t{3471, -4.873443424350407},\n\t\t{3472, -1.5244178475368768},\n\t\t{3473, -1.5769679053043584},\n\t\t{3474, 5.3109211590756695},\n\t\t{3475, 3.2755563099190326},\n\t\t{3476, 1.5743265882749105},\n\t\t{3477, 1.1142770792861567},\n\t\t{3478, 0.3958727515723008},\n\t\t{3479, -0.4118125762660592},\n\t\t{3480, -1.2537467233047062},\n\t\t{3481, -3.466798042967472},\n\t\t{3482, -1.365985778452746},\n\t\t{3483, -0.42149124913148},\n\t\t{3484, -0.1742792788239082},\n\t\t{3485, -0.353226357439042},\n\t\t{3486, -0.8924737895572716},\n\t\t{3487, -4.676561869301092},\n\t\t{3488, 0.07933192150047352},\n\t\t{3489, -0.05975549314175007},\n\t\t{3490, 0.2866022425368644},\n\t\t{3491, -2.292922133073971},\n\t\t{3492, 4.6825643262642735},\n\t\t{3493, 2.7871771210756315},\n\t\t{3494, 0.7391955182403545},\n\t\t{3495, -0.3286925592677028},\n\t\t{3496, 0.9875390799583313},\n\t\t{3497, -3.247243658186449},\n\t\t{3498, -3.635035504985291},\n\t\t{3499, -1.5480676384699568},\n\t\t{3500, 0.2464664722685832},\n\t\t{3501, 0.4402521278204557},\n\t\t{3502, 5.270795892703029},\n\t\t{3503, 2.8042840307712966},\n\t\t{3504, 0.9462329467776176},\n\t\t{3505, 4.083396433142653},\n\t\t{3506, 1.9549087755026735},\n\t\t{3507, 0.16950002359844074},\n\t\t{3508, -5.621626699206365},\n\t\t{3509, 0.7065464722430463},\n\t\t{3510, -0.13077056815642224},\n\t\t{3511, 1.054445256609005},\n\t\t{3512, 2.275456165193968},\n\t\t{3513, 1.522726795164989},\n\t\t{3514, 3.613290525107368},\n\t\t{3515, 7.641241371078061},\n\t\t{3516, -0.8596201483779455},\n\t\t{3517, 3.8383082775973665},\n\t\t{3518, 4.415536447532871},\n\t\t{3519, 4.925444188582757},\n\t\t{3520, 0.5529614115127446},\n\t\t{3521, -0.43249773935493385},\n\t\t{3522, -0.3978731569685626},\n\t\t{3523, 2.369258624946799},\n\t\t{3524, 0.11770305274025916},\n\t\t{3525, -0.2578544359620139},\n\t\t{3526, 0.4436567116513679},\n\t\t{3527, -2.0567264988569036},\n\t\t{3528, -1.3031023140703584},\n\t\t{3529, -0.5677076061354076},\n\t\t{3530, -0.32569038241559284},\n\t\t{3531, -0.3763919144990273},\n\t\t{3532, 0.37043547850101466},\n\t\t{3533, -1.3365595082069066},\n\t\t{3534, -2.1213348849814486},\n\t\t{3535, 2.6705428141883254},\n\t\t{3536, 1.1490225959669937},\n\t\t{3537, -1.403844095804133},\n\t\t{3538, -1.2107872921871796},\n\t\t{3539, -1.915345446963727},\n\t\t{3540, 2.3402350255202062},\n\t\t{3541, 1.2938466844903567},\n\t\t{3542, 1.0476000137979424},\n\t\t{3543, 0.42858056243474657},\n\t\t{3544, 1.4174426905469966},\n\t\t{3545, 1.6794181342290262},\n\t\t{3546, 1.0441517752627636},\n\t\t{3547, 0.4535503817633613},\n\t\t{3548, 2.9867039327249554},\n\t\t{3549, 3.866279224928834},\n\t\t{3550, -0.9998712163569154},\n\t\t{3551, -1.5359997925869895},\n\t\t{3552, -3.350138782735296},\n\t\t{3553, 0.776572306531955},\n\t\t{3554, 1.724499212677416},\n\t\t{3555, 3.7005067041712887},\n\t\t{3556, -1.4306309705193057},\n\t\t{3557, 1.1042140950104118},\n\t\t{3558, -3.0720237631568423},\n\t\t{3559, -2.292693963673056},\n\t\t{3560, 2.0631655685116437},\n\t\t{3561, 0.5209021693288604},\n\t\t{3562, -0.8516657965665261},\n\t\t{3563, -0.6692847810035192},\n\t\t{3564, -4.936828660287376},\n\t\t{3565, -1.0275786350860048},\n\t\t{3566, 2.0836937258738093},\n\t\t{3567, 5.038756843295271},\n\t\t{3568, 2.6138052449635953},\n\t\t{3569, 1.6702403645036632},\n\t\t{3570, 0.6771004419799107},\n\t\t{3571, 1.0012042330108164},\n\t\t{3572, -0.8684664464699946},\n\t\t{3573, 3.0057117627900882},\n\t\t{3574, -2.5842947892441828},\n\t\t{3575, -0.8264679790036954},\n\t\t{3576, -1.8206411475201065},\n\t\t{3577, 2.041200349259358},\n\t\t{3578, 2.7401530695434198},\n\t\t{3579, 4.002299395552687},\n\t\t{3580, 4.189786170973092},\n\t\t{3581, 1.7420421361967129},\n\t\t{3582, -0.08620519905246926},\n\t\t{3583, -0.14610869269882912},\n\t\t{3584, 0.718559899854734},\n\t\t{3585, -2.6781823290433806},\n\t\t{3586, -1.0539034526402162},\n\t\t{3587, -0.12943651733523087},\n\t\t{3588, -0.39575196081465225},\n\t\t{3589, 3.3853687651990527},\n\t\t{3590, -0.7602870075192598},\n\t\t{3591, -0.5035957932759519},\n\t\t{3592, 1.5579661417136255},\n\t\t{3593, 0.6310252072360384},\n\t\t{3594, 0.3084611921089204},\n\t\t{3595, -0.43867754216855454},\n\t\t{3596, -2.9870298227672825},\n\t\t{3597, -7.452151240243173},\n\t\t{3598, 1.025026788234816},\n\t\t{3599, 0.8431018734564414},\n\t\t{3600, -0.007710004445343199},\n\t\t{3601, 2.02952620490366},\n\t\t{3602, 0.6518418515927574},\n\t\t{3603, -1.7005366683681715},\n\t\t{3604, 0.3280229403098107},\n\t\t{3605, 0.5393576992077274},\n\t\t{3606, 0.37692073889648303},\n\t\t{3607, -5.3881045158602285},\n\t\t{3608, -2.2245706813004036},\n\t\t{3609, -6.251763810973281},\n\t\t{3610, -3.075774811824537},\n\t\t{3611, -3.8836941002906906},\n\t\t{3612, 1.155803661808641},\n\t\t{3613, 5.2337018370705035},\n\t\t{3614, 3.760409409708025},\n\t\t{3615, 1.5699018637090039},\n\t\t{3616, 2.1419714492105975},\n\t\t{3617, -4.358271898563193},\n\t\t{3618, -5.513322924100752},\n\t\t{3619, -4.406630347423569},\n\t\t{3620, 0.1966789557454678},\n\t\t{3621, 0.7520648686155538},\n\t\t{3622, -0.13281827409806252},\n\t\t{3623, -0.20027365005112527},\n\t\t{3624, 4.357115314297288},\n\t\t{3625, 2.6178110923762605},\n\t\t{3626, 2.886222769436089},\n\t\t{3627, 4.106097417737272},\n\t\t{3628, 2.2217681804418286},\n\t\t{3629, 0.5782209291992357},\n\t\t{3630, 0.39722656325807243},\n\t\t{3631, 0.10186702404312531},\n\t\t{3632, 0.059131764158733766},\n\t\t{3633, 2.2827620028740485},\n\t\t{3634, -0.6464373942320885},\n\t\t{3635, 0.20005310852881675},\n\t\t{3636, -0.8903914826383801},\n\t\t{3637, 1.052767810265875},\n\t\t{3638, 0.8978650565777415},\n\t\t{3639, -0.6542901763717243},\n\t\t{3640, 1.416555235775439},\n\t\t{3641, 0.24045288985471575},\n\t\t{3642, 0.09531593901029105},\n\t\t{3643, -1.383902178406173},\n\t\t{3644, 1.367363249232728},\n\t\t{3645, 0.2534727954556751},\n\t\t{3646, 0.9554610145041108},\n\t\t{3647, -0.689573060493075},\n\t\t{3648, -4.000765244129101},\n\t\t{3649, 0.48818205394824177},\n\t\t{3650, 0.5310130909524258},\n\t\t{3651, 0.194516550805345},\n\t\t{3652, -0.40557558979081376},\n\t\t{3653, -2.9956308409383787},\n\t\t{3654, -6.4614724994835795},\n\t\t{3655, -1.5048528488579056},\n\t\t{3656, -0.647230372456216},\n\t\t{3657, -0.3806586424868038},\n\t\t{3658, 0.9475810382217537},\n\t\t{3659, 0.48370616021752055},\n\t\t{3660, 1.3121486184480695},\n\t\t{3661, 0.035495062178133474},\n\t\t{3662, -6.113538037038059},\n\t\t{3663, -2.0354848727814514},\n\t\t{3664, 2.1475176334116783},\n\t\t{3665, 3.1444353305796118},\n\t\t{3666, 1.7135313889545842},\n\t\t{3667, 5.898123225098903},\n\t\t{3668, 3.612394872736382},\n\t\t{3669, 1.483430007107794},\n\t\t{3670, 0.8287511982151257},\n\t\t{3671, 0.5328197602270268},\n\t\t{3672, -0.19291632539275477},\n\t\t{3673, 0.4805196600996498},\n\t\t{3674, 1.3797367665693825},\n\t\t{3675, 3.667176507414775},\n\t\t{3676, -2.5593234489302716},\n\t\t{3677, -2.344054869106955},\n\t\t{3678, -1.9252892029569812},\n\t\t{3679, -4.647325115310373},\n\t\t{3680, -2.062789418154639},\n\t\t{3681, 0.21858357055940036},\n\t\t{3682, -7.078871226782706},\n\t\t{3683, -0.9122620893253444},\n\t\t{3684, -0.5576425335815458},\n\t\t{3685, -3.8668101970384736},\n\t\t{3686, 0.5733177267483516},\n\t\t{3687, -1.5333563956926417},\n\t\t{3688, 4.308471448130455},\n\t\t{3689, 1.158882929946008},\n\t\t{3690, 1.1079084728530937},\n\t\t{3691, 0.1070707828820412},\n\t\t{3692, 2.436832427243785},\n\t\t{3693, 2.0121070406310544},\n\t\t{3694, 1.2118256186294054},\n\t\t{3695, 0.7629104511972078},\n\t\t{3696, 0.7716886145745803},\n\t\t{3697, -0.20137379738103017},\n\t\t{3698, 2.635432019964343},\n\t\t{3699, 4.044974986831757},\n\t\t{3700, 1.339620107669096},\n\t\t{3701, -1.894798039376997},\n\t\t{3702, 3.6466574852412323},\n\t\t{3703, 0.5498081857587207},\n\t\t{3704, 0.5359422991070406},\n\t\t{3705, 4.31024131197643},\n\t\t{3706, 0.48500372850882867},\n\t\t{3707, 4.458159210621078},\n\t\t{3708, 2.5820038928857283},\n\t\t{3709, 1.2827178303780218},\n\t\t{3710, 0.1274493147196024},\n\t\t{3711, -0.6668797955966457},\n\t\t{3712, -0.4987469813424097},\n\t\t{3713, -0.6463874863117756},\n\t\t{3714, -2.0050618552727313},\n\t\t{3715, -1.363629419702245},\n\t\t{3716, -1.690540985181837},\n\t\t{3717, 1.2798086355033744},\n\t\t{3718, 0.5311118149323346},\n\t\t{3719, -2.3613775223822326},\n\t\t{3720, -0.4958881615432906},\n\t\t{3721, -6.107733880501552},\n\t\t{3722, -3.5549452208531194},\n\t\t{3723, -1.8929491827803278},\n\t\t{3724, -5.360098637751946},\n\t\t{3725, -0.6855885078767818},\n\t\t{3726, 4.512926181533091},\n\t\t{3727, 8.262553435511572},\n\t\t{3728, -0.35786748699372284},\n\t\t{3729, -2.248657862092917},\n\t\t{3730, -1.533826882414015},\n\t\t{3731, 1.5942677446024778},\n\t\t{3732, 1.3955966779682822},\n\t\t{3733, 2.5951560236478746},\n\t\t{3734, 0.26789948313106027},\n\t\t{3735, 0.5654149958289705},\n\t\t{3736, 0.02816436639558223},\n\t\t{3737, 0.05911086680261711},\n\t\t{3738, -1.4160321817691317},\n\t\t{3739, 2.9842219091452025},\n\t\t{3740, 4.961376415983401},\n\t\t{3741, 5.7561874066047505},\n\t\t{3742, -4.426453987167468},\n\t\t{3743, -0.7523160525530008},\n\t\t{3744, 1.0760354036727577},\n\t\t{3745, 1.061988513739246},\n\t\t{3746, 0.16115154670813608},\n\t\t{3747, 0.12092430567976764},\n\t\t{3748, 3.5224902390534734},\n\t\t{3749, 1.2991048632489155},\n\t\t{3750, 0.782189422861838},\n\t\t{3751, -0.0014212383308839227},\n\t\t{3752, -7.339067843187849},\n\t\t{3753, -5.602182556426843},\n\t\t{3754, -3.102418390999827},\n\t\t{3755, -0.4290644654621022},\n\t\t{3756, -0.019144569222709046},\n\t\t{3757, -1.2166990306468117},\n\t\t{3758, 2.112595961356108},\n\t\t{3759, 1.5483888134915245},\n\t\t{3760, 3.1299322729737677},\n\t\t{3761, 0.5801127530387525},\n\t\t{3762, 1.0523157667297522},\n\t\t{3763, 0.5772632008120191},\n\t\t{3764, 0.4615755668132708},\n\t\t{3765, -2.5518677493368367},\n\t\t{3766, -0.8024676079465085},\n\t\t{3767, -0.3614059416064488},\n\t\t{3768, 0.2138625753113225},\n\t\t{3769, 0.030977677906406056},\n\t\t{3770, -0.299639184090898},\n\t\t{3771, -3.7463220570725975},\n\t\t{3772, -1.6964185239732832},\n\t\t{3773, -0.8082588963951713},\n\t\t{3774, -0.9193081941740062},\n\t\t{3775, -0.3046608434374557},\n\t\t{3776, 0.9253415150380421},\n\t\t{3777, 1.2510449625853781},\n\t\t{3778, 3.485466208969293},\n\t\t{3779, 1.6555584770633813},\n\t\t{3780, 1.2259600670986335},\n\t\t{3781, 0.21651047706400345},\n\t\t{3782, -1.4181618805302225},\n\t\t{3783, -2.9110349041377264},\n\t\t{3784, -1.5644934762408225},\n\t\t{3785, -0.19535461604564902},\n\t\t{3786, -1.5938982282076615},\n\t\t{3787, -0.6841708835515129},\n\t\t{3788, -0.3277255305855965},\n\t\t{3789, 1.9635106212634863},\n\t\t{3790, 6.794649793111887},\n\t\t{3791, 3.035075731392759},\n\t\t{3792, -1.079739185672618},\n\t\t{3793, 1.4735629685282676},\n\t\t{3794, 0.05208771191570871},\n\t\t{3795, -3.7583439143053},\n\t\t{3796, -1.2550037467330013},\n\t\t{3797, 1.6811922840179006},\n\t\t{3798, 1.8263103481947345},\n\t\t{3799, 1.184801176687889},\n\t\t{3800, 0.5392977614220245},\n\t\t{3801, 2.2931603295208007},\n\t\t{3802, 2.238114237900401},\n\t\t{3803, -0.31088386772142684},\n\t\t{3804, -0.2465302724040442},\n\t\t{3805, 3.539480501502044},\n\t\t{3806, 1.349817758510164},\n\t\t{3807, 0.8179195795365517},\n\t\t{3808, 0.0874014751081702},\n\t\t{3809, 0.019008480630096667},\n\t\t{3810, 0.9269920733367198},\n\t\t{3811, 0.6009254518892028},\n\t\t{3812, 3.089124327332928},\n\t\t{3813, 1.0060062245895998},\n\t\t{3814, 1.3715127137125078},\n\t\t{3815, -1.1553138110026606},\n\t\t{3816, -5.442180687137575},\n\t\t{3817, -3.491109173677031},\n\t\t{3818, -1.5681393936164818},\n\t\t{3819, 0.2178832841449776},\n\t\t{3820, 0.908094343457441},\n\t\t{3821, -0.7350204980991375},\n\t\t{3822, -0.40416846133574325},\n\t\t{3823, -2.385984529090015},\n\t\t{3824, -0.4816718358226062},\n\t\t{3825, 0.2209950376333574},\n\t\t{3826, 0.105380696771281},\n\t\t{3827, 2.6222838704294067},\n\t\t{3828, -7.005058657205559},\n\t\t{3829, -1.357780948428518},\n\t\t{3830, -0.2445025885961341},\n\t\t{3831, -1.6267870439590153},\n\t\t{3832, 0.13045803726132088},\n\t\t{3833, -2.8329086673131934},\n\t\t{3834, -2.253093763029299},\n\t\t{3835, -4.3847885619892555},\n\t\t{3836, -0.7944160246928461},\n\t\t{3837, -0.21638408786581492},\n\t\t{3838, -0.2896340665366428},\n\t\t{3839, 3.997238624684931},\n\t\t{3840, 1.6207301614017904},\n\t\t{3841, 4.352108502755206},\n\t\t{3842, 1.632962860832281},\n\t\t{3843, -0.010343447598495259},\n\t\t{3844, 2.6517742384029344},\n\t\t{3845, -0.8298164393688887},\n\t\t{3846, -2.8968623064555388},\n\t\t{3847, -1.6729841233127258},\n\t\t{3848, 0.2516268809345146},\n\t\t{3849, 6.879837374755038},\n\t\t{3850, 3.493804514508959},\n\t\t{3851, 1.280853198020833},\n\t\t{3852, 2.0655175258904817},\n\t\t{3853, 2.0994819287189337},\n\t\t{3854, -3.5450779001325268},\n\t\t{3855, -1.6610593232161173},\n\t\t{3856, 0.003710678998797068},\n\t\t{3857, 2.1740186633662053},\n\t\t{3858, 2.0166168916512075},\n\t\t{3859, 0.33230885101830077},\n\t\t{3860, -1.403471823418949},\n\t\t{3861, 6.706226251356585},\n\t\t{3862, 3.268723699626104},\n\t\t{3863, 3.896856540280541},\n\t\t{3864, 3.93933089432305},\n\t\t{3865, 6.850167434144977},\n\t\t{3866, 0.9582912694284986},\n\t\t{3867, 1.746991304777294},\n\t\t{3868, -0.3282550495014688},\n\t\t{3869, 4.517314467064612},\n\t\t{3870, 1.9035633193764503},\n\t\t{3871, -5.034729709568222},\n\t\t{3872, -2.144342084452062},\n\t\t{3873, -4.5434323724342685},\n\t\t{3874, -1.4159030214120705},\n\t\t{3875, -0.8270335898964435},\n\t\t{3876, -0.4464097897780446},\n\t\t{3877, -0.8609421566557751},\n\t\t{3878, -0.46061621759681887},\n\t\t{3879, 0.10529118720512318},\n\t\t{3880, 0.38192151535376867},\n\t\t{3881, 1.0234271202453358},\n\t\t{3882, -3.0423480247891983},\n\t\t{3883, -0.13319026427254554},\n\t\t{3884, -0.052757911920418364},\n\t\t{3885, -1.8564293570709383},\n\t\t{3886, 1.3879709623689143},\n\t\t{3887, 0.7891482874174489},\n\t\t{3888, -0.09441436418063598},\n\t\t{3889, -1.4771837020972594},\n\t\t{3890, -0.8651066056425056},\n\t\t{3891, -0.3506582933941955},\n\t\t{3892, -2.7089677548850988},\n\t\t{3893, -0.0859540137494278},\n\t\t{3894, -1.0992781314599054},\n\t\t{3895, -0.025789401178551774},\n\t\t{3896, 3.7258448360092795},\n\t\t{3897, 8.501982660406188},\n\t\t{3898, 5.463803678790135},\n\t\t{3899, 2.894799137836932},\n\t\t{3900, 0.5245509828913806},\n\t\t{3901, 0.2339359105669125},\n\t\t{3902, 1.845244853656182},\n\t\t{3903, 3.6586613642257255},\n\t\t{3904, 4.494229512537741},\n\t\t{3905, 1.8567131594492843},\n\t\t{3906, -0.28480318623368006},\n\t\t{3907, 5.4394435899846005},\n\t\t{3908, 4.13109098909338},\n\t\t{3909, 1.696224497898017},\n\t\t{3910, 0.8527638003800077},\n\t\t{3911, 0.14248770902152988},\n\t\t{3912, 0.5245412640319627},\n\t\t{3913, -0.3310254649256237},\n\t\t{3914, -1.499861872132789},\n\t\t{3915, -0.40603595905101825},\n\t\t{3916, 4.347741790761696},\n\t\t{3917, 2.665025771220038},\n\t\t{3918, 0.867051212853433},\n\t\t{3919, -1.5335478960488629},\n\t\t{3920, 1.815079328056662},\n\t\t{3921, 1.9113271908644371},\n\t\t{3922, 4.133438982040487},\n\t\t{3923, -1.8110020383262935},\n\t\t{3924, 1.1814910247775439},\n\t\t{3925, 0.3966463455123105},\n\t\t{3926, 1.267243825972283},\n\t\t{3927, -0.5934840798398582},\n\t\t{3928, -2.150509218935407},\n\t\t{3929, 0.11903799138482485},\n\t\t{3930, 0.9894118543043009},\n\t\t{3931, -2.4705029808605135},\n\t\t{3932, -0.3674534785093143},\n\t\t{3933, -2.258663059167097},\n\t\t{3934, -1.298227865074035},\n\t\t{3935, -0.4779775437038967},\n\t\t{3936, -2.885687093328418},\n\t\t{3937, -1.663071481926528},\n\t\t{3938, -0.12926581392816772},\n\t\t{3939, 0.08661312917993472},\n\t\t{3940, -1.2101709011270756},\n\t\t{3941, 0.2569054398492012},\n\t\t{3942, -3.023614722629027},\n\t\t{3943, -3.4070541067370526},\n\t\t{3944, -0.3319321063854075},\n\t\t{3945, 0.37849890177954426},\n\t\t{3946, 0.14742610678575932},\n\t\t{3947, -2.357765788763721},\n\t\t{3948, -0.6479487506266413},\n\t\t{3949, -1.947147505980847},\n\t\t{3950, 1.274314588064696},\n\t\t{3951, 0.7460938702941141},\n\t\t{3952, -1.052728238704216},\n\t\t{3953, -0.49210455374700457},\n\t\t{3954, -0.5089012113644384},\n\t\t{3955, 0.051742778838548414},\n\t\t{3956, -2.718575659455488},\n\t\t{3957, -0.7059834566078866},\n\t\t{3958, 3.709708060274754},\n\t\t{3959, 4.5350980398821505},\n\t\t{3960, 2.300768730266061},\n\t\t{3961, 2.1964540731907576},\n\t\t{3962, -0.6915100849454563},\n\t\t{3963, -5.101859714020331},\n\t\t{3964, -2.259295182274847},\n\t\t{3965, 0.44812009795780916},\n\t\t{3966, -0.775750710042171},\n\t\t{3967, 1.9018564432122282},\n\t\t{3968, 2.711881366695429},\n\t\t{3969, 2.3993498155163566},\n\t\t{3970, 7.071876383455166},\n\t\t{3971, 1.6306733494146701},\n\t\t{3972, -3.4666689696938127},\n\t\t{3973, 0.05631527624437993},\n\t\t{3974, -0.20572225055724644},\n\t\t{3975, -1.723578796082768},\n\t\t{3976, -1.6655364247033486},\n\t\t{3977, 5.731626265125767},\n\t\t{3978, 2.608867574104167},\n\t\t{3979, 1.070709360849436},\n\t\t{3980, 0.18091707247977495},\n\t\t{3981, -0.6258481987804936},\n\t\t{3982, -0.24046411604600337},\n\t\t{3983, -0.5908317197289353},\n\t\t{3984, 2.640325294928367},\n\t\t{3985, -0.04801721615432952},\n\t\t{3986, 3.1735494172420737},\n\t\t{3987, 1.4573293549461055},\n\t\t{3988, 0.30380800342699754},\n\t\t{3989, -0.9246033606228896},\n\t\t{3990, -1.9603772720743762},\n\t\t{3991, -1.969991707260833},\n\t\t{3992, -1.3921050694916082},\n\t\t{3993, 3.249875792813785},\n\t\t{3994, 1.2679152762389778},\n\t\t{3995, 2.783836821273316},\n\t\t{3996, 0.6804539520277095},\n\t\t{3997, 2.471908314262278},\n\t\t{3998, 0.07234615343719464},\n\t\t{3999, -0.015566899127408398},\n\t\t{4000, -1.8240883616595596},\n\t\t{4001, -2.282073515080191},\n\t\t{4002, -2.8693368194003575},\n\t\t{4003, -1.729903733351549},\n\t\t{4004, -0.6358122408358943},\n\t\t{4005, -1.9470813817208907},\n\t\t{4006, -5.156035703224898},\n\t\t{4007, -3.867015615534824},\n\t\t{4008, -1.2229241380606968},\n\t\t{4009, -0.8755673316340512},\n\t\t{4010, -5.593558803826821},\n\t\t{4011, -0.7695492492942761},\n\t\t{4012, -0.8580939414198058},\n\t\t{4013, -0.8141964690698247},\n\t\t{4014, -0.4550411503623416},\n\t\t{4015, 5.857393619236056},\n\t\t{4016, 2.408615609925268},\n\t\t{4017, -2.210565947679017},\n\t\t{4018, -0.925944615805411},\n\t\t{4019, -3.3867772550731226},\n\t\t{4020, -2.9470250903456314},\n\t\t{4021, -1.1108729845227605},\n\t\t{4022, -1.1453599359920261},\n\t\t{4023, 2.90255907562918},\n\t\t{4024, 1.8274030105654235},\n\t\t{4025, -4.468186547307697},\n\t\t{4026, 1.0071761153370464},\n\t\t{4027, -0.256091238996385},\n\t\t{4028, -0.3555391954446541},\n\t\t{4029, 0.41459292859274877},\n\t\t{4030, 3.1783259919377973},\n\t\t{4031, 1.582637149058331},\n\t\t{4032, -0.08490256163868182},\n\t\t{4033, -0.22998782874798007},\n\t\t{4034, -3.517534338304362},\n\t\t{4035, -6.919043654660112},\n\t\t{4036, -0.6207442810319024},\n\t\t{4037, -0.9373386342396219},\n\t\t{4038, -0.11675088027683023},\n\t\t{4039, 1.5596767809662595},\n\t\t{4040, -4.794023219296949},\n\t\t{4041, -2.182378328420883},\n\t\t{4042, -1.9140789280075325},\n\t\t{4043, -0.308073670116254},\n\t\t{4044, 1.8306807404194096},\n\t\t{4045, -1.677332375426406},\n\t\t{4046, -2.0345526446778135},\n\t\t{4047, 8.076895259029955},\n\t\t{4048, 2.749578648611859},\n\t\t{4049, 5.994802310655114},\n\t\t{4050, 3.13959876357364},\n\t\t{4051, 1.374822673765422},\n\t\t{4052, -0.021399229104740347},\n\t\t{4053, -3.815941034842902},\n\t\t{4054, -3.7092199819338383},\n\t\t{4055, -1.2274443510618704},\n\t\t{4056, -0.582250907570955},\n\t\t{4057, -2.0467943400777617},\n\t\t{4058, -5.328769056773165},\n\t\t{4059, -2.199914536683484},\n\t\t{4060, 0.8513998945839506},\n\t\t{4061, -2.0076293008993193},\n\t\t{4062, -4.602371365358537},\n\t\t{4063, -1.8667034689693431},\n\t\t{4064, -0.01143880430433919},\n\t\t{4065, -0.6586743542664091},\n\t\t{4066, 0.5126112673733887},\n\t\t{4067, 0.4554983307307227},\n\t\t{4068, -0.4130855904112666},\n\t\t{4069, -0.2920727880965147},\n\t\t{4070, -3.6596319348482464},\n\t\t{4071, -1.6876472660726374},\n\t\t{4072, -1.01624030074247},\n\t\t{4073, -0.5593104079465473},\n\t\t{4074, -1.021218608869819},\n\t\t{4075, 0.14724943572573995},\n\t\t{4076, 0.5168105958146991},\n\t\t{4077, 0.08962116423761896},\n\t\t{4078, 3.666578587743252},\n\t\t{4079, 0.5585256393384805},\n\t\t{4080, -2.673814291005599},\n\t\t{4081, -1.6256944867522631},\n\t\t{4082, -0.335153163256277},\n\t\t{4083, -2.26210821272076},\n\t\t{4084, -0.25909934978007443},\n\t\t{4085, 1.6277809185831362},\n\t\t{4086, 0.5860261750223161},\n\t\t{4087, 2.5593201122887637},\n\t\t{4088, 3.6632206772663256},\n\t\t{4089, -2.7432421443564277},\n\t\t{4090, -0.3347229339495924},\n\t\t{4091, -0.16733191769389585},\n\t\t{4092, -1.1956207129467546},\n\t\t{4093, -1.3303934593169067},\n\t\t{4094, 0.6375205632906452},\n\t\t{4095, 2.3555738143240084},\n\t\t{4096, 3.092417686855228},\n\t\t{4097, 1.1321672126906694},\n\t\t{4098, 1.0875107918160796},\n\t\t{4099, 0.12353451960558426},\n\t\t{4100, 0.406658819556935},\n\t\t{4101, 1.291603385574436},\n\t\t{4102, 0.5077222136752811},\n\t\t{4103, 0.09002111077513873},\n\t\t{4104, 0.20722364317148212},\n\t\t{4105, -0.10114591211051856},\n\t\t{4106, -3.975290254394115},\n\t\t{4107, 1.0571194239916903},\n\t\t{4108, 1.4961230974162687},\n\t\t{4109, 0.5809378394397109},\n\t\t{4110, 1.3917219579762288},\n\t\t{4111, 0.44497036201916185},\n\t\t{4112, 2.5489999251725055},\n\t\t{4113, -1.5378880621178206},\n\t\t{4114, 0.0057082995271172665},\n\t\t{4115, -0.7282227050795992},\n\t\t{4116, -0.018523801070291113},\n\t\t{4117, -2.222979567257638},\n\t\t{4118, -2.12385299267095},\n\t\t{4119, -0.7331963606497975},\n\t\t{4120, -0.29353720476761025},\n\t\t{4121, 2.8778830217801046},\n\t\t{4122, 0.07399324463663981},\n\t\t{4123, 0.2834896461594688},\n\t\t{4124, 0.5872067970181483},\n\t\t{4125, 0.24809573613508132},\n\t\t{4126, 4.755865329227087},\n\t\t{4127, 2.946992163146769},\n\t\t{4128, -0.5292548535403847},\n\t\t{4129, 1.8033337125133275},\n\t\t{4130, 0.1565619384973671},\n\t\t{4131, 2.7033442093023905},\n\t\t{4132, 0.760382432683696},\n\t\t{4133, 1.5713357666791916},\n\t\t{4134, 3.7866673730342417},\n\t\t{4135, 1.6785945303591159},\n\t\t{4136, 3.227986256224302},\n\t\t{4137, 0.8395730463488306},\n\t\t{4138, 2.0571991607562863},\n\t\t{4139, 1.5701221261782727},\n\t\t{4140, -0.4827908417024569},\n\t\t{4141, 0.24033488402394204},\n\t\t{4142, 2.7047667435333556},\n\t\t{4143, -0.3063629255305016},\n\t\t{4144, 0.9189445745183489},\n\t\t{4145, 1.3860124050071232},\n\t\t{4146, 0.12516910755581961},\n\t\t{4147, -3.9644957843349045},\n\t\t{4148, -0.5746893388215171},\n\t\t{4149, -0.26482325895960845},\n\t\t{4150, -1.176471517129221},\n\t\t{4151, 3.763394839221223},\n\t\t{4152, 1.1859474461344748},\n\t\t{4153, 1.5607732003184946},\n\t\t{4154, 0.5645393605980283},\n\t\t{4155, -2.4319959467482257},\n\t\t{4156, 0.735542103278018},\n\t\t{4157, 0.8260026931171969},\n\t\t{4158, 0.5522829817526795},\n\t\t{4159, -0.13881404367777836},\n\t\t{4160, -1.2696298409862525},\n\t\t{4161, -0.776817037202012},\n\t\t{4162, 3.460033892108722},\n\t\t{4163, 6.346017286862609},\n\t\t{4164, 2.8970696928306054},\n\t\t{4165, 0.871110264150726},\n\t\t{4166, 0.6303462615053403},\n\t\t{4167, 2.8054791425300696},\n\t\t{4168, 3.255638725785135},\n\t\t{4169, 3.1663549719731794},\n\t\t{4170, 0.7989019366961099},\n\t\t{4171, 4.333424658540002},\n\t\t{4172, 1.5884465013726772},\n\t\t{4173, 0.08666369573054633},\n\t\t{4174, 2.077431941592718},\n\t\t{4175, -0.7028012893561617},\n\t\t{4176, -1.4067986827313894},\n\t\t{4177, -2.3810090979635117},\n\t\t{4178, -3.9719713593215715},\n\t\t{4179, -2.4640447158715677},\n\t\t{4180, -3.8475343194317437},\n\t\t{4181, -0.7383606524860985},\n\t\t{4182, -3.938447869668466},\n\t\t{4183, -2.071896788966474},\n\t\t{4184, -1.101315669612277},\n\t\t{4185, -0.4406158034704644},\n\t\t{4186, 2.376053343181054},\n\t\t{4187, -1.8733436472668474},\n\t\t{4188, 1.4902025634222253},\n\t\t{4189, 0.6295845879562204},\n\t\t{4190, 0.6443232084688073},\n\t\t{4191, -4.1626928250973165},\n\t\t{4192, 0.9744698905956357},\n\t\t{4193, -1.1040774424052024},\n\t\t{4194, 0.15306818923440435},\n\t\t{4195, -0.1739879516506123},\n\t\t{4196, -0.5653210032820589},\n\t\t{4197, -1.67142039909384},\n\t\t{4198, 0.41416716505916296},\n\t\t{4199, 2.112423399816226},\n\t\t{4200, 0.8841872652341336},\n\t\t{4201, -2.6260122945212467},\n\t\t{4202, 1.508592791616904},\n\t\t{4203, -2.302877113128602},\n\t\t{4204, 1.5850788698928753},\n\t\t{4205, 3.296945248936624},\n\t\t{4206, 0.4487631301866849},\n\t\t{4207, -3.575136876782827},\n\t\t{4208, -2.984155379854266},\n\t\t{4209, -1.1147829680799552},\n\t\t{4210, -0.74361664322346},\n\t\t{4211, -0.7435824305434449},\n\t\t{4212, -2.1048992800970394},\n\t\t{4213, -2.900604569814485},\n\t\t{4214, -2.168895349780052},\n\t\t{4215, -0.8381038296582247},\n\t\t{4216, 0.7472629024783604},\n\t\t{4217, 0.5470226264117923},\n\t\t{4218, 3.9409174202678594},\n\t\t{4219, 2.6508957977493726},\n\t\t{4220, 0.9910793555613732},\n\t\t{4221, 0.4889560686733936},\n\t\t{4222, -2.6605999233266266},\n\t\t{4223, -1.1371722590595297},\n\t\t{4224, -0.12032404483012904},\n\t\t{4225, 0.5922995638866825},\n\t\t{4226, 3.1600622631524806},\n\t\t{4227, 1.4115893973412503},\n\t\t{4228, 0.4617034989857701},\n\t\t{4229, 0.6251330318201022},\n\t\t{4230, 0.444317109194026},\n\t\t{4231, 0.09202538670577946},\n\t\t{4232, -0.9048740271006598},\n\t\t{4233, 1.684249022971444},\n\t\t{4234, 3.219145272371575},\n\t\t{4235, 0.968810202061136},\n\t\t{4236, -0.18661135038501386},\n\t\t{4237, -4.525329491251166},\n\t\t{4238, -1.5360548670343257},\n\t\t{4239, 4.0463501937297774},\n\t\t{4240, 0.8280346890086904},\n\t\t{4241, 2.16131653252869},\n\t\t{4242, 0.5891384494532454},\n\t\t{4243, 1.9689747435729763},\n\t\t{4244, 0.8537255998228777},\n\t\t{4245, 0.31227777240697036},\n\t\t{4246, 2.566311391781835},\n\t\t{4247, 0.25166816297036587},\n\t\t{4248, 0.13645073055490686},\n\t\t{4249, -0.8737308778681316},\n\t\t{4250, 0.44529225057506755},\n\t\t{4251, 1.3724123878203303},\n\t\t{4252, 1.0731050674691502},\n\t\t{4253, 0.3773163144207022},\n\t\t{4254, 2.8427804775291805},\n\t\t{4255, 1.5428670860674225},\n\t\t{4256, 1.3634123574622943},\n\t\t{4257, -2.4626947786142677},\n\t\t{4258, -1.3063705993740828},\n\t\t{4259, 0.6726916799803032},\n\t\t{4260, 2.9285274298689403},\n\t\t{4261, 1.181038380913006},\n\t\t{4262, -0.15212037720128063},\n\t\t{4263, -0.5632230378096998},\n\t\t{4264, -2.181923267393287},\n\t\t{4265, -2.1455133091735474},\n\t\t{4266, -1.9595297139655994},\n\t\t{4267, 2.019956268156402},\n\t\t{4268, -3.9280249421022893},\n\t\t{4269, 0.0056047764939819444},\n\t\t{4270, 3.9494880156969656},\n\t\t{4271, -0.21111312474970312},\n\t\t{4272, -1.0460611954421413},\n\t\t{4273, -1.8663766484425388},\n\t\t{4274, -0.48102386662525604},\n\t\t{4275, 0.9743508266573128},\n\t\t{4276, 3.0756000759984587},\n\t\t{4277, 8.930330818057417},\n\t\t{4278, 10.724030560757402},\n\t\t{4279, 5.715098334382074},\n\t\t{4280, 1.3902566895212076},\n\t\t{4281, 2.4359860114494087},\n\t\t{4282, 0.07208280440138148},\n\t\t{4283, 1.4826982550338428},\n\t\t{4284, 4.171497638572084},\n\t\t{4285, 1.504543930203364},\n\t\t{4286, 2.203452858669924},\n\t\t{4287, -0.15432860562580042},\n\t\t{4288, 1.4106683666663138},\n\t\t{4289, 0.7280799661963546},\n\t\t{4290, -2.9369902493894},\n\t\t{4291, -1.169260936076521},\n\t\t{4292, 1.8180135663851178},\n\t\t{4293, 10.476036772936595},\n\t\t{4294, 3.610809121844307},\n\t\t{4295, 1.6715507477347478},\n\t\t{4296, 0.7844161813947715},\n\t\t{4297, 2.195189430513417},\n\t\t{4298, 0.9040474819734833},\n\t\t{4299, 0.9119335830721167},\n\t\t{4300, -2.808641760458209},\n\t\t{4301, -0.7162164192398612},\n\t\t{4302, -3.5566387623810267},\n\t\t{4303, -1.7600933574895234},\n\t\t{4304, -5.707988669873386},\n\t\t{4305, -2.2779427188066115},\n\t\t{4306, 0.18719153845883962},\n\t\t{4307, 0.23762465158330873},\n\t\t{4308, -0.04869625804953623},\n\t\t{4309, -1.8126565117290667},\n\t\t{4310, -3.1088562061577147},\n\t\t{4311, -2.361526854975107},\n\t\t{4312, -0.07240090157902657},\n\t\t{4313, 1.617408793629731},\n\t\t{4314, 0.7215390687996323},\n\t\t{4315, -1.7879624640644702},\n\t\t{4316, -0.673655535665817},\n\t\t{4317, 1.497069207598817},\n\t\t{4318, 1.1344300973144823},\n\t\t{4319, 0.07607107154896792},\n\t\t{4320, -2.6683334328644275},\n\t\t{4321, -3.674759138069418},\n\t\t{4322, -1.4231725347891266},\n\t\t{4323, 0.9665011134470454},\n\t\t{4324, 1.5038928686983677},\n\t\t{4325, -0.6745012983347918},\n\t\t{4326, -0.8706925206483735},\n\t\t{4327, -2.389984789421191},\n\t\t{4328, -0.6424824055658296},\n\t\t{4329, -0.9884420105319683},\n\t\t{4330, -0.5037985797554977},\n\t\t{4331, -0.5315673067051389},\n\t\t{4332, -4.344679581715628},\n\t\t{4333, 0.29530174559629785},\n\t\t{4334, -1.2005569939171372},\n\t\t{4335, 1.2308917585422505},\n\t\t{4336, -2.9108752594362217},\n\t\t{4337, -6.820144796160701},\n\t\t{4338, -3.046761908870466},\n\t\t{4339, -1.6561425727573658},\n\t\t{4340, -2.7966046864746463},\n\t\t{4341, 0.13725605567049337},\n\t\t{4342, 1.1811760771793736},\n\t\t{4343, 1.0462995896360667},\n\t\t{4344, 2.6856249295345505},\n\t\t{4345, -1.936510360648504},\n\t\t{4346, 0.760042612465019},\n\t\t{4347, -1.6626600857558154},\n\t\t{4348, -1.3131284392763654},\n\t\t{4349, -1.355150570724133},\n\t\t{4350, -0.1747401302844846},\n\t\t{4351, 0.18668135300973382},\n\t\t{4352, 2.369597550490902},\n\t\t{4353, -4.539777121306794},\n\t\t{4354, 1.0855165957075767},\n\t\t{4355, 0.1607188961927749},\n\t\t{4356, -1.0804640925391273},\n\t\t{4357, 1.768798029847328},\n\t\t{4358, 0.10621187060840709},\n\t\t{4359, 1.0047661360686655},\n\t\t{4360, 1.1334217242763538},\n\t\t{4361, 2.8435832747029473},\n\t\t{4362, 3.7556090322271185},\n\t\t{4363, 1.565685967510826},\n\t\t{4364, 1.413048350900734},\n\t\t{4365, 2.172482115660905},\n\t\t{4366, 1.4838064930520893},\n\t\t{4367, 2.478375932415275},\n\t\t{4368, -0.4526187422013995},\n\t\t{4369, -0.6721699292152334},\n\t\t{4370, -0.5189790658200166},\n\t\t{4371, 0.4991765645406925},\n\t\t{4372, 0.20855086301840858},\n\t\t{4373, 0.04043925516571027},\n\t\t{4374, -0.09234238507356421},\n\t\t{4375, 0.16739840596970965},\n\t\t{4376, 2.1676935920652247},\n\t\t{4377, -6.667480475082275},\n\t\t{4378, -2.992016172949934},\n\t\t{4379, -2.389635321431008},\n\t\t{4380, -0.3029411166114785},\n\t\t{4381, -0.12438452439788496},\n\t\t{4382, 0.3739873101077285},\n\t\t{4383, 1.8337780690793204},\n\t\t{4384, 1.6231811951588733},\n\t\t{4385, -0.08549599226953508},\n\t\t{4386, 2.4196079983403362},\n\t\t{4387, 3.305779499939982},\n\t\t{4388, -0.19996826390670952},\n\t\t{4389, 3.727474459523985},\n\t\t{4390, 1.2022233963125264},\n\t\t{4391, -0.4248721972353111},\n\t\t{4392, 5.7914949526091135},\n\t\t{4393, 2.231836966720819},\n\t\t{4394, -6.178315817030297},\n\t\t{4395, -2.7839694641012374},\n\t\t{4396, 2.6550580322087267},\n\t\t{4397, 1.203378148170068},\n\t\t{4398, -2.345092255964026},\n\t\t{4399, 0.34970834932896255},\n\t\t{4400, -1.1649703361035426},\n\t\t{4401, 2.0498069212568044},\n\t\t{4402, 0.6041341716097318},\n\t\t{4403, -0.3841664778404307},\n\t\t{4404, -0.9510993984530962},\n\t\t{4405, 5.121933838962404},\n\t\t{4406, 1.8431142708843449},\n\t\t{4407, 0.2662996598532498},\n\t\t{4408, 0.85146581495856},\n\t\t{4409, 0.3727715876656369},\n\t\t{4410, 0.5295979154537124},\n\t\t{4411, -0.226616507878515},\n\t\t{4412, 7.346299135337522},\n\t\t{4413, 7.064469183424043},\n\t\t{4414, 3.870882926054535},\n\t\t{4415, 1.5141463067033745},\n\t\t{4416, 0.9038985739685654},\n\t\t{4417, 0.45401136936009673},\n\t\t{4418, 1.6334606968378198},\n\t\t{4419, -0.20746347844570823},\n\t\t{4420, -4.275742485443478},\n\t\t{4421, -4.15181898786355},\n\t\t{4422, -1.666681169030956},\n\t\t{4423, -2.01472469857058},\n\t\t{4424, 0.0954201619972932},\n\t\t{4425, -4.530559172548947},\n\t\t{4426, 2.4541762462398378},\n\t\t{4427, 0.4903887910286054},\n\t\t{4428, 0.34994484919954594},\n\t\t{4429, 0.7460174288887461},\n\t\t{4430, -0.1426705741385349},\n\t\t{4431, -1.1357890031481415},\n\t\t{4432, 0.5317006179299856},\n\t\t{4433, 0.024409147929956437},\n\t\t{4434, 0.8453288188515287},\n\t\t{4435, 3.107199329306928},\n\t\t{4436, 0.7024053204332132},\n\t\t{4437, 0.6862463908178116},\n\t\t{4438, 2.2643706404599215},\n\t\t{4439, -1.8936970095136325},\n\t\t{4440, 1.7563900212115469},\n\t\t{4441, 1.9339790580000469},\n\t\t{4442, -2.634799554516289},\n\t\t{4443, 2.7094795000805947},\n\t\t{4444, 2.3785823716061407},\n\t\t{4445, 1.958712908707469},\n\t\t{4446, -1.7437311689300459},\n\t\t{4447, -3.2665462741348352},\n\t\t{4448, -9.094197277422168},\n\t\t{4449, -4.757163678168436},\n\t\t{4450, 2.455147283264317},\n\t\t{4451, 8.010608586202348},\n\t\t{4452, 2.4560472483808056},\n\t\t{4453, 0.7851166476874631},\n\t\t{4454, -0.9543486858967865},\n\t\t{4455, -5.294219650391986},\n\t\t{4456, -2.840044006991233},\n\t\t{4457, -3.560127059373878},\n\t\t{4458, -1.9939179269009824},\n\t\t{4459, 1.925930687705752},\n\t\t{4460, -2.587251381360806},\n\t\t{4461, -2.1697177581299605},\n\t\t{4462, -1.2001901171194915},\n\t\t{4463, -0.6654790825819603},\n\t\t{4464, -0.10681295517180212},\n\t\t{4465, -3.0335949422102284},\n\t\t{4466, 4.2705894739018815},\n\t\t{4467, 1.1265602474453198},\n\t\t{4468, -0.46322501124433335},\n\t\t{4469, 0.6084871259647298},\n\t\t{4470, -0.007314307360012706},\n\t\t{4471, 1.9906328238128792},\n\t\t{4472, 3.949461672000644},\n\t\t{4473, 3.792382311907316},\n\t\t{4474, 4.2332852699404775},\n\t\t{4475, 2.2206676268497083},\n\t\t{4476, 1.6272380144900214},\n\t\t{4477, 1.5672440782423647},\n\t\t{4478, -0.37970690840253396},\n\t\t{4479, 6.703495044604546},\n\t\t{4480, 2.4777285721997915},\n\t\t{4481, -2.694276178406354},\n\t\t{4482, -0.37348888922708856},\n\t\t{4483, -1.8741194560749652},\n\t\t{4484, -1.0925729966423758},\n\t\t{4485, 0.06823251014929799},\n\t\t{4486, -0.13029595133982985},\n\t\t{4487, -0.045444475770359025},\n\t\t{4488, -2.716380229546698},\n\t\t{4489, 0.9337297206642796},\n\t\t{4490, 3.978261546893857},\n\t\t{4491, 1.6006520695724036},\n\t\t{4492, -0.6009200838218196},\n\t\t{4493, -0.6367546511742368},\n\t\t{4494, -1.3642481657991867},\n\t\t{4495, -5.250592258299262},\n\t\t{4496, -2.956590806734569},\n\t\t{4497, -1.297046727706237},\n\t\t{4498, -0.8215856266030106},\n\t\t{4499, -0.6097452016687026},\n\t\t{4500, -0.9996524685674063},\n\t\t{4501, -1.3175351791255987},\n\t\t{4502, -0.5498093695693438},\n\t\t{4503, 4.948753709818669},\n\t\t{4504, 0.9356118084755916},\n\t\t{4505, -0.019108773786087607},\n\t\t{4506, 1.2179384828674626},\n\t\t{4507, 1.2592065169601598},\n\t\t{4508, -1.1900004738388792},\n\t\t{4509, -1.227104678672239},\n\t\t{4510, -1.3553180290176987},\n\t\t{4511, -0.36559859384607},\n\t\t{4512, -0.6493126055185777},\n\t\t{4513, 0.7747005861753706},\n\t\t{4514, -0.2846366515233368},\n\t\t{4515, 4.3136864881009975},\n\t\t{4516, 0.6951680459533383},\n\t\t{4517, 0.35497744430756367},\n\t\t{4518, -1.6006606723109393},\n\t\t{4519, 7.397683690530439},\n\t\t{4520, 3.690511814720172},\n\t\t{4521, 0.9687244117980266},\n\t\t{4522, -0.8126645453998025},\n\t\t{4523, -0.43725255102451105},\n\t\t{4524, 1.3205732424089855},\n\t\t{4525, 2.4134051956560723},\n\t\t{4526, 1.1989035923708666},\n\t\t{4527, 0.8174057718435397},\n\t\t{4528, -4.794644343367631},\n\t\t{4529, -3.095224252694956},\n\t\t{4530, -3.0257512250655783},\n\t\t{4531, -2.8773352758072877},\n\t\t{4532, -1.438618037151039},\n\t\t{4533, -0.5614381504755518},\n\t\t{4534, 0.24628287143312655},\n\t\t{4535, 3.588034506097846},\n\t\t{4536, 2.0238533069354143},\n\t\t{4537, 1.2101054554072723},\n\t\t{4538, 4.888295529168028},\n\t\t{4539, 0.586304967638011},\n\t\t{4540, -0.19631058156701467},\n\t\t{4541, -1.270134194916562},\n\t\t{4542, 1.8174339711391436},\n\t\t{4543, 1.6487508531598043},\n\t\t{4544, -0.006734569016869751},\n\t\t{4545, 0.39767807657588394},\n\t\t{4546, -0.36017487888610367},\n\t\t{4547, -3.489314500475214},\n\t\t{4548, -3.0193919510501113},\n\t\t{4549, -0.7216726919493521},\n\t\t{4550, 1.1324991517268865},\n\t\t{4551, 1.272291554701719},\n\t\t{4552, -3.8283405349246555},\n\t\t{4553, -7.490687754534086},\n\t\t{4554, -8.100999558699858},\n\t\t{4555, -4.4477726969253375},\n\t\t{4556, 1.9568200817498747},\n\t\t{4557, 3.8433778399515917},\n\t\t{4558, -3.3821323214154697},\n\t\t{4559, -1.5083212504152927},\n\t\t{4560, -2.807051791401827},\n\t\t{4561, -5.798313704138256},\n\t\t{4562, -2.454702089972893},\n\t\t{4563, -1.0304553473952451},\n\t\t{4564, 4.939088709800628},\n\t\t{4565, -2.212148249660287},\n\t\t{4566, 2.7004565629939283},\n\t\t{4567, 0.4412813704372146},\n\t\t{4568, 1.1833258908350537},\n\t\t{4569, -0.9612585607464537},\n\t\t{4570, -0.7689715395984924},\n\t\t{4571, -0.7194476278639234},\n\t\t{4572, -0.2996623431633636},\n\t\t{4573, -1.864340890262391},\n\t\t{4574, -2.7502782120729377},\n\t\t{4575, -1.0115589569868149},\n\t\t{4576, -1.355516253907687},\n\t\t{4577, -0.6776207898842496},\n\t\t{4578, 6.674441071597661},\n\t\t{4579, 1.5924123970755921},\n\t\t{4580, 0.9378031411451044},\n\t\t{4581, -3.6005892628607614},\n\t\t{4582, -1.5399453265159382},\n\t\t{4583, -2.6354107375740314},\n\t\t{4584, -0.9750942148407489},\n\t\t{4585, -5.71868422917731},\n\t\t{4586, -7.247651437403871},\n\t\t{4587, -2.1705366496810994},\n\t\t{4588, -0.9255520790657801},\n\t\t{4589, 1.0834770828922653},\n\t\t{4590, 0.1963752612685663},\n\t\t{4591, 0.04197461429001619},\n\t\t{4592, -0.16604438538856928},\n\t\t{4593, -1.2472828356790808},\n\t\t{4594, 2.9502331798694614},\n\t\t{4595, -0.9488619468610553},\n\t\t{4596, -0.2385769646480507},\n\t\t{4597, -0.8466486080087486},\n\t\t{4598, -0.5121024761547124},\n\t\t{4599, 2.525630308124496},\n\t\t{4600, 2.3312536957852905},\n\t\t{4601, 1.4655485087667866},\n\t\t{4602, 2.950662862754819},\n\t\t{4603, 1.4895901239007938},\n\t\t{4604, -0.42183041220642326},\n\t\t{4605, -0.37558407383724235},\n\t\t{4606, 0.27811807366842906},\n\t\t{4607, 0.7878133659651422},\n\t\t{4608, 0.19564593257660678},\n\t\t{4609, 0.5782104528352848},\n\t\t{4610, 2.399435083320623},\n\t\t{4611, 1.319709807854943},\n\t\t{4612, -0.8067365662068473},\n\t\t{4613, 0.7992451551840142},\n\t\t{4614, 1.0664545666467848},\n\t\t{4615, 0.5751098397288027},\n\t\t{4616, 2.0192802416530324},\n\t\t{4617, 0.4827167711666865},\n\t\t{4618, 0.09486042789500534},\n\t\t{4619, 0.6102991292577258},\n\t\t{4620, 1.3992411996034553},\n\t\t{4621, -0.3115845268763554},\n\t\t{4622, -0.08319237752024729},\n\t\t{4623, 1.6123210756148714},\n\t\t{4624, 3.7991902581116266},\n\t\t{4625, 0.707378256410034},\n\t\t{4626, 0.38355370447307646},\n\t\t{4627, 0.5711966764053436},\n\t\t{4628, -2.602546764050603},\n\t\t{4629, -1.34623457856895},\n\t\t{4630, 0.5402289114931638},\n\t\t{4631, -1.9981750290031006},\n\t\t{4632, -2.824903056248726},\n\t\t{4633, -1.2645142428111962},\n\t\t{4634, -5.474426075301093},\n\t\t{4635, -2.523028856198459},\n\t\t{4636, -0.2816236362539698},\n\t\t{4637, -0.25621706657614707},\n\t\t{4638, -0.10872999894088639},\n\t\t{4639, -0.8079026865669083},\n\t\t{4640, 0.13679013782134591},\n\t\t{4641, -1.3636775922561384},\n\t\t{4642, -2.3168121385221943},\n\t\t{4643, -1.1352123198230877},\n\t\t{4644, -2.500972997914568},\n\t\t{4645, -2.6164744032913765},\n\t\t{4646, -5.554592483059352},\n\t\t{4647, 0.39547923023483733},\n\t\t{4648, 0.854287577353447},\n\t\t{4649, -1.0869642898196856},\n\t\t{4650, -2.7047864053796022},\n\t\t{4651, 2.251259112777023},\n\t\t{4652, 9.407346665506479},\n\t\t{4653, 3.7533858183442965},\n\t\t{4654, 3.1925061067103364},\n\t\t{4655, 4.4617202143886665},\n\t\t{4656, 2.212014980276105},\n\t\t{4657, -0.060131664785403216},\n\t\t{4658, 7.642392039133967},\n\t\t{4659, 2.542004547918301},\n\t\t{4660, 1.1279765433428888},\n\t\t{4661, 1.6212497899449543},\n\t\t{4662, -2.770798840472041},\n\t\t{4663, 4.145827203352061},\n\t\t{4664, 1.0564188551677995},\n\t\t{4665, 0.8525889496586063},\n\t\t{4666, -4.827326408454258},\n\t\t{4667, -2.940481981870345},\n\t\t{4668, 5.052921405457672},\n\t\t{4669, 4.9026055308903205},\n\t\t{4670, 2.0871961878677845},\n\t\t{4671, -0.17333089102320942},\n\t\t{4672, 0.2522468545679819},\n\t\t{4673, 1.5443280774489654},\n\t\t{4674, 1.9603013644294278},\n\t\t{4675, 1.0674642774175453},\n\t\t{4676, 0.5379180622274371},\n\t\t{4677, -1.140154227866732},\n\t\t{4678, -1.7394671682091374},\n\t\t{4679, -0.9981841962631384},\n\t\t{4680, 3.712308997412607},\n\t\t{4681, 0.7992475259645505},\n\t\t{4682, 1.0418822039238274},\n\t\t{4683, -0.3603681955613036},\n\t\t{4684, -0.1978522326519181},\n\t\t{4685, 1.2349888447349793},\n\t\t{4686, 1.0646508970910555},\n\t\t{4687, -1.7911150702372909},\n\t\t{4688, -0.38591941485836473},\n\t\t{4689, -4.108856353434841},\n\t\t{4690, 1.1236845121746355},\n\t\t{4691, -0.18280218448030783},\n\t\t{4692, -6.69523066094518},\n\t\t{4693, -3.3085375193526727},\n\t\t{4694, -1.5283187974669863},\n\t\t{4695, -1.3533397829581384},\n\t\t{4696, 1.0733006802059244},\n\t\t{4697, -4.3883760664790525},\n\t\t{4698, -3.8954350438250187},\n\t\t{4699, 0.8254707501828615},\n\t\t{4700, 3.1297247604032674},\n\t\t{4701, 2.5388103456307745},\n\t\t{4702, -0.14945565902111446},\n\t\t{4703, 0.055781455679992216},\n\t\t{4704, -0.40515124719241696},\n\t\t{4705, 2.170691566472983},\n\t\t{4706, -2.0279610089095885},\n\t\t{4707, 3.229312303186303},\n\t\t{4708, -0.43101841871435687},\n\t\t{4709, -0.19118126645564018},\n\t\t{4710, 0.30411036439430467},\n\t\t{4711, -0.2688548061606313},\n\t\t{4712, -0.6752139661384496},\n\t\t{4713, -0.5041384836574827},\n\t\t{4714, 2.367082843621476},\n\t\t{4715, -0.783182373031726},\n\t\t{4716, -0.18944147644329762},\n\t\t{4717, -1.9586092294033044},\n\t\t{4718, 2.1620681570455225},\n\t\t{4719, -0.16141600798067746},\n\t\t{4720, 3.2075776859801413},\n\t\t{4721, 1.0183533685799957},\n\t\t{4722, -1.7080687421326803},\n\t\t{4723, 0.18440719807808925},\n\t\t{4724, 5.712998632364829},\n\t\t{4725, 2.369161817602541},\n\t\t{4726, 0.37156117842568737},\n\t\t{4727, 1.858710733625652},\n\t\t{4728, 5.514065605944318},\n\t\t{4729, 2.5083543114013693},\n\t\t{4730, 2.4136816846208102},\n\t\t{4731, 1.1277988308955025},\n\t\t{4732, -0.3149152221707343},\n\t\t{4733, 0.26392682192513506},\n\t\t{4734, -1.7257447945643514},\n\t\t{4735, 2.966386741890815},\n\t\t{4736, 0.9742725896024123},\n\t\t{4737, -0.5149122531467037},\n\t\t{4738, 0.11751676845141168},\n\t\t{4739, -1.695596948138374},\n\t\t{4740, 2.596856657089344},\n\t\t{4741, 3.3571905598677363},\n\t\t{4742, 1.6188311057313367},\n\t\t{4743, -0.8439886715986941},\n\t\t{4744, 3.02318829049801},\n\t\t{4745, -3.77577881323399},\n\t\t{4746, -3.7463694518238735},\n\t\t{4747, 1.2432267950430334},\n\t\t{4748, -4.692695417878392},\n\t\t{4749, -2.390857284634945},\n\t\t{4750, -4.34577098334832},\n\t\t{4751, 1.3102528075552806},\n\t\t{4752, 0.2447351567985186},\n\t\t{4753, 0.09001265630962721},\n\t\t{4754, 0.1827544337388772},\n\t\t{4755, 2.4445638937790837},\n\t\t{4756, 1.3162538371686088},\n\t\t{4757, 1.831962578289522},\n\t\t{4758, 3.2015148461749185},\n\t\t{4759, 5.204633743199489},\n\t\t{4760, 5.394010917996627},\n\t\t{4761, 2.928167760516333},\n\t\t{4762, 1.9772469641601984},\n\t\t{4763, -0.6166951595066459},\n\t\t{4764, -1.1676893014751861},\n\t\t{4765, 0.44121398940602746},\n\t\t{4766, 1.3890050094059294},\n\t\t{4767, 1.246121041656619},\n\t\t{4768, 4.858178223164077},\n\t\t{4769, -1.6470310461483908},\n\t\t{4770, -0.6221357550161467},\n\t\t{4771, -0.23825194575433123},\n\t\t{4772, 0.3657858669562647},\n\t\t{4773, 0.49786995458604616},\n\t\t{4774, 2.2940697403302943},\n\t\t{4775, 2.355475795878255},\n\t\t{4776, 0.8579398554962228},\n\t\t{4777, -1.0989638934569577},\n\t\t{4778, 0.23010264057912538},\n\t\t{4779, 0.27227004031748125},\n\t\t{4780, 5.84931276015174},\n\t\t{4781, 2.3944319566017933},\n\t\t{4782, 1.119431326261401},\n\t\t{4783, 2.575287068171496},\n\t\t{4784, -0.1329566764692025},\n\t\t{4785, -2.4132430061506644},\n\t\t{4786, -2.0877092568151987},\n\t\t{4787, -1.8512771494368312},\n\t\t{4788, 1.4439530468253723},\n\t\t{4789, 0.9377375292594714},\n\t\t{4790, 0.6842835330949164},\n\t\t{4791, 2.533201350364261},\n\t\t{4792, 2.0703283330730313},\n\t\t{4793, 0.01024859421887514},\n\t\t{4794, 2.2148427094191447},\n\t\t{4795, 3.310380568545128},\n\t\t{4796, 3.181256534502562},\n\t\t{4797, -0.8288426548243919},\n\t\t{4798, -3.5763170156434265},\n\t\t{4799, -6.152565225010233},\n\t\t{4800, -1.939030005717324},\n\t\t{4801, -1.0626647908906293},\n\t\t{4802, -0.6336369061379366},\n\t\t{4803, -1.282111075788885},\n\t\t{4804, 0.11780356386210622},\n\t\t{4805, -1.8538412312522439},\n\t\t{4806, -4.329150563557341},\n\t\t{4807, 0.6466910151562291},\n\t\t{4808, 2.654330103308584},\n\t\t{4809, 0.5771757567196507},\n\t\t{4810, 0.8648281485144467},\n\t\t{4811, 0.7311973440575287},\n\t\t{4812, 1.734095330246719},\n\t\t{4813, 0.07202498543618185},\n\t\t{4814, -1.9790439068656012},\n\t\t{4815, -3.021090671729249},\n\t\t{4816, -0.1008065952326671},\n\t\t{4817, -0.32176473697901575},\n\t\t{4818, -0.15322689408646292},\n\t\t{4819, -0.3906749618873405},\n\t\t{4820, -1.06930474231111},\n\t\t{4821, -2.685543621657825},\n\t\t{4822, -0.5639649369974775},\n\t\t{4823, -1.2718355663720502},\n\t\t{4824, -1.4295259096313646},\n\t\t{4825, -1.653421663502435},\n\t\t{4826, -0.7942386249588679},\n\t\t{4827, -0.1135225087602709},\n\t\t{4828, 0.6174683389123125},\n\t\t{4829, 1.7776891185739003},\n\t\t{4830, 0.49368403611360856},\n\t\t{4831, -0.16216773180079563},\n\t\t{4832, 0.4171480827197546},\n\t\t{4833, 2.7430312522104074},\n\t\t{4834, 0.1378863999781319},\n\t\t{4835, 0.9257715128192511},\n\t\t{4836, 0.8949090567067058},\n\t\t{4837, -2.120857886730965},\n\t\t{4838, 0.06063826717477927},\n\t\t{4839, 1.316879237377766},\n\t\t{4840, 0.17235219008946806},\n\t\t{4841, 2.7186016852551456},\n\t\t{4842, -2.629341559278801},\n\t\t{4843, -1.39819769693825},\n\t\t{4844, 0.0505392580151206},\n\t\t{4845, 0.6975583765889697},\n\t\t{4846, 5.282296720565897},\n\t\t{4847, 2.524734163972368},\n\t\t{4848, 0.8550409750927},\n\t\t{4849, 3.212299702844635},\n\t\t{4850, 3.8318102503596174},\n\t\t{4851, 0.2859544341989202},\n\t\t{4852, 4.0097953482453645},\n\t\t{4853, 2.202704095183943},\n\t\t{4854, 3.173155137285125},\n\t\t{4855, 1.1387763272081264},\n\t\t{4856, -2.239103295319526},\n\t\t{4857, -1.2475069044327225},\n\t\t{4858, -0.9246837996846835},\n\t\t{4859, -5.484369447376061},\n\t\t{4860, -0.393333650840721},\n\t\t{4861, -1.3700612843074804},\n\t\t{4862, -0.6045267717963987},\n\t\t{4863, -0.7745651278216691},\n\t\t{4864, -0.11804197831945898},\n\t\t{4865, 2.642215055609161},\n\t\t{4866, 1.5102066564321164},\n\t\t{4867, 3.1329272817355287},\n\t\t{4868, 1.0102304695554887},\n\t\t{4869, 0.13167505092598614},\n\t\t{4870, 1.3996231838556024},\n\t\t{4871, 0.02956656701826854},\n\t\t{4872, 1.2254405765926737},\n\t\t{4873, 0.22281937232316323},\n\t\t{4874, -0.041726769815379},\n\t\t{4875, 0.15632396878903487},\n\t\t{4876, 0.959413538322629},\n\t\t{4877, 3.557091410889755},\n\t\t{4878, 2.6081666938052805},\n\t\t{4879, 1.351610047291514},\n\t\t{4880, 0.15053566419989195},\n\t\t{4881, 0.11947001088780972},\n\t\t{4882, -0.0004862823174552125},\n\t\t{4883, 4.0571954468096525},\n\t\t{4884, 3.0220517485785505},\n\t\t{4885, 0.24199187333548378},\n\t\t{4886, -0.8664819296012896},\n\t\t{4887, -3.1081870825997773},\n\t\t{4888, 3.954294143776898},\n\t\t{4889, -2.085693226576981},\n\t\t{4890, -2.668399127624096},\n\t\t{4891, 0.7490119537821371},\n\t\t{4892, -0.5920788817462851},\n\t\t{4893, -0.32293918264878235},\n\t\t{4894, 2.966014996547112},\n\t\t{4895, -8.02630092740655},\n\t\t{4896, -0.5166625595792476},\n\t\t{4897, -7.894731927175839},\n\t\t{4898, -2.628765094978702},\n\t\t{4899, -0.3568486552406481},\n\t\t{4900, -0.003672173201065082},\n\t\t{4901, 1.1309450310000193},\n\t\t{4902, 0.8870196938718216},\n\t\t{4903, 0.20440220428953804},\n\t\t{4904, 0.5794337626839388},\n\t\t{4905, -0.506783949813211},\n\t\t{4906, -1.318891870607134},\n\t\t{4907, -3.514057687016755},\n\t\t{4908, 0.3102012340399152},\n\t\t{4909, 0.039507125792953776},\n\t\t{4910, 0.22216100107841033},\n\t\t{4911, 0.10800575553808826},\n\t\t{4912, 0.35540034022195294},\n\t\t{4913, -0.5143566974653374},\n\t\t{4914, 0.3764559281112929},\n\t\t{4915, -0.21899706171164457},\n\t\t{4916, -2.392159371871195},\n\t\t{4917, -1.3692465375673415},\n\t\t{4918, 0.01754552931307507},\n\t\t{4919, 1.3153201818471942},\n\t\t{4920, 2.8718991134470455},\n\t\t{4921, 4.371385473896687},\n\t\t{4922, 0.7267615141439405},\n\t\t{4923, -0.7866827418848996},\n\t\t{4924, -0.7674138010538658},\n\t\t{4925, -1.2946003994431583},\n\t\t{4926, 1.6156891757529985},\n\t\t{4927, 1.6514183375970304},\n\t\t{4928, -0.20163984525959422},\n\t\t{4929, 1.6331147261277983},\n\t\t{4930, -0.4263471213757257},\n\t\t{4931, -0.10499912536710572},\n\t\t{4932, 1.9572672751122535},\n\t\t{4933, 6.114137943176568},\n\t\t{4934, 0.9204473513949778},\n\t\t{4935, 0.3130311603277955},\n\t\t{4936, 3.7178148278984695},\n\t\t{4937, -0.22976290869503702},\n\t\t{4938, -1.402445923610105},\n\t\t{4939, -3.263251413159843},\n\t\t{4940, -0.9137779659371708},\n\t\t{4941, -0.9408093602715949},\n\t\t{4942, -0.8093049071420847},\n\t\t{4943, -2.5648140570362923},\n\t\t{4944, -0.9478816164738884},\n\t\t{4945, -0.8588358454671889},\n\t\t{4946, -0.9048495065466595},\n\t\t{4947, 3.153392290182028},\n\t\t{4948, 1.2713634918137844},\n\t\t{4949, -0.012874348709935646},\n\t\t{4950, -0.3528948587211178},\n\t\t{4951, -1.6302416750492448},\n\t\t{4952, -1.9195611378384263},\n\t\t{4953, -1.655199232857213},\n\t\t{4954, 2.116591473668242},\n\t\t{4955, -0.18584337035164888},\n\t\t{4956, -2.8449029712278135},\n\t\t{4957, -3.644379518699819},\n\t\t{4958, -3.1518295822604734},\n\t\t{4959, -4.377783874045203},\n\t\t{4960, -1.7447904428964078},\n\t\t{4961, -0.7344264428039533},\n\t\t{4962, -3.0125624023628257},\n\t\t{4963, 0.7562292436053228},\n\t\t{4964, 0.2729120218260934},\n\t\t{4965, -2.305969625992171},\n\t\t{4966, -1.705580968400545},\n\t\t{4967, -0.5204860682562008},\n\t\t{4968, 1.8737431282723342},\n\t\t{4969, 0.22892178886606063},\n\t\t{4970, 0.10639281807191012},\n\t\t{4971, 1.7053340293551373},\n\t\t{4972, 0.590741694960817},\n\t\t{4973, 6.799049981047992},\n\t\t{4974, -1.9163018970939785},\n\t\t{4975, -0.7217509410867016},\n\t\t{4976, -3.024730046486979},\n\t\t{4977, 4.233341079131715},\n\t\t{4978, 4.160135282015402},\n\t\t{4979, -1.0094104100937795},\n\t\t{4980, 0.3551984443515547},\n\t\t{4981, 0.23553183348294526},\n\t\t{4982, 3.2678247766479243},\n\t\t{4983, -1.0437988712409358},\n\t\t{4984, -0.4553981016014734},\n\t\t{4985, -1.8941782284414685},\n\t\t{4986, -0.8390873207157827},\n\t\t{4987, -0.514539915419365},\n\t\t{4988, -0.7011793330779448},\n\t\t{4989, 2.350413669895398},\n\t\t{4990, 0.5046792457656368},\n\t\t{4991, -0.413771582203163},\n\t\t{4992, -1.3533624386611818},\n\t\t{4993, -0.49031243398209756},\n\t\t{4994, -0.4858191206009566},\n\t\t{4995, -0.2777943061752596},\n\t\t{4996, -0.5587905516604237},\n\t\t{4997, 2.8479512294406004},\n\t\t{4998, 7.167016287499241},\n\t\t{4999, 3.616596050725063},\n\t},\n\t{\n\t\t{0, 100.0},\n\t\t{316224, 106.3849},\n\t\t{320544, 106.3907},\n\t\t{321408, 106.3862},\n\t\t{322272, 106.3901},\n\t\t{323136, 106.3802},\n\t\t{325728, 106.3839},\n\t\t{326592, 106.3894},\n\t\t{327456, 106.389},\n\t\t{328320, 106.3851},\n\t\t{329184, 106.3932},\n\t\t{331776, 106.3882},\n\t\t{332640, 106.392},\n\t\t{333504, 106.3803},\n\t\t{334368, 106.3937},\n\t\t{335232, 106.3785},\n\t\t{337824, 106.3874},\n\t\t{338688, 106.3802},\n\t\t{339552, 106.3851},\n\t\t{340416, 106.3842},\n\t\t{341280, 106.3906},\n\t\t{343872, 106.3854},\n\t\t{344736, 106.3844},\n\t\t{345600, 106.3861},\n\t\t{346464, 106.3844},\n\t\t{347328, 106.3803},\n\t\t{349920, 106.3806},\n\t\t{350784, 106.3919},\n\t\t{351648, 106.3871},\n\t\t{352512, 106.388},\n\t\t{353376, 106.3778},\n\t\t{355968, 106.3788},\n\t\t{356832, 106.3853},\n\t\t{357696, 106.3935},\n\t\t{358560, 106.3887},\n\t\t{359424, 106.3908},\n\t\t{362016, 106.3815},\n\t\t{362880, 106.3796},\n\t\t{363744, 106.3888},\n\t\t{364608, 106.3794},\n\t\t{365472, 106.386},\n\t\t{368064, 106.3785},\n\t\t{368928, 106.3844},\n\t\t{369792, 106.3877},\n\t\t{370656, 106.3843},\n\t\t{371520, 106.3883},\n\t\t{374112, 106.3927},\n\t\t{374976, 106.3836},\n\t\t{375840, 106.3796},\n\t\t{376704, 106.3856},\n\t\t{377568, 106.3856},\n\t\t{380160, 106.3847},\n\t\t{381024, 106.3901},\n\t\t{381888, 106.3801},\n\t\t{382752, 106.3909},\n\t\t{383616, 106.3837},\n\t\t{386208, 106.3781},\n\t\t{387072, 106.3928},\n\t\t{387936, 106.3815},\n\t\t{388800, 106.3944},\n\t\t{389664, 106.3907},\n\t\t{392256, 106.389},\n\t\t{393120, 106.3815},\n\t\t{393984, 106.3796},\n\t\t{394848, 106.3813},\n\t\t{395712, 106.3935},\n\t\t{398304, 106.3912},\n\t\t{399168, 106.3785},\n\t\t{400032, 106.3827},\n\t\t{405216, 106.3855},\n\t\t{406080, 106.387},\n\t\t{406944, 106.3861},\n\t\t{407808, 106.3941},\n\t\t{410400, 106.3927},\n\t\t{411264, 106.3787},\n\t\t{412128, 106.3939},\n\t\t{413856, 106.381},\n\t\t{416448, 106.3867},\n\t\t{417312, 106.3921},\n\t\t{418176, 106.3923},\n\t\t{419040, 106.3845},\n\t\t{419904, 106.3887},\n\t\t{422496, 106.396},\n\t\t{423360, 106.3845},\n\t\t{424224, 106.3784},\n\t\t{425088, 106.3945},\n\t\t{425952, 106.3858},\n\t\t{428544, 106.3924},\n\t\t{429408, 106.3823},\n\t\t{430272, 106.3878},\n\t\t{431136, 106.3795},\n\t\t{432000, 106.3935},\n\t\t{434592, 106.3869},\n\t\t{435456, 106.3848},\n\t\t{436320, 106.3885},\n\t\t{438048, 106.3891},\n\t\t{440640, 106.3806},\n\t\t{441504, 106.38},\n\t\t{442368, 106.3803},\n\t\t{443232, 106.3897},\n\t\t{444096, 106.3705},\n\t\t{447552, 106.395},\n\t\t{448416, 106.4012},\n\t\t{449280, 106.3701},\n\t\t{450144, 106.3533},\n\t\t{452736, 106.3638},\n\t\t{453600, 106.3825},\n\t\t{454464, 106.3858},\n\t\t{455328, 106.3476},\n\t\t{456192, 106.3301},\n\t\t{458784, 106.3473},\n\t\t{459648, 106.3326},\n\t\t{460512, 106.3362},\n\t\t{462240, 106.3396},\n\t\t{464832, 106.3397},\n\t\t{465696, 106.3184},\n\t\t{466560, 106.3229},\n\t\t{467424, 106.3252},\n\t\t{468288, 106.3372},\n\t\t{470880, 114.9774},\n\t\t{471744, 114.9845},\n\t\t{472608, 114.9456},\n\t\t{473472, 114.9321},\n\t\t{474336, 114.9526},\n\t\t{476928, 114.9344},\n\t\t{477792, 114.9354},\n\t\t{478656, 114.9263},\n\t\t{479520, 114.9323},\n\t\t{480384, 114.9177},\n\t\t{482976, 114.8979},\n\t\t{483840, 114.909},\n\t\t{484704, 114.908},\n\t\t{485568, 114.9051},\n\t\t{486432, 114.8746},\n\t\t{489024, 114.8899},\n\t\t{489888, 114.8554},\n\t\t{490752, 114.8666},\n\t\t{491616, 114.8731},\n\t\t{492480, 114.8176},\n\t\t{495072, 114.7947},\n\t\t{495936, 114.7916},\n\t\t{496800, 114.7892},\n\t\t{497664, 114.777},\n\t\t{498528, 114.761},\n\t\t{501984, 114.7346},\n\t\t{502848, 114.6764},\n\t\t{503712, 114.6507},\n\t\t{504576, 114.6442},\n\t\t{507168, 114.608},\n\t\t{508032, 114.6036},\n\t\t{508896, 114.5777},\n\t\t{509760, 114.5997},\n\t\t{510624, 114.5884},\n\t\t{513216, 114.5612},\n\t\t{514080, 114.4844},\n\t\t{514944, 114.4391},\n\t\t{515808, 114.3812},\n\t\t{516672, 114.3764},\n\t\t{519264, 114.393},\n\t\t{520128, 114.3974},\n\t\t{520992, 114.4017},\n\t\t{521856, 114.3634},\n\t\t{522720, 114.3016},\n\t\t{525312, 114.2515},\n\t\t{526176, 114.2482},\n\t\t{527040, 114.1958},\n\t\t{527904, 114.1907},\n\t\t{528768, 114.1731},\n\t\t{531360, 114.1669},\n\t\t{532224, 114.1693},\n\t\t{533088, 114.1072},\n\t\t{533952, 114.1024},\n\t\t{534816, 114.0735},\n\t\t{537408, 114.0702},\n\t\t{538272, 114.0803},\n\t\t{539136, 114.0691},\n\t\t{540000, 114.0771},\n\t\t{540864, 114.0757},\n\t\t{543456, 114.0604},\n\t\t{544320, 114.0077},\n\t\t{545184, 114.0382},\n\t\t{546048, 114.0469},\n\t\t{546912, 114.0486},\n\t\t{549504, 114.0517},\n\t\t{550368, 114.051},\n\t\t{551232, 114.0539},\n\t\t{552096, 114.0527},\n\t\t{552960, 114.0833},\n\t\t{555552, 114.0489},\n\t\t{556416, 114.0399},\n\t\t{557280, 114.0304},\n\t\t{558144, 113.991},\n\t\t{559008, 113.966},\n\t\t{561600, 113.9427},\n\t\t{562464, 113.8802},\n\t\t{563328, 113.8774},\n\t\t{564192, 113.8702},\n\t\t{565056, 113.8718},\n\t\t{567648, 113.8611},\n\t\t{568512, 113.8617},\n\t\t{569376, 113.8643},\n\t\t{570240, 113.8887},\n\t\t{571104, 113.8755},\n\t\t{573696, 113.8479},\n\t\t{574560, 113.8413},\n\t\t{575424, 113.8582},\n\t\t{576288, 113.8934},\n\t\t{577152, 113.8797},\n\t\t{579744, 113.9056},\n\t\t{580608, 113.8961},\n\t\t{581472, 113.9018},\n\t\t{582336, 113.882},\n\t\t{583200, 113.8696},\n\t\t{585792, 113.8311},\n\t\t{586656, 113.8509},\n\t\t{587520, 113.8489},\n\t\t{588384, 113.8419},\n\t\t{589248, 113.8432},\n\t\t{591840, 113.8469},\n\t\t{592704, 113.8621},\n\t\t{593568, 113.8548},\n\t\t{594432, 113.8804},\n\t\t{595296, 113.8998},\n\t\t{597888, 113.9299},\n\t\t{598752, 114.0812},\n\t\t{599616, 114.0825},\n\t\t{600480, 114.121},\n\t\t{601344, 114.1423},\n\t\t{603936, 114.1304},\n\t\t{604800, 114.1454},\n\t\t{605664, 114.1524},\n\t\t{606528, 114.1724},\n\t\t{607392, 114.1999},\n\t\t{609984, 114.2047},\n\t\t{610848, 114.1988},\n\t\t{611712, 114.2286},\n\t\t{612576, 114.2462},\n\t\t{613440, 114.2384},\n\t\t{616032, 114.267},\n\t\t{616896, 114.2641},\n\t\t{617760, 114.267},\n\t\t{618624, 114.2949},\n\t\t{619488, 114.3368},\n\t\t{622080, 114.3602},\n\t\t{622944, 114.3704},\n\t\t{623808, 114.3617},\n\t\t{624672, 114.3807},\n\t\t{625536, 114.3809},\n\t\t{628128, 114.3669},\n\t\t{628992, 114.3764},\n\t\t{629856, 114.3967},\n\t\t{630720, 114.4546},\n\t\t{631584, 114.4774},\n\t\t{635040, 114.4942},\n\t\t{635904, 114.4962},\n\t\t{636768, 114.521},\n\t\t{637632, 114.608},\n\t\t{640224, 114.6818},\n\t\t{641088, 114.7097},\n\t\t{641952, 114.7651},\n\t\t{642816, 114.7783},\n\t\t{643680, 114.7864},\n\t\t{646272, 114.7924},\n\t\t{647136, 114.827},\n\t\t{648000, 114.836},\n\t\t{648864, 114.8642},\n\t\t{649728, 114.8998},\n\t\t{652320, 114.9252},\n\t\t{653184, 114.9355},\n\t\t{654048, 114.976},\n\t\t{654912, 114.955},\n\t\t{655776, 115.0086},\n\t\t{658368, 115.0375},\n\t\t{659232, 115.0676},\n\t\t{660096, 115.0659},\n\t\t{660960, 115.0562},\n\t\t{661824, 115.216},\n\t\t{664416, 115.2242},\n\t\t{665280, 115.2631},\n\t\t{666144, 115.3},\n\t\t{667008, 115.3189},\n\t\t{667872, 115.3668},\n\t\t{670464, 115.3718},\n\t\t{671328, 115.3902},\n\t\t{672192, 115.4064},\n\t\t{673056, 115.4674},\n\t\t{673920, 115.5246},\n\t\t{676512, 115.5349},\n\t\t{677376, 115.526},\n\t\t{678240, 115.5305},\n\t\t{679104, 115.5676},\n\t\t{679968, 115.6666},\n\t\t{682560, 115.6712},\n\t\t{683424, 115.696},\n\t\t{684288, 115.8227},\n\t\t{685152, 115.7891},\n\t\t{686016, 115.7853},\n\t\t{688608, 115.736},\n\t\t{689472, 115.7663},\n\t\t{690336, 115.7615},\n\t\t{691200, 115.7494},\n\t\t{692064, 115.7822},\n\t\t{694656, 115.795},\n\t\t{695520, 115.8461},\n\t\t{696384, 115.8235},\n\t\t{697248, 115.8499},\n\t\t{698112, 115.8514},\n\t\t{700704, 115.8539},\n\t\t{701568, 115.8595},\n\t\t{702432, 115.9832},\n\t\t{703296, 115.9467},\n\t\t{704160, 115.8855},\n\t\t{706752, 115.8601},\n\t\t{707616, 115.8416},\n\t\t{708480, 115.8306},\n\t\t{713664, 115.828},\n\t\t{714528, 115.8088},\n\t\t{715392, 115.8051},\n\t\t{716256, 115.8129},\n\t\t{718848, 115.7657},\n\t\t{719712, 115.7389},\n\t\t{720576, 115.7305},\n\t\t{721440, 115.7202},\n\t\t{722304, 115.7101},\n\t\t{724896, 115.6463},\n\t\t{725760, 115.6674},\n\t\t{726624, 115.6681},\n\t\t{728352, 115.6508},\n\t\t{730944, 115.6624},\n\t\t{731808, 115.6538},\n\t\t{732672, 115.6634},\n\t\t{733536, 115.6724},\n\t\t{734400, 115.675},\n\t\t{736992, 115.6567},\n\t\t{737856, 115.6553},\n\t\t{738720, 115.6975},\n\t\t{739584, 115.8159},\n\t\t{740448, 115.8571},\n\t\t{743040, 115.8801},\n\t\t{743904, 115.8645},\n\t\t{744768, 115.8485},\n\t\t{746496, 115.8516},\n\t\t{749088, 115.8313},\n\t\t{749952, 115.8387},\n\t\t{750816, 115.8258},\n\t\t{751680, 115.8055},\n\t\t{752544, 115.8234},\n\t\t{756000, 115.8685},\n\t\t{756864, 115.8626},\n\t\t{757728, 115.8729},\n\t\t{758592, 115.9012},\n\t\t{761184, 116.0026},\n\t\t{762048, 116.006},\n\t\t{762912, 115.9997},\n\t\t{763776, 116.0022},\n\t\t{764640, 115.9955},\n\t\t{767232, 115.9985},\n\t\t{768096, 116.0084},\n\t\t{768960, 115.998},\n\t\t{769824, 115.9863},\n\t\t{770688, 115.9723},\n\t\t{773280, 116.0448},\n\t\t{774144, 116.0377},\n\t\t{775008, 116.0597},\n\t\t{775872, 116.1389},\n\t\t{779328, 116.0719},\n\t\t{780192, 116.0695},\n\t\t{781056, 116.0698},\n\t\t{781920, 116.1061},\n\t\t{782784, 116.1309},\n\t\t{785376, 116.1241},\n\t\t{786240, 116.1664},\n\t\t{787104, 116.1617},\n\t\t{787968, 116.1739},\n\t\t{788832, 116.2175},\n\t\t{791424, 116.2525},\n\t\t{792288, 116.2638},\n\t\t{793152, 116.2732},\n\t\t{794016, 116.3029},\n\t\t{794880, 116.3529},\n\t\t{797472, 116.3529},\n\t\t{798336, 116.3531},\n\t\t{799200, 116.3435},\n\t\t{800064, 116.3467},\n\t\t{800928, 116.3474},\n\t\t{803520, 116.3346},\n\t\t{804384, 116.3442},\n\t\t{805248, 116.3329},\n\t\t{806112, 116.3209},\n\t\t{806976, 116.3135},\n\t\t{809568, 116.3075},\n\t\t{810432, 116.2987},\n\t\t{811296, 116.302},\n\t\t{812160, 116.306},\n\t\t{813024, 116.3154},\n\t\t{816480, 116.3266},\n\t\t{817344, 116.3292},\n\t\t{818208, 116.3365},\n\t\t{819072, 116.347},\n\t\t{821664, 116.3574},\n\t\t{822528, 116.3397},\n\t\t{823392, 116.3357},\n\t\t{824256, 116.3371},\n\t\t{825120, 116.4034},\n\t\t{827712, 116.4183},\n\t\t{828576, 116.4003},\n\t\t{829440, 116.4201},\n\t\t{830304, 116.4262},\n\t\t{831168, 116.4708},\n\t\t{833760, 116.4594},\n\t\t{834624, 116.467},\n\t\t{835488, 116.4884},\n\t\t{836352, 116.4819},\n\t\t{837216, 116.4166},\n\t\t{839808, 116.2509},\n\t\t{840672, 116.2649},\n\t\t{841536, 116.2537},\n\t\t{842400, 116.2496},\n\t\t{843264, 116.2705},\n\t\t{845856, 116.258},\n\t\t{846720, 116.2603},\n\t\t{847584, 116.2721},\n\t\t{848448, 116.2668},\n\t\t{849312, 116.2721},\n\t\t{851904, 116.2693},\n\t\t{852768, 116.2625},\n\t\t{853632, 116.2639},\n\t\t{854496, 116.2821},\n\t\t{855360, 116.2592},\n\t\t{857952, 116.2599},\n\t\t{858816, 116.2463},\n\t\t{859680, 116.2414},\n\t\t{860544, 116.232},\n\t\t{861408, 116.2672},\n\t\t{864000, 116.3052},\n\t\t{864864, 116.2457},\n\t\t{865728, 116.2763},\n\t\t{866592, 116.3173},\n\t\t{867456, 116.3243},\n\t\t{870048, 116.3127},\n\t\t{870912, 116.296},\n\t\t{871776, 116.346},\n\t\t{872640, 116.4735},\n\t\t{873504, 116.5554},\n\t\t{876096, 116.6067},\n\t\t{876960, 116.636},\n\t\t{877824, 116.6441},\n\t\t{878688, 116.6389},\n\t\t{879552, 116.6432},\n\t\t{882144, 116.7098},\n\t\t{883008, 116.7215},\n\t\t{883872, 116.7248},\n\t\t{884736, 116.7313},\n\t\t{885600, 116.73},\n\t\t{888192, 116.7551},\n\t\t{889056, 116.8187},\n\t\t{889920, 116.648},\n\t\t{890784, 116.48},\n\t\t{891648, 116.3853},\n\t\t{894240, 116.3846},\n\t\t{895104, 116.3691},\n\t\t{895968, 116.3632},\n\t\t{896832, 116.3582},\n\t\t{897696, 116.3464},\n\t\t{900288, 116.3189},\n\t\t{901152, 116.3092},\n\t\t{902016, 116.3197},\n\t\t{902880, 116.3197},\n\t\t{903744, 116.3027},\n\t\t{906336, 116.3123},\n\t\t{907200, 116.3283},\n\t\t{908064, 116.3339},\n\t\t{908928, 116.3355},\n\t\t{909792, 116.3408},\n\t\t{912384, 116.3393},\n\t\t{913248, 116.3339},\n\t\t{914112, 116.3489},\n\t\t{914976, 116.3598},\n\t\t{915840, 116.3577},\n\t\t{918432, 116.3534},\n\t\t{919296, 116.3354},\n\t\t{920160, 116.3462},\n\t\t{921024, 116.3489},\n\t\t{921888, 116.3616},\n\t\t{924480, 116.3736},\n\t\t{925344, 116.3834},\n\t\t{926208, 116.375},\n\t\t{927072, 116.3862},\n\t\t{927936, 116.3812},\n\t\t{930528, 116.3812},\n\t\t{931392, 116.3627},\n\t\t{932256, 116.3464},\n\t\t{933120, 116.3354},\n\t\t{933984, 116.3635},\n\t\t{936576, 116.3644},\n\t\t{937440, 116.3669},\n\t\t{938304, 116.3572},\n\t\t{939168, 116.3717},\n\t\t{940032, 116.3697},\n\t\t{943488, 116.4196},\n\t\t{944352, 116.4236},\n\t\t{945216, 116.4047},\n\t\t{946080, 116.4796},\n\t\t{949536, 116.4773},\n\t\t{950400, 116.481},\n\t\t{951264, 116.4885},\n\t\t{952128, 116.491},\n\t\t{954720, 116.49},\n\t\t{955584, 116.5212},\n\t\t{956448, 116.5212},\n\t\t{957312, 116.5058},\n\t\t{958176, 116.5025},\n\t\t{960768, 116.5138},\n\t\t{961632, 116.5193},\n\t\t{962496, 116.5219},\n\t\t{963360, 116.5607},\n\t\t{964224, 116.5616},\n\t\t{966816, 116.5522},\n\t\t{967680, 116.5731},\n\t\t{968544, 116.5807},\n\t\t{969408, 116.5772},\n\t\t{970272, 116.5828},\n\t\t{972864, 116.5821},\n\t\t{973728, 116.5891},\n\t\t{974592, 116.2576},\n\t\t{975456, 116.0121},\n\t\t{976320, 115.7815},\n\t\t{978912, 115.4935},\n\t\t{979776, 115.4833},\n\t\t{980640, 115.4738},\n\t\t{981504, 115.4821},\n\t\t{982368, 115.4803},\n\t\t{984960, 115.4684},\n\t\t{985824, 115.3823},\n\t\t{986688, 115.3757},\n\t\t{987552, 115.4372},\n\t\t{988416, 115.4996},\n\t\t{991008, 115.6133},\n\t\t{991872, 115.6753},\n\t\t{992736, 115.7288},\n\t\t{993600, 115.7282},\n\t\t{994464, 115.7127},\n\t\t{997056, 115.7362},\n\t\t{997920, 115.7939},\n\t\t{998784, 115.8383},\n\t\t{999648, 115.8499},\n\t\t{1000512, 115.8962},\n\t\t{1003104, 115.9555},\n\t\t{1003968, 116.0545},\n\t\t{1004832, 116.1207},\n\t\t{1005696, 116.1379},\n\t\t{1006560, 116.1405},\n\t\t{1009152, 116.1372},\n\t\t{1010016, 116.1306},\n\t\t{1010880, 116.1579},\n\t\t{1011744, 116.1522},\n\t\t{1012608, 116.1572},\n\t\t{1015200, 116.1582},\n\t\t{1016064, 116.1551},\n\t\t{1016928, 116.1419},\n\t\t{1017792, 116.1222},\n\t\t{1018656, 116.1252},\n\t\t{1021248, 116.1178},\n\t\t{1022112, 116.1045},\n\t\t{1022976, 116.1029},\n\t\t{1023840, 116.0845},\n\t\t{1024704, 116.0747},\n\t\t{1027296, 116.0666},\n\t\t{1028160, 116.0669},\n\t\t{1029024, 116.0805},\n\t\t{1029888, 116.0688},\n\t\t{1030752, 116.0735},\n\t\t{1033344, 116.0964},\n\t\t{1034208, 116.1008},\n\t\t{1035072, 116.1036},\n\t\t{1040256, 116.0778},\n\t\t{1041120, 116.0725},\n\t\t{1042848, 116.0824},\n\t\t{1045440, 116.0905},\n\t\t{1046304, 116.0844},\n\t\t{1047168, 116.1241},\n\t\t{1048032, 116.1489},\n\t\t{1048896, 116.1538},\n\t\t{1052352, 116.1572},\n\t\t{1053216, 116.165},\n\t\t{1054080, 116.1664},\n\t\t{1054944, 116.1496},\n\t\t{1057536, 116.1594},\n\t\t{1058400, 116.1504},\n\t\t{1059264, 116.1466},\n\t\t{1060128, 116.1444},\n\t\t{1060992, 116.1244},\n\t\t{1063584, 116.1116},\n\t\t{1064448, 116.1214},\n\t\t{1065312, 116.112},\n\t\t{1066176, 116.1124},\n\t\t{1067040, 116.1164},\n\t\t{1069632, 116.1137},\n\t\t{1070496, 116.1192},\n\t\t{1071360, 116.1062},\n\t\t{1073088, 116.0942},\n\t\t{1075680, 116.1029},\n\t\t{1076544, 116.0997},\n\t\t{1077408, 116.1112},\n\t\t{1078272, 115.9905},\n\t\t{1079136, 116.0046},\n\t\t{1082592, 116.0006},\n\t\t{1083456, 115.9964},\n\t\t{1084320, 115.8797},\n\t\t{1085184, 115.8801},\n\t\t{1087776, 115.8838},\n\t\t{1088640, 115.8842},\n\t\t{1089504, 115.7584},\n\t\t{1090368, 115.756},\n\t\t{1091232, 115.7432},\n\t\t{1093824, 115.7506},\n\t\t{1094688, 115.7494},\n\t\t{1095552, 115.7366},\n\t\t{1096416, 115.7296},\n\t\t{1097280, 115.7237},\n\t\t{1099872, 115.7262},\n\t\t{1100736, 115.8238},\n\t\t{1101600, 115.7272},\n\t\t{1102464, 115.722},\n\t\t{1103328, 115.7671},\n\t\t{1105920, 115.8145},\n\t\t{1106784, 115.804},\n\t\t{1107648, 115.8264},\n\t\t{1108512, 115.8166},\n\t\t{1109376, 115.8284},\n\t\t{1111968, 115.8292},\n\t\t{1112832, 115.831},\n\t\t{1113696, 115.8723},\n\t\t{1114560, 115.8709},\n\t\t{1115424, 115.8595},\n\t\t{1118016, 115.8619},\n\t\t{1118880, 115.8634},\n\t\t{1119744, 115.8759},\n\t\t{1120608, 115.9135},\n\t\t{1121472, 115.9485},\n\t\t{1124064, 115.9395},\n\t\t{1124928, 115.9471},\n\t\t{1125792, 115.9781},\n\t\t{1126656, 116.0212},\n\t\t{1127520, 116.0273},\n\t\t{1130112, 116.0836},\n\t\t{1130976, 116.118},\n\t\t{1131840, 116.1305},\n\t\t{1132704, 116.1454},\n\t\t{1133568, 116.1487},\n\t\t{1137024, 116.154},\n\t\t{1137888, 116.1611},\n\t\t{1138752, 116.1383},\n\t\t{1139616, 116.1435},\n\t\t{1142208, 116.1349},\n\t\t{1143072, 116.1501},\n\t\t{1143936, 116.1641},\n\t\t{1144800, 116.1548},\n\t\t{1145664, 116.1378},\n\t\t{1148256, 116.1361},\n\t\t{1149120, 116.138},\n\t\t{1149984, 116.1322},\n\t\t{1150848, 116.1296},\n\t\t{1151712, 116.1367},\n\t\t{1154304, 116.1362},\n\t\t{1155168, 116.1272},\n\t\t{1156032, 115.9654},\n\t\t{1156896, 115.9874},\n\t\t{1157760, 116.007},\n\t\t{1160352, 115.9912},\n\t\t{1161216, 115.9401},\n\t\t{1162080, 115.9528},\n\t\t{1162944, 115.9539},\n\t\t{1163808, 115.9687},\n\t\t{1166400, 115.9676},\n\t\t{1167264, 115.9684},\n\t\t{1168128, 115.9647},\n\t\t{1168992, 115.9742},\n\t\t{1169856, 115.9659},\n\t\t{1172448, 115.9747},\n\t\t{1173312, 115.9745},\n\t\t{1174176, 115.978},\n\t\t{1175040, 115.9705},\n\t\t{1175904, 115.9743},\n\t\t{1178496, 116.0468},\n\t\t{1179360, 116.0563},\n\t\t{1180224, 116.0646},\n\t\t{1181088, 116.1037},\n\t\t{1181952, 116.0944},\n\t\t{1184544, 116.0867},\n\t\t{1185408, 116.0868},\n\t\t{1186272, 116.0771},\n\t\t{1187136, 116.0706},\n\t\t{1188000, 116.0656},\n\t\t{1190592, 116.0743},\n\t\t{1191456, 116.0802},\n\t\t{1192320, 116.0899},\n\t\t{1193184, 116.0811},\n\t\t{1194048, 116.0857},\n\t\t{1196640, 116.0885},\n\t\t{1197504, 116.0859},\n\t\t{1198368, 116.0942},\n\t\t{1199232, 116.0877},\n\t\t{1200096, 116.0831},\n\t\t{1202688, 116.0996},\n\t\t{1203552, 116.1005},\n\t\t{1204416, 116.1038},\n\t\t{1205280, 116.1018},\n\t\t{1206144, 116.1005},\n\t\t{1208736, 116.1029},\n\t\t{1209600, 116.0977},\n\t\t{1210464, 116.0981},\n\t\t{1211328, 116.1077},\n\t\t{1212192, 116.1019},\n\t\t{1214784, 116.0848},\n\t\t{1215648, 116.0743},\n\t\t{1216512, 116.1389},\n\t\t{1217376, 116.1456},\n\t\t{1218240, 116.187},\n\t\t{1220832, 116.1543},\n\t\t{1221696, 116.1246},\n\t\t{1222560, 116.1248},\n\t\t{1223424, 116.1272},\n\t\t{1224288, 116.1241},\n\t\t{1226880, 116.1248},\n\t\t{1227744, 116.1329},\n\t\t{1228608, 116.1307},\n\t\t{1229472, 116.1338},\n\t\t{1230336, 116.1362},\n\t\t{1232928, 116.1596},\n\t\t{1233792, 116.1677},\n\t\t{1234656, 116.1767},\n\t\t{1235520, 116.1831},\n\t\t{1236384, 116.2192},\n\t\t{1238976, 116.2327},\n\t\t{1239840, 116.262},\n\t\t{1240704, 116.266},\n\t\t{1241568, 116.2938},\n\t\t{1242432, 116.3011},\n\t\t{1245024, 116.303},\n\t\t{1245888, 116.3079},\n\t\t{1246752, 116.3172},\n\t\t{1247616, 116.3182},\n\t\t{1248480, 116.3062},\n\t\t{1251072, 116.3067},\n\t\t{1251936, 116.3041},\n\t\t{1252800, 116.3012},\n\t\t{1253664, 116.3215},\n\t\t{1254528, 116.3337},\n\t\t{1258848, 116.3078},\n\t\t{1259712, 116.3076},\n\t\t{1260576, 116.3078},\n\t\t{1264896, 116.3018},\n\t\t{1265760, 116.3671},\n\t\t{1266624, 116.3815},\n\t\t{1269216, 116.3743},\n\t\t{1270080, 116.3779},\n\t\t{1270944, 116.3754},\n\t\t{1271808, 116.3805},\n\t\t{1272672, 116.38},\n\t\t{1275264, 116.37},\n\t\t{1276128, 116.3834},\n\t\t{1276992, 116.3767},\n\t\t{1277856, 116.3773},\n\t\t{1278720, 116.3824},\n\t\t{1281312, 116.3569},\n\t\t{1282176, 116.3564},\n\t\t{1283040, 116.3685},\n\t\t{1283904, 116.3677},\n\t\t{1284768, 116.4069},\n\t\t{1287360, 116.4026},\n\t\t{1288224, 116.4082},\n\t\t{1289088, 116.4084},\n\t\t{1289952, 116.4001},\n\t\t{1290816, 116.4},\n\t\t{1293408, 116.3619},\n\t\t{1294272, 116.3589},\n\t\t{1295136, 116.3615},\n\t\t{1296000, 116.3773},\n\t\t{1296864, 116.3848},\n\t\t{1299456, 116.3707},\n\t\t{1300320, 116.3752},\n\t\t{1301184, 116.3648},\n\t\t{1302048, 116.3544},\n\t\t{1302912, 116.3328},\n\t\t{1305504, 116.3245},\n\t\t{1306368, 116.3277},\n\t\t{1307232, 116.2676},\n\t\t{1308096, 116.2813},\n\t\t{1308960, 116.3276},\n\t\t{1311552, 116.3214},\n\t\t{1312416, 116.3228},\n\t\t{1313280, 116.3464},\n\t\t{1314144, 116.3036},\n\t\t{1315008, 116.2971},\n\t\t{1317600, 116.306},\n\t\t{1318464, 116.2506},\n\t\t{1319328, 116.2414},\n\t\t{1320192, 116.2374},\n\t\t{1321056, 116.2357},\n\t\t{1323648, 116.2416},\n\t\t{1324512, 116.2237},\n\t\t{1325376, 116.2247},\n\t\t{1326240, 116.2231},\n\t\t{1327104, 116.1834},\n\t\t{1329696, 116.1437},\n\t\t{1330560, 116.137},\n\t\t{1331424, 116.1419},\n\t\t{1332288, 116.0827},\n\t\t{1333152, 116.0874},\n\t\t{1335744, 116.09},\n\t\t{1336608, 116.0784},\n\t\t{1337472, 116.0451},\n\t\t{1338336, 116.0307},\n\t\t{1339200, 116.0318},\n\t\t{1341792, 116.0232},\n\t\t{1342656, 116.0097},\n\t\t{1343520, 116.0104},\n\t\t{1348704, 116.004},\n\t\t{1349568, 115.949},\n\t\t{1350432, 115.9399},\n\t\t{1351296, 115.9297},\n\t\t{1353888, 115.9353},\n\t\t{1354752, 115.9265},\n\t\t{1355616, 115.9166},\n\t\t{1356480, 115.8912},\n\t\t{1357344, 115.8887},\n\t\t{1359936, 115.8887},\n\t\t{1360800, 115.8901},\n\t\t{1361664, 115.8925},\n\t\t{1363392, 115.8997},\n\t\t{1365984, 115.9164},\n\t\t{1366848, 115.9026},\n\t\t{1368576, 115.9016},\n\t\t{1369440, 115.8695},\n\t\t{1372032, 115.8636},\n\t\t{1372896, 115.8787},\n\t\t{1373760, 115.8821},\n\t\t{1374624, 115.906},\n\t\t{1375488, 115.9117},\n\t\t{1378080, 115.906},\n\t\t{1378944, 115.8984},\n\t\t{1379808, 115.9001},\n\t\t{1381536, 115.9047},\n\t\t{1384128, 115.9087},\n\t\t{1384992, 115.9542},\n\t\t{1385856, 116.0064},\n\t\t{1386720, 116.0135},\n\t\t{1387584, 116.0212},\n\t\t{1391040, 116.0224},\n\t\t{1391904, 116.0229},\n\t\t{1392768, 116.0383},\n\t\t{1393632, 116.0424},\n\t\t{1396224, 116.0324},\n\t\t{1397088, 116.0315},\n\t\t{1397952, 116.032},\n\t\t{1398816, 116.0017},\n\t\t{1399680, 116.0191},\n\t\t{1402272, 116.0216},\n\t\t{1403136, 116.033},\n\t\t{1404000, 116.0332},\n\t\t{1404864, 116.0307},\n\t\t{1405728, 116.0304},\n\t\t{1409184, 116.0413},\n\t\t{1410048, 116.0703},\n\t\t{1410912, 116.0647},\n\t\t{1411776, 116.0727},\n\t\t{1414368, 116.106},\n\t\t{1415232, 116.1179},\n\t\t{1416096, 116.152},\n\t\t{1416960, 116.144},\n\t\t{1417824, 116.1764},\n\t\t{1420416, 116.1682},\n\t\t{1421280, 116.1837},\n\t\t{1422144, 116.1928},\n\t\t{1423008, 116.1765},\n\t\t{1423872, 116.1962},\n\t\t{1426464, 116.2084},\n\t\t{1427328, 116.2198},\n\t\t{1428192, 116.2208},\n\t\t{1429056, 116.2358},\n\t\t{1429920, 116.1973},\n\t\t{1432512, 116.2091},\n\t\t{1433376, 116.2143},\n\t\t{1434240, 116.2222},\n\t\t{1435104, 116.2468},\n\t\t{1435968, 116.2435},\n\t\t{1438560, 116.2503},\n\t\t{1439424, 116.2474},\n\t\t{1440288, 116.2436},\n\t\t{1441152, 116.2451},\n\t\t{1442016, 116.2591},\n\t\t{1444608, 116.2573},\n\t\t{1445472, 116.2442},\n\t\t{1446336, 116.2832},\n\t\t{1447200, 116.2875},\n\t\t{1448064, 116.3202},\n\t\t{1451520, 116.2788},\n\t\t{1452384, 116.3264},\n\t\t{1453248, 116.3361},\n\t\t{1454112, 116.3387},\n\t\t{1456704, 116.3308},\n\t\t{1457568, 116.2796},\n\t\t{1458432, 116.2904},\n\t\t{1459296, 116.2356},\n\t\t{1460160, 116.2366},\n\t\t{1462752, 116.2473},\n\t\t{1463616, 116.244},\n\t\t{1464480, 116.2334},\n\t\t{1465344, 116.2171},\n\t\t{1466208, 116.2076},\n\t\t{1468800, 116.2135},\n\t\t{1469664, 116.217},\n\t\t{1470528, 116.2295},\n\t\t{1471392, 116.2206},\n\t\t{1472256, 116.2297},\n\t\t{1474848, 116.2238},\n\t\t{1475712, 116.2335},\n\t\t{1476576, 116.2569},\n\t\t{1477440, 116.2627},\n\t\t{1478304, 116.269},\n\t\t{1480896, 116.2634},\n\t\t{1481760, 116.2785},\n\t\t{1482624, 116.2893},\n\t\t{1483488, 116.2956},\n\t\t{1484352, 116.3066},\n\t\t{1486944, 116.3071},\n\t\t{1487808, 116.3147},\n\t\t{1488672, 116.3256},\n\t\t{1489536, 116.3465},\n\t\t{1490400, 116.333},\n\t\t{1492992, 116.3322},\n\t\t{1493856, 116.3254},\n\t\t{1494720, 116.3277},\n\t\t{1495584, 116.3305},\n\t\t{1496448, 116.3264},\n\t\t{1499040, 116.3092},\n\t\t{1499904, 116.2848},\n\t\t{1500768, 116.2642},\n\t\t{1501632, 116.2668},\n\t\t{1502496, 116.2311},\n\t\t{1505088, 116.2374},\n\t\t{1505952, 116.2271},\n\t\t{1506816, 116.2249},\n\t\t{1507680, 116.251},\n\t\t{1508544, 116.2366},\n\t\t{1511136, 116.2342},\n\t\t{1512000, 116.236},\n\t\t{1512864, 116.2404},\n\t\t{1513728, 116.2109},\n\t\t{1514592, 116.2182},\n\t\t{1517184, 116.2051},\n\t\t{1518048, 116.152},\n\t\t{1518912, 116.1169},\n\t\t{1519776, 116.1104},\n\t\t{1520640, 116.1143},\n\t\t{1523232, 116.1121},\n\t\t{1524096, 116.0624},\n\t\t{1524960, 116.0627},\n\t\t{1525824, 115.9888},\n\t\t{1526688, 115.9996},\n\t\t{1529280, 116.0423},\n\t\t{1530144, 116.0656},\n\t\t{1531008, 116.0844},\n\t\t{1531872, 116.1235},\n\t\t{1532736, 116.1837},\n\t\t{1535328, 116.1863},\n\t\t{1536192, 116.1918},\n\t\t{1537056, 116.2448},\n\t\t{1537920, 116.2523},\n\t\t{1538784, 116.286},\n\t\t{1541376, 116.3432},\n\t\t{1542240, 116.383},\n\t\t{1543104, 116.2967},\n\t\t{1543968, 116.2692},\n\t\t{1544832, 116.269},\n\t\t{1547424, 116.1418},\n\t\t{1548288, 116.1074},\n\t\t{1549152, 116.0564},\n\t\t{1550016, 115.9962},\n\t\t{1550880, 116.0287},\n\t\t{1553472, 116.041},\n\t\t{1554336, 116.0474},\n\t\t{1555200, 116.039},\n\t\t{1556064, 116.0442},\n\t\t{1556928, 115.9869},\n\t\t{1559520, 115.9467},\n\t\t{1560384, 115.8948},\n\t\t{1561248, 115.9024},\n\t\t{1562112, 115.9001},\n\t\t{1562976, 115.8673},\n\t\t{1565568, 115.8442},\n\t\t{1566432, 115.769},\n\t\t{1567296, 115.6724},\n\t\t{1568160, 115.6013},\n\t\t{1569024, 115.603},\n\t\t{1571616, 115.5851},\n\t\t{1572480, 115.5833},\n\t\t{1575072, 115.5813},\n\t\t{1577664, 115.5921},\n\t\t{1578528, 115.6225},\n\t\t{1581120, 115.6536},\n\t\t{1583712, 115.6777},\n\t\t{1584576, 115.6669},\n\t\t{1585440, 115.7199},\n\t\t{1586304, 115.765},\n\t\t{1587168, 115.7763},\n\t\t{1589760, 115.7794},\n\t\t{1590624, 115.8101},\n\t\t{1591488, 115.7966},\n\t\t{1592352, 115.7924},\n\t\t{1593216, 115.8159},\n\t\t{1595808, 115.8093},\n\t\t{1596672, 115.8069},\n\t\t{1597536, 115.8091},\n\t\t{1598400, 115.8251},\n\t\t{1599264, 115.8541},\n\t\t{1601856, 115.858},\n\t\t{1602720, 115.8549},\n\t\t{1603584, 115.8711},\n\t\t{1604448, 115.9225},\n\t\t{1605312, 115.9686},\n\t\t{1607904, 116.0083},\n\t\t{1608768, 116.0376},\n\t\t{1609632, 116.0436},\n\t\t{1610496, 116.06},\n\t\t{1611360, 116.0606},\n\t\t{1613952, 116.0338},\n\t\t{1614816, 116.0169},\n\t\t{1615680, 116.0014},\n\t\t{1616544, 115.9902},\n\t\t{1617408, 115.9693},\n\t\t{1620000, 115.9662},\n\t\t{1620864, 115.9705},\n\t\t{1621728, 115.9451},\n\t\t{1622592, 115.9393},\n\t\t{1623456, 115.9327},\n\t\t{1626048, 115.9291},\n\t\t{1626912, 115.928},\n\t\t{1627776, 115.8632},\n\t\t{1628640, 115.8521},\n\t\t{1629504, 115.8477},\n\t\t{1632096, 115.7842},\n\t\t{1632960, 115.7926},\n\t\t{1633824, 115.7946},\n\t\t{1634688, 115.7929},\n\t\t{1635552, 115.8032},\n\t\t{1638144, 115.8096},\n\t\t{1639008, 115.8202},\n\t\t{1639872, 115.8208},\n\t\t{1640736, 115.8169},\n\t\t{1641600, 115.7822},\n\t\t{1644192, 115.756},\n\t\t{1645056, 115.7195},\n\t\t{1645920, 115.6997},\n\t\t{1646784, 115.6664},\n\t\t{1647648, 115.7067},\n\t\t{1650240, 115.6976},\n\t\t{1651104, 115.7196},\n\t\t{1651968, 115.6946},\n\t\t{1657152, 115.6944},\n\t\t{1658016, 115.7075},\n\t\t{1658880, 115.7173},\n\t\t{1659744, 115.6692},\n\t\t{1662336, 115.6647},\n\t\t{1663200, 115.5655},\n\t\t{1664064, 115.5053},\n\t\t{1664928, 115.4567},\n\t\t{1665792, 115.4317},\n\t\t{1668384, 115.3843},\n\t\t{1669248, 115.3145},\n\t\t{1670112, 115.2434},\n\t\t{1670976, 115.16},\n\t\t{1671840, 115.1053},\n\t\t{1674432, 115.1046},\n\t\t{1675296, 115.1131},\n\t\t{1676160, 115.0779},\n\t\t{1677888, 115.0834},\n\t\t{1680480, 115.046},\n\t\t{1681344, 114.9434},\n\t\t{1682208, 114.9589},\n\t\t{1683936, 114.9139},\n\t\t{1686528, 114.9113},\n\t\t{1687392, 114.9061},\n\t\t{1688256, 114.8241},\n\t\t{1689984, 114.8113},\n\t\t{1692576, 114.7952},\n\t\t{1693440, 114.7997},\n\t\t{1694304, 114.8032},\n\t\t{1695168, 114.8017},\n\t\t{1696032, 114.7321},\n\t\t{1699488, 114.7403},\n\t\t{1700352, 114.7417},\n\t\t{1701216, 114.722},\n\t\t{1702080, 114.6778},\n\t\t{1704672, 114.6332},\n\t\t{1705536, 114.6052},\n\t\t{1706400, 114.607},\n\t\t{1707264, 114.5527},\n\t\t{1708128, 114.5364},\n\t\t{1710720, 114.4675},\n\t\t{1711584, 114.4068},\n\t\t{1712448, 114.4077},\n\t\t{1713312, 114.3274},\n\t\t{1714176, 114.3202},\n\t\t{1716768, 114.3079},\n\t\t{1717632, 114.2907},\n\t\t{1718496, 114.2935},\n\t\t{1719360, 114.2867},\n\t\t{1720224, 114.2986},\n\t\t{1722816, 114.3096},\n\t\t{1724544, 114.3088},\n\t\t{1725408, 114.2589},\n\t\t{1726272, 114.1713},\n\t\t{1728864, 114.0902},\n\t\t{1729728, 114.0177},\n\t\t{1730592, 113.9982},\n\t\t{1731456, 113.9735},\n\t\t{1732320, 113.9607},\n\t\t{1734912, 113.959},\n\t\t{1735776, 113.9623},\n\t\t{1736640, 113.9618},\n\t\t{1737504, 113.9384},\n\t\t{1738368, 113.9411},\n\t\t{1740960, 113.7615},\n\t\t{1741824, 113.7287},\n\t\t{1742688, 113.6797},\n\t\t{1743552, 113.6222},\n\t\t{1744416, 113.6257},\n\t\t{1747008, 113.5956},\n\t\t{1747872, 113.5444},\n\t\t{1748736, 113.47},\n\t\t{1749600, 113.4186},\n\t\t{1750464, 113.3116},\n\t\t{1753056, 113.2155},\n\t\t{1753920, 113.0797},\n\t\t{1754784, 112.994},\n\t\t{1755648, 112.9599},\n\t\t{1756512, 112.9069},\n\t\t{1759104, 112.8783},\n\t\t{1759968, 112.8125},\n\t\t{1760832, 112.8181},\n\t\t{1761696, 112.8131},\n\t\t{1762560, 112.875},\n\t\t{1766016, 112.9323},\n\t\t{1766880, 112.928},\n\t\t{1767744, 112.9425},\n\t\t{1768608, 112.956},\n\t\t{1771200, 112.9898},\n\t\t{1772064, 113.0505},\n\t\t{1772928, 113.0709},\n\t\t{1773792, 113.222},\n\t\t{1774656, 113.2301},\n\t\t{1777248, 113.2623},\n\t\t{1778112, 113.2973},\n\t\t{1778976, 113.3491},\n\t\t{1779840, 113.4408},\n\t\t{1780704, 113.5307},\n\t\t{1783296, 113.5164},\n\t\t{1784160, 113.517},\n\t\t{1785024, 113.5128},\n\t\t{1785888, 113.5285},\n\t\t{1786752, 113.551},\n\t\t{1789344, 113.5762},\n\t\t{1790208, 113.6111},\n\t\t{1791072, 113.5442},\n\t\t{1791936, 113.4521},\n\t\t{1792800, 113.3712},\n\t\t{1795392, 113.2098},\n\t\t{1796256, 113.139},\n\t\t{1797120, 113.1381},\n\t\t{1797984, 113.1036},\n\t\t{1798848, 113.2375},\n\t\t{1801440, 113.2853},\n\t\t{1802304, 113.3153},\n\t\t{1803168, 113.3402},\n\t\t{1804032, 113.5632},\n\t\t{1804896, 113.6026},\n\t\t{1807488, 113.7309},\n\t\t{1808352, 113.9587},\n\t\t{1809216, 114.3627},\n\t\t{1810080, 114.3636},\n\t\t{1810944, 114.3193},\n\t\t{1813536, 114.28},\n\t\t{1814400, 114.0171},\n\t\t{1815264, 114.0032},\n\t\t{1816128, 114.0091},\n\t\t{1816992, 113.9701},\n\t\t{1819584, 114.0908},\n\t\t{1820448, 114.143},\n\t\t{1821312, 114.4153},\n\t\t{1822176, 114.5279},\n\t\t{1823040, 114.5388},\n\t\t{1825632, 114.5535},\n\t\t{1826496, 114.6705},\n\t\t{1827360, 114.7237},\n\t\t{1828224, 115.0071},\n\t\t{1829088, 115.1181},\n\t\t{1831680, 115.1998},\n\t\t{1832544, 115.4228},\n\t\t{1833408, 115.6866},\n\t\t{1834272, 115.6592},\n\t\t{1835136, 115.4869},\n\t\t{1837728, 115.0525},\n\t\t{1838592, 115.4001},\n\t\t{1839456, 115.3916},\n\t\t{1840320, 115.6551},\n\t\t{1841184, 115.6546},\n\t\t{1843776, 115.6903},\n\t\t{1844640, 115.5716},\n\t\t{1845504, 115.6168},\n\t\t{1846368, 115.614},\n\t\t{1847232, 115.6074},\n\t\t{1849824, 115.5989},\n\t\t{1850688, 115.6858},\n\t\t{1851552, 115.5662},\n\t\t{1852416, 115.4809},\n\t\t{1853280, 115.4593},\n\t\t{1855872, 115.4298},\n\t\t{1856736, 115.3197},\n\t\t{1857600, 115.2871},\n\t\t{1858464, 114.7486},\n\t\t{1859328, 114.6698},\n\t\t{1861920, 114.6438},\n\t\t{1862784, 114.62},\n\t\t{1863648, 114.4538},\n\t\t{1864512, 114.1553},\n\t\t{1865376, 114.1288},\n\t\t{1867968, 114.1265},\n\t\t{1868832, 114.1241},\n\t\t{1869696, 114.2269},\n\t\t{1870560, 114.2707},\n\t\t{1871424, 114.2148},\n\t\t{1874016, 114.234},\n\t\t{1874880, 113.699},\n\t\t{1875744, 113.662},\n\t\t{1876608, 113.886},\n\t\t{1877472, 113.937},\n\t\t{1880064, 113.7925},\n\t\t{1880928, 114.255},\n\t\t{1881792, 114.0895},\n\t\t{1882656, 114.1317},\n\t\t{1883520, 114.1313},\n\t\t{1886112, 114.0103},\n\t\t{1886976, 113.9},\n\t\t{1887840, 113.9984},\n\t\t{1892160, 114.069},\n\t\t{1893024, 113.8795},\n\t\t{1893888, 113.9855},\n\t\t{1898208, 113.9454},\n\t\t{1899072, 113.616},\n\t\t{1899936, 113.5875},\n\t\t{1900800, 113.4888},\n\t\t{1901664, 113.5129},\n\t\t{1904256, 113.4688},\n\t\t{1905120, 113.5533},\n\t\t{1905984, 113.6223},\n\t\t{1906848, 114.009},\n\t\t{1907712, 113.9014},\n\t\t{1910304, 113.956},\n\t\t{1911168, 114.1737},\n\t\t{1912032, 114.3161},\n\t\t{1912896, 114.7513},\n\t\t{1913760, 114.4868},\n\t\t{1916352, 114.3867},\n\t\t{1917216, 114.5819},\n\t\t{1918080, 114.5593},\n\t\t{1918944, 114.7098},\n\t\t{1919808, 114.3631},\n\t\t{1922400, 114.2169},\n\t\t{1923264, 114.2169},\n\t\t{1924128, 114.019},\n\t\t{1924992, 113.8082},\n\t\t{1925856, 114.2308},\n\t\t{1928448, 114.2735},\n\t\t{1929312, 113.5179},\n\t\t{1930176, 113.2453},\n\t\t{1931040, 113.2326},\n\t\t{1931904, 113.2412},\n\t\t{1934496, 112.741},\n\t\t{1935360, 112.67},\n\t\t{1936224, 112.6292},\n\t\t{1937088, 112.6494},\n\t\t{1937952, 112.7451},\n\t\t{1940544, 113.0597},\n\t\t{1941408, 113.2121},\n\t\t{1942272, 113.2417},\n\t\t{1943136, 112.9081},\n\t\t{1944000, 113.0045},\n\t\t{1946592, 113.1177},\n\t\t{1947456, 113.0697},\n\t\t{1948320, 113.3713},\n\t\t{1949184, 113.5998},\n\t\t{1950048, 113.9526},\n\t\t{1952640, 113.8947},\n\t\t{1953504, 113.6359},\n\t\t{1954368, 113.5309},\n\t\t{1955232, 113.5165},\n\t\t{1956096, 113.4708},\n\t\t{1958688, 113.5671},\n\t\t{1959552, 113.4964},\n\t\t{1960416, 113.4826},\n\t\t{1961280, 113.3555},\n\t\t{1962144, 113.2594},\n\t\t{1964736, 113.1598},\n\t\t{1965600, 113.1424},\n\t\t{1966464, 113.1387},\n\t\t{1967328, 113.1376},\n\t\t{1968192, 113.3734},\n\t\t{1970784, 113.314},\n\t\t{1971648, 113.1493},\n\t\t{1972512, 112.9514},\n\t\t{1973376, 112.9559},\n\t\t{1974240, 112.8745},\n\t\t{1976832, 112.7196},\n\t\t{1977696, 112.6581},\n\t\t{1978560, 112.6646},\n\t\t{1983744, 112.7469},\n\t\t{1984608, 113.1603},\n\t\t{1985472, 113.0951},\n\t\t{1986336, 112.7577},\n\t\t{1988928, 112.6353},\n\t\t{1989792, 112.6327},\n\t\t{1990656, 112.7634},\n\t\t{1992384, 112.7524},\n\t\t{1994976, 112.7585},\n\t\t{1995840, 112.7233},\n\t\t{1996704, 112.6368},\n\t\t{1997568, 112.8787},\n\t\t{2001024, 112.9727},\n\t\t{2001888, 113.1302},\n\t\t{2002752, 113.2838},\n\t\t{2003616, 113.3292},\n\t\t{2004480, 113.3313},\n\t\t{2007072, 112.9855},\n\t\t{2007936, 112.7353},\n\t\t{2008800, 112.5641},\n\t\t{2009664, 112.3796},\n\t\t{2010528, 112.3713},\n\t\t{2013120, 112.2356},\n\t\t{2013984, 112.1497},\n\t\t{2014848, 112.161},\n\t\t{2016576, 112.2593},\n\t\t{2019168, 112.4072},\n\t\t{2020032, 112.5289},\n\t\t{2020896, 112.5282},\n\t\t{2021760, 112.4171},\n\t\t{2022624, 112.1477},\n\t\t{2026080, 112.1305},\n\t\t{2026944, 111.9532},\n\t\t{2027808, 111.8427},\n\t\t{2028672, 111.8224},\n\t\t{2031264, 111.6641},\n\t\t{2032128, 111.5543},\n\t\t{2032992, 111.513},\n\t\t{2033856, 111.3603},\n\t\t{2034720, 111.094},\n\t\t{2037312, 111.202},\n\t\t{2038176, 111.6642},\n\t\t{2039904, 112.1371},\n\t\t{2040768, 111.9918},\n\t\t{2043360, 111.6895},\n\t\t{2044224, 111.7099},\n\t\t{2045088, 111.5003},\n\t\t{2045952, 111.5078},\n\t\t{2046816, 111.7995},\n\t\t{2049408, 111.9566},\n\t\t{2050272, 111.8469},\n\t\t{2051136, 111.4424},\n\t\t{2052000, 111.2988},\n\t\t{2052864, 111.6753},\n\t\t{2055456, 111.7959},\n\t\t{2056320, 111.9208},\n\t\t{2057184, 111.6378},\n\t\t{2058048, 111.5404},\n\t\t{2058912, 111.4392},\n\t\t{2061504, 111.6477},\n\t\t{2062368, 111.6434},\n\t\t{2063232, 111.4478},\n\t\t{2064096, 111.3487},\n\t\t{2064960, 111.3381},\n\t\t{2067552, 111.5288},\n\t\t{2068416, 111.6629},\n\t\t{2069280, 111.6794},\n\t\t{2070144, 111.8167},\n\t\t{2071008, 111.7094},\n\t\t{2073600, 111.6888},\n\t\t{2074464, 111.6981},\n\t\t{2075328, 111.4473},\n\t\t{2076192, 111.5982},\n\t\t{2077056, 111.8617},\n\t\t{2080512, 111.434},\n\t\t{2081376, 111.3929},\n\t\t{2082240, 111.6721},\n\t\t{2083104, 111.4866},\n\t\t{2085696, 111.4885},\n\t\t{2086560, 111.4989},\n\t\t{2087424, 111.7835},\n\t\t{2088288, 111.9978},\n\t\t{2089152, 111.7688},\n\t\t{2091744, 111.4714},\n\t\t{2092608, 111.4822},\n\t\t{2093472, 111.4238},\n\t\t{2094336, 111.2242},\n\t\t{2095200, 111.3301},\n\t\t{2097792, 111.2889},\n\t\t{2098656, 111.3661},\n\t\t{2099520, 111.4914},\n\t\t{2100384, 111.9124},\n\t\t{2101248, 111.9098},\n\t\t{2103840, 112.1965},\n\t\t{2104704, 112.3094},\n\t\t{2105568, 112.3591},\n\t\t{2106432, 112.3492},\n\t\t{2107296, 112.6605},\n\t\t{2109888, 112.5047},\n\t\t{2110752, 112.3852},\n\t\t{2111616, 111.9696},\n\t\t{2112480, 112.1354},\n\t\t{2113344, 112.5013},\n\t\t{2115936, 112.7086},\n\t\t{2116800, 112.9109},\n\t\t{2117664, 112.7357},\n\t\t{2118528, 112.7868},\n\t\t{2119392, 112.9016},\n\t\t{2121984, 112.9268},\n\t\t{2122848, 112.7062},\n\t\t{2123712, 112.6427},\n\t\t{2124576, 112.4737},\n\t\t{2125440, 112.4259},\n\t\t{2128032, 112.3378},\n\t\t{2128896, 112.6899},\n\t\t{2129760, 112.7121},\n\t\t{2130624, 112.6353},\n\t\t{2131488, 112.5236},\n\t\t{2134080, 112.5442},\n\t\t{2134944, 112.6056},\n\t\t{2135808, 112.8701},\n\t\t{2136672, 112.9136},\n\t\t{2137536, 112.9184},\n\t\t{2140128, 112.7952},\n\t\t{2140992, 112.6566},\n\t\t{2141856, 112.9362},\n\t\t{2142720, 112.8907},\n\t\t{2143584, 112.7667},\n\t\t{2146176, 112.5625},\n\t\t{2147040, 112.5483},\n\t\t{2147904, 112.7752},\n\t\t{2148768, 112.8944},\n\t\t{2149632, 112.985},\n\t\t{2152224, 113.504},\n\t\t{2153088, 113.8012},\n\t\t{2153952, 113.7016},\n\t\t{2154816, 113.8289},\n\t\t{2155680, 113.7694},\n\t\t{2158272, 114.0804},\n\t\t{2159136, 114.1848},\n\t\t{2160000, 114.1904},\n\t\t{2160864, 114.2675},\n\t\t{2161728, 113.8043},\n\t\t{2164320, 113.8046},\n\t\t{2165184, 114.0655},\n\t\t{2166048, 113.879},\n\t\t{2166912, 113.7524},\n\t\t{2167776, 113.7315},\n\t\t{2170368, 113.5645},\n\t\t{2171232, 113.9304},\n\t\t{2172096, 113.6237},\n\t\t{2172960, 113.6091},\n\t\t{2173824, 113.6201},\n\t\t{2176416, 113.6374},\n\t\t{2177280, 113.62},\n\t\t{2178144, 113.8442},\n\t\t{2179008, 113.7139},\n\t\t{2179872, 113.8743},\n\t\t{2182464, 113.5809},\n\t\t{2183328, 113.8184},\n\t\t{2184192, 114.0326},\n\t\t{2185056, 113.8991},\n\t\t{2185920, 113.4221},\n\t\t{2188512, 113.4169},\n\t\t{2189376, 113.7661},\n\t\t{2190240, 114.0231},\n\t\t{2191104, 113.844},\n\t\t{2191968, 113.7971},\n\t\t{2194560, 113.6751},\n\t\t{2195424, 113.9142},\n\t\t{2196288, 114.057},\n\t\t{2197152, 113.6348},\n\t\t{2198016, 113.8036},\n\t\t{2200608, 113.6369},\n\t\t{2201472, 113.6323},\n\t\t{2202336, 113.4385},\n\t\t{2203200, 113.242},\n\t\t{2206656, 113.0958},\n\t\t{2207520, 113.0982},\n\t\t{2208384, 113.4068},\n\t\t{2209248, 113.1716},\n\t\t{2213568, 113.48},\n\t\t{2214432, 113.5133},\n\t\t{2215296, 113.6726},\n\t\t{2216160, 113.4662},\n\t\t{2218752, 113.3871},\n\t\t{2219616, 113.388},\n\t\t{2220480, 113.3815},\n\t\t{2221344, 113.22},\n\t\t{2222208, 113.1043},\n\t\t{2224800, 112.8915},\n\t\t{2225664, 113.1014},\n\t\t{2226528, 113.144},\n\t\t{2227392, 113.1418},\n\t\t{2228256, 113.0136},\n\t\t{2230848, 112.8994},\n\t\t{2231712, 112.6861},\n\t\t{2232576, 112.6528},\n\t\t{2233440, 112.7963},\n\t\t{2234304, 112.7624},\n\t\t{2236896, 112.7928},\n\t\t{2237760, 112.9143},\n\t\t{2238624, 112.9178},\n\t\t{2239488, 112.7617},\n\t\t{2240352, 112.865},\n\t\t{2242944, 112.7477},\n\t\t{2243808, 112.834},\n\t\t{2244672, 112.7684},\n\t\t{2245536, 112.9189},\n\t\t{2246400, 113.0087},\n\t\t{2248992, 113.1685},\n\t\t{2249856, 113.4858},\n\t\t{2250720, 113.1997},\n\t\t{2251584, 113.3651},\n\t\t{2252448, 113.3823},\n\t\t{2255040, 113.6557},\n\t\t{2255904, 113.8958},\n\t\t{2256768, 113.3521},\n\t\t{2257632, 113.2299},\n\t\t{2258496, 113.4677},\n\t\t{2261088, 113.189},\n\t\t{2261952, 113.2724},\n\t\t{2262816, 113.18},\n\t\t{2263680, 113.2787},\n\t\t{2264544, 113.2594},\n\t\t{2267136, 113.1439},\n\t\t{2268000, 113.0418},\n\t\t{2268864, 113.0367},\n\t\t{2269728, 113.0139},\n\t\t{2270592, 112.9855},\n\t\t{2273184, 113.0157},\n\t\t{2274048, 113.0083},\n\t\t{2274912, 113.0315},\n\t\t{2275776, 113.0582},\n\t\t{2276640, 113.0527},\n\t\t{2279232, 113.0235},\n\t\t{2280096, 113.1341},\n\t\t{2280960, 113.1638},\n\t\t{2281824, 113.3341},\n\t\t{2282688, 113.1461},\n\t\t{2285280, 113.0858},\n\t\t{2286144, 113.069},\n\t\t{2287008, 113.2522},\n\t\t{2292192, 113.455},\n\t\t{2293056, 113.7357},\n\t\t{2293920, 113.6823},\n\t\t{2294784, 113.755},\n\t\t{2297376, 113.8771},\n\t\t{2298240, 113.9822},\n\t\t{2299104, 113.7146},\n\t\t{2299968, 113.6099},\n\t\t{2300832, 113.571},\n\t\t{2303424, 113.4459},\n\t\t{2304288, 113.3429},\n\t\t{2305152, 113.3611},\n\t\t{2306880, 113.5431},\n\t\t{2309472, 113.6609},\n\t\t{2310336, 113.6476},\n\t\t{2311200, 113.7341},\n\t\t{2312064, 113.6699},\n\t\t{2312928, 113.7573},\n\t\t{2315520, 114.0738},\n\t\t{2316384, 114.3123},\n\t\t{2317248, 114.2876},\n\t\t{2318112, 114.3782},\n\t\t{2318976, 114.5628},\n\t\t{2321568, 114.6141},\n\t\t{2322432, 114.6895},\n\t\t{2323296, 114.5947},\n\t\t{2325024, 114.3091},\n\t\t{2327616, 113.9193},\n\t\t{2328480, 113.9215},\n\t\t{2329344, 113.7215},\n\t\t{2330208, 114.0399},\n\t\t{2331072, 113.8491},\n\t\t{2334528, 113.8874},\n\t\t{2335392, 114.0604},\n\t\t{2336256, 114.169},\n\t\t{2337120, 114.3358},\n\t\t{2339712, 114.1685},\n\t\t{2340576, 114.3127},\n\t\t{2341440, 113.9939},\n\t\t{2342304, 113.9263},\n\t\t{2343168, 113.9104},\n\t\t{2345760, 113.9126},\n\t\t{2346624, 113.8308},\n\t\t{2347488, 113.8194},\n\t\t{2348352, 113.7965},\n\t\t{2349216, 113.7033},\n\t\t{2351808, 113.928},\n\t\t{2352672, 113.9731},\n\t\t{2353536, 113.0674},\n\t\t{2355264, 113.236},\n\t\t{2357856, 113.6718},\n\t\t{2358720, 113.6227},\n\t\t{2359584, 113.2281},\n\t\t{2360448, 113.1163},\n\t\t{2361312, 113.3912},\n\t\t{2363904, 113.2199},\n\t\t{2364768, 113.2106},\n\t\t{2365632, 113.4242},\n\t\t{2366496, 113.4562},\n\t\t{2367360, 113.2792},\n\t\t{2369952, 113.3628},\n\t\t{2370816, 113.4733},\n\t\t{2371680, 113.3569},\n\t\t{2372544, 113.6042},\n\t\t{2373408, 113.8198},\n\t\t{2376000, 113.6272},\n\t\t{2376864, 113.6932},\n\t\t{2377728, 113.5378},\n\t\t{2378592, 113.605},\n\t\t{2379456, 113.1918},\n\t\t{2382048, 113.4641},\n\t\t{2382912, 113.5474},\n\t\t{2383776, 113.6323},\n\t\t{2384640, 113.7351},\n\t\t{2385504, 113.5438},\n\t\t{2388096, 113.4812},\n\t\t{2388960, 113.4081},\n\t\t{2389824, 113.3496},\n\t\t{2390688, 113.463},\n\t\t{2391552, 113.5413},\n\t\t{2395008, 113.3216},\n\t\t{2395872, 113.2955},\n\t\t{2396736, 113.449},\n\t\t{2397600, 113.4903},\n\t\t{2400192, 113.4748},\n\t\t{2401056, 113.368},\n\t\t{2401920, 113.0084},\n\t\t{2402784, 113.2377},\n\t\t{2403648, 113.0932},\n\t\t{2406240, 112.849},\n\t\t{2407104, 113.065},\n\t\t{2407968, 112.9253},\n\t\t{2408832, 112.7213},\n\t\t{2409696, 112.6057},\n\t\t{2412288, 112.7316},\n\t\t{2413152, 112.7443},\n\t\t{2414016, 112.814},\n\t\t{2414880, 113.1031},\n\t\t{2415744, 113.0471},\n\t\t{2418336, 113.007},\n\t\t{2419200, 112.9169},\n\t\t{2420064, 112.81},\n\t\t{2420928, 112.8753},\n\t\t{2421792, 112.8107},\n\t\t{2424384, 112.751},\n\t\t{2425248, 112.8041},\n\t\t{2426112, 112.8435},\n\t\t{2426976, 112.8071},\n\t\t{2427840, 112.5604},\n\t\t{2430432, 112.5554},\n\t\t{2431296, 112.7537},\n\t\t{2432160, 112.7501},\n\t\t{2433024, 112.9404},\n\t\t{2433888, 112.87},\n\t\t{2436480, 112.4239},\n\t\t{2437344, 112.4615},\n\t\t{2438208, 112.3021},\n\t\t{2439072, 112.2373},\n\t\t{2439936, 112.2463},\n\t\t{2442528, 112.3458},\n\t\t{2443392, 112.1616},\n\t\t{2444256, 112.0795},\n\t\t{2445120, 112.2538},\n\t\t{2445984, 112.0455},\n\t\t{2448576, 111.8063},\n\t\t{2449440, 111.9287},\n\t\t{2450304, 111.5843},\n\t\t{2451168, 111.5323},\n\t\t{2452032, 111.3175},\n\t\t{2454624, 111.3217},\n\t\t{2455488, 111.4877},\n\t\t{2456352, 111.4155},\n\t\t{2457216, 111.2488},\n\t\t{2458080, 111.3365},\n\t\t{2460672, 110.9546},\n\t\t{2461536, 111.0391},\n\t\t{2462400, 111.0748},\n\t\t{2463264, 111.0707},\n\t\t{2464128, 111.0386},\n\t\t{2466720, 111.0133},\n\t\t{2467584, 111.0016},\n\t\t{2468448, 110.9252},\n\t\t{2469312, 110.4579},\n\t\t{2470176, 110.5078},\n\t\t{2472768, 110.4573},\n\t\t{2473632, 110.5053},\n\t\t{2474496, 111.1033},\n\t\t{2475360, 110.3904},\n\t\t{2476224, 110.6321},\n\t\t{2478816, 110.781},\n\t\t{2479680, 110.6668},\n\t\t{2480544, 110.0632},\n\t\t{2481408, 110.2068},\n\t\t{2482272, 110.6023},\n\t\t{2484864, 110.6583},\n\t\t{2485728, 110.6476},\n\t\t{2486592, 110.3927},\n\t\t{2487456, 110.3899},\n\t\t{2488320, 110.3326},\n\t\t{2490912, 110.3343},\n\t\t{2491776, 110.8368},\n\t\t{2492640, 110.649},\n\t\t{2493504, 110.7764},\n\t\t{2494368, 110.4557},\n\t\t{2496960, 110.4534},\n\t\t{2497824, 110.4717},\n\t\t{2498688, 110.5583},\n\t\t{2499552, 110.767},\n\t\t{2500416, 110.7257},\n\t\t{2503008, 110.7946},\n\t\t{2503872, 110.8261},\n\t\t{2504736, 110.5083},\n\t\t{2505600, 110.5969},\n\t\t{2506464, 110.6646},\n\t\t{2509056, 110.6599},\n\t\t{2509920, 110.4771},\n\t\t{2510784, 110.4055},\n\t\t{2511648, 110.4247},\n\t\t{2512512, 110.4944},\n\t\t{2515104, 110.482},\n\t\t{2515968, 109.8768},\n\t\t{2516832, 109.7263},\n\t\t{2517696, 109.844},\n\t\t{2521152, 109.7689},\n\t\t{2522016, 109.3749},\n\t\t{2522880, 109.6253},\n\t\t{2523744, 110.0464},\n\t\t{2528064, 110.1024},\n\t\t{2528928, 110.8808},\n\t\t{2529792, 110.7331},\n\t\t{2530656, 110.9764},\n\t\t{2533248, 110.8468},\n\t\t{2534112, 111.0046},\n\t\t{2534976, 110.0213},\n\t\t{2535840, 110.248},\n\t\t{2536704, 110.2238},\n\t\t{2539296, 110.0944},\n\t\t{2540160, 110.1695},\n\t\t{2541024, 110.4196},\n\t\t{2541888, 110.2671},\n\t\t{2542752, 110.3676},\n\t\t{2545344, 110.2034},\n\t\t{2546208, 110.4198},\n\t\t{2547072, 110.2142},\n\t\t{2547936, 110.0765},\n\t\t{2548800, 110.0272},\n\t\t{2551392, 109.9967},\n\t\t{2552256, 109.6794},\n\t\t{2553120, 109.9269},\n\t\t{2553984, 110.2796},\n\t\t{2554848, 110.2246},\n\t\t{2557440, 110.1111},\n\t\t{2558304, 109.9627},\n\t\t{2559168, 110.1534},\n\t\t{2560032, 110.1868},\n\t\t{2560896, 110.0135},\n\t\t{2563488, 109.3644},\n\t\t{2564352, 108.5471},\n\t\t{2565216, 108.423},\n\t\t{2566080, 108.6453},\n\t\t{2566944, 108.2042},\n\t\t{2569536, 108.3584},\n\t\t{2570400, 108.4954},\n\t\t{2571264, 108.415},\n\t\t{2572128, 108.4612},\n\t\t{2572992, 108.57},\n\t\t{2575584, 108.5554},\n\t\t{2576448, 108.5612},\n\t\t{2577312, 108.2921},\n\t\t{2578176, 108.4981},\n\t\t{2579040, 108.3873},\n\t\t{2581632, 108.6844},\n\t\t{2582496, 108.9046},\n\t\t{2583360, 109.1044},\n\t\t{2584224, 108.8426},\n\t\t{2585088, 108.7425},\n\t\t{2587680, 108.7808},\n\t\t{2588544, 108.7901},\n\t\t{2589408, 108.7937},\n\t\t{2590272, 108.7092},\n\t\t{2591136, 108.7414},\n\t\t{2593728, 108.7915},\n\t\t{2594592, 108.7033},\n\t\t{2595456, 108.8584},\n\t\t{2596320, 108.9372},\n\t\t{2597184, 108.5762},\n\t\t{2599776, 108.8158},\n\t\t{2600640, 108.7469},\n\t\t{2601504, 109.0011},\n\t\t{2602368, 108.5751},\n\t\t{2603232, 108.5766},\n\t\t{2605824, 108.3917},\n\t\t{2606688, 108.4131},\n\t\t{2607552, 108.3128},\n\t\t{2608416, 108.4294},\n\t\t{2609280, 108.269},\n\t\t{2611872, 108.3202},\n\t\t{2612736, 108.5158},\n\t\t{2613600, 108.338},\n\t\t{2614464, 108.2456},\n\t\t{2615328, 108.1131},\n\t\t{2617920, 108.1202},\n\t\t{2618784, 108.1165},\n\t\t{2619648, 108.0776},\n\t\t{2624832, 107.8391},\n\t\t{2625696, 107.9443},\n\t\t{2626560, 107.9467},\n\t\t{2627424, 107.7575},\n\t\t{2630880, 108.2018},\n\t\t{2631744, 107.819},\n\t\t{2632608, 107.8218},\n\t\t{2633472, 107.8627},\n\t\t{2636064, 108.3707},\n\t\t{2636928, 108.6993},\n\t\t{2637792, 108.6034},\n\t\t{2638656, 108.3609},\n\t\t{2639520, 108.3126},\n\t\t{2642112, 108.234},\n\t\t{2642976, 108.1498},\n\t\t{2643840, 108.2952},\n\t\t{2644704, 108.2167},\n\t\t{2645568, 108.3239},\n\t\t{2648160, 108.2804},\n\t\t{2649024, 108.3612},\n\t\t{2649888, 108.393},\n\t\t{2650752, 108.4996},\n\t\t{2651616, 108.6825},\n\t\t{2654208, 108.7257},\n\t\t{2655072, 108.8014},\n\t\t{2655936, 108.6195},\n\t\t{2657664, 108.3861},\n\t\t{2660256, 108.8775},\n\t\t{2661120, 109.5926},\n\t\t{2661984, 109.9981},\n\t\t{2662848, 109.6085},\n\t\t{2663712, 109.7251},\n\t\t{2667168, 110.1697},\n\t\t{2668032, 110.9966},\n\t\t{2668896, 111.5609},\n\t\t{2669760, 111.2375},\n\t\t{2672352, 111.1238},\n\t\t{2673216, 111.049},\n\t\t{2674080, 111.0321},\n\t\t{2674944, 111.5191},\n\t\t{2675808, 112.4762},\n\t\t{2678400, 111.2923},\n\t\t{2679264, 111.6621},\n\t\t{2680128, 111.7617},\n\t\t{2680992, 111.7971},\n\t\t{2681856, 111.8756},\n\t\t{2684448, 111.7542},\n\t\t{2685312, 111.8584},\n\t\t{2686176, 111.9453},\n\t\t{2687040, 112.0547},\n\t\t{2687904, 111.9328},\n\t\t{2690496, 111.9133},\n\t\t{2691360, 111.9869},\n\t\t{2692224, 112.088},\n\t\t{2693088, 114.5245},\n\t\t{2693952, 115.9961},\n\t\t{2696544, 114.919},\n\t\t{2697408, 114.1297},\n\t\t{2698272, 113.5898},\n\t\t{2699136, 113.2883},\n\t\t{2700000, 113.414},\n\t\t{2702592, 113.4199},\n\t\t{2703456, 113.2103},\n\t\t{2704320, 113.3075},\n\t\t{2705184, 112.7348},\n\t\t{2706048, 112.3063},\n\t\t{2708640, 112.3534},\n\t\t{2709504, 112.0152},\n\t\t{2710368, 112.0492},\n\t\t{2711232, 112.9664},\n\t\t{2712096, 114.1402},\n\t\t{2715552, 113.3345},\n\t\t{2716416, 113.2414},\n\t\t{2717280, 113.1459},\n\t\t{2718144, 112.9847},\n\t\t{2720736, 113.2487},\n\t\t{2721600, 113.1925},\n\t\t{2722464, 113.1883},\n\t\t{2723328, 113.2648},\n\t\t{2724192, 113.3837},\n\t\t{2726784, 113.47},\n\t\t{2727648, 113.0283},\n\t\t{2728512, 113.0276},\n\t\t{2729376, 113.322},\n\t\t{2730240, 113.0445},\n\t\t{2732832, 113.1628},\n\t\t{2733696, 113.34},\n\t\t{2734560, 113.0286},\n\t\t{2735424, 113.2075},\n\t\t{2736288, 113.1188},\n\t\t{2738880, 113.4389},\n\t\t{2739744, 113.4326},\n\t\t{2740608, 113.9157},\n\t\t{2741472, 113.9956},\n\t\t{2742336, 114.3092},\n\t\t{2744928, 114.1291},\n\t\t{2745792, 114.1482},\n\t\t{2746656, 114.2283},\n\t\t{2747520, 114.3886},\n\t\t{2748384, 114.5083},\n\t\t{2750976, 114.9301},\n\t\t{2751840, 115.3364},\n\t\t{2752704, 115.1794},\n\t\t{2753568, 115.2525},\n\t\t{2754432, 115.5571},\n\t\t{2757024, 115.5836},\n\t\t{2757888, 115.49},\n\t\t{2758752, 115.0913},\n\t\t{2759616, 115.5781},\n\t\t{2760480, 115.4162},\n\t\t{2763072, 115.1532},\n\t\t{2763936, 115.4479},\n\t\t{2764800, 115.4886},\n\t\t{2765664, 115.5709},\n\t\t{2766528, 115.7011},\n\t\t{2769120, 115.7987},\n\t\t{2769984, 115.5742},\n\t\t{2770848, 115.8169},\n\t\t{2771712, 116.0072},\n\t\t{2772576, 115.9143},\n\t\t{2775168, 115.9303},\n\t\t{2776032, 116.0189},\n\t\t{2776896, 116.1929},\n\t\t{2777760, 116.3825},\n\t\t{2778624, 116.4877},\n\t\t{2781216, 116.3929},\n\t\t{2782080, 116.8781},\n\t\t{2782944, 117.1953},\n\t\t{2783808, 117.7512},\n\t\t{2784672, 118.4291},\n\t\t{2787264, 118.3907},\n\t\t{2788128, 118.0651},\n\t\t{2788992, 117.3937},\n\t\t{2789856, 117.1411},\n\t\t{2790720, 117.6525},\n\t\t{2793312, 117.4278},\n\t\t{2794176, 118.0546},\n\t\t{2795040, 118.4746},\n\t\t{2795904, 118.7573},\n\t\t{2796768, 118.8396},\n\t\t{2799360, 119.0389},\n\t\t{2800224, 119.2117},\n\t\t{2801088, 119.219},\n\t\t{2801952, 119.6332},\n\t\t{2802816, 119.766},\n\t\t{2805408, 119.9194},\n\t\t{2806272, 120.9478},\n\t\t{2807136, 121.0997},\n\t\t{2808000, 121.4032},\n\t\t{2808864, 118.5507},\n\t\t{2811456, 118.6964},\n\t\t{2812320, 119.3429},\n\t\t{2813184, 119.4878},\n\t\t{2814048, 119.5726},\n\t\t{2814912, 119.6963},\n\t\t{2817504, 119.8701},\n\t\t{2818368, 120.2079},\n\t\t{2819232, 120.3476},\n\t\t{2820096, 120.4768},\n\t\t{2820960, 120.5896},\n\t\t{2823552, 120.6789},\n\t\t{2824416, 120.6496},\n\t\t{2825280, 120.5042},\n\t\t{2826144, 120.7827},\n\t\t{2827008, 120.8682},\n\t\t{2829600, 120.885},\n\t\t{2830464, 120.882},\n\t\t{2831328, 120.5533},\n\t\t{2832192, 120.677},\n\t\t{2833056, 120.5622},\n\t\t{2837376, 120.4305},\n\t\t{2838240, 120.731},\n\t\t{2839104, 120.8381},\n\t\t{2843424, 121.308},\n\t\t{2844288, 121.4054},\n\t\t{2845152, 121.3531},\n\t\t{2847744, 121.4046},\n\t\t{2848608, 121.3434},\n\t\t{2849472, 121.3413},\n\t\t{2850336, 121.4999},\n\t\t{2851200, 121.4231},\n\t\t{2853792, 121.4786},\n\t\t{2854656, 121.5333},\n\t\t{2855520, 121.5846},\n\t\t{2856384, 121.7858},\n\t\t{2857248, 121.7167},\n\t\t{2859840, 121.7247},\n\t\t{2860704, 122.0386},\n\t\t{2861568, 121.8044},\n\t\t{2862432, 121.9575},\n\t\t{2863296, 121.7368},\n\t\t{2865888, 121.9166},\n\t\t{2866752, 121.9325},\n\t\t{2867616, 122.0234},\n\t\t{2868480, 122.1653},\n\t\t{2869344, 121.1232},\n\t\t{2871936, 120.9555},\n\t\t{2872800, 121.2014},\n\t\t{2873664, 121.3724},\n\t\t{2874528, 121.6089},\n\t\t{2875392, 121.1408},\n\t\t{2877984, 121.144},\n\t\t{2878848, 121.2233},\n\t\t{2879712, 121.2845},\n\t\t{2880576, 121.5399},\n\t\t{2881440, 121.2799},\n\t\t{2884032, 121.541},\n\t\t{2884896, 121.5504},\n\t\t{2885760, 121.5063},\n\t\t{2886624, 121.5112},\n\t\t{2887488, 121.5651},\n\t\t{2890080, 121.5693},\n\t\t{2890944, 121.7167},\n\t\t{2891808, 121.7106},\n\t\t{2892672, 121.6876},\n\t\t{2893536, 121.7452},\n\t\t{2896128, 121.7545},\n\t\t{2896992, 121.9073},\n\t\t{2897856, 121.8854},\n\t\t{2898720, 121.6981},\n\t\t{2899584, 121.8195},\n\t\t{2902176, 121.8604},\n\t\t{2903040, 121.9211},\n\t\t{2903904, 121.9278},\n\t\t{2904768, 122.0311},\n\t\t{2905632, 122.0424},\n\t\t{2908224, 121.9836},\n\t\t{2909088, 121.9395},\n\t\t{2909952, 121.8388},\n\t\t{2910816, 121.905},\n\t\t{2911680, 121.9895},\n\t\t{2914272, 122.5622},\n\t\t{2915136, 123.6267},\n\t\t{2916000, 126.9841},\n\t\t{2916864, 124.5116},\n\t\t{2917728, 125.1708},\n\t\t{2920320, 125.7317},\n\t\t{2921184, 126.2179},\n\t\t{2922048, 127.1836},\n\t\t{2922912, 128.255},\n\t\t{2923776, 128.1813},\n\t\t{2926368, 128.181},\n\t\t{2927232, 128.1886},\n\t\t{2928096, 128.0534},\n\t\t{2933280, 128.4793},\n\t\t{2934144, 128.8226},\n\t\t{2935872, 129.5025},\n\t\t{2938464, 129.9954},\n\t\t{2939328, 131.0379},\n\t\t{2940192, 130.1948},\n\t\t{2941056, 130.3927},\n\t\t{2941920, 130.886},\n\t\t{2944512, 133.0513},\n\t\t{2946240, 138.2855},\n\t\t{2947104, 141.3542},\n\t\t{2947968, 142.011},\n\t\t{2950560, 140.4958},\n\t\t{2951424, 138.8886},\n\t\t{2952288, 134.4775},\n\t\t{2953152, 134.2289},\n\t\t{2954016, 135.0235},\n\t\t{2956608, 134.1363},\n\t\t{2957472, 135.4095},\n\t\t{2958336, 136.9224},\n\t\t{2959200, 137.1598},\n\t\t{2960064, 137.6977},\n\t\t{2962656, 137.6599},\n\t\t{2963520, 137.4048},\n\t\t{2964384, 137.2735},\n\t\t{2966112, 137.114},\n\t\t{2968704, 137.3708},\n\t\t{2969568, 139.1772},\n\t\t{2970432, 140.2391},\n\t\t{2971296, 141.4},\n\t\t{2972160, 138.9315},\n\t\t{2975616, 141.4776},\n\t\t{2976480, 140.6586},\n\t\t{2977344, 139.475},\n\t\t{2978208, 139.6327},\n\t\t{2980800, 139.9893},\n\t\t{2981664, 140.1341},\n\t\t{2982528, 140.6983},\n\t\t{2983392, 141.5151},\n\t\t{2984256, 142.3905},\n\t\t{2986848, 142.4275},\n\t\t{2987712, 142.7807},\n\t\t{2988576, 144.5008},\n\t\t{2989440, 139.9157},\n\t\t{2990304, 141.9614},\n\t\t{2992896, 140.9045},\n\t\t{2993760, 139.844},\n\t\t{2994624, 139.6881},\n\t\t{2995488, 140.1637},\n\t\t{2996352, 140.6041},\n\t\t{2998944, 139.1072},\n\t\t{2999808, 139.2206},\n\t\t{3000672, 139.7105},\n\t\t{3001536, 138.4455},\n\t\t{3002400, 137.6209},\n\t\t{3004992, 137.7953},\n\t\t{3005856, 137.7704},\n\t\t{3006720, 137.8026},\n\t\t{3007584, 137.9669},\n\t\t{3008448, 138.1516},\n\t\t{3011040, 138.1219},\n\t\t{3011904, 138.1223},\n\t\t{3012768, 138.1211},\n\t\t{3013632, 138.1279},\n\t\t{3014496, 138.0916},\n\t\t{3017088, 138.1252},\n\t\t{3017952, 138.2231},\n\t\t{3018816, 138.1269},\n\t\t{3019680, 137.8723},\n\t\t{3020544, 136.9635},\n\t\t{3023136, 137.0931},\n\t\t{3024000, 137.0439},\n\t\t{3024864, 135.0664},\n\t\t{3025728, 134.9446},\n\t\t{3026592, 134.8158},\n\t\t{3030048, 134.8713},\n\t\t{3030912, 134.8674},\n\t\t{3031776, 134.9767},\n\t\t{3032640, 135.7456},\n\t\t{3035232, 135.944},\n\t\t{3036096, 137.5219},\n\t\t{3036960, 137.3946},\n\t\t{3037824, 137.3927},\n\t\t{3038688, 136.3548},\n\t\t{3041280, 136.5402},\n\t\t{3042144, 137.3973},\n\t\t{3043008, 137.8485},\n\t\t{3043872, 137.7699},\n\t\t{3044736, 138.4426},\n\t\t{3047328, 138.5117},\n\t\t{3048192, 138.5739},\n\t\t{3049056, 138.502},\n\t\t{3049920, 138.5105},\n\t\t{3050784, 138.2437},\n\t\t{3053376, 137.9167},\n\t\t{3054240, 138.0589},\n\t\t{3055104, 137.7508},\n\t\t{3055968, 138.1793},\n\t\t{3056832, 138.2161},\n\t\t{3059424, 138.6033},\n\t\t{3060288, 138.6038},\n\t\t{3061152, 138.9526},\n\t\t{3062016, 139.3756},\n\t\t{3062880, 138.8471},\n\t\t{3065472, 139.5007},\n\t\t{3066336, 141.0292},\n\t\t{3067200, 140.9081},\n\t\t{3068064, 141.3428},\n\t\t{3068928, 141.3684},\n\t\t{3071520, 142.7627},\n\t\t{3072384, 142.6969},\n\t\t{3073248, 142.5168},\n\t\t{3074112, 142.8512},\n\t\t{3074976, 142.2506},\n\t\t{3077568, 140.8693},\n\t\t{3078432, 141.2097},\n\t\t{3079296, 141.9374},\n\t\t{3080160, 142.2896},\n\t\t{3081024, 144.4438},\n\t\t{3083616, 143.7232},\n\t\t{3084480, 144.4013},\n\t\t{3085344, 143.4504},\n\t\t{3086208, 140.5713},\n\t\t{3087072, 140.1787},\n\t\t{3089664, 140.3381},\n\t\t{3090528, 141.32},\n\t\t{3091392, 142.3151},\n\t\t{3092256, 142.9711},\n\t\t{3093120, 142.9502},\n\t\t{3095712, 142.7184},\n\t\t{3096576, 144.0945},\n\t\t{3097440, 144.4004},\n\t\t{3098304, 144.4145},\n\t\t{3099168, 144.2934},\n\t\t{3101760, 145.0342},\n\t\t{3102624, 144.832},\n\t\t{3103488, 144.4861},\n\t\t{3104352, 145.9012},\n\t\t{3105216, 145.4278},\n\t\t{3107808, 146.4131},\n\t\t{3108672, 147.4409},\n\t\t{3109536, 146.7752},\n\t\t{3110400, 146.2453},\n\t\t{3111264, 144.6746},\n\t\t{3113856, 145.3614},\n\t\t{3114720, 147.6478},\n\t\t{3115584, 147.5782},\n\t\t{3116448, 146.5677},\n\t\t{3117312, 146.6047},\n\t\t{3119904, 147.9653},\n\t\t{3120768, 147.8702},\n\t\t{3121632, 149.4729},\n\t\t{3122496, 149.9376},\n\t\t{3123360, 150.9327},\n\t\t{3125952, 150.9962},\n\t\t{3126816, 150.7508},\n\t\t{3127680, 151.1638},\n\t\t{3128544, 150.5726},\n\t\t{3129408, 148.1361},\n\t\t{3132000, 147.1669},\n\t\t{3132864, 147.755},\n\t\t{3133728, 149.2046},\n\t\t{3134592, 149.4084},\n\t\t{3135456, 149.827},\n\t\t{3138048, 148.5366},\n\t\t{3138912, 147.5436},\n\t\t{3139776, 146.4789},\n\t\t{3140640, 144.0321},\n\t\t{3141504, 144.0029},\n\t\t{3144096, 141.9136},\n\t\t{3144960, 141.4663},\n\t\t{3145824, 140.8824},\n\t\t{3146688, 140.3786},\n\t\t{3147552, 140.4286},\n\t\t{3152736, 139.7471},\n\t\t{3153600, 142.0917},\n\t\t{3156192, 141.7985},\n\t\t{3158784, 140.6689},\n\t\t{3159648, 139.6841},\n\t\t{3162240, 139.9567},\n\t\t{3163104, 140.9447},\n\t\t{3163968, 140.4108},\n\t\t{3164832, 140.6212},\n\t\t{3165696, 141.0972},\n\t\t{3168288, 140.6849},\n\t\t{3169152, 141.559},\n\t\t{3170016, 141.4094},\n\t\t{3170880, 141.2019},\n\t\t{3171744, 141.2044},\n\t\t{3174336, 139.8486},\n\t\t{3175200, 139.3625},\n\t\t{3176064, 139.9944},\n\t\t{3176928, 139.8449},\n\t\t{3177792, 139.9896},\n\t\t{3180384, 139.897},\n\t\t{3181248, 139.9027},\n\t\t{3182112, 139.9008},\n\t\t{3182976, 139.4521},\n\t\t{3183840, 139.2058},\n\t\t{3186432, 138.3235},\n\t\t{3187296, 138.3286},\n\t\t{3188160, 138.3422},\n\t\t{3189024, 138.515},\n\t\t{3189888, 138.58},\n\t\t{3192480, 138.207},\n\t\t{3193344, 137.7748},\n\t\t{3194208, 138.0336},\n\t\t{3195072, 137.6356},\n\t\t{3195936, 137.4821},\n\t\t{3198528, 137.4975},\n\t\t{3199392, 136.7532},\n\t\t{3200256, 137.3394},\n\t\t{3201120, 137.4909},\n\t\t{3201984, 137.6646},\n\t\t{3204576, 137.9274},\n\t\t{3205440, 137.0897},\n\t\t{3206304, 136.8181},\n\t\t{3207168, 136.353},\n\t\t{3208032, 136.2494},\n\t\t{3210624, 136.0512},\n\t\t{3211488, 136.7267},\n\t\t{3212352, 137.3948},\n\t\t{3213216, 138.7829},\n\t\t{3214080, 137.2056},\n\t\t{3216672, 137.0108},\n\t\t{3217536, 137.7899},\n\t\t{3218400, 137.8014},\n\t\t{3219264, 137.307},\n\t\t{3220128, 137.3086},\n\t\t{3222720, 137.4206},\n\t\t{3223584, 138.1813},\n\t\t{3224448, 137.8363},\n\t\t{3225312, 138.4193},\n\t\t{3226176, 136.9616},\n\t\t{3228768, 137.2109},\n\t\t{3229632, 136.6725},\n\t\t{3230496, 136.3313},\n\t\t{3235680, 136.3672},\n\t\t{3236544, 136.2992},\n\t\t{3237408, 136.4056},\n\t\t{3238272, 136.401},\n\t\t{3240864, 136.5355},\n\t\t{3241728, 135.6009},\n\t\t{3242592, 135.4242},\n\t\t{3243456, 135.1919},\n\t\t{3244320, 135.0344},\n\t\t{3246912, 133.7338},\n\t\t{3247776, 133.7509},\n\t\t{3248640, 133.7303},\n\t\t{3249504, 134.2455},\n\t\t{3250368, 133.5826},\n\t\t{3252960, 133.2552},\n\t\t{3253824, 133.0066},\n\t\t{3254688, 130.6994},\n\t\t{3256416, 130.1272},\n\t\t{3259008, 131.0534},\n\t\t{3259872, 131.0892},\n\t\t{3261600, 130.0803},\n\t\t{3262464, 129.4923},\n\t\t{3265056, 128.5419},\n\t\t{3265920, 127.4912},\n\t\t{3266784, 128.2552},\n\t\t{3268512, 128.7958},\n\t\t{3271104, 128.1293},\n\t\t{3271968, 128.2949},\n\t\t{3272832, 128.0075},\n\t\t{3273696, 128.4391},\n\t\t{3274560, 129.1861},\n\t\t{3278016, 129.3558},\n\t\t{3278880, 131.2189},\n\t\t{3279744, 131.8463},\n\t\t{3280608, 130.5234},\n\t\t{3283200, 130.3813},\n\t\t{3284064, 131.2028},\n\t\t{3284928, 131.206},\n\t\t{3285792, 131.2588},\n\t\t{3286656, 130.6761},\n\t\t{3289248, 130.308},\n\t\t{3290112, 129.6497},\n\t\t{3290976, 129.6778},\n\t\t{3291840, 129.1615},\n\t\t{3292704, 128.6083},\n\t\t{3295296, 128.5664},\n\t\t{3296160, 128.7604},\n\t\t{3297024, 129.2721},\n\t\t{3297888, 128.838},\n\t\t{3298752, 128.7319},\n\t\t{3302208, 128.5528},\n\t\t{3303072, 129.4577},\n\t\t{3303936, 129.2019},\n\t\t{3304800, 129.2967},\n\t\t{3307392, 129.5627},\n\t\t{3308256, 129.4144},\n\t\t{3309120, 130.453},\n\t\t{3309984, 129.3627},\n\t\t{3310848, 128.9138},\n\t\t{3313440, 128.8975},\n\t\t{3314304, 128.5007},\n\t\t{3315168, 127.5711},\n\t\t{3316032, 127.6018},\n\t\t{3316896, 127.7288},\n\t\t{3319488, 127.9991},\n\t\t{3320352, 128.165},\n\t\t{3321216, 128.0475},\n\t\t{3322080, 128.7246},\n\t\t{3322944, 128.2747},\n\t\t{3325536, 127.6523},\n\t\t{3326400, 126.4012},\n\t\t{3327264, 125.6637},\n\t\t{3328128, 125.9671},\n\t\t{3328992, 126.0163},\n\t\t{3331584, 127.2136},\n\t\t{3332448, 127.2903},\n\t\t{3333312, 127.0398},\n\t\t{3334176, 127.8542},\n\t\t{3335040, 127.6552},\n\t\t{3337632, 126.8205},\n\t\t{3338496, 126.2915},\n\t\t{3339360, 126.4602},\n\t\t{3340224, 125.1854},\n\t\t{3341088, 126.3431},\n\t\t{3344544, 125.7236},\n\t\t{3345408, 124.6461},\n\t\t{3346272, 125.3036},\n\t\t{3347136, 125.5725},\n\t\t{3349728, 125.5432},\n\t\t{3350592, 127.2147},\n\t\t{3351456, 127.2573},\n\t\t{3352320, 126.6158},\n\t\t{3353184, 126.569},\n\t\t{3355776, 126.2057},\n\t\t{3356640, 126.3582},\n\t\t{3357504, 126.5639},\n\t\t{3358368, 126.6054},\n\t\t{3359232, 126.7131},\n\t\t{3361824, 127.3487},\n\t\t{3362688, 128.1251},\n\t\t{3363552, 129.3343},\n\t\t{3364416, 130.6416},\n\t\t{3365280, 130.3313},\n\t\t{3367872, 130.6792},\n\t\t{3368736, 131.5964},\n\t\t{3369600, 131.6842},\n\t\t{3370464, 130.0391},\n\t\t{3371328, 129.5268},\n\t\t{3373920, 129.4847},\n\t\t{3374784, 128.2482},\n\t\t{3375648, 127.8167},\n\t\t{3376512, 127.9602},\n\t\t{3377376, 128.1118},\n\t\t{3379968, 128.4113},\n\t\t{3380832, 129.5024},\n\t\t{3381696, 130.0045},\n\t\t{3382560, 130.5971},\n\t\t{3383424, 130.647},\n\t\t{3386016, 129.6465},\n\t\t{3386880, 128.7095},\n\t\t{3387744, 128.4669},\n\t\t{3388608, 129.5423},\n\t\t{3389472, 128.5912},\n\t\t{3392064, 128.7483},\n\t\t{3392928, 128.1725},\n\t\t{3393792, 128.0104},\n\t\t{3394656, 128.1182},\n\t\t{3395520, 128.3756},\n\t\t{3398112, 128.6883},\n\t\t{3398976, 129.273},\n\t\t{3399840, 129.1143},\n\t\t{3400704, 129.6349},\n\t\t{3401568, 129.6071},\n\t\t{3404160, 129.6426},\n\t\t{3405024, 129.8439},\n\t\t{3405888, 130.3858},\n\t\t{3406752, 130.4912},\n\t\t{3407616, 130.36},\n\t\t{3410208, 130.3086},\n\t\t{3411072, 130.2872},\n\t\t{3411936, 130.6322},\n\t\t{3412800, 130.5882},\n\t\t{3413664, 131.0175},\n\t\t{3416256, 130.2441},\n\t\t{3417120, 130.7293},\n\t\t{3417984, 130.0691},\n\t\t{3418848, 129.8581},\n\t\t{3419712, 129.3853},\n\t\t{3422304, 129.6086},\n\t\t{3423168, 130.5527},\n\t\t{3424032, 130.1307},\n\t\t{3424896, 130.4049},\n\t\t{3425760, 129.8928},\n\t\t{3428352, 129.544},\n\t\t{3429216, 128.839},\n\t\t{3430080, 128.55},\n\t\t{3430944, 128.5851},\n\t\t{3431808, 128.6215},\n\t\t{3434400, 128.3232},\n\t\t{3435264, 128.3066},\n\t\t{3436128, 128.6416},\n\t\t{3436992, 129.1036},\n\t\t{3437856, 129.0061},\n\t\t{3440448, 129.1746},\n\t\t{3441312, 128.8219},\n\t\t{3442176, 128.4391},\n\t\t{3443040, 128.359},\n\t\t{3443904, 128.1995},\n\t\t{3446496, 127.7512},\n\t\t{3447360, 127.5153},\n\t\t{3448224, 127.6107},\n\t\t{3449088, 127.5459},\n\t\t{3449952, 128.1371},\n\t\t{3452544, 127.3369},\n\t\t{3453408, 127.3617},\n\t\t{3454272, 127.4478},\n\t\t{3455136, 126.3095},\n\t\t{3456000, 126.0781},\n\t\t{3458592, 126.323},\n\t\t{3459456, 126.2051},\n\t\t{3460320, 125.8779},\n\t\t{3461184, 126.2242},\n\t\t{3462048, 126.4897},\n\t\t{3464640, 126.6198},\n\t\t{3468096, 125.8253},\n\t\t{3470688, 124.5218},\n\t\t{3471552, 124.8994},\n\t\t{3474144, 124.75},\n\t\t{3476736, 125.3781},\n\t\t{3477600, 124.7236},\n\t\t{3478464, 124.9246},\n\t\t{3479328, 125.2559},\n\t\t{3480192, 124.8857},\n\t\t{3482784, 123.7997},\n\t\t{3483648, 123.5872},\n\t\t{3484512, 123.8527},\n\t\t{3485376, 123.6026},\n\t\t{3486240, 123.4713},\n\t\t{3488832, 123.6211},\n\t\t{3489696, 123.787},\n\t\t{3490560, 123.9803},\n\t\t{3491424, 123.7573},\n\t\t{3492288, 123.675},\n\t\t{3494880, 123.8098},\n\t\t{3495744, 123.5505},\n\t\t{3496608, 123.447},\n\t\t{3497472, 122.5108},\n\t\t{3498336, 121.3595},\n\t\t{3500928, 121.5087},\n\t\t{3501792, 121.237},\n\t\t{3502656, 119.8295},\n\t\t{3503520, 121.1471},\n\t\t{3504384, 119.4581},\n\t\t{3506976, 121.1472},\n\t\t{3507840, 120.954},\n\t\t{3508704, 121.1423},\n\t\t{3509568, 120.7453},\n\t\t{3510432, 121.5537},\n\t\t{3513024, 122.3537},\n\t\t{3513888, 124.0349},\n\t\t{3514752, 123.7568},\n\t\t{3515616, 122.6474},\n\t\t{3516480, 122.6246},\n\t\t{3519072, 122.4524},\n\t\t{3519936, 122.685},\n\t\t{3520800, 122.1624},\n\t\t{3521664, 121.5517},\n\t\t{3522528, 121.4139},\n\t\t{3525120, 121.2098},\n\t\t{3525984, 121.6202},\n\t\t{3526848, 121.6272},\n\t\t{3527712, 121.2404},\n\t\t{3528576, 121.6183},\n\t\t{3531168, 121.5707},\n\t\t{3532032, 122.0048},\n\t\t{3532896, 122.4509},\n\t\t{3533760, 121.7186},\n\t\t{3534624, 122.0289},\n\t\t{3537216, 122.2259},\n\t\t{3538080, 122.6311},\n\t\t{3538944, 122.9345},\n\t\t{3539808, 123.1201},\n\t\t{3540672, 123.8982},\n\t\t{3543264, 123.0161},\n\t\t{3544128, 121.5277},\n\t\t{3544992, 122.2764},\n\t\t{3545856, 122.2163},\n\t\t{3546720, 119.9507},\n\t\t{3549312, 120.2248},\n\t\t{3550176, 121.1938},\n\t\t{3551040, 120.5845},\n\t\t{3551904, 120.7213},\n\t\t{3552768, 121.8138},\n\t\t{3555360, 121.8295},\n\t\t{3556224, 121.8122},\n\t\t{3557088, 121.3739},\n\t\t{3557952, 120.8074},\n\t\t{3558816, 120.8723},\n\t\t{3561408, 120.7523},\n\t\t{3562272, 120.1766},\n\t\t{3563136, 119.7259},\n\t\t{3568320, 119.5149},\n\t\t{3569184, 119.2795},\n\t\t{3570912, 119.8023},\n\t\t{3573504, 119.1297},\n\t\t{3574368, 119.5964},\n\t\t{3575232, 119.5992},\n\t\t{3576960, 119.029},\n\t\t{3579552, 118.8891},\n\t\t{3580416, 118.9573},\n\t\t{3581280, 118.7188},\n\t\t{3582144, 119.3959},\n\t\t{3583008, 119.3027},\n\t\t{3585600, 118.5781},\n\t\t{3586464, 118.2927},\n\t\t{3587328, 118.4783},\n\t\t{3588192, 118.7817},\n\t\t{3589056, 118.5882},\n\t\t{3591648, 120.3533},\n\t\t{3592512, 120.7073},\n\t\t{3593376, 120.4309},\n\t\t{3594240, 119.1115},\n\t\t{3595104, 117.9764},\n\t\t{3597696, 118.2525},\n\t\t{3598560, 118.9715},\n\t\t{3599424, 119.4222},\n\t\t{3601152, 118.3679},\n\t\t{3603744, 118.7421},\n\t\t{3604608, 119.2922},\n\t\t{3605472, 120.1625},\n\t\t{3606336, 119.8336},\n\t\t{3607200, 120.191},\n\t\t{3610656, 119.856},\n\t\t{3611520, 120.3854},\n\t\t{3612384, 121.1697},\n\t\t{3613248, 120.9595},\n\t\t{3615840, 121.3996},\n\t\t{3617568, 120.9145},\n\t\t{3618432, 120.6036},\n\t\t{3619296, 121.2223},\n\t\t{3621888, 122.3733},\n\t\t{3622752, 122.5891},\n\t\t{3623616, 124.8332},\n\t\t{3624480, 123.7012},\n\t\t{3625344, 123.4993},\n\t\t{3627936, 123.6959},\n\t\t{3628800, 124.0046},\n\t\t{3629664, 123.9035},\n\t\t{3630528, 124.3301},\n\t\t{3631392, 124.0705},\n\t\t{3633984, 123.8636},\n\t\t{3634848, 124.823},\n\t\t{3635712, 124.7933},\n\t\t{3636576, 124.21},\n\t\t{3637440, 123.4177},\n\t\t{3640032, 123.7399},\n\t\t{3640896, 123.8721},\n\t\t{3641760, 123.7967},\n\t\t{3642624, 123.6678},\n\t\t{3643488, 123.9307},\n\t\t{3646080, 124.1615},\n\t\t{3646944, 124.6556},\n\t\t{3647808, 124.2223},\n\t\t{3648672, 124.4156},\n\t\t{3649536, 124.2016},\n\t\t{3652128, 123.791},\n\t\t{3652992, 123.6183},\n\t\t{3653856, 123.708},\n\t\t{3654720, 124.3642},\n\t\t{3655584, 124.397},\n\t\t{3659040, 124.4366},\n\t\t{3659904, 124.6904},\n\t\t{3660768, 124.7064},\n\t\t{3661632, 125.4477},\n\t\t{3664224, 125.5091},\n\t\t{3665088, 126.579},\n\t\t{3665952, 127.9456},\n\t\t{3666816, 127.3315},\n\t\t{3667680, 127.1863},\n\t\t{3670272, 126.775},\n\t\t{3671136, 126.5761},\n\t\t{3672000, 127.2702},\n\t\t{3672864, 127.4281},\n\t\t{3673728, 127.7714},\n\t\t{3676320, 128.6392},\n\t\t{3677184, 128.7018},\n\t\t{3678048, 127.3913},\n\t\t{3678912, 124.9947},\n\t\t{3679776, 125.7191},\n\t\t{3682368, 126.0664},\n\t\t{3683232, 127.6282},\n\t\t{3684096, 127.4744},\n\t\t{3684960, 127.1156},\n\t\t{3685824, 126.9528},\n\t\t{3688416, 127.3961},\n\t\t{3689280, 127.836},\n\t\t{3690144, 128.2038},\n\t\t{3691008, 126.5903},\n\t\t{3691872, 125.8359},\n\t\t{3694464, 126.1633},\n\t\t{3695328, 126.5027},\n\t\t{3696192, 126.9416},\n\t\t{3697056, 126.3683},\n\t\t{3697920, 125.9111},\n\t\t{3700512, 125.9123},\n\t\t{3701376, 125.7212},\n\t\t{3702240, 125.4043},\n\t\t{3703104, 126.6575},\n\t\t{3703968, 125.6327},\n\t\t{3706560, 125.7106},\n\t\t{3707424, 125.2589},\n\t\t{3708288, 125.0133},\n\t\t{3709152, 125.1687},\n\t\t{3710016, 125.7377},\n\t\t{3712608, 125.6509},\n\t\t{3713472, 126.1754},\n\t\t{3714336, 125.7004},\n\t\t{3715200, 125.8563},\n\t\t{3716064, 125.2531},\n\t\t{3718656, 124.8772},\n\t\t{3719520, 125.4245},\n\t\t{3720384, 125.4098},\n\t\t{3721248, 126.1954},\n\t\t{3722112, 126.1639},\n\t\t{3724704, 125.9217},\n\t\t{3725568, 125.6998},\n\t\t{3726432, 125.4646},\n\t\t{3727296, 126.1141},\n\t\t{3728160, 126.0712},\n\t\t{3730752, 126.4749},\n\t\t{3731616, 126.152},\n\t\t{3732480, 125.9113},\n\t\t{3733344, 125.2099},\n\t\t{3734208, 125.6253},\n\t\t{3736800, 125.5602},\n\t\t{3737664, 125.0187},\n\t\t{3738528, 124.1579},\n\t\t{3739392, 124.3492},\n\t\t{3740256, 124.6251},\n\t\t{3742848, 124.9292},\n\t\t{3743712, 124.9952},\n\t\t{3744576, 124.9349},\n\t\t{3745440, 125.1333},\n\t\t{3746304, 125.2141},\n\t\t{3748896, 125.6063},\n\t\t{3749760, 125.5167},\n\t\t{3750624, 125.7398},\n\t\t{3751488, 124.9157},\n\t\t{3752352, 124.9295},\n\t\t{3754944, 125.1318},\n\t\t{3755808, 125.6197},\n\t\t{3756672, 125.6658},\n\t\t{3757536, 125.6254},\n\t\t{3758400, 125.1435},\n\t\t{3760992, 125.3541},\n\t\t{3761856, 125.1925},\n\t\t{3762720, 124.5474},\n\t\t{3763584, 124.8814},\n\t\t{3764448, 124.6826},\n\t\t{3767040, 124.9739},\n\t\t{3767904, 125.1151},\n\t\t{3768768, 124.861},\n\t\t{3769632, 124.9525},\n\t\t{3770496, 125.1021},\n\t\t{3773088, 124.817},\n\t\t{3773952, 124.9067},\n\t\t{3774816, 124.6607},\n\t\t{3775680, 124.6099},\n\t\t{3776544, 124.4061},\n\t\t{3779136, 123.6731},\n\t\t{3780000, 124.1408},\n\t\t{3785184, 123.5385},\n\t\t{3786048, 123.5254},\n\t\t{3786912, 123.4179},\n\t\t{3791232, 122.3595},\n\t\t{3792096, 121.4876},\n\t\t{3792960, 121.8182},\n\t\t{3793824, 121.9627},\n\t\t{3794688, 121.8998},\n\t\t{3797280, 121.7167},\n\t\t{3798144, 121.9102},\n\t\t{3799008, 121.6172},\n\t\t{3799872, 121.3443},\n\t\t{3800736, 120.9295},\n\t\t{3803328, 119.4377},\n\t\t{3804192, 119.0607},\n\t\t{3805056, 119.6062},\n\t\t{3805920, 119.8405},\n\t\t{3806784, 119.2679},\n\t\t{3809376, 119.2815},\n\t\t{3810240, 119.27},\n\t\t{3811104, 119.6542},\n\t\t{3811968, 119.9627},\n\t\t{3812832, 119.5193},\n\t\t{3815424, 119.4732},\n\t\t{3816288, 119.3735},\n\t\t{3817152, 119.3316},\n\t\t{3818016, 118.6983},\n\t\t{3818880, 118.781},\n\t\t{3821472, 119.2347},\n\t\t{3822336, 119.3518},\n\t\t{3823200, 119.5184},\n\t\t{3824064, 118.96},\n\t\t{3824928, 118.9339},\n\t\t{3827520, 119.2067},\n\t\t{3828384, 119.5357},\n\t\t{3829248, 118.8675},\n\t\t{3830112, 118.9685},\n\t\t{3830976, 118.6718},\n\t\t{3833568, 119.5109},\n\t\t{3834432, 119.7737},\n\t\t{3835296, 119.6246},\n\t\t{3836160, 120.2886},\n\t\t{3837024, 119.9252},\n\t\t{3839616, 119.9625},\n\t\t{3840480, 120.3869},\n\t\t{3841344, 121.0625},\n\t\t{3842208, 121.2805},\n\t\t{3843072, 121.2327},\n\t\t{3845664, 121.1307},\n\t\t{3846528, 120.7201},\n\t\t{3847392, 120.1093},\n\t\t{3848256, 120.2009},\n\t\t{3849120, 120.2605},\n\t\t{3851712, 120.001},\n\t\t{3852576, 120.377},\n\t\t{3853440, 120.4228},\n\t\t{3854304, 120.4043},\n\t\t{3855168, 121.2472},\n\t\t{3857760, 121.782},\n\t\t{3858624, 122.9173},\n\t\t{3859488, 122.9467},\n\t\t{3860352, 122.5262},\n\t\t{3861216, 122.3985},\n\t\t{3863808, 122.2702},\n\t\t{3864672, 123.3464},\n\t\t{3865536, 123.6194},\n\t\t{3866400, 123.1327},\n\t\t{3867264, 123.1651},\n\t\t{3869856, 122.9644},\n\t\t{3870720, 122.955},\n\t\t{3871584, 122.923},\n\t\t{3876768, 122.9029},\n\t\t{3877632, 123.442},\n\t\t{3878496, 123.9203},\n\t\t{3879360, 122.8593},\n\t\t{3881952, 122.8146},\n\t\t{3882816, 122.8654},\n\t\t{3883680, 122.9452},\n\t\t{3885408, 123.0632},\n\t\t{3888000, 123.2668},\n\t\t{3888864, 123.1571},\n\t\t{3889728, 123.2945},\n\t\t{3890592, 123.6371},\n\t\t{3891456, 123.7635},\n\t\t{3894048, 123.8674},\n\t\t{3894912, 123.8227},\n\t\t{3895776, 124.7766},\n\t\t{3896640, 124.5635},\n\t\t{3897504, 123.9242},\n\t\t{3900096, 124.0257},\n\t\t{3900960, 124.0016},\n\t\t{3901824, 124.0626},\n\t\t{3902688, 123.6701},\n\t\t{3903552, 123.4633},\n\t\t{3906144, 123.2765},\n\t\t{3907008, 123.3057},\n\t\t{3907872, 123.4013},\n\t\t{3909600, 123.4246},\n\t\t{3912192, 123.2117},\n\t\t{3913056, 123.014},\n\t\t{3913920, 123.0944},\n\t\t{3914784, 122.4991},\n\t\t{3915648, 122.4237},\n\t\t{3919104, 122.3346},\n\t\t{3919968, 122.6931},\n\t\t{3920832, 122.5136},\n\t\t{3921696, 122.0681},\n\t\t{3924288, 121.8124},\n\t\t{3925152, 122.1447},\n\t\t{3926016, 122.1668},\n\t\t{3926880, 122.3798},\n\t\t{3927744, 122.5626},\n\t\t{3930336, 122.4644},\n\t\t{3931200, 122.4352},\n\t\t{3932064, 122.5977},\n\t\t{3933792, 122.6199},\n\t\t{3936384, 123.1052},\n\t\t{3937248, 123.329},\n\t\t{3938112, 123.205},\n\t\t{3938976, 123.3043},\n\t\t{3939840, 123.2938},\n\t\t{3942432, 123.513},\n\t\t{3943296, 123.1792},\n\t\t{3944160, 123.4471},\n\t\t{3945024, 123.522},\n\t\t{3945888, 123.4046},\n\t\t{3948480, 123.5251},\n\t\t{3949344, 123.3207},\n\t\t{3950208, 123.2073},\n\t\t{3951072, 123.0205},\n\t\t{3951936, 122.2175},\n\t\t{3954528, 122.725},\n\t\t{3955392, 122.6154},\n\t\t{3956256, 122.5277},\n\t\t{3957120, 122.6123},\n\t\t{3957984, 122.7106},\n\t\t{3960576, 122.6076},\n\t\t{3961440, 122.709},\n\t\t{3962304, 121.8253},\n\t\t{3963168, 121.8297},\n\t\t{3964032, 121.2245},\n\t\t{3966624, 121.4679},\n\t\t{3967488, 121.0638},\n\t\t{3968352, 121.242},\n\t\t{3969216, 121.1113},\n\t\t{3970080, 120.8515},\n\t\t{3973536, 121.0123},\n\t\t{3974400, 121.3208},\n\t\t{3975264, 121.07},\n\t\t{3976128, 121.3238},\n\t\t{3978720, 121.4657},\n\t\t{3979584, 121.9693},\n\t\t{3980448, 121.9142},\n\t\t{3981312, 121.5825},\n\t\t{3982176, 120.9695},\n\t\t{3984768, 120.9029},\n\t\t{3985632, 121.3381},\n\t\t{3986496, 122.0074},\n\t\t{3987360, 121.8743},\n\t\t{3988224, 122.1097},\n\t\t{3990816, 121.7391},\n\t\t{3991680, 121.7545},\n\t\t{3992544, 122.2242},\n\t\t{3993408, 122.0068},\n\t\t{3994272, 122.1235},\n\t\t{3996864, 122.1958},\n\t\t{3997728, 122.4332},\n\t\t{3998592, 122.6897},\n\t\t{3999456, 122.6143},\n\t\t{4000320, 122.2055},\n\t\t{4002912, 122.7206},\n\t\t{4003776, 122.3013},\n\t\t{4004640, 122.484},\n\t\t{4005504, 122.6169},\n\t\t{4006368, 122.5985},\n\t\t{4008960, 122.1156},\n\t\t{4009824, 122.2009},\n\t\t{4010688, 122.1388},\n\t\t{4011552, 122.0147},\n\t\t{4012416, 121.8176},\n\t\t{4015008, 121.5919},\n\t\t{4015872, 121.8656},\n\t\t{4016736, 121.585},\n\t\t{4017600, 121.9763},\n\t\t{4018464, 121.873},\n\t\t{4021056, 121.571},\n\t\t{4021920, 121.6617},\n\t\t{4022784, 121.8562},\n\t\t{4023648, 121.6704},\n\t\t{4024512, 121.9326},\n\t\t{4027104, 121.8168},\n\t\t{4027968, 122.0034},\n\t\t{4028832, 121.715},\n\t\t{4029696, 121.5129},\n\t\t{4030560, 121.6114},\n\t\t{4033152, 121.4208},\n\t\t{4034016, 121.5218},\n\t\t{4034880, 121.7178},\n\t\t{4035744, 121.3161},\n\t\t{4036608, 121.2178},\n\t\t{4039200, 120.5982},\n\t\t{4040064, 120.9701},\n\t\t{4040928, 121.0628},\n\t\t{4041792, 120.9611},\n\t\t{4042656, 120.5155},\n\t\t{4045248, 120.6269},\n\t\t{4046112, 121.1028},\n\t\t{4046976, 121.9351},\n\t\t{4047840, 121.7072},\n\t\t{4048704, 121.5204},\n\t\t{4051296, 120.9042},\n\t\t{4052160, 120.9099},\n\t\t{4053024, 121.0775},\n\t\t{4053888, 120.2811},\n\t\t{4054752, 119.7343},\n\t\t{4057344, 119.9177},\n\t\t{4058208, 119.9089},\n\t\t{4059072, 120.3204},\n\t\t{4059936, 120.3312},\n\t\t{4060800, 119.9249},\n\t\t{4063392, 119.5151},\n\t\t{4064256, 119.5899},\n\t\t{4065120, 119.3089},\n\t\t{4065984, 119.1463},\n\t\t{4066848, 119.4988},\n\t\t{4069440, 119.3093},\n\t\t{4070304, 119.3234},\n\t\t{4071168, 119.6216},\n\t\t{4072032, 119.2373},\n\t\t{4072896, 118.6018},\n\t\t{4075488, 118.4156},\n\t\t{4076352, 117.9687},\n\t\t{4077216, 118.0186},\n\t\t{4078080, 116.5758},\n\t\t{4078944, 115.1666},\n\t\t{4081536, 114.8133},\n\t\t{4082400, 114.1683},\n\t\t{4083264, 112.7771},\n\t\t{4084128, 114.5834},\n\t\t{4084992, 114.203},\n\t\t{4087584, 114.2858},\n\t\t{4088448, 114.8959},\n\t\t{4089312, 115.4436},\n\t\t{4090176, 115.6776},\n\t\t{4091040, 115.3647},\n\t\t{4093632, 114.619},\n\t\t{4094496, 114.5904},\n\t\t{4095360, 114.1795},\n\t\t{4096224, 113.8346},\n\t\t{4099680, 113.6091},\n\t\t{4100544, 113.522},\n\t\t{4101408, 113.8245},\n\t\t{4102272, 112.8354},\n\t\t{4103136, 113.0158},\n\t\t{4106592, 113.5866},\n\t\t{4107456, 113.4374},\n\t\t{4108320, 113.3607},\n\t\t{4109184, 113.8162},\n\t\t{4111776, 113.8201},\n\t\t{4112640, 113.6648},\n\t\t{4113504, 113.152},\n\t\t{4114368, 113.3123},\n\t\t{4115232, 112.4713},\n\t\t{4117824, 112.3591},\n\t\t{4118688, 111.8671},\n\t\t{4119552, 111.5276},\n\t\t{4120416, 111.8164},\n\t\t{4121280, 111.9229},\n\t\t{4123872, 111.5147},\n\t\t{4124736, 111.7154},\n\t\t{4125600, 111.6965},\n\t\t{4126464, 111.4955},\n\t\t{4127328, 111.2493},\n\t\t{4129920, 111.2178},\n\t\t{4130784, 110.4899},\n\t\t{4131648, 110.2572},\n\t\t{4132512, 110.7134},\n\t\t{4133376, 111.4535},\n\t\t{4135968, 111.9235},\n\t\t{4136832, 111.5993},\n\t\t{4137696, 111.3618},\n\t\t{4138560, 111.2988},\n\t\t{4139424, 111.0153},\n\t\t{4142016, 111.2348},\n\t\t{4142880, 111.2184},\n\t\t{4143744, 111.0943},\n\t\t{4144608, 110.9434},\n\t\t{4145472, 110.703},\n\t\t{4148064, 109.5634},\n\t\t{4148928, 110.0508},\n\t\t{4149792, 109.9694},\n\t\t{4150656, 110.0158},\n\t\t{4151520, 109.6976},\n\t\t{4154112, 109.6569},\n\t\t{4154976, 109.8921},\n\t\t{4155840, 109.545},\n\t\t{4156704, 109.5438},\n\t\t{4157568, 109.2673},\n\t\t{4160160, 109.3634},\n\t\t{4161024, 108.7245},\n\t\t{4161888, 108.5539},\n\t\t{4162752, 107.7974},\n\t\t{4163616, 108.291},\n\t\t{4166208, 107.3283},\n\t\t{4167072, 107.1584},\n\t\t{4167936, 107.0026},\n\t\t{4168800, 106.5525},\n\t\t{4169664, 106.6056},\n\t\t{4172256, 106.4228},\n\t\t{4173120, 107.2432},\n\t\t{4173984, 109.5266},\n\t\t{4179168, 109.4474},\n\t\t{4180032, 109.2162},\n\t\t{4180896, 108.0787},\n\t\t{4181760, 108.0025},\n\t\t{4184352, 107.9872},\n\t\t{4185216, 107.8795},\n\t\t{4186080, 108.3077},\n\t\t{4186944, 108.4865},\n\t\t{4187808, 108.5576},\n\t\t{4190400, 109.2021},\n\t\t{4191264, 109.8216},\n\t\t{4192128, 112.1743},\n\t\t{4192992, 111.8057},\n\t\t{4193856, 111.4653},\n\t\t{4196448, 112.009},\n\t\t{4197312, 112.2046},\n\t\t{4198176, 111.9253},\n\t\t{4199904, 111.9039},\n\t\t{4202496, 112.4895},\n\t\t{4203360, 113.3006},\n\t\t{4204224, 113.2325},\n\t\t{4205088, 113.278},\n\t\t{4205952, 112.9063},\n\t\t{4208544, 112.0574},\n\t\t{4209408, 113.4303},\n\t\t{4210272, 114.1321},\n\t\t{4212000, 114.4335},\n\t\t{4214592, 114.416},\n\t\t{4215456, 114.5869},\n\t\t{4216320, 115.0592},\n\t\t{4217184, 116.3585},\n\t\t{4218048, 116.8131},\n\t\t{4221504, 115.764},\n\t\t{4222368, 114.9518},\n\t\t{4223232, 113.3864},\n\t\t{4224096, 113.1045},\n\t\t{4226688, 113.1399},\n\t\t{4227552, 112.4087},\n\t\t{4228416, 112.6405},\n\t\t{4229280, 112.5137},\n\t\t{4230144, 112.5042},\n\t\t{4232736, 112.1112},\n\t\t{4233600, 111.2877},\n\t\t{4234464, 110.6268},\n\t\t{4235328, 111.3997},\n\t\t{4236192, 113.0542},\n\t\t{4238784, 110.928},\n\t\t{4239648, 110.2662},\n\t\t{4240512, 109.9718},\n\t\t{4241376, 110.2159},\n\t\t{4242240, 110.4064},\n\t\t{4244832, 110.8801},\n\t\t{4245696, 111.8831},\n\t\t{4246560, 112.3271},\n\t\t{4247424, 110.9502},\n\t\t{4250880, 111.6702},\n\t\t{4251744, 112.2009},\n\t\t{4252608, 111.8221},\n\t\t{4253472, 112.0588},\n\t\t{4254336, 112.1553},\n\t\t{4256928, 110.3672},\n\t\t{4257792, 110.9584},\n\t\t{4258656, 110.3606},\n\t\t{4259520, 110.2633},\n\t\t{4260384, 110.1805},\n\t\t{4262976, 110.0204},\n\t\t{4263840, 110.3004},\n\t\t{4264704, 109.9525},\n\t\t{4265568, 110.1328},\n\t\t{4266432, 110.4653},\n\t\t{4269024, 110.2376},\n\t\t{4269888, 110.1041},\n\t\t{4270752, 110.1277},\n\t\t{4271616, 110.0286},\n\t\t{4272480, 109.5038},\n\t\t{4275072, 110.0094},\n\t\t{4275936, 109.7154},\n\t\t{4276800, 109.809},\n\t\t{4277664, 109.2192},\n\t\t{4278528, 109.1079},\n\t\t{4281120, 109.1013},\n\t\t{4281984, 109.0029},\n\t\t{4282848, 108.8078},\n\t\t{4283712, 108.7011},\n\t\t{4284576, 109.5642},\n\t\t{4288032, 109.3156},\n\t\t{4288896, 108.6261},\n\t\t{4289760, 108.5595},\n\t\t{4290624, 109.1413},\n\t\t{4293216, 109.1193},\n\t\t{4294080, 110.3837},\n\t\t{4294944, 110.4684},\n\t\t{4295808, 110.3078},\n\t\t{4296672, 109.8528},\n\t\t{4299264, 109.7388},\n\t\t{4300128, 109.6338},\n\t\t{4300992, 109.4952},\n\t\t{4301856, 109.0119},\n\t\t{4302720, 108.9703},\n\t\t{4305312, 108.9594},\n\t\t{4306176, 108.6613},\n\t\t{4307040, 109.101},\n\t\t{4307904, 108.91},\n\t\t{4308768, 108.6327},\n\t\t{4311360, 108.304},\n\t\t{4312224, 108.0502},\n\t\t{4313088, 107.7073},\n\t\t{4313952, 106.83},\n\t\t{4314816, 106.3506},\n\t\t{4317408, 106.8203},\n\t\t{4318272, 107.465},\n\t\t{4319136, 107.5125},\n\t\t{4320000, 107.9077},\n\t\t{4320864, 108.8949},\n\t\t{4323456, 107.6025},\n\t\t{4324320, 106.9893},\n\t\t{4325184, 107.1079},\n\t\t{4326048, 106.3284},\n\t\t{4326912, 105.8445},\n\t\t{4329504, 105.5182},\n\t\t{4330368, 105.329},\n\t\t{4331232, 104.741},\n\t\t{4332096, 105.2186},\n\t\t{4332960, 104.9294},\n\t\t{4335552, 106.3276},\n\t\t{4336416, 105.7706},\n\t\t{4337280, 106.6156},\n\t\t{4338144, 106.8333},\n\t\t{4339008, 104.2646},\n\t\t{4341600, 103.3093},\n\t\t{4342464, 103.329},\n\t\t{4343328, 103.0206},\n\t\t{4344192, 103.7792},\n\t\t{4345056, 104.0208},\n\t\t{4347648, 103.8688},\n\t\t{4348512, 103.3492},\n\t\t{4349376, 103.2449},\n\t\t{4350240, 103.2219},\n\t\t{4351104, 102.9773},\n\t\t{4353696, 102.7761},\n\t\t{4354560, 102.6924},\n\t\t{4355424, 102.3033},\n\t\t{4356288, 101.4377},\n\t\t{4357152, 101.6498},\n\t\t{4359744, 101.3133},\n\t\t{4360608, 101.6143},\n\t\t{4361472, 101.8009},\n\t\t{4362336, 102.7486},\n\t\t{4363200, 103.0884},\n\t\t{4365792, 103.1052},\n\t\t{4366656, 102.3125},\n\t\t{4367520, 100.61},\n\t\t{4368384, 100.6062},\n\t\t{4369248, 100.5898},\n\t\t{4371840, 100.8037},\n\t\t{4372704, 100.9038},\n\t\t{4373568, 102.1183},\n\t\t{4374432, 102.7174},\n\t\t{4375296, 102.5038},\n\t\t{4377888, 102.9698},\n\t\t{4378752, 102.4408},\n\t\t{4379616, 102.3065},\n\t\t{4380480, 101.9105},\n\t\t{4381344, 102.0777},\n\t\t{4383936, 102.5575},\n\t\t{4384800, 104.1244},\n\t\t{4385664, 104.3251},\n\t\t{4386528, 104.5727},\n\t\t{4387392, 104.5603},\n\t\t{4389984, 104.592},\n\t\t{4390848, 104.8966},\n\t\t{4391712, 104.9115},\n\t\t{4392576, 104.6155},\n\t\t{4393440, 105.105},\n\t\t{4396032, 106.7008},\n\t\t{4396896, 107.0113},\n\t\t{4397760, 107.0653},\n\t\t{4398624, 107.3151},\n\t\t{4399488, 106.5586},\n\t\t{4402080, 106.0282},\n\t\t{4402944, 105.4811},\n\t\t{4403808, 105.0054},\n\t\t{4404672, 104.9155},\n\t\t{4405536, 104.7986},\n\t\t{4408128, 105.6238},\n\t\t{4408992, 105.9612},\n\t\t{4409856, 105.6835},\n\t\t{4410720, 106.1023},\n\t\t{4411584, 106.0225},\n\t\t{4415040, 106.0396},\n\t\t{4415904, 106.1686},\n\t\t{4416768, 105.7012},\n\t\t{4417632, 104.9002},\n\t\t{4421088, 104.6979},\n\t\t{4421952, 104.9033},\n\t\t{4422816, 104.2058},\n\t\t{4423680, 103.1916},\n\t\t{4426272, 103.3088},\n\t\t{4427136, 103.2039},\n\t\t{4428000, 103.4172},\n\t\t{4428864, 103.1908},\n\t\t{4429728, 103.3046},\n\t\t{4432320, 103.5088},\n\t\t{4433184, 103.3415},\n\t\t{4434048, 103.9022},\n\t\t{4434912, 104.4168},\n\t\t{4435776, 104.1561},\n\t\t{4438368, 104.3602},\n\t\t{4439232, 104.6974},\n\t\t{4440096, 104.6187},\n\t\t{4440960, 104.3273},\n\t\t{4441824, 104.8025},\n\t\t{4444416, 104.5172},\n\t\t{4445280, 105.5128},\n\t\t{4446144, 106.3029},\n\t\t{4447008, 107.0495},\n\t\t{4447872, 106.6614},\n\t\t{4450464, 106.1577},\n\t\t{4451328, 105.4127},\n\t\t{4452192, 105.1116},\n\t\t{4453056, 105.307},\n\t\t{4453920, 106.0024},\n\t\t{4456512, 106.5154},\n\t\t{4457376, 106.4691},\n\t\t{4458240, 106.3918},\n\t\t{4459104, 106.2094},\n\t\t{4459968, 105.9202},\n\t\t{4462560, 105.8585},\n\t\t{4463424, 106.9487},\n\t\t{4464288, 114.9475},\n\t\t{4465152, 110.9776},\n\t\t{4466016, 110.7183},\n\t\t{4468608, 110.3704},\n\t\t{4469472, 109.323},\n\t\t{4470336, 108.3552},\n\t\t{4471200, 109.8133},\n\t\t{4472064, 110.75},\n\t\t{4474656, 111.1007},\n\t\t{4475520, 111.3095},\n\t\t{4476384, 115.2111},\n\t\t{4477248, 115.2127},\n\t\t{4478112, 117.6202},\n\t\t{4480704, 119.6527},\n\t\t{4481568, 118.6033},\n\t\t{4482432, 117.8102},\n\t\t{4483296, 117.5232},\n\t\t{4484160, 116.1034},\n\t\t{4486752, 117.8671},\n\t\t{4487616, 118.1098},\n\t\t{4488480, 121.2677},\n\t\t{4489344, 119.9668},\n\t\t{4490208, 122.9995},\n\t\t{4492800, 122.2739},\n\t\t{4493664, 121.1571},\n\t\t{4494528, 119.979},\n\t\t{4495392, 118.3584},\n\t\t{4496256, 119.5127},\n\t\t{4498848, 122.6043},\n\t\t{4499712, 122.0105},\n\t\t{4500576, 123.0136},\n\t\t{4501440, 124.546},\n\t\t{4502304, 122.8137},\n\t\t{4504896, 123.9253},\n\t\t{4505760, 125.1086},\n\t\t{4506624, 127.8039},\n\t\t{4511808, 129.2191},\n\t\t{4512672, 133.012},\n\t\t{4514400, 133.4757},\n\t\t{4516992, 132.1157},\n\t\t{4517856, 128.018},\n\t\t{4518720, 129.2496},\n\t\t{4519584, 127.5226},\n\t\t{4520448, 129.8152},\n\t\t{4523904, 128.8522},\n\t\t{4524768, 129.8949},\n\t\t{4525632, 126.1538},\n\t\t{4526496, 126.0492},\n\t\t{4529088, 126.172},\n\t\t{4529952, 124.1685},\n\t\t{4530816, 124.154},\n\t\t{4531680, 123.8988},\n\t\t{4532544, 126.4145},\n\t\t{4535136, 126.0306},\n\t\t{4536000, 125.8165},\n\t\t{4536864, 124.1185},\n\t\t{4537728, 125.3162},\n\t\t{4538592, 126.3217},\n\t\t{4541184, 126.5205},\n\t\t{4542048, 128.7086},\n\t\t{4542912, 128.7262},\n\t\t{4544640, 128.2582},\n\t\t{4547232, 127.9537},\n\t\t{4548096, 127.7045},\n\t\t{4548960, 127.2229},\n\t\t{4549824, 127.4115},\n\t\t{4550688, 126.7556},\n\t\t{4554144, 129.4194},\n\t\t{4555008, 129.6654},\n\t\t{4555872, 129.1178},\n\t\t{4556736, 129.2766},\n\t\t{4559328, 129.5617},\n\t\t{4560192, 130.2942},\n\t\t{4561056, 132.4199},\n\t\t{4561920, 131.4563},\n\t\t{4562784, 131.2253},\n\t\t{4565376, 130.9102},\n\t\t{4566240, 130.307},\n\t\t{4567104, 130.3053},\n\t\t{4567968, 130.9367},\n\t\t{4568832, 131.529},\n\t\t{4571424, 131.5983},\n\t\t{4572288, 131.8593},\n\t\t{4573152, 132.9201},\n\t\t{4574016, 132.8675},\n\t\t{4574880, 134.2338},\n\t\t{4577472, 132.8254},\n\t\t{4578336, 132.1127},\n\t\t{4579200, 132.2123},\n\t\t{4580064, 132.2102},\n\t\t{4580928, 133.1667},\n\t\t{4583520, 132.8628},\n\t\t{4584384, 131.711},\n\t\t{4585248, 130.3226},\n\t\t{4586112, 130.4029},\n\t\t{4586976, 130.9663},\n\t\t{4589568, 131.0616},\n\t\t{4590432, 131.5229},\n\t\t{4591296, 129.6199},\n\t\t{4592160, 128.0652},\n\t\t{4593024, 129.3089},\n\t\t{4595616, 129.2042},\n\t\t{4596480, 127.9713},\n\t\t{4597344, 126.075},\n\t\t{4598208, 126.4215},\n\t\t{4599072, 127.9599},\n\t\t{4601664, 128.0195},\n\t\t{4602528, 127.695},\n\t\t{4603392, 126.1532},\n\t\t{4604256, 124.9115},\n\t\t{4605120, 124.7985},\n\t\t{4608576, 125.4581},\n\t\t{4609440, 126.1362},\n\t\t{4610304, 125.2569},\n\t\t{4611168, 125.1323},\n\t\t{4613760, 125.3734},\n\t\t{4614624, 124.8114},\n\t\t{4615488, 123.214},\n\t\t{4616352, 122.4788},\n\t\t{4617216, 122.9028},\n\t\t{4619808, 123.2182},\n\t\t{4620672, 124.1951},\n\t\t{4621536, 123.7943},\n\t\t{4622400, 124.1575},\n\t\t{4623264, 123.3903},\n\t\t{4625856, 123.3483},\n\t\t{4626720, 123.3757},\n\t\t{4627584, 122.752},\n\t\t{4628448, 122.0226},\n\t\t{4629312, 121.4527},\n\t\t{4631904, 121.9623},\n\t\t{4632768, 121.8546},\n\t\t{4633632, 122.0622},\n\t\t{4634496, 122.746},\n\t\t{4635360, 125.2255},\n\t\t{4637952, 125.3103},\n\t\t{4638816, 124.5541},\n\t\t{4639680, 123.619},\n\t\t{4640544, 122.155},\n\t\t{4641408, 123.0054},\n\t\t{4644000, 123.0039},\n\t\t{4644864, 122.6211},\n\t\t{4645728, 122.6797},\n\t\t{4646592, 123.1116},\n\t\t{4647456, 124.9934},\n\t\t{4650048, 123.1544},\n\t\t{4650912, 123.0018},\n\t\t{4651776, 122.3617},\n\t\t{4652640, 122.6182},\n\t\t{4653504, 122.4036},\n\t\t{4656096, 122.6116},\n\t\t{4656960, 121.5721},\n\t\t{4657824, 120.3335},\n\t\t{4658688, 119.246},\n\t\t{4659552, 118.8299},\n\t\t{4662144, 119.303},\n\t\t{4663008, 119.4339},\n\t\t{4663872, 118.7077},\n\t\t{4664736, 119.0911},\n\t\t{4665600, 118.2062},\n\t\t{4668192, 117.4203},\n\t\t{4669056, 118.3867},\n\t\t{4669920, 118.4444},\n\t\t{4670784, 118.1458},\n\t\t{4671648, 118.7348},\n\t\t{4674240, 119.412},\n\t\t{4675104, 118.9053},\n\t\t{4675968, 118.4238},\n\t\t{4676832, 118.7211},\n\t\t{4677696, 118.7107},\n\t\t{4680288, 119.9011},\n\t\t{4681152, 119.4761},\n\t\t{4682016, 118.8102},\n\t\t{4682880, 119.1079},\n\t\t{4683744, 119.2079},\n\t\t{4686336, 119.5152},\n\t\t{4687200, 119.8127},\n\t\t{4688064, 119.9105},\n\t\t{4688928, 119.874},\n\t\t{4689792, 119.5097},\n\t\t{4692384, 120.322},\n\t\t{4693248, 121.8562},\n\t\t{4694112, 124.4026},\n\t\t{4694976, 123.1316},\n\t\t{4695840, 122.9202},\n\t\t{4698432, 124.4081},\n\t\t{4699296, 124.3339},\n\t\t{4700160, 127.264},\n\t\t{4701024, 126.0731},\n\t\t{4701888, 126.0169},\n\t\t{4704480, 125.822},\n\t\t{4705344, 125.5143},\n\t\t{4706208, 124.1972},\n\t\t{4707072, 122.7957},\n\t\t{4707936, 122.6835},\n\t\t{4710528, 123.206},\n\t\t{4711392, 123.7516},\n\t\t{4712256, 125.0401},\n\t\t{4713120, 125.0136},\n\t\t{4713984, 124.909},\n\t\t{4716576, 125.4188},\n\t\t{4717440, 125.3626},\n\t\t{4718304, 125.508},\n\t\t{4719168, 125.2147},\n\t\t{4720032, 123.4369},\n\t\t{4722624, 122.7997},\n\t\t{4723488, 124.0078},\n\t\t{4724352, 124.8507},\n\t\t{4725216, 125.6024},\n\t\t{4726080, 125.7233},\n\t\t{4730400, 128.6764},\n\t\t{4731264, 128.0206},\n\t\t{4732128, 129.1819},\n\t\t{4736448, 125.9513},\n\t\t{4737312, 125.4304},\n\t\t{4738176, 126.1028},\n\t\t{4740768, 126.0146},\n\t\t{4741632, 126.3699},\n\t\t{4742496, 128.424},\n\t\t{4743360, 128.5989},\n\t\t{4744224, 126.3137},\n\t\t{4746816, 126.1298},\n\t\t{4747680, 125.5019},\n\t\t{4748544, 125.2762},\n\t\t{4749408, 124.3974},\n\t\t{4750272, 123.8134},\n\t\t{4752864, 123.9708},\n\t\t{4753728, 123.0216},\n\t\t{4754592, 123.0243},\n\t\t{4755456, 122.6242},\n\t\t{4756320, 123.8912},\n\t\t{4758912, 122.6187},\n\t\t{4759776, 122.1371},\n\t\t{4760640, 121.6152},\n\t\t{4761504, 122.12},\n\t\t{4762368, 122.3012},\n\t\t{4764960, 121.8933},\n\t\t{4765824, 121.8467},\n\t\t{4766688, 121.4696},\n\t\t{4767552, 121.2176},\n\t\t{4768416, 120.7431},\n\t\t{4771008, 121.1998},\n\t\t{4771872, 121.5134},\n\t\t{4772736, 121.0184},\n\t\t{4773600, 120.9111},\n\t\t{4774464, 120.7878},\n\t\t{4777056, 119.4185},\n\t\t{4777920, 119.0058},\n\t\t{4778784, 119.0029},\n\t\t{4779648, 119.2198},\n\t\t{4780512, 119.372},\n\t\t{4783104, 117.8456},\n\t\t{4783968, 118.921},\n\t\t{4784832, 121.1367},\n\t\t{4785696, 119.5324},\n\t\t{4786560, 120.2721},\n\t\t{4789152, 122.9212},\n\t\t{4790016, 121.7263},\n\t\t{4790880, 121.2556},\n\t\t{4791744, 120.3236},\n\t\t{4792608, 120.6374},\n\t\t{4795200, 121.0242},\n\t\t{4796064, 120.8574},\n\t\t{4796928, 121.8987},\n\t\t{4797792, 121.1486},\n\t\t{4798656, 121.564},\n\t\t{4801248, 121.2224},\n\t\t{4802112, 120.8981},\n\t\t{4802976, 121.1966},\n\t\t{4803840, 120.4989},\n\t\t{4804704, 120.4073},\n\t\t{4807296, 120.212},\n\t\t{4808160, 120.0712},\n\t\t{4809024, 119.962},\n\t\t{4809888, 120.0543},\n\t\t{4810752, 119.1544},\n\t\t{4813344, 119.8144},\n\t\t{4814208, 120.311},\n\t\t{4815072, 120.8434},\n\t\t{4820256, 121.8026},\n\t\t{4821120, 121.0294},\n\t\t{4821984, 120.269},\n\t\t{4822848, 120.4336},\n\t\t{4825440, 119.6466},\n\t\t{4826304, 119.6708},\n\t\t{4827168, 119.5582},\n\t\t{4828896, 118.8043},\n\t\t{4831488, 118.405},\n\t\t{4832352, 118.5436},\n\t\t{4833216, 118.1724},\n\t\t{4834080, 118.2242},\n\t\t{4834944, 118.4943},\n\t\t{4837536, 117.9618},\n\t\t{4839264, 117.5534},\n\t\t{4840128, 117.008},\n\t\t{4840992, 116.8998},\n\t\t{4843584, 116.6918},\n\t\t{4844448, 117.3953},\n\t\t{4845312, 117.7108},\n\t\t{4846176, 116.5803},\n\t\t{4847040, 116.724},\n\t\t{4849632, 116.6103},\n\t\t{4850496, 116.1477},\n\t\t{4851360, 115.6081},\n\t\t{4853088, 115.105},\n\t\t{4855680, 115.5614},\n\t\t{4856544, 114.195},\n\t\t{4857408, 113.2292},\n\t\t{4858272, 113.5723},\n\t\t{4859136, 113.4666},\n\t\t{4862592, 112.8278},\n\t\t{4863456, 113.2095},\n\t\t{4864320, 112.4049},\n\t\t{4865184, 112.4123},\n\t\t{4867776, 113.3578},\n\t\t{4868640, 115.0122},\n\t\t{4869504, 114.5952},\n\t\t{4870368, 114.604},\n\t\t{4871232, 117.2002},\n\t\t{4873824, 116.0283},\n\t\t{4874688, 115.0183},\n\t\t{4875552, 115.1363},\n\t\t{4876416, 114.4581},\n\t\t{4877280, 113.8043},\n\t\t{4879872, 113.1192},\n\t\t{4880736, 113.069},\n\t\t{4881600, 113.1181},\n\t\t{4882464, 113.4134},\n\t\t{4883328, 113.7954},\n\t\t{4885920, 114.5367},\n\t\t{4886784, 115.0599},\n\t\t{4887648, 114.9225},\n\t\t{4888512, 114.2711},\n\t\t{4889376, 114.0066},\n\t\t{4891968, 113.4758},\n\t\t{4892832, 114.5641},\n\t\t{4893696, 114.2303},\n\t\t{4894560, 114.501},\n\t\t{4895424, 113.1922},\n\t\t{4898016, 112.36},\n\t\t{4898880, 111.7588},\n\t\t{4899744, 112.6405},\n\t\t{4900608, 112.2974},\n\t\t{4901472, 111.7641},\n\t\t{4904064, 111.6976},\n\t\t{4904928, 111.9227},\n\t\t{4905792, 111.2047},\n\t\t{4906656, 110.6658},\n\t\t{4907520, 110.7191},\n\t\t{4910112, 111.1526},\n\t\t{4910976, 110.4218},\n\t\t{4911840, 110.9281},\n\t\t{4912704, 111.4678},\n\t\t{4913568, 113.7187},\n\t\t{4916160, 114.7718},\n\t\t{4917024, 113.1068},\n\t\t{4917888, 116.1711},\n\t\t{4918752, 116.2128},\n\t\t{4919616, 115.7093},\n\t\t{4923072, 117.575},\n\t\t{4923936, 117.603},\n\t\t{4924800, 118.9688},\n\t\t{4925664, 121.8356},\n\t\t{4928256, 121.5073},\n\t\t{4929120, 120.8047},\n\t\t{4929984, 123.3077},\n\t\t{4930848, 126.7513},\n\t\t{4931712, 126.5606},\n\t\t{4934304, 123.8451},\n\t\t{4935168, 123.4},\n\t\t{4936032, 120.2296},\n\t\t{4936896, 118.169},\n\t\t{4937760, 119.85},\n\t\t{4940352, 118.2069},\n\t\t{4941216, 118.5708},\n\t\t{4942080, 118.8583},\n\t\t{4942944, 117.6038},\n\t\t{4943808, 116.911},\n\t\t{4946400, 118.0399},\n\t\t{4947264, 119.4764},\n\t\t{4948128, 119.3108},\n\t\t{4948992, 119.2249},\n\t\t{4949856, 119.182},\n\t\t{4952448, 121.6323},\n\t\t{4953312, 121.6331},\n\t\t{4954176, 120.4348},\n\t\t{4955040, 119.462},\n\t\t{4955904, 120.2988},\n\t\t{4958496, 121.784},\n\t\t{4959360, 121.4957},\n\t\t{4960224, 119.0658},\n\t\t{4961088, 118.7165},\n\t\t{4961952, 118.0944},\n\t\t{4964544, 117.9035},\n\t\t{4965408, 117.9937},\n\t\t{4966272, 117.4557},\n\t\t{4967136, 116.9291},\n\t\t{4968000, 117.5558},\n\t\t{4970592, 117.4034},\n\t\t{4971456, 117.2752},\n\t\t{4972320, 116.928},\n\t\t{4973184, 116.3999},\n\t\t{4974048, 115.8819},\n\t\t{4976640, 115.2923},\n\t\t{4977504, 114.7119},\n\t\t{4978368, 114.6265},\n\t\t{4979232, 114.1166},\n\t\t{4980096, 114.3398},\n\t\t{4982688, 114.2737},\n\t\t{4983552, 115.6033},\n\t\t{4984416, 115.023},\n\t\t{4985280, 114.3544},\n\t\t{4986144, 114.3106},\n\t\t{4988736, 117.0243},\n\t\t{4989600, 115.4135},\n\t\t{4990464, 115.8769},\n\t\t{4991328, 116.1749},\n\t\t{4992192, 116.0612},\n\t\t{4994784, 115.917},\n\t\t{4995648, 116.1088},\n\t\t{4996512, 115.388},\n\t\t{4997376, 113.1519},\n\t\t{4998240, 113.6952},\n\t\t{5000832, 114.1135},\n\t\t{5001696, 113.6682},\n\t\t{5002560, 114.0092},\n\t\t{5003424, 117.089},\n\t\t{5004288, 117.022},\n\t\t{5006880, 117.4864},\n\t\t{5007744, 117.4104},\n\t\t{5008608, 115.9641},\n\t\t{5009472, 117.2779},\n\t\t{5010336, 118.1038},\n\t\t{5012928, 117.8733},\n\t\t{5013792, 120.0945},\n\t\t{5014656, 121.7467},\n\t\t{5015520, 122.2104},\n\t\t{5016384, 122.4064},\n\t\t{5018976, 122.0745},\n\t\t{5019840, 122.9697},\n\t\t{5020704, 122.1354},\n\t\t{5021568, 119.2659},\n\t\t{5022432, 118.6192},\n\t\t{5025024, 119.3144},\n\t\t{5025888, 119.6948},\n\t\t{5026752, 120.7124},\n\t\t{5027616, 118.7649},\n\t\t{5028480, 119.0918},\n\t\t{5031072, 119.1925},\n\t\t{5031936, 118.6671},\n\t\t{5032800, 118.6159},\n\t\t{5033664, 117.8893},\n\t\t{5034528, 119.5766},\n\t\t{5037120, 121.3286},\n\t\t{5037984, 120.3109},\n\t\t{5038848, 120.7373},\n\t\t{5039712, 121.018},\n\t\t{5040576, 121.4348},\n\t\t{5045760, 121.0152},\n\t\t{5046624, 119.9007},\n\t\t{5049216, 119.9954},\n\t\t{5051808, 121.3622},\n\t\t{5052672, 118.9995},\n\t\t{5055264, 119.713},\n\t\t{5056128, 119.8053},\n\t\t{5056992, 121.6664},\n\t\t{5057856, 121.0189},\n\t\t{5058720, 121.933},\n\t\t{5061312, 124.2274},\n\t\t{5062176, 124.6095},\n\t\t{5063040, 126.3363},\n\t\t{5063904, 126.1198},\n\t\t{5064768, 125.6062},\n\t\t{5067360, 126.3174},\n\t\t{5068224, 128.39},\n\t\t{5069088, 127.6012},\n\t\t{5069952, 127.9944},\n\t\t{5070816, 125.8651},\n\t\t{5073408, 125.9478},\n\t\t{5074272, 125.3678},\n\t\t{5075136, 125.0678},\n\t\t{5076000, 126.7234},\n\t\t{5076864, 126.1138},\n\t\t{5079456, 125.6872},\n\t\t{5080320, 126.0},\n\t\t{5081184, 126.9569},\n\t\t{5082048, 128.5455},\n\t\t{5082912, 129.1872},\n\t\t{5085504, 131.1699},\n\t\t{5086368, 131.3003},\n\t\t{5087232, 129.1076},\n\t\t{5088096, 128.8077},\n\t\t{5088960, 128.9687},\n\t\t{5091552, 128.8935},\n\t\t{5092416, 129.204},\n\t\t{5093280, 129.6093},\n\t\t{5094144, 129.9141},\n\t\t{5095008, 130.2087},\n\t\t{5097600, 129.5118},\n\t\t{5098464, 128.6169},\n\t\t{5099328, 128.5887},\n\t\t{5100192, 128.8604},\n\t\t{5101056, 129.9155},\n\t\t{5103648, 131.3773},\n\t\t{5104512, 131.0179},\n\t\t{5105376, 131.0144},\n\t\t{5106240, 132.0172},\n\t\t{5107104, 135.993},\n\t\t{5109696, 136.707},\n\t\t{5110560, 136.4637},\n\t\t{5111424, 136.6812},\n\t\t{5112288, 141.716},\n\t\t{5113152, 140.8457},\n\t\t{5115744, 152.279},\n\t\t{5116608, 157.6591},\n\t\t{5117472, 157.5528},\n\t\t{5122656, 150.2834},\n\t\t{5123520, 154.7375},\n\t\t{5124384, 151.2994},\n\t\t{5125248, 157.7845},\n\t\t{5127840, 155.5023},\n\t\t{5128704, 155.2227},\n\t\t{5129568, 151.16},\n\t\t{5130432, 150.3135},\n\t\t{5131296, 150.3984},\n\t\t{5133888, 145.9293},\n\t\t{5134752, 146.7342},\n\t\t{5135616, 145.221},\n\t\t{5136480, 146.9964},\n\t\t{5137344, 148.096},\n\t\t{5139936, 150.4997},\n\t\t{5140800, 151.2567},\n\t\t{5141664, 151.005},\n\t\t{5142528, 150.6251},\n\t\t{5143392, 153.6749},\n\t\t{5145984, 152.5092},\n\t\t{5146848, 151.1824},\n\t\t{5147712, 150.0292},\n\t\t{5149440, 147.9984},\n\t\t{5152032, 147.2289},\n\t\t{5152896, 148.3362},\n\t\t{5153760, 149.1537},\n\t\t{5155488, 149.7958},\n\t\t{5158080, 152.6918},\n\t\t{5158944, 153.9971},\n\t\t{5159808, 153.2971},\n\t\t{5160672, 153.3181},\n\t\t{5161536, 158.011},\n\t\t{5164992, 157.4689},\n\t\t{5165856, 158.7133},\n\t\t{5166720, 154.7626},\n\t\t{5167584, 147.7172},\n\t\t{5170176, 146.3585},\n\t\t{5171040, 148.6551},\n\t\t{5171904, 148.438},\n\t\t{5172768, 147.3325},\n\t\t{5173632, 145.8501},\n\t\t{5176224, 145.9253},\n\t\t{5177088, 146.1207},\n\t\t{5177952, 147.8522},\n\t\t{5178816, 148.2986},\n\t\t{5179680, 149.2329},\n\t\t{5182272, 150.5012},\n\t\t{5183136, 153.301},\n\t\t{5184000, 154.2188},\n\t\t{5184864, 153.5053},\n\t\t{5185728, 152.0602},\n\t\t{5188320, 152.4684},\n\t\t{5189184, 152.8753},\n\t\t{5190048, 155.0305},\n\t\t{5190912, 155.8811},\n\t\t{5191776, 157.1712},\n\t\t{5194368, 157.2632},\n\t\t{5196096, 159.7244},\n\t\t{5196960, 163.7717},\n\t\t{5197824, 161.1595},\n\t\t{5200416, 164.2721},\n\t\t{5201280, 168.8934},\n\t\t{5202144, 165.9207},\n\t\t{5203008, 162.35},\n\t\t{5203872, 164.5723},\n\t\t{5206464, 160.4153},\n\t\t{5207328, 160.9275},\n\t\t{5208192, 158.7194},\n\t\t{5209056, 159.2223},\n\t\t{5209920, 155.545},\n\t\t{5212512, 154.351},\n\t\t{5213376, 155.0526},\n\t\t{5214240, 152.299},\n\t\t{5215104, 151.9111},\n\t\t{5215968, 153.2111},\n\t\t{5218560, 155.3119},\n\t\t{5219424, 158.6655},\n\t\t{5220288, 158.5155},\n\t\t{5221152, 155.694},\n\t\t{5222016, 160.4258},\n\t\t{5224608, 158.8205},\n\t\t{5225472, 160.5394},\n\t\t{5226336, 160.1212},\n\t\t{5227200, 161.5202},\n\t\t{5228064, 163.6289},\n\t\t{5230656, 165.7673},\n\t\t{5231520, 161.9275},\n\t\t{5232384, 160.1269},\n\t\t{5233248, 158.9515},\n\t\t{5234112, 158.7835},\n\t\t{5237568, 157.6715},\n\t\t{5238432, 156.755},\n\t\t{5239296, 158.2687},\n\t\t{5240160, 162.0081},\n\t\t{5242752, 158.7652},\n\t\t{5243616, 158.8034},\n\t\t{5244480, 159.0102},\n\t\t{5245344, 156.7428},\n\t\t{5246208, 157.7371},\n\t\t{5248800, 157.2125},\n\t\t{5249664, 158.2334},\n\t\t{5250528, 158.6768},\n\t\t{5251392, 158.9171},\n\t\t{5252256, 157.2593},\n\t\t{5254848, 157.0668},\n\t\t{5255712, 159.1269},\n\t\t{5256576, 158.4522},\n\t\t{5257440, 158.416},\n\t\t{5258304, 158.8986},\n\t\t{5260896, 159.9148},\n\t\t{5261760, 159.18},\n\t\t{5262624, 160.3788},\n\t\t{5263488, 160.9912},\n\t\t{5264352, 164.798},\n\t\t{5266944, 162.7312},\n\t\t{5267808, 166.3355},\n\t\t{5268672, 169.1668},\n\t\t{5269536, 167.6603},\n\t\t{5270400, 168.4152},\n\t\t{5272992, 170.9641},\n\t\t{5273856, 171.5335},\n\t\t{5274720, 172.7131},\n\t\t{5275584, 177.2699},\n\t\t{5276448, 173.0016},\n\t\t{5279040, 170.3129},\n\t\t{5279904, 180.018},\n\t\t{5280768, 182.15},\n\t\t{5281632, 177.399},\n\t\t{5282496, 184.1072},\n\t\t{5285088, 187.0252},\n\t\t{5285952, 190.4998},\n\t\t{5286816, 201.241},\n\t\t{5287680, 204.6839},\n\t\t{5288544, 206.7204},\n\t\t{5291136, 207.1209},\n\t\t{5292000, 181.6678},\n\t\t{5292864, 230.0012},\n\t\t{5293728, 191.6819},\n\t\t{5294592, 199.9866},\n\t\t{5297184, 199.9911},\n\t\t{5298048, 199.6994},\n\t\t{5298912, 199.2305},\n\t\t{5299776, 200.418},\n\t\t{5300640, 201.1017},\n\t\t{5303232, 200.5673},\n\t\t{5304096, 201.267},\n\t\t{5304960, 202.3754},\n\t\t{5305824, 202.8365},\n\t\t{5306688, 205.6808},\n\t\t{5309280, 205.6906},\n\t\t{5310144, 207.3961},\n\t\t{5311008, 205.6388},\n\t\t{5311872, 205.1982},\n\t\t{5312736, 207.7121},\n\t\t{5315328, 216.0081},\n\t\t{5316192, 221.392},\n\t\t{5317056, 220.4588},\n\t\t{5317920, 222.8941},\n\t\t{5318784, 223.2843},\n\t\t{5321376, 222.6054},\n\t\t{5322240, 230.1081},\n\t\t{5323104, 230.9533},\n\t\t{5323968, 230.4237},\n\t\t{5324832, 228.7913},\n\t\t{5327424, 229.8377},\n\t\t{5328288, 233.6497},\n\t\t{5329152, 236.1288},\n\t\t{5330016, 236.5712},\n\t\t{5330880, 237.5162},\n\t\t{5333472, 237.4835},\n\t\t{5334336, 239.6188},\n\t\t{5335200, 240.6292},\n\t\t{5336064, 243.1769},\n\t\t{5336928, 243.644},\n\t\t{5339520, 250.6977},\n\t\t{5340384, 250.1019},\n\t\t{5341248, 250.0794},\n\t\t{5342112, 243.8797},\n\t\t{5342976, 214.6956},\n\t\t{5345568, 196.3379},\n\t\t{5346432, 190.7223},\n\t\t{5347296, 195.8442},\n\t\t{5348160, 199.8842},\n\t\t{5349024, 204.102},\n\t\t{5351616, 203.5171},\n\t\t{5352480, 202.9084},\n\t\t{5353344, 206.6133},\n\t\t{5354208, 207.2367},\n\t\t{5355072, 217.6413},\n\t\t{5357664, 217.5214},\n\t\t{5358528, 221.8308},\n\t\t{5363712, 227.2573},\n\t\t{5364576, 217.2919},\n\t\t{5365440, 216.2925},\n\t\t{5367168, 216.1348},\n\t},\n}\n"
  },
  {
    "path": "lib/metrics.go",
    "content": "package vegeta\n\nimport (\n\t\"strconv\"\n\t\"time\"\n\n\t\"github.com/influxdata/tdigest\"\n)\n\n// Metrics holds metrics computed out of a slice of Results which are used\n// in some of the Reporters\ntype Metrics struct {\n\t// Latencies holds computed request latency metrics.\n\tLatencies LatencyMetrics `json:\"latencies\"`\n\t// Histogram, only if requested\n\tHistogram *Histogram `json:\"buckets,omitempty\"`\n\t// BytesIn holds computed incoming byte metrics.\n\tBytesIn ByteMetrics `json:\"bytes_in\"`\n\t// BytesOut holds computed outgoing byte metrics.\n\tBytesOut ByteMetrics `json:\"bytes_out\"`\n\t// Earliest is the earliest timestamp in a Result set.\n\tEarliest time.Time `json:\"earliest\"`\n\t// Latest is the latest timestamp in a Result set.\n\tLatest time.Time `json:\"latest\"`\n\t// End is the latest timestamp in a Result set plus its latency.\n\tEnd time.Time `json:\"end\"`\n\t// Duration is the duration of the attack.\n\tDuration time.Duration `json:\"duration\"`\n\t// Wait is the extra time waiting for responses from targets.\n\tWait time.Duration `json:\"wait\"`\n\t// Requests is the total number of requests executed.\n\tRequests uint64 `json:\"requests\"`\n\t// Rate is the rate of sent requests per second.\n\tRate float64 `json:\"rate\"`\n\t// Throughput is the rate of successful requests per second.\n\tThroughput float64 `json:\"throughput\"`\n\t// Success is the percentage of non-error responses.\n\tSuccess float64 `json:\"success\"`\n\t// StatusCodes is a histogram of the responses' status codes.\n\tStatusCodes map[string]int `json:\"status_codes\"`\n\t// Errors is a set of unique errors returned by the targets during the attack.\n\tErrors []string `json:\"errors\"`\n\n\terrors  map[string]struct{}\n\tsuccess uint64\n}\n\n// Add implements the Add method of the Report interface by adding the given\n// Result to Metrics.\nfunc (m *Metrics) Add(r *Result) {\n\tm.init()\n\n\tm.Requests++\n\tm.StatusCodes[strconv.Itoa(int(r.Code))]++\n\tm.BytesOut.Total += r.BytesOut\n\tm.BytesIn.Total += r.BytesIn\n\n\tm.Latencies.Add(r.Latency)\n\n\tif m.Earliest.IsZero() || m.Earliest.After(r.Timestamp) {\n\t\tm.Earliest = r.Timestamp\n\t}\n\n\tif r.Timestamp.After(m.Latest) {\n\t\tm.Latest = r.Timestamp\n\t}\n\n\tif end := r.End(); end.After(m.End) {\n\t\tm.End = end\n\t}\n\n\tif r.Code >= 200 && r.Code < 400 {\n\t\tm.success++\n\t}\n\n\tif r.Error != \"\" {\n\t\tif _, ok := m.errors[r.Error]; !ok {\n\t\t\tm.errors[r.Error] = struct{}{}\n\t\t\tm.Errors = append(m.Errors, r.Error)\n\t\t}\n\t}\n\n\tif m.Histogram != nil {\n\t\tm.Histogram.Add(r)\n\t}\n}\n\n// Close implements the Close method of the Report interface by computing\n// derived summary metrics which don't need to be run on every Add call.\nfunc (m *Metrics) Close() {\n\tm.init()\n\n\tif m.Requests == 0 {\n\t\treturn\n\t}\n\n\tm.Rate = float64(m.Requests)\n\tm.Throughput = float64(m.success)\n\tm.Duration = m.Latest.Sub(m.Earliest)\n\tm.Wait = m.End.Sub(m.Latest)\n\tif secs := m.Duration.Seconds(); secs > 0 {\n\t\tm.Rate /= secs\n\t\t// No need to check for zero because we know m.Duration > 0\n\t\tm.Throughput /= (m.Duration + m.Wait).Seconds()\n\t}\n\n\tm.BytesIn.Mean = float64(m.BytesIn.Total) / float64(m.Requests)\n\tm.BytesOut.Mean = float64(m.BytesOut.Total) / float64(m.Requests)\n\tm.Success = float64(m.success) / float64(m.Requests)\n\tm.Latencies.Mean = time.Duration(float64(m.Latencies.Total) / float64(m.Requests))\n\tm.Latencies.P50 = m.Latencies.Quantile(0.50)\n\tm.Latencies.P90 = m.Latencies.Quantile(0.90)\n\tm.Latencies.P95 = m.Latencies.Quantile(0.95)\n\tm.Latencies.P99 = m.Latencies.Quantile(0.99)\n}\n\nfunc (m *Metrics) init() {\n\tif m.StatusCodes == nil {\n\t\tm.StatusCodes = map[string]int{}\n\t}\n\n\tif m.errors == nil {\n\t\tm.errors = map[string]struct{}{}\n\t}\n\n\tif m.Errors == nil {\n\t\tm.Errors = make([]string, 0)\n\t}\n}\n\n// LatencyMetrics holds computed request latency metrics.\ntype LatencyMetrics struct {\n\t// Total is the total latency sum of all requests in an attack.\n\tTotal time.Duration `json:\"total\"`\n\t// Mean is the mean request latency.\n\tMean time.Duration `json:\"mean\"`\n\t// P50 is the 50th percentile request latency.\n\tP50 time.Duration `json:\"50th\"`\n\t// P90 is the 90th percentile request latency.\n\tP90 time.Duration `json:\"90th\"`\n\t// P95 is the 95th percentile request latency.\n\tP95 time.Duration `json:\"95th\"`\n\t// P99 is the 99th percentile request latency.\n\tP99 time.Duration `json:\"99th\"`\n\t// Max is the maximum observed request latency.\n\tMax time.Duration `json:\"max\"`\n\t// Min is the minimum observed request latency.\n\tMin time.Duration `json:\"min\"`\n\n\testimator estimator\n}\n\n// Add adds the given latency to the latency metrics.\nfunc (l *LatencyMetrics) Add(latency time.Duration) {\n\tl.init()\n\tif l.Total += latency; latency > l.Max {\n\t\tl.Max = latency\n\t}\n\tif latency < l.Min || l.Min == 0 {\n\t\tl.Min = latency\n\t}\n\tl.estimator.Add(float64(latency))\n}\n\n// Quantile returns the nth quantile from the latency summary.\nfunc (l LatencyMetrics) Quantile(nth float64) time.Duration {\n\tl.init()\n\treturn time.Duration(l.estimator.Get(nth))\n}\n\nfunc (l *LatencyMetrics) init() {\n\tif l.estimator == nil {\n\t\t// This compression parameter value is the recommended value\n\t\t// for normal uses as per http://javadox.com/com.tdunning/t-digest/3.0/com/tdunning/math/stats/TDigest.html\n\t\tl.estimator = newTdigestEstimator(100)\n\t}\n}\n\n// ByteMetrics holds computed byte flow metrics.\ntype ByteMetrics struct {\n\t// Total is the total number of flowing bytes in an attack.\n\tTotal uint64 `json:\"total\"`\n\t// Mean is the mean number of flowing bytes per hit.\n\tMean float64 `json:\"mean\"`\n}\n\ntype estimator interface {\n\tAdd(sample float64)\n\tGet(quantile float64) float64\n}\n\ntype tdigestEstimator struct{ *tdigest.TDigest }\n\nfunc newTdigestEstimator(compression float64) *tdigestEstimator {\n\treturn &tdigestEstimator{TDigest: tdigest.NewWithCompression(compression)}\n}\n\nfunc (e *tdigestEstimator) Add(s float64) { e.TDigest.Add(s, 1) }\nfunc (e *tdigestEstimator) Get(q float64) float64 {\n\treturn e.TDigest.Quantile(q)\n}\n"
  },
  {
    "path": "lib/metrics_test.go",
    "content": "package vegeta\n\nimport (\n\t\"io\"\n\t\"math/rand\"\n\t\"reflect\"\n\t\"testing\"\n\t\"time\"\n\n\tbmizerany \"github.com/bmizerany/perks/quantile\"\n\tgk \"github.com/dgryski/go-gk\"\n\t\"github.com/google/go-cmp/cmp\"\n\t\"github.com/google/go-cmp/cmp/cmpopts\"\n\tstreadway \"github.com/streadway/quantile\"\n)\n\nfunc TestMetrics_Add(t *testing.T) {\n\tt.Parallel()\n\n\tcodes := []uint16{500, 200, 302}\n\terrors := []string{\"Internal server error\", \"\"}\n\n\tvar got Metrics\n\tfor i := 1; i <= 10000; i++ {\n\t\tgot.Add(&Result{\n\t\t\tCode:      codes[i%len(codes)],\n\t\t\tTimestamp: time.Unix(int64(i-1), 0),\n\t\t\tLatency:   time.Duration(i) * time.Microsecond,\n\t\t\tBytesIn:   1024,\n\t\t\tBytesOut:  512,\n\t\t\tError:     errors[i%len(errors)],\n\t\t})\n\t}\n\tgot.Close()\n\n\tduration := func(s string) time.Duration {\n\t\td, err := time.ParseDuration(s)\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t\treturn d\n\t}\n\n\twant := Metrics{\n\t\tLatencies: LatencyMetrics{\n\t\t\tTotal:     duration(\"50.005s\"),\n\t\t\tMean:      duration(\"5.0005ms\"),\n\t\t\tP50:       duration(\"5.0005ms\"),\n\t\t\tP90:       duration(\"9.0005ms\"),\n\t\t\tP95:       duration(\"9.5005ms\"),\n\t\t\tP99:       duration(\"9.9005ms\"),\n\t\t\tMax:       duration(\"10ms\"),\n\t\t\tMin:       duration(\"1us\"),\n\t\t\testimator: got.Latencies.estimator,\n\t\t},\n\t\tBytesIn:     ByteMetrics{Total: 10240000, Mean: 1024},\n\t\tBytesOut:    ByteMetrics{Total: 5120000, Mean: 512},\n\t\tEarliest:    time.Unix(0, 0),\n\t\tLatest:      time.Unix(9999, 0),\n\t\tEnd:         time.Unix(9999, 0).Add(10000 * time.Microsecond),\n\t\tDuration:    duration(\"2h46m39s\"),\n\t\tWait:        duration(\"10ms\"),\n\t\tRequests:    10000,\n\t\tRate:        1.000100010001,\n\t\tThroughput:  0.6667660098349737,\n\t\tSuccess:     0.6667,\n\t\tStatusCodes: map[string]int{\"500\": 3333, \"200\": 3334, \"302\": 3333},\n\t\tErrors:      []string{\"Internal server error\"},\n\n\t\terrors:  got.errors,\n\t\tsuccess: got.success,\n\t}\n\n\topts := []cmp.Option{\n\t\tcmpopts.IgnoreUnexported(\n\t\t\tMetrics{},\n\t\t\tLatencyMetrics{},\n\t\t\tByteMetrics{},\n\t\t),\n\t\tequateApproxDuration(time.Nanosecond),\n\t}\n\n\tif diff := cmp.Diff(got, want, opts...); diff != \"\" {\n\t\tt.Errorf(\"mismatch: %s\", diff)\n\t}\n}\n\nfunc equateApproxDuration(margin time.Duration) cmp.Option {\n\tif margin < 0 {\n\t\tpanic(\"margin must be a non-negative number\")\n\t}\n\ta := durationApproximator{margin}\n\treturn cmp.FilterValues(areNonZeroDurations, cmp.Comparer(a.compare))\n}\n\nfunc areNonZeroDurations(x, y time.Duration) bool {\n\treturn x != 0 && y != 0\n}\n\ntype durationApproximator struct {\n\tmargin time.Duration\n}\n\nfunc (a durationApproximator) compare(x, y time.Duration) bool {\n\t// Avoid subtracting times to avoid overflow when the\n\t// difference is larger than the largest representable duration.\n\tif x > y {\n\t\t// Ensure x is always before y\n\t\tx, y = y, x\n\t}\n\t// We're within the margin if x+margin >= y.\n\treturn (x + a.margin) >= y\n}\n\n// https://github.com/tsenart/vegeta/issues/208\nfunc TestMetrics_NoInfiniteRate(t *testing.T) {\n\tt.Parallel()\n\n\tm := Metrics{Requests: 1, Duration: time.Microsecond}\n\tm.Close()\n\n\tif got, want := m.Rate, 1.0; got != want {\n\t\tt.Errorf(\"got rate %f, want %f\", got, want)\n\t}\n}\n\n// https://github.com/tsenart/vegeta/pull/277\nfunc TestMetrics_NonNilErrorsOnClose(t *testing.T) {\n\tt.Parallel()\n\n\tm := Metrics{Errors: nil}\n\tm.Close()\n\n\tgot, want := m.Errors, []string{}\n\n\tif !reflect.DeepEqual(got, want) {\n\t\tt.Errorf(\"\\ngot:  %+v\\nwant: %+v\", got, want)\n\t}\n}\n\n// https://github.com/tsenart/vegeta/issues/461\nfunc TestMetrics_EmptyMetricsCanBeReported(t *testing.T) {\n\tt.Parallel()\n\n\tvar m Metrics\n\tm.Close()\n\n\treporter := NewJSONReporter(&m)\n\tif err := reporter(io.Discard); err != nil {\n\t\tt.Error(err)\n\t}\n}\nfunc BenchmarkMetrics(b *testing.B) {\n\tb.StopTimer()\n\tb.ResetTimer()\n\n\trng := rand.New(rand.NewSource(time.Now().UnixNano())) // #skipcq: GSC-G404\n\n\tlatencies := make([]time.Duration, 1000000)\n\tfor i := range latencies {\n\t\tlatencies[i] = time.Duration(1e6 + rng.Int63n(1e10-1e6)) // 1ms to 10s\n\t}\n\n\tfor _, tc := range []struct {\n\t\tname string\n\t\testimator\n\t}{\n\t\t{\"streadway/quantile\", streadway.New(\n\t\t\tstreadway.Known(0.50, 0.01),\n\t\t\tstreadway.Known(0.90, 0.005),\n\t\t\tstreadway.Known(0.95, 0.001),\n\t\t\tstreadway.Known(0.99, 0.0005),\n\t\t)},\n\t\t{\"bmizerany/perks/quantile\", newBmizeranyEstimator(\n\t\t\t0.50,\n\t\t\t0.90,\n\t\t\t0.95,\n\t\t\t0.99,\n\t\t)},\n\t\t{\"dgrisky/go-gk\", newDgriskyEstimator(0.5)},\n\t\t{\"influxdata/tdigest\", newTdigestEstimator(100)},\n\t} {\n\t\tm := Metrics{Latencies: LatencyMetrics{estimator: tc.estimator}}\n\t\tb.Run(\"Add/\"+tc.name, func(b *testing.B) {\n\t\t\tfor i := 0; i <= b.N; i++ {\n\t\t\t\tm.Add(&Result{\n\t\t\t\t\tCode:      200,\n\t\t\t\t\tTimestamp: time.Unix(int64(i), 0),\n\t\t\t\t\tLatency:   latencies[i%len(latencies)],\n\t\t\t\t\tBytesIn:   1024,\n\t\t\t\t\tBytesOut:  512,\n\t\t\t\t})\n\t\t\t}\n\n\t\t})\n\n\t\tb.Run(\"Close/\"+tc.name, func(b *testing.B) {\n\t\t\tfor i := 0; i < b.N; i++ {\n\t\t\t\tm.Close()\n\t\t\t}\n\t\t})\n\t}\n\n}\n\ntype bmizeranyEstimator struct {\n\t*bmizerany.Stream\n}\n\nfunc newBmizeranyEstimator(qs ...float64) *bmizeranyEstimator {\n\treturn &bmizeranyEstimator{Stream: bmizerany.NewTargeted(qs...)}\n}\n\nfunc (e *bmizeranyEstimator) Add(s float64) { e.Insert(s) }\nfunc (e *bmizeranyEstimator) Get(q float64) float64 {\n\treturn e.Query(q)\n}\n\ntype dgryskiEstimator struct {\n\t*gk.Stream\n}\n\nfunc newDgriskyEstimator(epsilon float64) *dgryskiEstimator {\n\treturn &dgryskiEstimator{Stream: gk.New(epsilon)}\n}\n\nfunc (e *dgryskiEstimator) Add(s float64) { e.Insert(s) }\nfunc (e *dgryskiEstimator) Get(q float64) float64 {\n\treturn e.Query(q)\n}\n"
  },
  {
    "path": "lib/pacer.go",
    "content": "package vegeta\n\nimport (\n\t\"fmt\"\n\t\"math\"\n\t\"time\"\n)\n\n// A Pacer defines the rate of hits during an Attack.\ntype Pacer interface {\n\t// Pace returns the duration an Attacker should wait until\n\t// hitting the next Target, given an already elapsed duration and\n\t// completed hits. If the second return value is true, an attacker\n\t// should stop sending hits.\n\tPace(elapsed time.Duration, hits uint64) (wait time.Duration, stop bool)\n\n\t// Rate returns a Pacer's instantaneous hit rate (per seconds)\n\t// at the given elapsed duration of an attack.\n\tRate(elapsed time.Duration) float64\n}\n\n// A PacerFunc is a function adapter type that implements\n// the Pacer interface.\ntype PacerFunc func(time.Duration, uint64) (time.Duration, bool)\n\n// Pace implements the Pacer interface.\nfunc (pf PacerFunc) Pace(elapsed time.Duration, hits uint64) (time.Duration, bool) {\n\treturn pf(elapsed, hits)\n}\n\n// A ConstantPacer defines a constant rate of hits for the target.\ntype ConstantPacer struct {\n\tFreq int           // Frequency (number of occurrences) per ...\n\tPer  time.Duration // Time unit, usually 1s\n}\n\n// Rate is a type alias for ConstantPacer for backwards-compatibility.\ntype Rate = ConstantPacer\n\n// ConstantPacer satisfies the Pacer interface.\nvar _ Pacer = ConstantPacer{}\n\n// String returns a pretty-printed description of the ConstantPacer's behaviour:\n//\n//\tConstantPacer{Freq: 1, Per: time.Second} => Constant{1 hits/1s}\nfunc (cp ConstantPacer) String() string {\n\treturn fmt.Sprintf(\"Constant{%d hits/%s}\", cp.Freq, cp.Per)\n}\n\n// Pace determines the length of time to sleep until the next hit is sent.\nfunc (cp ConstantPacer) Pace(elapsed time.Duration, hits uint64) (time.Duration, bool) {\n\tswitch {\n\tcase cp.Per == 0 || cp.Freq == 0:\n\t\treturn 0, false // Zero value = infinite rate\n\tcase cp.Per < 0 || cp.Freq < 0:\n\t\treturn 0, true\n\t}\n\n\texpectedHits := uint64(cp.Freq) * uint64(elapsed/cp.Per)\n\tif hits < expectedHits {\n\t\t// Running behind, send next hit immediately.\n\t\treturn 0, false\n\t}\n\tinterval := uint64(cp.Per.Nanoseconds() / int64(cp.Freq))\n\tif math.MaxInt64/interval < hits {\n\t\t// We would overflow delta if we continued, so stop the attack.\n\t\treturn 0, true\n\t}\n\tdelta := time.Duration((hits + 1) * interval)\n\t// Zero or negative durations cause time.Sleep to return immediately.\n\treturn delta - elapsed, false\n}\n\n// Rate returns a ConstantPacer's instantaneous hit rate (i.e. requests per second)\n// at the given elapsed duration of an attack. Since it's constant, the return\n// value is independent of the given elapsed duration.\nfunc (cp ConstantPacer) Rate(elapsed time.Duration) float64 {\n\treturn cp.hitsPerNs() * 1e9\n}\n\n// hitsPerNs returns the attack rate this ConstantPacer represents, in\n// fractional hits per nanosecond.\nfunc (cp ConstantPacer) hitsPerNs() float64 {\n\treturn float64(cp.Freq) / float64(cp.Per)\n}\n\nconst (\n\t// MeanUp is a SinePacer Offset that causes the attack to start\n\t// at the Mean attack rate and increase towards the peak.\n\tMeanUp float64 = 0\n\t// Peak is a SinePacer Offset that causes the attack to start\n\t// at the peak (maximum) attack rate and decrease towards the Mean.\n\tPeak = math.Pi / 2\n\t// MeanDown is a SinePacer Offset that causes the attack to start\n\t// at the Mean attack rate and decrease towards the trough.\n\tMeanDown = math.Pi\n\t// Trough is a SinePacer Offset that causes the attack to start\n\t// at the trough (minimum) attack rate and increase towards the Mean.\n\tTrough = 3 * math.Pi / 2\n)\n\n// SinePacer is a Pacer that describes attack request rates with the equation:\n//\n//\tR = MA sin(O+(2𝛑/P)t)\n//\n// Where:\n//\n//\tR = Instantaneous attack rate at elapsed time t, hits per nanosecond\n//\tM = Mean attack rate over period P, sp.Mean, hits per nanosecond\n//\tA = Amplitude of sine wave, sp.Amp, hits per nanosecond\n//\tO = Offset of sine wave, sp.StartAt, radians\n//\tP = Period of sine wave, sp.Period, nanoseconds\n//\tt = Elapsed time since attack start, nanoseconds\n//\n// Many thanks to http://ascii.co.uk/art/sine and \"sps\" for the ascii here :-)\n//\n//\tMean -|         ,-'''-.\n//\t+Amp  |      ,-'   |   `-.\n//\t      |    ,'      |      `.       O=𝛑\n//\t      |  ,'      O=𝛑/2      `.     MeanDown\n//\t      | /        Peak         \\   /\n//\t      |/                       \\ /\n//\tMean -+-------------------------\\--------------------------> t\n//\t      |\\                         \\                       /\n//\t      | \\                         \\       O=3𝛑/2        /\n//\t      |  O=0                       `.     Trough      ,'\n//\t      |  MeanUp                      `.      |      ,'\n//\tMean  |                                `-.   |   ,-'\n//\t-Amp -|                                   `-,,,-'\n//\t      |<-------------------- Period --------------------->|\n//\n// This equation is integrated with respect to time to derive the expected\n// number of hits served at time t after the attack began:\n//\n//\tH = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O)\n//\n// Where:\n//\n//\tH = Total number of hits triggered during t\ntype SinePacer struct {\n\t// The period of the sine wave, e.g. 20*time.Minute\n\t// MUST BE > 0\n\tPeriod time.Duration\n\t// The mid-point of the sine wave in freq-per-Duration,\n\t// MUST BE > 0\n\tMean Rate\n\t// The amplitude of the sine wave in freq-per-Duration,\n\t// MUST NOT BE EQUAL TO OR LARGER THAN MEAN\n\tAmp Rate\n\t// The offset, in radians, for the sine wave at t=0.\n\tStartAt float64\n}\n\n// SinePacer satisfies the Pacer interface.\nvar _ Pacer = SinePacer{}\n\n// String returns a pretty-printed description of the SinePacer's behaviour:\n//\n//\tSinePacer{\n//\t    Period:  time.Hour,\n//\t    Mean:    Rate{100, time.Second},\n//\t    Amp:     Rate{50, time.Second},\n//\t    StartAt: MeanDown,\n//\t} =>\n//\tSine{Constant{100 hits/1s} ± Constant{50 hits/1s} / 1h, offset 1𝛑}\nfunc (sp SinePacer) String() string {\n\treturn fmt.Sprintf(\"Sine{%s ± %s / %s, offset %g𝛑}\", sp.Mean, sp.Amp, sp.Period, sp.StartAt/math.Pi)\n}\n\n// invalid tests the constraints documented in the SinePacer struct definition.\nfunc (sp SinePacer) invalid() bool {\n\treturn sp.Period <= 0 || sp.Mean.hitsPerNs() <= 0 || sp.Amp.hitsPerNs() >= sp.Mean.hitsPerNs()\n}\n\n// Pace determines the length of time to sleep until the next hit is sent.\nfunc (sp SinePacer) Pace(elapsedTime time.Duration, elapsedHits uint64) (time.Duration, bool) {\n\tif sp.invalid() {\n\t\t// If the SinePacer configuration is invalid, stop the attack.\n\t\treturn 0, true\n\t}\n\texpectedHits := sp.hits(elapsedTime)\n\tif elapsedHits < uint64(expectedHits) {\n\t\t// Running behind, send next hit immediately.\n\t\treturn 0, false\n\t}\n\t// Re-arranging our hits equation to provide a duration given the number of\n\t// requests sent is non-trivial, so we must solve for the duration numerically.\n\t// math.Round() added here because we have to coerce to int64 nanoseconds\n\t// at some point and it corrects a bunch of off-by-one problems.\n\tnsPerHit := math.Round(1 / sp.hitsPerNs(elapsedTime))\n\thitsToWait := float64(elapsedHits+1) - expectedHits\n\tnextHitIn := time.Duration(nsPerHit * hitsToWait)\n\n\t// If we can't converge to an error of <1e-3 within 5 iterations, bail.\n\t// This rarely even loops for any large Period if hitsToWait is small.\n\tfor i := 0; i < 5; i++ {\n\t\thitsAtGuess := sp.hits(elapsedTime + nextHitIn)\n\t\terr := float64(elapsedHits+1) - hitsAtGuess\n\t\tif math.Abs(err) < 1e-3 {\n\t\t\treturn nextHitIn, false\n\t\t}\n\t\tnextHitIn = time.Duration(float64(nextHitIn) / (hitsAtGuess - float64(elapsedHits)))\n\t}\n\treturn nextHitIn, false\n}\n\n// Rate returns a SinePacer's instantaneous hit rate (i.e. requests per second)\n// at the given elapsed duration of an attack.\nfunc (sp SinePacer) Rate(elapsed time.Duration) float64 {\n\treturn sp.hitsPerNs(elapsed) * 1e9\n}\n\n// ampHits returns AP/2𝛑, which is the number of hits added or subtracted\n// from the Mean due to the Amplitude over a quarter of the Period,\n// i.e. from 0 → 𝛑/2 radians\nfunc (sp SinePacer) ampHits() float64 {\n\treturn (sp.Amp.hitsPerNs() * float64(sp.Period)) / (2 * math.Pi)\n}\n\n// radians converts the elapsed attack time to a radian value.\n// The elapsed time t is divided by the wave period, multiplied by 2𝛑 to\n// convert to radians, and offset by StartAt radians.\nfunc (sp SinePacer) radians(t time.Duration) float64 {\n\treturn sp.StartAt + float64(t)*2*math.Pi/float64(sp.Period)\n}\n\n// hitsPerNs calculates the instantaneous rate of attack at\n// t nanoseconds after the attack began.\n//\n//\tR = MA sin(O+(2𝛑/P)t)\nfunc (sp SinePacer) hitsPerNs(t time.Duration) float64 {\n\treturn sp.Mean.hitsPerNs() + sp.Amp.hitsPerNs()*math.Sin(sp.radians(t))\n}\n\n// hits returns the number of hits that have been sent during an attack\n// lasting t nanoseconds. It returns a float so we can tell exactly how\n// much we've missed our target by when solving numerically in Pace.\n//\n//\tH = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O)\n//\n// This re-arranges to:\n//\n//\tH = Mt + (AP/2𝛑)(cos(O) - cos(O+(2𝛑/P)t))\nfunc (sp SinePacer) hits(t time.Duration) float64 {\n\tif t <= 0 || sp.invalid() {\n\t\treturn 0\n\t}\n\treturn sp.Mean.hitsPerNs()*float64(t) + sp.ampHits()*(math.Cos(sp.StartAt)-math.Cos(sp.radians(t)))\n}\n\n// LinearPacer paces an attack by starting at a given request rate\n// and increasing linearly with the given slope.\ntype LinearPacer struct {\n\tStartAt Rate\n\tSlope   float64\n}\n\n// Pace determines the length of time to sleep until the next hit is sent.\nfunc (p LinearPacer) Pace(elapsed time.Duration, hits uint64) (time.Duration, bool) {\n\tswitch {\n\tcase p.StartAt.Per == 0 || p.StartAt.Freq == 0:\n\t\treturn 0, false // Zero value = infinite rate\n\tcase p.StartAt.Per < 0 || p.StartAt.Freq < 0:\n\t\treturn 0, true\n\t}\n\n\texpectedHits := p.hits(elapsed)\n\tif hits == 0 || hits < uint64(expectedHits) {\n\t\t// Running behind, send next hit immediately.\n\t\treturn 0, false\n\t}\n\n\trate := p.Rate(elapsed)\n\tinterval := math.Round(1e9 / rate)\n\n\tif n := uint64(interval); n != 0 && math.MaxInt64/n < hits {\n\t\t// We would overflow wait if we continued, so stop the attack.\n\t\treturn 0, true\n\t}\n\n\tdelta := float64(hits+1) - expectedHits\n\twait := time.Duration(interval * delta)\n\n\treturn wait, false\n}\n\n// Rate returns a LinearPacer's instantaneous hit rate (i.e. requests per second)\n// at the given elapsed duration of an attack.\nfunc (p LinearPacer) Rate(elapsed time.Duration) float64 {\n\ta := p.Slope\n\tx := elapsed.Seconds()\n\tb := p.StartAt.hitsPerNs() * 1e9\n\treturn a*x + b\n}\n\n// hits returns the number of hits that have been sent during an attack\n// lasting t nanoseconds. It returns a float so we can tell exactly how\n// much we've missed our target by when solving numerically in Pace.\nfunc (p LinearPacer) hits(t time.Duration) float64 {\n\tif t < 0 {\n\t\treturn 0\n\t}\n\n\ta := p.Slope\n\tb := p.StartAt.hitsPerNs() * 1e9\n\tx := t.Seconds()\n\n\treturn (a*math.Pow(x, 2))/2 + b*x\n}\n"
  },
  {
    "path": "lib/pacer_test.go",
    "content": "package vegeta\n\nimport (\n\t\"math\"\n\t\"strconv\"\n\t\"testing\"\n\t\"testing/quick\"\n\t\"time\"\n)\n\nfunc TestConstantPacer(t *testing.T) {\n\tt.Parallel()\n\n\tfor ti, tt := range []struct {\n\t\tfreq    int\n\t\tper     time.Duration\n\t\telapsed time.Duration\n\t\thits    uint64\n\t\twait    time.Duration\n\t\tstop    bool\n\t}{\n\t\t// :-( HAPPY PATH TESTS :-)\n\t\t// 1 hit/sec, 0 hits sent, 1s elapsed => 0s until next hit\n\t\t// (time.Sleep will return immediately in this case)\n\t\t{1, time.Second, time.Second, 0, 0, false},\n\t\t// 1 hit/sec, 0 hits sent, 2s elapsed => 0s (-1s) until next hit\n\t\t// (time.Sleep will return immediately in this case)\n\t\t{1, time.Second, 2 * time.Second, 0, 0, false},\n\t\t// 1 hit/sec, 1 hit sent, 1s elapsed => 1s until next hit\n\t\t{1, time.Second, time.Second, 1, time.Second, false},\n\t\t// 1 hit/sec, 2 hits sent, 1s elapsed => 2s until next hit\n\t\t{1, time.Second, time.Second, 2, 2 * time.Second, false},\n\t\t// 1 hit/sec, 10 hits sent, 1s elapsed => 10s until next hit\n\t\t{1, time.Second, time.Second, 10, 10 * time.Second, false},\n\t\t// 1 hit/sec, 10 hits sent, 11s elapsed => 0s until next hit\n\t\t{1, time.Second, 11 * time.Second, 10, 0, false},\n\t\t// 2 hit/sec, 9 hits sent, 4.9s elapsed => 100ms until next hit\n\t\t{2, time.Second, (49 * time.Second) / 10, 9, 100 * time.Millisecond, false},\n\n\t\t// :-( SAD PATH TESTS :-(\n\t\t// Zero frequency.\n\t\t{0, time.Second, time.Second, 0, 0, false},\n\t\t// Zero per.\n\t\t{1, 0, time.Second, 0, 0, false},\n\t\t// Zero frequency + per.\n\t\t{0, 0, time.Second, 0, 0, false},\n\t\t// Negative frequency.\n\t\t{-1, time.Second, time.Second, 0, 0, true},\n\t\t// Negative per.\n\t\t{1, -time.Second, time.Second, 0, 0, true},\n\t\t// Negative frequency + per.\n\t\t{-1, -time.Second, time.Second, 0, 0, true},\n\t\t// Large per, overflow int64.\n\t\t{1, time.Duration(math.MaxInt64) / 10, time.Duration(math.MaxInt64), 11, 0, true},\n\t\t// Large hits, overflow int64.\n\t\t{1, time.Hour, time.Duration(math.MaxInt64), 2562048, 0, true},\n\t} {\n\t\tcp := &ConstantPacer{Freq: tt.freq, Per: tt.per}\n\n\t\twait, stop := cp.Pace(tt.elapsed, tt.hits)\n\t\tif wait != tt.wait || stop != tt.stop {\n\t\t\tt.Errorf(\"%d: %+v.Pace(%s, %d) = (%s, %t); want (%s, %t)\",\n\t\t\t\tti, cp, tt.elapsed, tt.hits, wait, stop, tt.wait, tt.stop)\n\t\t}\n\t}\n}\n\nfunc TestConstantPacer_Rate(t *testing.T) {\n\tt.Parallel()\n\n\tfor _, tc := range []struct {\n\t\tfreq int\n\t\tper  time.Duration\n\t\trate float64\n\t}{{\n\t\tfreq: 60,\n\t\tper:  time.Minute,\n\t\trate: 1.0,\n\t}, {\n\t\tfreq: 120,\n\t\tper:  time.Minute,\n\t\trate: 2.0,\n\t}, {\n\t\tfreq: 30,\n\t\tper:  time.Minute,\n\t\trate: 0.5,\n\t}, {\n\t\tfreq: 500,\n\t\tper:  time.Second,\n\t\trate: 500.0,\n\t},\n\t} {\n\t\tcp := ConstantPacer{Freq: tc.freq, Per: tc.per}\n\t\tif have, want := cp.Rate(0), tc.rate; !floatEqual(have, want) {\n\t\t\tt.Errorf(\"%s.Rate(_): have %f, want %f\", cp, have, want)\n\t\t}\n\t}\n}\n\n// Stolen from https://github.com/google/go-cmp/cmp/cmpopts/equate.go\n// to avoid an unwieldy dependency. Both fraction and margin set at 1e-6.\nfunc floatEqual(x, y float64) bool {\n\trelMarg := 1e-6 * math.Min(math.Abs(x), math.Abs(y))\n\treturn math.Abs(x-y) <= math.Max(1e-6, relMarg)\n}\n\n// A similar function to the above because SinePacer.Pace has discrete\n// inputs and outputs but uses floats internally, and sometimes the\n// floating point imprecision leaks out :-(\nfunc durationEqual(x, y time.Duration) bool {\n\tdiff := x - y\n\tif diff < 0 {\n\t\tdiff = -diff\n\t}\n\treturn diff <= time.Microsecond\n}\n\nvar quarterPeriods = map[string]float64{\n\t\"MeanUp\":   MeanUp,\n\t\"Peak\":     Peak,\n\t\"MeanDown\": MeanDown,\n\t\"Trough\":   Trough,\n}\n\n// qpahm == Quarter Period Amp-Hit Multiplier\n// These are multipliers that help us integrate our rate equation\n// in steps of 𝛑/2 without needing to resort to trig functions.\n// This relies on integral in each quarter period being:\n//\n//\t(Mean * Period) / 4 ± (Amp * Period) / 2𝛑\n//\n// Put another way, the two shaded areas in the graph below contain\n// an equal number of hits -- (Amp * Period) / 2𝛑, or ampHits().\n//\n//\tMean -|         ,-'''-.\n//\t+Amp  |      ,-'xxx|   `-.\n//\t      |    ,'xxxxxx|      `.\n//\t      |  ,'xxxxxxxx|        `.\n//\t      | /xxxxxxxxxx|          \\\n//\t      |/xxxxxxxxxxx|           \\\n//\tMean -+-------------------------\\--------------------------> t\n//\t      |                          \\           |xxxxxxxxxxx/\n//\t      |                           \\          |xxxxxxxxxx/\n//\t      |                            `.        |xxxxxxxx,'\n//\t      |                              `.      |xxxxxx,'\n//\tMean  |                                `-.   |xxx,-'\n//\t-Amp -|                                   `-,,,-'\n//\n// The four multipliers are how many multiples of ampHits() away from\n// Mean*t the integral is after 1, 2, 3 and 4 quarter-periods respectively.\nvar qpahm = map[float64][]float64{\n\tMeanUp:   {1, 2, 1, 0},\n\tPeak:     {1, 0, -1, 0},\n\tMeanDown: {-1, -2, -1, 0},\n\tTrough:   {-1, 0, 1, 0},\n}\n\n// Helper struct type to make creating SinePacers easier\ntype sineTest struct {\n\tperiod int // Period, in seconds\n\tmean   int // Mean request rate, in hits/sec\n\tamp    int // Amplitude, in hits/sec\n}\n\nfunc (st sineTest) Pacer(startAt float64) SinePacer {\n\treturn SinePacer{\n\t\tPeriod:  time.Duration(st.period) * time.Second,\n\t\tMean:    Rate{st.mean, time.Second},\n\t\tAmp:     Rate{st.amp, time.Second},\n\t\tStartAt: startAt,\n\t}\n}\n\n// See comment for qpahm above for why this is useful.\nfunc (st sineTest) ampHits() float64 {\n\treturn float64(st.amp) * float64(st.period) / (2 * math.Pi)\n}\n\nfunc TestSinePacerHits(t *testing.T) {\n\ttests := []sineTest{\n\t\t// {period in secs, mean hits/sec, amp hits/sec}\n\t\t{20 * 60, 100, 90},\n\t\t{60, 1000, 10},\n\t\t{1, 10, 7},\n\t\t{1, 1, 0},\n\t\t{1e6, 10, 7},\n\t\t{60, 1000, 999},\n\t}\n\n\tfor ti, tt := range tests {\n\t\tfor name, startAt := range quarterPeriods {\n\t\t\tsp := tt.Pacer(startAt)\n\t\t\t// See comment for qpahm (quarter-period ampHits multiplier) above.\n\t\t\tfor i, mult := range qpahm[startAt] {\n\t\t\t\tperiods := i + 1\n\t\t\t\twant := float64(tt.mean*periods*tt.period)/4 + tt.ampHits()*mult\n\t\t\t\tif got := sp.hits(time.Duration(periods) * sp.Period / 4); !floatEqual(got, want) {\n\t\t\t\t\tt.Errorf(\"%d(%s): %+v.hits(%d/4 period) = %g, want %g\",\n\t\t\t\t\t\tti, name, sp, i+1, got, want)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// TestSinePacerInvalid takes care of most of the sad path.\n\tsp := sineTest{1, 1, 0}.Pacer(0)\n\tif got := sp.hits(-1); got != 0 {\n\t\tt.Errorf(\"%d: %+v.hits(-1) = %g, want 0\", len(tests), sp, got)\n\t}\n}\n\nfunc TestSinePacerInvalid(t *testing.T) {\n\ttests := []sineTest{\n\t\t// {period in secs, mean hits/sec, amp hits/sec}\n\t\t{0, 100, 90},   // Zero period\n\t\t{60, 0, 90},    // Zero mean\n\t\t{60, 100, 110}, // Amp > mean\n\t\t{-10, 100, 90}, // Negative period\n\t\t{60, -10, 90},  // Negative mean\n\t}\n\n\tfor ti, tt := range tests {\n\t\tsp := tt.Pacer(0)\n\t\tif got := sp.hits(sp.Period); got != 0 {\n\t\t\tt.Errorf(\"%d: %+v.hits(%s) = %g, want 0\",\n\t\t\t\tti, sp, sp.Period, got)\n\t\t}\n\t}\n}\n\n// This function tests SinePacer behaviour when the Amplitude is zero,\n// which is ... much more predictable than otherwise.\nfunc TestSinePacerPace_Flat(t *testing.T) {\n\tst := sineTest{1, 1, 0}\n\ttests := []struct {\n\t\tet   time.Duration\n\t\tc    uint64\n\t\twait time.Duration\n\t\tstop bool\n\t}{\n\t\t{0, 0, time.Second, false},\n\t\t{0, 1, 2 * time.Second, false},\n\t\t{time.Second / 100, 0, 99 * time.Second / 100, false},\n\t\t{time.Second / 2, 0, time.Second / 2, false},\n\t\t{64 * time.Second / 100, 0, 36 * time.Second / 100, false},\n\t\t{99 * time.Second / 100, 0, time.Second / 100, false},\n\t\t{time.Second, 1, time.Second, false},\n\t\t{time.Second, 0, 0, false},\n\t}\n\n\tfor i, test := range tests {\n\t\tfor name, sa := range quarterPeriods {\n\t\t\tp := st.Pacer(sa)\n\t\t\twait, stop := p.Pace(test.et, test.c)\n\t\t\tif !durationEqual(wait, test.wait) || stop != test.stop {\n\t\t\t\tt.Errorf(\"%d(%s): wait(%v) = (%v, %v), want (%v, %v)\",\n\t\t\t\t\ti, name, test.et, wait, stop, test.wait, test.stop)\n\t\t\t}\n\t\t}\n\t}\n}\nfunc TestSincePacer_Rate(t *testing.T) {\n\tt.Parallel()\n\n\tsp := SinePacer{\n\t\tPeriod: time.Minute,\n\t\tMean:   Rate{Freq: 10, Per: time.Second},\n\t\tAmp:    Rate{Freq: 100, Per: time.Second},\n\t}\n\n\tfor _, tc := range []struct {\n\t\telapsed time.Duration\n\t\trate    float64\n\t}{{\n\t\telapsed: 0,\n\t\trate:    10.0,\n\t}, {\n\t\telapsed: time.Minute,\n\t\trate:    10.0,\n\t}, {\n\t\telapsed: time.Minute / 4,\n\t\trate:    110.0,\n\t},\n\t} {\n\t\tif have, want := sp.Rate(tc.elapsed), tc.rate; !floatEqual(have, want) {\n\t\t\tt.Errorf(\"%s.Rate(%s): have %f, want %f\", sp, tc.elapsed, have, want)\n\t\t}\n\t}\n}\n\nfunc TestLinearPacer(t *testing.T) {\n\tt.Parallel()\n\n\tfor ti, tt := range []struct {\n\t\tfreq    int\n\t\tper     time.Duration\n\t\tslope   float64\n\t\telapsed time.Duration\n\t\thits    uint64\n\t\twait    time.Duration\n\t\tstop    bool\n\t}{\n\t\t// :-( HAPPY PATH TESTS WITH slope=0 :-)\n\t\t// 1 hit/sec, 0 hits sent, 1s elapsed => 0s until next hit\n\t\t// (time.Sleep will return immediately in this case)\n\t\t{1, time.Second, 0, time.Second, 0, 0, false},\n\t\t// 1 hit/sec, 0 hits sent, 2s elapsed => 0s (-1s) until next hit\n\t\t// (time.Sleep will return immediately in this case)\n\t\t{1, time.Second, 0, 2 * time.Second, 0, 0, false},\n\t\t// 1 hit/sec, 1 hit sent, 1s elapsed => 1s until next hit\n\t\t{1, time.Second, 0, time.Second, 1, time.Second, false},\n\t\t// 1 hit/sec, 2 hits sent, 1s elapsed => 2s until next hit\n\t\t{1, time.Second, 0, time.Second, 2, 2 * time.Second, false},\n\t\t// 1 hit/sec, 10 hits sent, 1s elapsed => 10s until next hit\n\t\t{1, time.Second, 0, time.Second, 10, 10 * time.Second, false},\n\t\t// 1 hit/sec, 10 hits sent, 11s elapsed => 0s until next hit\n\t\t{1, time.Second, 0, 11 * time.Second, 10, 0, false},\n\t\t// 2 hit/sec, 9 hits sent, 4.9s elapsed => 100ms until next hit\n\t\t{2, time.Second, 0, (49 * time.Second) / 10, 9, 100 * time.Millisecond, false},\n\n\t\t// :-( HAPPY PATH TESTS WITH slope > 0 :-)\n\t\t{1, time.Second, 1, 0, 0, 0, false},\n\t\t{1, time.Second, 1, time.Second, 0, 0, false}, // Running behind, no wait\n\t\t{1, time.Second, 1, 1 * time.Second, 1, 250 * time.Millisecond, false},\n\t\t{1, time.Second, 1, 2 * time.Second, 3, 0, false},\n\t\t{1, time.Second, 1, 3 * time.Second, 6, 0, false},\n\t\t{1, time.Second, 1, 4 * time.Second, 11, 0, false},\n\t\t{1, time.Second, 1, 5 * time.Second, 16, 0, false},\n\t\t{1, time.Second, 1, 6 * time.Second, 23, 0, false},\n\n\t\t// :-( SAD PATH TESTS :-(\n\t\t// Zero frequency.\n\t\t{0, time.Second, 0, time.Second, 0, 0, false},\n\t\t// Zero per.\n\t\t{1, 0, 0, time.Second, 0, 0, false},\n\t\t// Zero frequency + per.\n\t\t{0, 0, 0, time.Second, 0, 0, false},\n\t\t// Negative frequency.\n\t\t{-1, time.Second, 0, time.Second, 0, 0, true},\n\t\t// Negative per.\n\t\t{1, -time.Second, 0, time.Second, 0, 0, true},\n\t\t// Negative frequency + per.\n\t\t{-1, -time.Second, 0, time.Second, 0, 0, true},\n\t\t// Large per, overflow int64.\n\t\t{1, time.Duration(math.MaxInt64) / 10, 0, time.Duration(math.MaxInt64), 11, 0, true},\n\t\t// Large hits, overflow int64.\n\t\t{1, time.Hour, 0, time.Duration(math.MaxInt64), 2562048, 0, true},\n\t} {\n\t\tt.Run(strconv.Itoa(ti), func(t *testing.T) {\n\t\t\tp := LinearPacer{\n\t\t\t\tStartAt: Rate{Freq: tt.freq, Per: tt.per},\n\t\t\t\tSlope:   tt.slope,\n\t\t\t}\n\n\t\t\twait, stop := p.Pace(tt.elapsed, tt.hits)\n\t\t\tif !durationEqual(wait, tt.wait) || stop != tt.stop {\n\t\t\t\tt.Errorf(\"%d: %+v.Pace(%s, %d) = (%s, %t); want (%s, %t)\",\n\t\t\t\t\tti, p, tt.elapsed, tt.hits, wait, stop, tt.wait, tt.stop)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestLinearPacer_hits(t *testing.T) {\n\tp := LinearPacer{\n\t\tStartAt: Rate{Freq: 100, Per: time.Second},\n\t\tSlope:   10,\n\t}\n\n\tfor _, tc := range []struct {\n\t\telapsed time.Duration\n\t\thits    float64\n\t}{\n\t\t{0, 0},\n\t\t{time.Second / 2, 51.25},\n\t\t{1 * time.Second, 105},\n\t\t{2 * time.Second, 220},\n\t\t{4 * time.Second, 480},\n\t\t{8 * time.Second, 1120},\n\t\t{16 * time.Second, 2880},\n\t\t{32 * time.Second, 8320},\n\t\t{64 * time.Second, 26880},\n\t\t{128 * time.Second, 94720},\n\t} {\n\t\thits := p.hits(tc.elapsed)\n\t\tif have, want := hits, tc.hits; !floatEqual(have, want) {\n\t\t\tt.Errorf(\"%+v.hits(%v) = %v, want: %v\", p, tc.elapsed, have, want)\n\t\t}\n\t}\n}\n\nfunc TestLinearPacer_Rate(t *testing.T) {\n\tprop := func(start uint16, slope int8, x1, x2 uint32) (ok bool) {\n\t\tp := LinearPacer{\n\t\t\tStartAt: Rate{Freq: int(start), Per: time.Second},\n\t\t\tSlope:   float64(slope),\n\t\t}\n\n\t\tif x1 > x2 {\n\t\t\tx1, x2 = x2, x1\n\t\t}\n\n\t\ty1, y2 := p.Rate(time.Duration(x1)), p.Rate(time.Duration(x2))\n\t\tdirection := y2 - y1\n\n\t\tswitch {\n\t\tcase slope == 0 || x1 == x2:\n\t\t\tok = direction == 0 && y1 == y2 && floatEqual(y1, float64(start))\n\t\tcase slope > 0:\n\t\t\tok = direction > 0 && y1 >= float64(start) && y2 >= float64(start)\n\t\tcase slope < 0:\n\t\t\tok = direction < 0 && y1 <= float64(start) && y2 <= float64(start)\n\t\tdefault:\n\t\t\tpanic(\"impossible condition\")\n\t\t}\n\n\t\tif !ok {\n\t\t\tt.Logf(\"\\nslope: %d\\nstart: %d\\nrate(%v) = %v\\nrate(%v) = %v\", slope, start, x1, y1, x2, y2)\n\t\t\tt.Fatalf(\"rate(%v) - rate(%v) = %v doesn't match slope direction %v\", x2, x1, direction, slope)\n\t\t}\n\n\t\treturn ok\n\t}\n\n\tif err := quick.Check(prop, &quick.Config{MaxCount: 1e6}); err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "lib/plot/assets/VERSIONS",
    "content": "uPlot v1.6.32\n"
  },
  {
    "path": "lib/plot/assets/plot.html.tpl",
    "content": "<!doctype html>\n<html>\n<head>\n  <title>{{.Title}}</title>\n  <meta charset=\"utf-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <style>{{.UPlotCSS}}</style>\n  <style>\n    * {\n      box-sizing: border-box;\n    }\n    \n    body {\n      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;\n      margin: 0;\n      padding: 20px;\n      transition: background 0.2s ease, color 0.2s ease;\n    }\n    \n    body.dark {\n      background: #0f1419;\n      color: #e6edf3;\n    }\n    \n    body.light {\n      background: #ffffff;\n      color: #1f2937;\n    }\n    \n    .container {\n      max-width: 1600px;\n      margin: 0 auto;\n    }\n    \n    .header {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      margin-bottom: 20px;\n      flex-wrap: wrap;\n      gap: 16px;\n    }\n    \n    h1 {\n      font-size: 24px;\n      font-weight: 600;\n      margin: 0;\n    }\n    \n    .controls {\n      display: flex;\n      gap: 8px;\n      flex-wrap: wrap;\n      align-items: center;\n    }\n    \n    .btn {\n      padding: 6px 12px;\n      border-radius: 6px;\n      font-size: 13px;\n      font-weight: 500;\n      cursor: pointer;\n      transition: all 0.15s ease;\n      font-family: inherit;\n    }\n    \n    body.dark .btn {\n      border: 1px solid #30363d;\n      background: #161b22;\n      color: #e6edf3;\n    }\n    \n    body.dark .btn:hover {\n      background: #1f2937;\n      border-color: #3d444d;\n    }\n    \n    body.dark .btn:active {\n      background: #0d1117;\n    }\n    \n    body.dark .btn.active {\n      background: #1f6feb;\n      border-color: #1f6feb;\n      color: #fff;\n    }\n    \n    body.light .btn {\n      border: 1px solid #d1d5db;\n      background: #ffffff;\n      color: #1f2937;\n    }\n    \n    body.light .btn:hover {\n      background: #f3f4f6;\n      border-color: #9ca3af;\n    }\n    \n    body.light .btn:active {\n      background: #e5e7eb;\n    }\n    \n    body.light .btn.active {\n      background: #2563eb;\n      border-color: #2563eb;\n      color: #fff;\n    }\n    \n    .chart-container {\n      border-radius: 8px;\n      padding: 20px;\n      transition: background 0.2s ease, border-color 0.2s ease;\n    }\n    \n    body.dark .chart-container {\n      background: #161b22;\n      border: 1px solid #30363d;\n    }\n    \n    body.light .chart-container {\n      background: #ffffff;\n      border: 1px solid #e5e7eb;\n    }\n    \n    .uplot {\n      margin: 0 auto;\n    }\n    \n    body.dark .uplot .u-legend {\n      background: #0d1117;\n      border: 1px solid #30363d;\n      border-radius: 6px;\n      padding: 12px;\n      font-size: 13px;\n    }\n    \n    body.light .uplot .u-legend {\n      background: #f9fafb;\n      border: 1px solid #e5e7eb;\n      border-radius: 6px;\n      padding: 12px;\n      font-size: 13px;\n    }\n    \n    .uplot .u-legend .u-series {\n      cursor: pointer;\n      padding: 4px 8px;\n      border-radius: 4px;\n      transition: background 0.15s ease;\n    }\n    \n    .uplot .u-legend .u-value {\n      font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', monospace;\n      font-size: 12px;\n      min-width: 80px;\n      display: inline-block;\n      text-align: right;\n    }\n    \n    .uplot .u-axis text {\n      font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', monospace;\n    }\n    \n    \n    body.dark .uplot .u-legend .u-series:hover {\n      background: #161b22;\n    }\n    \n    body.light .uplot .u-legend .u-series:hover {\n      background: #f3f4f6;\n    }\n    \n    .uplot .u-legend .u-series.u-off {\n      opacity: 0.4;\n    }\n    \n    .uplot .u-cursor-pt {\n      background: #1f6feb;\n      border: 2px solid #fff;\n      border-radius: 50%;\n    }\n    \n    body.dark .uplot .u-hz .u-cursor-x,\n    body.dark .uplot .u-vt .u-cursor-y {\n      border-color: #3d444d;\n    }\n    \n    body.light .uplot .u-hz .u-cursor-x,\n    body.light .uplot .u-vt .u-cursor-y {\n      border-color: #d1d5db;\n    }\n    \n    body.dark .uplot .u-select {\n      background: rgba(31, 111, 235, 0.1);\n      border: 1px solid #1f6feb;\n    }\n    \n    body.light .uplot .u-select {\n      background: rgba(37, 99, 235, 0.1);\n      border: 1px solid #2563eb;\n    }\n    \n    body.dark .uplot .u-axis {\n      color: #8b949e;\n    }\n    \n    body.light .uplot .u-axis {\n      color: #6b7280;\n    }\n    \n    body.dark .uplot .u-grid {\n      stroke: #30363d;\n    }\n    \n    body.light .uplot .u-grid {\n      stroke: #e5e7eb;\n    }\n    \n    @media (max-width: 768px) {\n      body {\n        padding: 12px;\n      }\n      \n      .header {\n        flex-direction: column;\n        align-items: flex-start;\n      }\n      \n      h1 {\n        font-size: 20px;\n      }\n      \n      .controls {\n        width: 100%;\n        justify-content: flex-start;\n      }\n      \n      .chart-container {\n        padding: 12px;\n      }\n    }\n  </style>\n</head>\n<body class=\"dark\">\n  <div class=\"container\">\n    <div class=\"header\">\n      <h1>{{.Title}}</h1>\n      <div class=\"controls\">\n        <button id=\"toggleTheme\" class=\"btn\">☀️ Light</button>\n        <button id=\"resetZoom\" class=\"btn\">Reset Zoom</button>\n        <button id=\"toggleLogScale\" class=\"btn active\">Log Scale</button>\n        <button id=\"exportPNG\" class=\"btn\">Export PNG</button>\n      </div>\n    </div>\n    \n    <div class=\"chart-container\">\n      <div id=\"plot\"></div>\n    </div>\n  </div>\n\n  <script>{{.UPlotJS}}</script>\n  <script>{{.PluginsJS}}</script>\n  <script>\n    (function() {\n      const opts = {{.Opts}};\n      const rowData = {{.Data}};\n      \n      // Pivot data from row-oriented to column-oriented\n      const data = pivotData(rowData);\n      \n      // State\n      let isDarkTheme = true;\n      let isLogScale = true;\n      let currentPlot = null;\n      \n      function createPlot(logScale) {\n        // Build fresh series configuration each time to avoid state mutation\n        const series = [{ label: opts.labels[0] }];\n        for (let i = 1; i < opts.labels.length; i++) {\n          series.push({\n            label: opts.labels[i],\n            stroke: opts.colors[i - 1] || '#8b949e',\n            width: 2,\n            points: { show: false },\n            value: (u, v) => formatDuration(v)\n          });\n        }\n        const plotWidth = Math.max(600, document.getElementById('plot').parentElement.clientWidth - 40);\n        \n        const axisColor = isDarkTheme ? '#8b949e' : '#6b7280';\n        const gridColor = isDarkTheme ? '#30363d' : '#e5e7eb';\n        \n        // Build Y scale configuration conditionally\n        const yScale = logScale\n          ? {\n              distr: 3,\n              log: 10\n            }\n          : {\n              // Linear is default - no distr needed\n            };\n        \n        const uplotOpts = {\n          title: null,\n          width: plotWidth,\n          height: 500,\n          series: series,\n          scales: {\n            x: {\n              time: false\n            },\n            y: yScale\n          },\n          axes: [\n            {\n              label: \"Seconds elapsed\",\n              labelSize: 30,\n              size: 50,\n              stroke: axisColor,\n              grid: {\n                show: true,\n                stroke: gridColor,\n                width: 1\n              },\n              ticks: {\n                show: false\n              }\n            },\n            {\n              label: \"Latency\",\n              labelSize: 30,\n              size: 80,\n              stroke: axisColor,\n              grid: {\n                show: true,\n                stroke: gridColor,\n                width: 1\n              },\n              ticks: {\n                show: false,\n                size: 0\n              },\n              values: (u, vals) => vals.map(v => formatDuration(v))\n            }\n          ],\n          legend: {\n            show: true,\n            live: true\n          },\n          cursor: {\n            drag: {\n              x: true,\n              y: false\n            },\n            points: {\n              show: true,\n              size: 8,\n              width: 2\n            }\n          },\n          hooks: {\n            setSelect: [\n              function(u) {\n                const min = u.posToVal(u.select.left, 'x');\n                const max = u.posToVal(u.select.left + u.select.width, 'x');\n                u.setScale('x', { min, max });\n              }\n            ]\n          }\n        };\n        \n        if (currentPlot) {\n          currentPlot.destroy();\n        }\n        \n        currentPlot = new uPlot(uplotOpts, data, document.getElementById('plot'));\n        return currentPlot;\n      }\n      \n      // Initialize plot\n      createPlot(isLogScale);\n      \n      // Handle window resize\n      let resizeTimeout;\n      window.addEventListener('resize', function() {\n        clearTimeout(resizeTimeout);\n        resizeTimeout = setTimeout(function() {\n          const plotWidth = Math.max(600, document.getElementById('plot').parentElement.clientWidth - 40);\n          currentPlot.setSize({ width: plotWidth, height: 500 });\n        }, 150);\n      });\n      \n      // Toggle theme\n      document.getElementById('toggleTheme').addEventListener('click', function() {\n        isDarkTheme = !isDarkTheme;\n        document.body.className = isDarkTheme ? 'dark' : 'light';\n        this.textContent = isDarkTheme ? '☀️ Light' : '🌙 Dark';\n        createPlot(isLogScale);\n      });\n      \n      // Reset zoom\n      document.getElementById('resetZoom').addEventListener('click', function() {\n        currentPlot.setScale('x', { min: data[0][0], max: data[0][data[0].length - 1] });\n      });\n      \n      // Toggle log scale\n      document.getElementById('toggleLogScale').addEventListener('click', function() {\n        isLogScale = !isLogScale;\n        this.classList.toggle('active', isLogScale);\n        createPlot(isLogScale);\n      });\n      \n      // Export PNG\n      document.getElementById('exportPNG').addEventListener('click', function() {\n        exportToPNG(currentPlot, 'vegeta-plot.png');\n      });\n    })();\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "lib/plot/assets/uplot-plugins.js",
    "content": "// Data pivoting: Convert row-oriented data to column-oriented for uPlot\nfunction pivotData(rowData) {\n  if (!rowData || rowData.length === 0) return [[], []];\n  \n  const numCols = rowData[0].length;\n  const cols = Array.from({ length: numCols }, () => []);\n  \n  for (let i = 0; i < rowData.length; i++) {\n    for (let j = 0; j < numCols; j++) {\n      cols[j].push(rowData[i][j]);\n    }\n  }\n  \n  return cols;\n}\n\n// Format milliseconds as human-readable duration\nfunction formatDuration(ms) {\n  if (ms == null) return '     -   ';\n  \n  let value, unit;\n  \n  if (ms < 1) {\n    value = (ms * 1000).toFixed(ms * 1000 < 10 ? 1 : 0);\n    unit = 'μs';\n  } else if (ms < 1000) {\n    value = ms.toFixed(ms < 10 ? 1 : 0);\n    unit = 'ms';\n  } else {\n    value = (ms / 1000).toFixed(ms / 1000 < 10 ? 1 : 0);\n    unit = ' s';\n  }\n  \n  // Pad to ensure consistent width and add spacing to avoid tick overlap\n  return value.padStart(4, ' ') + unit + '      ';\n}\n\n// PNG export functionality using native canvas\nfunction exportToPNG(uplotInstance, filename) {\n  const canvas = uplotInstance.root.querySelector('canvas');\n  if (!canvas) return;\n  \n  canvas.toBlob(function(blob) {\n    const url = URL.createObjectURL(blob);\n    const a = document.createElement('a');\n    a.setAttribute('download', filename || 'vegeta-plot.png');\n    a.setAttribute('href', url);\n    a.click();\n    URL.revokeObjectURL(url);\n  });\n}\n"
  },
  {
    "path": "lib/plot/assets.go",
    "content": "//go:build dev\n// +build dev\n\npackage plot\n\nimport (\n\t\"net/http\"\n)\n\n// Assets contains assets required to render the Plot.\nvar Assets http.FileSystem = http.Dir(\"assets\")\n"
  },
  {
    "path": "lib/plot/embed.go",
    "content": "//go:build !dev\n\npackage plot\n\nimport (\n\t\"embed\"\n\t\"io\"\n\t\"io/fs\"\n\t\"net/http\"\n\t\"os\"\n)\n\n//go:embed assets/*\nvar assetsFS embed.FS\n\n// Assets contains assets required to render the Plot.\nvar Assets http.FileSystem = &embedFS{assetsFS}\n\ntype embedFS struct {\n\tfs embed.FS\n}\n\nfunc (e *embedFS) Open(name string) (http.File, error) {\n\tf, err := e.fs.Open(\"assets/\" + name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tstat, err := f.Stat()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif stat.IsDir() {\n\t\treturn &embedFile{File: f}, nil\n\t}\n\n\t// For regular files, read all content to support Seek\n\tdata, err := io.ReadAll(f)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tf.Close()\n\n\treturn &embedFileSeeker{\n\t\tFile:   f,\n\t\tdata:   data,\n\t\treader: io.NewSectionReader(&bytesReaderAt{data}, 0, int64(len(data))),\n\t}, nil\n}\n\ntype embedFile struct {\n\tfs.File\n}\n\nfunc (f *embedFile) Readdir(count int) ([]os.FileInfo, error) {\n\treturn nil, nil\n}\n\nfunc (f *embedFile) Seek(offset int64, whence int) (int64, error) {\n\treturn 0, nil\n}\n\ntype embedFileSeeker struct {\n\tfs.File\n\tdata   []byte\n\treader *io.SectionReader\n}\n\nfunc (f *embedFileSeeker) Read(p []byte) (int, error) {\n\treturn f.reader.Read(p)\n}\n\nfunc (f *embedFileSeeker) Seek(offset int64, whence int) (int64, error) {\n\treturn f.reader.Seek(offset, whence)\n}\n\nfunc (f *embedFileSeeker) Readdir(count int) ([]os.FileInfo, error) {\n\treturn nil, nil\n}\n\ntype bytesReaderAt struct {\n\tdata []byte\n}\n\nfunc (r *bytesReaderAt) ReadAt(p []byte, off int64) (n int, err error) {\n\tif off < 0 || off >= int64(len(r.data)) {\n\t\treturn 0, io.EOF\n\t}\n\tn = copy(p, r.data[off:])\n\tif n < len(p) {\n\t\terr = io.EOF\n\t}\n\treturn\n}\n"
  },
  {
    "path": "lib/plot/plot.go",
    "content": "package plot\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"html/template\"\n\t\"io\"\n\t\"math\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n\t\"github.com/tsenart/vegeta/v12/lib/lttb\"\n)\n\n// An Plot represents an interactive HTML time series\n// plot of Result latencies over time.\ntype Plot struct {\n\ttitle     string\n\tthreshold int\n\tseries    map[string]*labeledSeries\n\tlabel     Labeler\n}\n\n// An Labeler is a function that returns a label\n// to partition and represent Results in separate (but overlaid) line charts\n// in the rendered plot.\ntype Labeler func(*vegeta.Result) (label string)\n\n// ErrorLabeler is an HTMLPlotLabeler which\n// labels a result with an OK or ERROR label\n// based on whether it has an error set.\nfunc ErrorLabeler(r *vegeta.Result) (label string) {\n\tswitch r.Error {\n\tcase \"\":\n\t\treturn \"OK\"\n\tdefault:\n\t\treturn \"ERROR\"\n\t}\n}\n\n// labeledSeries groups timeSeries by a label function applied to\n// each incoming result. It re-orders and buffers out-of-order results\n// by their sequence number before adding them to the labeled timeSeries.\ntype labeledSeries struct {\n\tbegan  time.Time\n\tseq    uint64\n\tbuf    map[uint64]point\n\tseries map[string]*timeSeries\n\tlabel  Labeler\n}\n\n// a point to be added to a timeSeries.\ntype point struct {\n\tts  *timeSeries\n\tseq uint64\n\tt   time.Time\n\tv   float64\n}\n\nfunc newLabeledSeries(label Labeler) *labeledSeries {\n\treturn &labeledSeries{\n\t\tbuf:    map[uint64]point{},\n\t\tseries: map[string]*timeSeries{},\n\t\tlabel:  label,\n\t}\n}\n\nfunc (ls *labeledSeries) add(r *vegeta.Result) (err error) {\n\tlabel := ls.label(r)\n\n\tts, ok := ls.series[label]\n\tif !ok {\n\t\tts = newTimeSeries(r.Attack, label)\n\t\tls.series[label] = ts\n\t}\n\n\tp := point{\n\t\tts:  ts,\n\t\tseq: r.Seq,\n\t\tt:   r.Timestamp,\n\t\tv:   r.Latency.Seconds() * 1000,\n\t}\n\n\tif ls.buf[p.seq] = p; p.seq != ls.seq {\n\t\treturn nil // buffer\n\t} else if ls.seq == 0 {\n\t\tls.began = r.Timestamp // first point in attack\n\t}\n\n\tfor len(ls.buf) > 0 {\n\t\tp, ok := ls.buf[ls.seq]\n\t\tif !ok {\n\t\t\tbreak\n\t\t}\n\t\tdelete(ls.buf, ls.seq)\n\n\t\t// timestamp in ms precision\n\t\terr = p.ts.add(uint64(p.t.Sub(ls.began))/1e6, p.v)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"point with sequence number %d in %v\", p.seq, err)\n\t\t}\n\n\t\tls.seq++\n\t}\n\n\treturn nil\n}\n\n// Opt is a functional option type for Plot.\ntype Opt func(*Plot)\n\n// Title returns an Opt that sets the title of a Plot.\nfunc Title(title string) Opt {\n\treturn func(p *Plot) { p.title = title }\n}\n\n// Downsample returns an Opt that enables downsampling\n// to the given threshold number of data points per labeled series.\nfunc Downsample(threshold int) Opt {\n\treturn func(p *Plot) { p.threshold = threshold }\n}\n\n// Label returns an Opt that sets the given Labeler\n// to be used to partition results into multiple overlaid line charts.\nfunc Label(l Labeler) Opt {\n\treturn func(p *Plot) { p.label = l }\n}\n\n// New returns a Plot with the given Opts applied.\n// If no Label opt is given, ErrorLabeler will be used as default.\nfunc New(opts ...Opt) *Plot {\n\tp := &Plot{series: map[string]*labeledSeries{}}\n\tfor _, opt := range opts {\n\t\topt(p)\n\t}\n\n\tif p.label == nil {\n\t\tp.label = ErrorLabeler\n\t}\n\n\treturn p\n}\n\n// Add adds the given Result to the Plot time series.\nfunc (p *Plot) Add(r *vegeta.Result) error {\n\ts, ok := p.series[r.Attack]\n\tif !ok {\n\t\ts = newLabeledSeries(p.label)\n\t\tp.series[r.Attack] = s\n\t}\n\treturn s.add(r)\n}\n\n// Close closes the HTML plot for writing.\nfunc (p *Plot) Close() {\n\tfor _, as := range p.series {\n\t\tfor _, ts := range as.series {\n\t\t\tts.data.Finish()\n\t\t}\n\t}\n}\n\n// WriteTo writes the HTML plot to the give io.Writer.\nfunc (p *Plot) WriteTo(w io.Writer) (n int64, err error) {\n\ttype uiOpts struct {\n\t\tTitle  string   `json:\"title\"`\n\t\tLabels []string `json:\"labels,omitempty\"`\n\t\tColors []string `json:\"colors,omitempty\"`\n\t}\n\n\ttype plotData struct {\n\t\tTitle     string\n\t\tUPlotCSS  template.CSS\n\t\tUPlotJS   template.JS\n\t\tPluginsJS template.JS\n\t\tData      template.JS\n\t\tOpts      template.JS\n\t}\n\n\tdp, labels, err := p.data()\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\tvar sz int\n\tif len(dp) > 0 {\n\t\tsz = len(dp) * len(dp[0]) * 12 // heuristic\n\t}\n\n\tdata := dp.Append(make([]byte, 0, sz))\n\n\topts := uiOpts{\n\t\tTitle:  p.title,\n\t\tLabels: labels,\n\t\tColors: labelColors(labels[1:]),\n\t}\n\n\toptsJSON, err := json.MarshalIndent(&opts, \"    \", \" \")\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\tassets := map[string][]byte{}\n\tfor _, path := range []string{\"uPlot.min.js\", \"uPlot.min.css\", \"uplot-plugins.js\"} {\n\t\tbs, err := asset(path)\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\tassets[path] = bs\n\t}\n\n\tcw := countingWriter{w: w}\n\terr = plotTemplate.Execute(&cw, &plotData{\n\t\tTitle:     p.title,\n\t\tUPlotCSS:  template.CSS(assets[\"uPlot.min.css\"]),\n\t\tUPlotJS:   template.JS(assets[\"uPlot.min.js\"]),\n\t\tPluginsJS: template.JS(assets[\"uplot-plugins.js\"]),\n\t\tData:      template.JS(data),\n\t\tOpts:      template.JS(optsJSON),\n\t})\n\n\treturn cw.n, err\n}\n\nvar (\n\tfailures = []string{\n\t\t\"#EE7860\",\n\t\t\"#DD624E\",\n\t\t\"#CA4E3E\",\n\t\t\"#B63A30\",\n\t\t\"#9F2823\",\n\t\t\"#881618\",\n\t\t\"#6F050E\",\n\t}\n\tsuccesses = []string{\n\t\t\"#E9D758\",\n\t\t\"#297373\",\n\t\t\"#39393A\",\n\t\t\"#A1CDF4\",\n\t\t\"#593C8F\",\n\t\t\"#171738\",\n\t\t\"#A1674A\",\n\t}\n)\n\nfunc labelColors(labels []string) []string {\n\tcolors := make([]string, 0, len(labels))\n\n\tvar failure, success int\n\tfor _, label := range labels {\n\t\tvar color string\n\t\tif strings.Contains(label, \"ERROR\") {\n\t\t\tcolor = failures[failure%len(failures)]\n\t\t\tfailure++\n\t\t} else {\n\t\t\tcolor = successes[success%len(successes)]\n\t\t\tsuccess++\n\t\t}\n\t\tcolors = append(colors, color)\n\t}\n\n\treturn colors\n}\n\n// See http://dygraphs.com/data.html\nfunc (p *Plot) data() (dataPoints, []string, error) {\n\tvar (\n\t\tseries []*timeSeries\n\t\tcount  int\n\t)\n\n\tfor _, as := range p.series {\n\t\tfor _, s := range as.series {\n\t\t\tif s != nil {\n\t\t\t\tseries = append(series, s)\n\t\t\t\tcount += s.len\n\t\t\t}\n\t\t}\n\t}\n\n\tvar (\n\t\tsize   = 1 + len(series)\n\t\tnan    = math.NaN()\n\t\tlabels = make([]string, size)\n\t\tdata   = make(dataPoints, 0, count)\n\t)\n\n\tlabels[0] = \"Seconds\"\n\n\tsort.Slice(series, func(i, j int) bool {\n\t\treturn series[i].attack+series[i].label <\n\t\t\tseries[j].attack+series[j].label\n\t})\n\n\tfor i, s := range series {\n\t\tpoints, err := lttb.Downsample(s.len, p.threshold, s.iter())\n\t\tif err != nil {\n\t\t\treturn nil, nil, err\n\t\t}\n\n\t\tfor _, p := range points {\n\t\t\tpt := make([]float64, size)\n\t\t\tfor j := range pt {\n\t\t\t\tpt[j] = nan\n\t\t\t}\n\t\t\tpt[0], pt[i+1] = p.X, p.Y\n\t\t\tdata = append(data, pt)\n\t\t}\n\n\t\tlabels[i+1] = s.attack + \": \" + s.label\n\t}\n\n\tsort.Stable(data)\n\n\treturn data, labels, nil\n}\n\nfunc asset(path string) ([]byte, error) {\n\tfile, err := Assets.Open(path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn io.ReadAll(file)\n}\n\ntype countingWriter struct {\n\tn int64\n\tw io.Writer\n}\n\nfunc (cw *countingWriter) Write(p []byte) (int, error) {\n\tn, err := cw.w.Write(p)\n\tcw.n += int64(n)\n\treturn n, err\n}\n\ntype dataPoints [][]float64\n\nfunc (ps dataPoints) Len() int { return len(ps) }\n\nfunc (ps dataPoints) Less(i, j int) bool {\n\t// Sort by X axis (seconds elapsed)\n\treturn ps[i][0] < ps[j][0]\n}\n\nfunc (ps dataPoints) Swap(i, j int) {\n\tps[i], ps[j] = ps[j], ps[i]\n}\n\nfunc (ps dataPoints) Append(buf []byte) []byte {\n\tbuf = append(buf, \"[\\n  \"...)\n\n\tfor i, p := range ps {\n\t\tbuf = append(buf, \"  [\"...)\n\n\t\tfor j, f := range p {\n\t\t\tif math.IsNaN(f) {\n\t\t\t\tbuf = append(buf, \"null\"...)\n\t\t\t} else {\n\t\t\t\tbuf = strconv.AppendFloat(buf, f, 'f', -1, 64)\n\t\t\t}\n\n\t\t\tif j < len(p)-1 {\n\t\t\t\tbuf = append(buf, ',')\n\t\t\t}\n\t\t}\n\n\t\tif buf = append(buf, \"]\"...); i < len(ps)-1 {\n\t\t\tbuf = append(buf, \",\\n  \"...)\n\t\t}\n\t}\n\n\treturn append(buf, \"  ]\"...)\n}\n\nvar plotTemplate = func() *template.Template {\n\tbs, err := asset(\"plot.html.tpl\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn template.Must(template.New(\"plot\").Parse(string(bs)))\n}()\n"
  },
  {
    "path": "lib/plot/plot_test.go",
    "content": "package plot\n\nimport (\n\t\"bytes\"\n\t\"flag\"\n\t\"io\"\n\t\"math/rand\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n\t\"github.com/tsenart/vegeta/v12/lib/lttb\"\n)\n\nvar update = flag.Bool(\"update\", false, \"Update .golden files\")\n\nfunc TestPlot(t *testing.T) {\n\tp := New(Title(\"TestPlot\"), Downsample(400))\n\n\trng := rand.New(rand.NewSource(0))\n\tzf := rand.NewZipf(rng, 3, 2, 1000)\n\tattacks := []string{\"500QPS\", \"1000QPS\", \"2000QPS\"}\n\tbegan := time.Now()\n\tfor i := 0; i < 1e5; i++ {\n\t\tfor _, attack := range attacks {\n\t\t\tr := vegeta.Result{\n\t\t\t\tAttack:    attack,\n\t\t\t\tSeq:       uint64(i),\n\t\t\t\tTimestamp: began.Add(time.Duration(i) * time.Millisecond),\n\t\t\t\tLatency:   time.Duration(zf.Uint64()) * time.Millisecond,\n\t\t\t}\n\n\t\t\tif err := p.Add(&r); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t}\n\t}\n\n\tp.Close()\n\n\tvar b bytes.Buffer\n\tif _, err := p.WriteTo(&b); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tgp := filepath.Join(\"testdata\", filepath.FromSlash(t.Name())+\".golden.html\")\n\tif *update {\n\t\tt.Logf(\"updating %q\", gp)\n\t\tif err := os.WriteFile(gp, b.Bytes(), 0644); err != nil {\n\t\t\tt.Fatalf(\"failed to update %q: %s\", gp, err)\n\t\t}\n\t}\n\n\tg, err := os.ReadFile(gp)\n\tif err != nil {\n\t\tt.Fatalf(\"failed reading %q: %s\", gp, err)\n\t}\n\n\tif !bytes.Equal(b.Bytes(), g) {\n\t\tt.Log(b.String())\n\t\tt.Errorf(\"bytes do not match %q\", gp)\n\t}\n}\n\nfunc TestLabeledSeries(t *testing.T) {\n\tt.Parallel()\n\n\ts := newLabeledSeries(ErrorLabeler)\n\tcount := 500000\n\twant := map[string][]lttb.Point{}\n\n\t// test out of order adds\n\tbegan := time.Unix(0, 0)\n\tfor i := count - 1; i >= 0; i-- {\n\t\tr := vegeta.Result{\n\t\t\tAttack:    \"attack\",\n\t\t\tSeq:       uint64(i),\n\t\t\tTimestamp: began.Add(time.Duration(i) * time.Millisecond),\n\t\t\tLatency:   time.Duration(rand.Intn(1000)) * time.Millisecond,\n\t\t}\n\n\t\tif i%2 == 0 {\n\t\t\tr.Error = \"Boom!\"\n\t\t}\n\n\t\tlabel := ErrorLabeler(&r)\n\t\tpoint := lttb.Point{\n\t\t\tX: r.Timestamp.Sub(began).Seconds(),\n\t\t\tY: r.Latency.Seconds() * 1000,\n\t\t}\n\n\t\twant[label] = append(want[label], point)\n\n\t\tif err := s.add(&r); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\ttotal := 0\n\tfor label, ts := range s.series {\n\t\ttotal += ts.len\n\n\t\tt.Logf(\"series %q has %d points\", label, ts.len)\n\n\t\tps, err := ts.iter()(ts.len)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"series %q: %v\", label, err)\n\t\t}\n\n\t\tif have, want := len(ps), count/2; have != want {\n\t\t\tt.Errorf(\"missing points: have %d, want %d\", have, want)\n\t\t}\n\n\t\tsort.Slice(want[label], func(i, j int) bool {\n\t\t\treturn want[label][i].X < want[label][j].X\n\t\t})\n\n\t\tif diff := cmp.Diff(ps, want[label]); diff != \"\" {\n\t\t\tt.Error(diff)\n\t\t}\n\t}\n\n\tif have, want := total, count; have != want {\n\t\tt.Errorf(\"lost data points: have %d, want %d\", have, want)\n\t}\n}\n\nfunc BenchmarkPlot(b *testing.B) {\n\tb.StopTimer()\n\t// Build result set\n\trs := make(vegeta.Results, 50000000)\n\tfor began, i := time.Now(), 0; i < cap(rs); i++ {\n\t\trs[i] = vegeta.Result{\n\t\t\tAttack:    \"foo\",\n\t\t\tCode:      uint16(i % 600),\n\t\t\tLatency:   50 * time.Millisecond,\n\t\t\tTimestamp: began.Add(time.Duration(i) * 50 * time.Millisecond),\n\t\t}\n\t\tif i%5 == 0 {\n\t\t\trs[i].Error = \"Error\"\n\t\t}\n\t}\n\n\tplot := New(\n\t\tTitle(\"Vegeta Plot\"),\n\t\tDownsample(5000),\n\t\tLabel(ErrorLabeler),\n\t)\n\n\tb.Run(\"Add\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\t_ = plot.Add(&rs[i%len(rs)])\n\t\t}\n\t})\n\n\tb.Run(\"WriteTo\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\t_, _ = plot.WriteTo(io.Discard)\n\t\t}\n\t})\n}\n"
  },
  {
    "path": "lib/plot/testdata/TestPlot.golden.html",
    "content": "<!doctype html>\n<html>\n<head>\n  <title>TestPlot</title>\n  <meta charset=\"utf-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <style>.uplot, .uplot *, .uplot *::before, .uplot *::after {box-sizing: border-box;}.uplot {font-family: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";line-height: 1.5;width: min-content;}.u-title {text-align: center;font-size: 18px;font-weight: bold;}.u-wrap {position: relative;user-select: none;}.u-over, .u-under {position: absolute;}.u-under {overflow: hidden;}.uplot canvas {display: block;position: relative;width: 100%;height: 100%;}.u-axis {position: absolute;}.u-legend {font-size: 14px;margin: auto;text-align: center;}.u-inline {display: block;}.u-inline * {display: inline-block;}.u-inline tr {margin-right: 16px;}.u-legend th {font-weight: 600;}.u-legend th > * {vertical-align: middle;display: inline-block;}.u-legend .u-marker {width: 1em;height: 1em;margin-right: 4px;background-clip: padding-box !important;}.u-inline.u-live th::after {content: \":\";vertical-align: middle;}.u-inline:not(.u-live) .u-value {display: none;}.u-series > * {padding: 4px;}.u-series th {cursor: pointer;}.u-legend .u-off > * {opacity: 0.3;}.u-select {background: rgba(0,0,0,0.07);position: absolute;pointer-events: none;}.u-cursor-x, .u-cursor-y {position: absolute;left: 0;top: 0;pointer-events: none;will-change: transform;}.u-hz .u-cursor-x, .u-vt .u-cursor-y {height: 100%;border-right: 1px dashed #607D8B;}.u-hz .u-cursor-y, .u-vt .u-cursor-x {width: 100%;border-bottom: 1px dashed #607D8B;}.u-cursor-pt {position: absolute;top: 0;left: 0;border-radius: 50%;border: 0 solid;pointer-events: none;will-change: transform;/*this has to be !important since we set inline \"background\" shorthand */background-clip: padding-box !important;}.u-axis.u-off, .u-select.u-off, .u-cursor-x.u-off, .u-cursor-y.u-off, .u-cursor-pt.u-off {display: none;}</style>\n  <style>\n    * {\n      box-sizing: border-box;\n    }\n    \n    body {\n      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;\n      margin: 0;\n      padding: 20px;\n      transition: background 0.2s ease, color 0.2s ease;\n    }\n    \n    body.dark {\n      background: #0f1419;\n      color: #e6edf3;\n    }\n    \n    body.light {\n      background: #ffffff;\n      color: #1f2937;\n    }\n    \n    .container {\n      max-width: 1600px;\n      margin: 0 auto;\n    }\n    \n    .header {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      margin-bottom: 20px;\n      flex-wrap: wrap;\n      gap: 16px;\n    }\n    \n    h1 {\n      font-size: 24px;\n      font-weight: 600;\n      margin: 0;\n    }\n    \n    .controls {\n      display: flex;\n      gap: 8px;\n      flex-wrap: wrap;\n      align-items: center;\n    }\n    \n    .btn {\n      padding: 6px 12px;\n      border-radius: 6px;\n      font-size: 13px;\n      font-weight: 500;\n      cursor: pointer;\n      transition: all 0.15s ease;\n      font-family: inherit;\n    }\n    \n    body.dark .btn {\n      border: 1px solid #30363d;\n      background: #161b22;\n      color: #e6edf3;\n    }\n    \n    body.dark .btn:hover {\n      background: #1f2937;\n      border-color: #3d444d;\n    }\n    \n    body.dark .btn:active {\n      background: #0d1117;\n    }\n    \n    body.dark .btn.active {\n      background: #1f6feb;\n      border-color: #1f6feb;\n      color: #fff;\n    }\n    \n    body.light .btn {\n      border: 1px solid #d1d5db;\n      background: #ffffff;\n      color: #1f2937;\n    }\n    \n    body.light .btn:hover {\n      background: #f3f4f6;\n      border-color: #9ca3af;\n    }\n    \n    body.light .btn:active {\n      background: #e5e7eb;\n    }\n    \n    body.light .btn.active {\n      background: #2563eb;\n      border-color: #2563eb;\n      color: #fff;\n    }\n    \n    .chart-container {\n      border-radius: 8px;\n      padding: 20px;\n      transition: background 0.2s ease, border-color 0.2s ease;\n    }\n    \n    body.dark .chart-container {\n      background: #161b22;\n      border: 1px solid #30363d;\n    }\n    \n    body.light .chart-container {\n      background: #ffffff;\n      border: 1px solid #e5e7eb;\n    }\n    \n    .uplot {\n      margin: 0 auto;\n    }\n    \n    body.dark .uplot .u-legend {\n      background: #0d1117;\n      border: 1px solid #30363d;\n      border-radius: 6px;\n      padding: 12px;\n      font-size: 13px;\n    }\n    \n    body.light .uplot .u-legend {\n      background: #f9fafb;\n      border: 1px solid #e5e7eb;\n      border-radius: 6px;\n      padding: 12px;\n      font-size: 13px;\n    }\n    \n    .uplot .u-legend .u-series {\n      cursor: pointer;\n      padding: 4px 8px;\n      border-radius: 4px;\n      transition: background 0.15s ease;\n    }\n    \n    .uplot .u-legend .u-value {\n      font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', monospace;\n      font-size: 12px;\n      min-width: 80px;\n      display: inline-block;\n      text-align: right;\n    }\n    \n    .uplot .u-axis text {\n      font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', monospace;\n    }\n    \n    \n    body.dark .uplot .u-legend .u-series:hover {\n      background: #161b22;\n    }\n    \n    body.light .uplot .u-legend .u-series:hover {\n      background: #f3f4f6;\n    }\n    \n    .uplot .u-legend .u-series.u-off {\n      opacity: 0.4;\n    }\n    \n    .uplot .u-cursor-pt {\n      background: #1f6feb;\n      border: 2px solid #fff;\n      border-radius: 50%;\n    }\n    \n    body.dark .uplot .u-hz .u-cursor-x,\n    body.dark .uplot .u-vt .u-cursor-y {\n      border-color: #3d444d;\n    }\n    \n    body.light .uplot .u-hz .u-cursor-x,\n    body.light .uplot .u-vt .u-cursor-y {\n      border-color: #d1d5db;\n    }\n    \n    body.dark .uplot .u-select {\n      background: rgba(31, 111, 235, 0.1);\n      border: 1px solid #1f6feb;\n    }\n    \n    body.light .uplot .u-select {\n      background: rgba(37, 99, 235, 0.1);\n      border: 1px solid #2563eb;\n    }\n    \n    body.dark .uplot .u-axis {\n      color: #8b949e;\n    }\n    \n    body.light .uplot .u-axis {\n      color: #6b7280;\n    }\n    \n    body.dark .uplot .u-grid {\n      stroke: #30363d;\n    }\n    \n    body.light .uplot .u-grid {\n      stroke: #e5e7eb;\n    }\n    \n    @media (max-width: 768px) {\n      body {\n        padding: 12px;\n      }\n      \n      .header {\n        flex-direction: column;\n        align-items: flex-start;\n      }\n      \n      h1 {\n        font-size: 20px;\n      }\n      \n      .controls {\n        width: 100%;\n        justify-content: flex-start;\n      }\n      \n      .chart-container {\n        padding: 12px;\n      }\n    }\n  </style>\n</head>\n<body class=\"dark\">\n  <div class=\"container\">\n    <div class=\"header\">\n      <h1>TestPlot</h1>\n      <div class=\"controls\">\n        <button id=\"toggleTheme\" class=\"btn\">☀️ Light</button>\n        <button id=\"resetZoom\" class=\"btn\">Reset Zoom</button>\n        <button id=\"toggleLogScale\" class=\"btn active\">Log Scale</button>\n        <button id=\"exportPNG\" class=\"btn\">Export PNG</button>\n      </div>\n    </div>\n    \n    <div class=\"chart-container\">\n      <div id=\"plot\"></div>\n    </div>\n  </div>\n\n  <script>/*! https://github.com/leeoniya/uPlot (v1.6.32) */\nvar uPlot=function(){\"use strict\";const l=\"u-off\",e=\"u-label\",t=\"width\",n=\"height\",i=\"top\",o=\"bottom\",s=\"left\",r=\"right\",u=\"#000\",a=u+\"0\",f=\"mousemove\",c=\"mousedown\",h=\"mouseup\",d=\"mouseenter\",p=\"mouseleave\",m=\"dblclick\",g=\"change\",x=\"dppxchange\",w=\"--\",_=\"undefined\"!=typeof window,b=_?document:null,v=_?window:null,k=_?navigator:null;let y,M;function S(l,e){if(null!=e){let t=l.classList;!t.contains(e)&&t.add(e)}}function T(l,e){let t=l.classList;t.contains(e)&&t.remove(e)}function E(l,e,t){l.style[e]=t+\"px\"}function z(l,e,t,n){let i=b.createElement(l);return null!=e&&S(i,e),null!=t&&t.insertBefore(i,n),i}function D(l,e){return z(\"div\",l,e)}const P=new WeakMap;function A(e,t,n,i,o){let s=\"translate(\"+t+\"px,\"+n+\"px)\";s!=P.get(e)&&(e.style.transform=s,P.set(e,s),0>t||0>n||t>i||n>o?S(e,l):T(e,l))}const W=new WeakMap;function Y(l,e,t){let n=e+t;n!=W.get(l)&&(W.set(l,n),l.style.background=e,l.style.borderColor=t)}const C=new WeakMap;function H(l,e,t,n){let i=e+\"\"+t;i!=C.get(l)&&(C.set(l,i),l.style.height=t+\"px\",l.style.width=e+\"px\",l.style.marginLeft=n?-e/2+\"px\":0,l.style.marginTop=n?-t/2+\"px\":0)}const F={passive:!0},R={...F,capture:!0};function G(l,e,t,n){e.addEventListener(l,t,n?R:F)}function I(l,e,t){e.removeEventListener(l,t,F)}function L(l,e,t,n){let i;t=t||0;let o=2147483647>=(n=n||e.length-1);for(;n-t>1;)i=o?t+n>>1:sl((t+n)/2),l>e[i]?t=i:n=i;return l-e[t]>e[n]-l?n:t}function O(l){return(e,t,n)=>{let i=-1,o=-1;for(let o=t;n>=o;o++)if(l(e[o])){i=o;break}for(let i=n;i>=t;i--)if(l(e[i])){o=i;break}return[i,o]}}_&&function l(){let e=devicePixelRatio;y!=e&&(y=e,M&&I(g,M,l),M=matchMedia(`(min-resolution: ${y-.001}dppx) and (max-resolution: ${y+.001}dppx)`),G(g,M,l),v.dispatchEvent(new CustomEvent(x)))}();const N=l=>null!=l,j=l=>null!=l&&l>0,U=O(N),V=O(j);function B(l,e,t,n){let i=hl(l),o=hl(e);l==e&&(-1==i?(l*=t,e/=t):(l/=t,e*=t));let s=10==t?dl:pl,r=1==o?ul:sl,u=(1==i?sl:ul)(s(ol(l))),a=r(s(ol(e))),f=cl(t,u),c=cl(t,a);return 10==t&&(0>u&&(f=Al(f,-u)),0>a&&(c=Al(c,-a))),n||2==t?(l=f*i,e=c*o):(l=Pl(l,f),e=Dl(e,c)),[l,e]}function $(l,e,t,n){let i=B(l,e,t,n);return 0==l&&(i[0]=0),0==e&&(i[1]=0),i}const J=.1,q={mode:3,pad:J},K={pad:0,soft:null,mode:0},X={min:K,max:K};function Z(l,e,t,n){return Ol(t)?ll(l,e,t):(K.pad=t,K.soft=n?0:null,K.mode=n?3:0,ll(l,e,X))}function Q(l,e){return null==l?e:l}function ll(l,e,t){let n=t.min,i=t.max,o=Q(n.pad,0),s=Q(i.pad,0),r=Q(n.hard,-gl),u=Q(i.hard,gl),a=Q(n.soft,gl),f=Q(i.soft,-gl),c=Q(n.mode,0),h=Q(i.mode,0),d=e-l,p=dl(d),m=fl(ol(l),ol(e)),g=dl(m),x=ol(g-p);(1e-24>d||x>10)&&(d=0,0!=l&&0!=e||(d=1e-24,2==c&&a!=gl&&(o=0),2==h&&f!=-gl&&(s=0)));let w=d||m||1e3,_=dl(w),b=cl(10,sl(_)),v=Al(Pl(l-w*(0==d?0==l?.1:1:o),b/10),24),k=a>l||1!=c&&(3!=c||v>a)&&(2!=c||a>v)?gl:a,y=fl(r,k>v&&l>=k?k:al(k,v)),M=Al(Dl(e+w*(0==d?0==e?.1:1:s),b/10),24),S=e>f||1!=h&&(3!=h||f>M)&&(2!=h||M>f)?-gl:f,T=al(u,M>S&&S>=e?S:fl(S,M));return y==T&&0==y&&(T=100),[y,T]}const el=new Intl.NumberFormat(_?k.language:\"en-US\"),tl=l=>el.format(l),nl=Math,il=nl.PI,ol=nl.abs,sl=nl.floor,rl=nl.round,ul=nl.ceil,al=nl.min,fl=nl.max,cl=nl.pow,hl=nl.sign,dl=nl.log10,pl=nl.log2,ml=(l,e=1)=>nl.asinh(l/e),gl=1/0;function xl(l){return 1+(0|dl((l^l>>31)-(l>>31)))}function wl(l,e,t){return al(fl(l,e),t)}function _l(l){return\"function\"==typeof l}function bl(l){return _l(l)?l:()=>l}const vl=l=>l,kl=(l,e)=>e,yl=()=>null,Ml=()=>!0,Sl=(l,e)=>l==e,Tl=/\\.\\d*?(?=9{6,}|0{6,})/gm,El=l=>{if(Il(l)||Wl.has(l))return l;const e=\"\"+l,t=e.match(Tl);if(null==t)return l;let n=t[0].length-1;if(-1!=e.indexOf(\"e-\")){let[l,t]=e.split(\"e\");return+`${El(l)}e${t}`}return Al(l,n)};function zl(l,e){return El(Al(El(l/e))*e)}function Dl(l,e){return El(ul(El(l/e))*e)}function Pl(l,e){return El(sl(El(l/e))*e)}function Al(l,e=0){if(Il(l))return l;let t=10**e;return rl(l*t*(1+Number.EPSILON))/t}const Wl=new Map;function Yl(l){return((\"\"+l).split(\".\")[1]||\"\").length}function Cl(l,e,t,n){let i=[],o=n.map(Yl);for(let s=e;t>s;s++){let e=ol(s),t=Al(cl(l,s),e);for(let r=0;n.length>r;r++){let u=10==l?+`${n[r]}e${s}`:n[r]*t,a=(0>s?e:0)+(o[r]>s?o[r]:0),f=10==l?u:Al(u,a);i.push(f),Wl.set(f,a)}}return i}const Hl={},Fl=[],Rl=[null,null],Gl=Array.isArray,Il=Number.isInteger;function Ll(l){return\"string\"==typeof l}function Ol(l){let e=!1;if(null!=l){let t=l.constructor;e=null==t||t==Object}return e}function Nl(l){return null!=l&&\"object\"==typeof l}const jl=Object.getPrototypeOf(Uint8Array),Ul=\"__proto__\";function Vl(l,e=Ol){let t;if(Gl(l)){let n=l.find((l=>null!=l));if(Gl(n)||e(n)){t=Array(l.length);for(let n=0;l.length>n;n++)t[n]=Vl(l[n],e)}else t=l.slice()}else if(l instanceof jl)t=l.slice();else if(e(l)){t={};for(let n in l)n!=Ul&&(t[n]=Vl(l[n],e))}else t=l;return t}function Bl(l){let e=arguments;for(let t=1;e.length>t;t++){let n=e[t];for(let e in n)e!=Ul&&(Ol(l[e])?Bl(l[e],Vl(n[e])):l[e]=Vl(n[e]))}return l}function $l(l,e,t){for(let n,i=0,o=-1;e.length>i;i++){let s=e[i];if(s>o){for(n=s-1;n>=0&&null==l[n];)l[n--]=null;for(n=s+1;t>n&&null==l[n];)l[o=n++]=null}}}const Jl=\"undefined\"==typeof queueMicrotask?l=>Promise.resolve().then(l):queueMicrotask,ql=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],Kl=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"];function Xl(l){return l.slice(0,3)}const Zl=Kl.map(Xl),Ql=ql.map(Xl),le={MMMM:ql,MMM:Ql,WWWW:Kl,WWW:Zl};function ee(l){return(10>l?\"0\":\"\")+l}const te={YYYY:l=>l.getFullYear(),YY:l=>(l.getFullYear()+\"\").slice(2),MMMM:(l,e)=>e.MMMM[l.getMonth()],MMM:(l,e)=>e.MMM[l.getMonth()],MM:l=>ee(l.getMonth()+1),M:l=>l.getMonth()+1,DD:l=>ee(l.getDate()),D:l=>l.getDate(),WWWW:(l,e)=>e.WWWW[l.getDay()],WWW:(l,e)=>e.WWW[l.getDay()],HH:l=>ee(l.getHours()),H:l=>l.getHours(),h:l=>{let e=l.getHours();return 0==e?12:e>12?e-12:e},AA:l=>12>l.getHours()?\"AM\":\"PM\",aa:l=>12>l.getHours()?\"am\":\"pm\",a:l=>12>l.getHours()?\"a\":\"p\",mm:l=>ee(l.getMinutes()),m:l=>l.getMinutes(),ss:l=>ee(l.getSeconds()),s:l=>l.getSeconds(),fff:l=>function(l){return(10>l?\"00\":100>l?\"0\":\"\")+l}(l.getMilliseconds())};function ne(l,e){e=e||le;let t,n=[],i=/\\{([a-z]+)\\}|[^{]+/gi;for(;t=i.exec(l);)n.push(\"{\"==t[0][0]?te[t[1]]:t[0]);return l=>{let t=\"\";for(let i=0;n.length>i;i++)t+=\"string\"==typeof n[i]?n[i]:n[i](l,e);return t}}const ie=(new Intl.DateTimeFormat).resolvedOptions().timeZone,oe=l=>l%1==0,se=[1,2,2.5,5],re=Cl(10,-32,0,se),ue=Cl(10,0,32,se),ae=ue.filter(oe),fe=re.concat(ue),ce=\"{YYYY}\",he=\"\\n\"+ce,de=\"{M}/{D}\",pe=\"\\n\"+de,me=pe+\"/{YY}\",ge=\"{aa}\",xe=\"{h}:{mm}\"+ge,we=\"\\n\"+xe,_e=\":{ss}\",be=null;function ve(l){let e=1e3*l,t=60*e,n=60*t,i=24*n,o=30*i,s=365*i;return[(1==l?Cl(10,0,3,se).filter(oe):Cl(10,-3,0,se)).concat([e,5*e,10*e,15*e,30*e,t,5*t,10*t,15*t,30*t,n,2*n,3*n,4*n,6*n,8*n,12*n,i,2*i,3*i,4*i,5*i,6*i,7*i,8*i,9*i,10*i,15*i,o,2*o,3*o,4*o,6*o,s,2*s,5*s,10*s,25*s,50*s,100*s]),[[s,ce,be,be,be,be,be,be,1],[28*i,\"{MMM}\",he,be,be,be,be,be,1],[i,de,he,be,be,be,be,be,1],[n,\"{h}\"+ge,me,be,pe,be,be,be,1],[t,xe,me,be,pe,be,be,be,1],[e,_e,me+\" \"+xe,be,pe+\" \"+xe,be,we,be,1],[l,_e+\".{fff}\",me+\" \"+xe,be,pe+\" \"+xe,be,we,be,1]],function(e){return(r,u,a,f,c,h)=>{let d=[],p=c>=s,m=c>=o&&s>c,g=e(a),x=Al(g*l,3),w=Pe(g.getFullYear(),p?0:g.getMonth(),m||p?1:g.getDate()),_=Al(w*l,3);if(m||p){let t=m?c/o:0,n=p?c/s:0,i=x==_?x:Al(Pe(w.getFullYear()+n,w.getMonth()+t,1)*l,3),r=new Date(rl(i/l)),u=r.getFullYear(),a=r.getMonth();for(let o=0;f>=i;o++){let s=Pe(u+n*o,a+t*o,1),r=s-e(Al(s*l,3));i=Al((+s+r)*l,3),i>f||d.push(i)}}else{let o=i>c?c:i,s=_+(sl(a)-sl(x))+Dl(x-_,o);d.push(s);let p=e(s),m=p.getHours()+p.getMinutes()/t+p.getSeconds()/n,g=c/n,w=h/r.axes[u]._space;for(;s=Al(s+c,1==l?0:3),f>=s;)if(g>1){let l=sl(Al(m+g,6))%24,t=e(s).getHours()-l;t>1&&(t=-1),s-=t*n,m=(m+g)%24,.7>Al((s-d[d.length-1])/c,3)*w||d.push(s)}else d.push(s)}return d}}]}const[ke,ye,Me]=ve(1),[Se,Te,Ee]=ve(.001);function ze(l,e){return l.map((l=>l.map(((t,n)=>0==n||8==n||null==t?t:e(1==n||0==l[8]?t:l[1]+t)))))}function De(l,e){return(t,n,i,o,s)=>{let r,u,a,f,c,h,d=e.find((l=>s>=l[0]))||e[e.length-1];return n.map((e=>{let t=l(e),n=t.getFullYear(),i=t.getMonth(),o=t.getDate(),s=t.getHours(),p=t.getMinutes(),m=t.getSeconds(),g=n!=r&&d[2]||i!=u&&d[3]||o!=a&&d[4]||s!=f&&d[5]||p!=c&&d[6]||m!=h&&d[7]||d[1];return r=n,u=i,a=o,f=s,c=p,h=m,g(t)}))}}function Pe(l,e,t){return new Date(l,e,t)}function Ae(l,e){return e(l)}function We(l,e){return(t,n,i,o)=>null==o?w:e(l(n))}Cl(2,-53,53,[1]);const Ye={show:!0,live:!0,isolate:!1,mount:()=>{},markers:{show:!0,width:2,stroke:function(l,e){let t=l.series[e];return t.width?t.stroke(l,e):t.points.width?t.points.stroke(l,e):null},fill:function(l,e){return l.series[e].fill(l,e)},dash:\"solid\"},idx:null,idxs:null,values:[]},Ce=[0,0];function He(l,e,t,n=!0){return l=>{0==l.button&&(!n||l.target==e)&&t(l)}}function Fe(l,e,t,n=!0){return l=>{(!n||l.target==e)&&t(l)}}const Re={show:!0,x:!0,y:!0,lock:!1,move:function(l,e,t){return Ce[0]=e,Ce[1]=t,Ce},points:{one:!1,show:function(l,e){let i=l.cursor.points,o=D(),s=i.size(l,e);E(o,t,s),E(o,n,s);let r=s/-2;E(o,\"marginLeft\",r),E(o,\"marginTop\",r);let u=i.width(l,e,s);return u&&E(o,\"borderWidth\",u),o},size:function(l,e){return l.series[e].points.size},width:0,stroke:function(l,e){let t=l.series[e].points;return t._stroke||t._fill},fill:function(l,e){let t=l.series[e].points;return t._fill||t._stroke}},bind:{mousedown:He,mouseup:He,click:He,dblclick:He,mousemove:Fe,mouseleave:Fe,mouseenter:Fe},drag:{setScale:!0,x:!0,y:!1,dist:0,uni:null,click:(l,e)=>{e.stopPropagation(),e.stopImmediatePropagation()},_x:!1,_y:!1},focus:{dist:(l,e,t,n,i)=>n-i,prox:-1,bias:0},hover:{skip:[void 0],prox:null,bias:0},left:-10,top:-10,idx:null,dataIdx:null,idxs:null,event:null},Ge={show:!0,stroke:\"rgba(0,0,0,0.07)\",width:2},Ie=Bl({},Ge,{filter:kl}),Le=Bl({},Ie,{size:10}),Oe=Bl({},Ge,{show:!1}),Ne='12px system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"',je=\"bold \"+Ne,Ue={show:!0,scale:\"x\",stroke:u,space:50,gap:5,alignTo:1,size:50,labelGap:0,labelSize:30,labelFont:je,side:2,grid:Ie,ticks:Le,border:Oe,font:Ne,lineGap:1.5,rotate:0},Ve={show:!0,scale:\"x\",auto:!1,sorted:1,min:gl,max:-gl,idxs:[]};function Be(l,e){return e.map((l=>null==l?\"\":tl(l)))}function $e(l,e,t,n,i,o,s){let r=[],u=Wl.get(i)||0;for(let l=t=s?t:Al(Dl(t,i),u);n>=l;l=Al(l+i,u))r.push(Object.is(l,-0)?0:l);return r}function Je(l,e,t,n,i){const o=[],s=l.scales[l.axes[e].scale].log,r=sl((10==s?dl:pl)(t));i=cl(s,r),10==s&&(i=fe[L(i,fe)]);let u=t,a=i*s;10==s&&(a=fe[L(a,fe)]);do{o.push(u),u+=i,10!=s||Wl.has(u)||(u=Al(u,Wl.get(i))),a>u||(a=(i=u)*s,10==s&&(a=fe[L(a,fe)]))}while(n>=u);return o}function qe(l,e,t,n,i){let o=l.scales[l.axes[e].scale].asinh,s=n>o?Je(l,e,fl(o,t),n,i):[o],r=0>n||t>0?[]:[0];return(-o>t?Je(l,e,fl(o,-n),-t,i):[o]).reverse().map((l=>-l)).concat(r,s)}const Ke=/./,Xe=/[12357]/,Ze=/[125]/,Qe=/1/,lt=(l,e,t,n)=>l.map(((l,i)=>4==e&&0==l||i%n==0&&t.test(l.toExponential()[0>l?1:0])?l:null));function et(l,e,t){let n=l.axes[t],i=n.scale,o=l.scales[i],s=l.valToPos,r=n._space,u=s(10,i),a=s(9,i)-u<r?s(7,i)-u<r?s(5,i)-u<r?Qe:Ze:Xe:Ke;if(a==Qe){let l=ol(s(1,i)-u);if(r>l)return lt(e.slice().reverse(),o.distr,a,ul(r/l)).reverse()}return lt(e,o.distr,a,1)}function tt(l,e,t){let n=l.axes[t],i=n.scale,o=n._space,s=l.valToPos,r=ol(s(1,i)-s(2,i));return o>r?lt(e.slice().reverse(),3,Ke,ul(o/r)).reverse():e}function nt(l,e,t,n){return null==n?w:null==e?\"\":tl(e)}const it={show:!0,scale:\"y\",stroke:u,space:30,gap:5,alignTo:1,size:50,labelGap:0,labelSize:30,labelFont:je,side:3,grid:Ie,ticks:Le,border:Oe,font:Ne,lineGap:1.5,rotate:0},ot={scale:null,auto:!0,sorted:0,min:gl,max:-gl},st=(l,e,t,n,i)=>i,rt={show:!0,auto:!0,sorted:0,gaps:st,alpha:1,facets:[Bl({},ot,{scale:\"x\"}),Bl({},ot,{scale:\"y\"})]},ut={scale:\"y\",auto:!0,sorted:0,show:!0,spanGaps:!1,gaps:st,alpha:1,points:{show:function(l,e){let{scale:t,idxs:n}=l.series[0],i=l._data[0],o=l.valToPos(i[n[0]],t,!0),s=l.valToPos(i[n[1]],t,!0);return ol(s-o)/(l.series[e].points.space*y)>=n[1]-n[0]},filter:null},values:null,min:gl,max:-gl,idxs:[],path:null,clip:null};function at(l,e,t){return t/10}const ft={time:!0,auto:!0,distr:1,log:10,asinh:1,min:null,max:null,dir:1,ori:0},ct=Bl({},ft,{time:!1,ori:1}),ht={};function dt(l){let e=ht[l];return e||(e={key:l,plots:[],sub(l){e.plots.push(l)},unsub(l){e.plots=e.plots.filter((e=>e!=l))},pub(l,t,n,i,o,s,r){for(let u=0;e.plots.length>u;u++)e.plots[u]!=t&&e.plots[u].pub(l,t,n,i,o,s,r)}},null!=l&&(ht[l]=e)),e}function pt(l,e,t){const n=l.mode,i=l.series[e],o=2==n?l._data[e]:l._data,s=l.scales,r=l.bbox;let u=o[0],a=2==n?o[1]:o[e],f=2==n?s[i.facets[0].scale]:s[l.series[0].scale],c=2==n?s[i.facets[1].scale]:s[i.scale],h=r.left,d=r.top,p=r.width,m=r.height,g=l.valToPosH,x=l.valToPosV;return 0==f.ori?t(i,u,a,f,c,g,x,h,d,p,m,kt,Mt,Tt,zt,Pt):t(i,u,a,f,c,x,g,d,h,m,p,yt,St,Et,Dt,At)}function mt(l,e){let t=0,n=0,i=Q(l.bands,Fl);for(let l=0;i.length>l;l++){let o=i[l];o.series[0]==e?t=o.dir:o.series[1]==e&&(n|=1==o.dir?1:2)}return[t,1==n?-1:2==n?1:3==n?2:0]}function gt(l,e,t,n,i){let o=l.series[e],s=l.scales[2==l.mode?o.facets[1].scale:o.scale];return-1==i?s.min:1==i?s.max:3==s.distr?1==s.dir?s.min:s.max:0}function xt(l,e,t,n,i,o){return pt(l,e,((l,e,s,r,u,a,f,c,h,d,p)=>{let m=l.pxRound;const g=0==r.ori?Mt:St;let x,w;1==r.dir*(0==r.ori?1:-1)?(x=t,w=n):(x=n,w=t);let _=m(a(e[x],r,d,c)),b=m(f(s[x],u,p,h)),v=m(a(e[w],r,d,c)),k=m(f(1==o?u.max:u.min,u,p,h)),y=new Path2D(i);return g(y,v,k),g(y,_,k),g(y,_,b),y}))}function wt(l,e,t,n,i,o){let s=null;if(l.length>0){s=new Path2D;const r=0==e?Tt:Et;let u=t;for(let e=0;l.length>e;e++){let t=l[e];if(t[1]>t[0]){let l=t[0]-u;l>0&&r(s,u,n,l,n+o),u=t[1]}}let a=t+i-u,f=10;a>0&&r(s,u,n-f/2,a,n+o+f)}return s}function _t(l,e,t,n,i,o,s){let r=[],u=l.length;for(let a=1==i?t:n;a>=t&&n>=a;a+=i)if(null===e[a]){let f=a,c=a;if(1==i)for(;++a<=n&&null===e[a];)c=a;else for(;--a>=t&&null===e[a];)c=a;let h=o(l[f]),d=c==f?h:o(l[c]),p=f-i;h=s>0||0>p||p>=u?h:o(l[p]);let m=c+i;d=0>s||0>m||m>=u?d:o(l[m]),h>d||r.push([h,d])}return r}function bt(l){return 0==l?vl:1==l?rl:e=>zl(e,l)}function vt(l){let e=0==l?kt:yt,t=0==l?(l,e,t,n,i,o)=>{l.arcTo(e,t,n,i,o)}:(l,e,t,n,i,o)=>{l.arcTo(t,e,i,n,o)},n=0==l?(l,e,t,n,i)=>{l.rect(e,t,n,i)}:(l,e,t,n,i)=>{l.rect(t,e,i,n)};return(l,i,o,s,r,u=0,a=0)=>{0==u&&0==a?n(l,i,o,s,r):(u=al(u,s/2,r/2),a=al(a,s/2,r/2),e(l,i+u,o),t(l,i+s,o,i+s,o+r,u),t(l,i+s,o+r,i,o+r,a),t(l,i,o+r,i,o,a),t(l,i,o,i+s,o,u),l.closePath())}}const kt=(l,e,t)=>{l.moveTo(e,t)},yt=(l,e,t)=>{l.moveTo(t,e)},Mt=(l,e,t)=>{l.lineTo(e,t)},St=(l,e,t)=>{l.lineTo(t,e)},Tt=vt(0),Et=vt(1),zt=(l,e,t,n,i,o)=>{l.arc(e,t,n,i,o)},Dt=(l,e,t,n,i,o)=>{l.arc(t,e,n,i,o)},Pt=(l,e,t,n,i,o,s)=>{l.bezierCurveTo(e,t,n,i,o,s)},At=(l,e,t,n,i,o,s)=>{l.bezierCurveTo(t,e,i,n,s,o)};function Wt(){return(l,e,t,n,i)=>pt(l,e,((e,o,s,r,u,a,f,c,h,d,p)=>{let m,g,{pxRound:x,points:w}=e;0==r.ori?(m=kt,g=zt):(m=yt,g=Dt);const _=Al(w.width*y,3);let b=(w.size-w.width)/2*y,v=Al(2*b,3),k=new Path2D,M=new Path2D,{left:S,top:T,width:E,height:z}=l.bbox;Tt(M,S-v,T-v,E+2*v,z+2*v);const D=l=>{if(null!=s[l]){let e=x(a(o[l],r,d,c)),t=x(f(s[l],u,p,h));m(k,e+b,t),g(k,e,t,b,0,2*il)}};if(i)i.forEach(D);else for(let l=t;n>=l;l++)D(l);return{stroke:_>0?k:null,fill:k,clip:M,flags:3}}))}function Yt(l){return(e,t,n,i,o,s)=>{n!=i&&(o!=n&&s!=n&&l(e,t,n),o!=i&&s!=i&&l(e,t,i),l(e,t,s))}}const Ct=Yt(Mt),Ht=Yt(St);function Ft(l){const e=Q(l?.alignGaps,0);return(l,t,n,i)=>pt(l,t,((o,s,r,u,a,f,c,h,d,p,m)=>{[n,i]=U(r,n,i);let g,x,w=o.pxRound,_=l=>w(f(l,u,p,h)),b=l=>w(c(l,a,m,d));0==u.ori?(g=Mt,x=Ct):(g=St,x=Ht);const v=u.dir*(0==u.ori?1:-1),k={stroke:new Path2D,fill:null,clip:null,band:null,gaps:null,flags:1},y=k.stroke;let M=!1;if(i-n<4*p)for(let l=1==v?n:i;l>=n&&i>=l;l+=v){let e=r[l];null===e?M=!0:null!=e&&g(y,_(s[l]),b(e))}else{let e,t,o,a=e=>l.posToVal(e,u.key,!0),f=null,c=null,h=_(s[1==v?n:i]),d=_(s[n]),p=_(s[i]),m=a(1==v?d+1:p-1);for(let l=1==v?n:i;l>=n&&i>=l;l+=v){let n=s[l],i=(1==v?m>n:n>m)?h:_(n),o=r[l];i==h?null!=o?(t=o,null==f?(g(y,i,b(t)),e=f=c=t):f>t?f=t:t>c&&(c=t)):null===o&&(M=!0):(null!=f&&x(y,h,b(f),b(c),b(e),b(t)),null!=o?(t=o,g(y,i,b(t)),f=c=e=t):(f=c=null,null===o&&(M=!0)),h=i,m=a(h+v))}null!=f&&f!=c&&o!=h&&x(y,h,b(f),b(c),b(e),b(t))}let[S,T]=mt(l,t);if(null!=o.fill||0!=S){let e=k.fill=new Path2D(y),r=b(o.fillTo(l,t,o.min,o.max,S)),u=_(s[n]),a=_(s[i]);-1==v&&([a,u]=[u,a]),g(e,a,r),g(e,u,r)}if(!o.spanGaps){let a=[];M&&a.push(..._t(s,r,n,i,v,_,e)),k.gaps=a=o.gaps(l,t,n,i,a),k.clip=wt(a,u.ori,h,d,p,m)}return 0!=T&&(k.band=2==T?[xt(l,t,n,i,y,-1),xt(l,t,n,i,y,1)]:xt(l,t,n,i,y,T)),k}))}function Rt(l,e,t,n,i,o,s=gl){if(l.length>1){let r=null;for(let u=0,a=1/0;l.length>u;u++)if(void 0!==e[u]){if(null!=r){let e=ol(l[u]-l[r]);a>e&&(a=e,s=ol(t(l[u],n,i,o)-t(l[r],n,i,o)))}r=u}}return s}function Gt(l,e,t,n,i){const o=l.length;if(2>o)return null;const s=new Path2D;if(t(s,l[0],e[0]),2==o)n(s,l[1],e[1]);else{let t=Array(o),n=Array(o-1),r=Array(o-1),u=Array(o-1);for(let t=0;o-1>t;t++)r[t]=e[t+1]-e[t],u[t]=l[t+1]-l[t],n[t]=r[t]/u[t];t[0]=n[0];for(let l=1;o-1>l;l++)0===n[l]||0===n[l-1]||n[l-1]>0!=n[l]>0?t[l]=0:(t[l]=3*(u[l-1]+u[l])/((2*u[l]+u[l-1])/n[l-1]+(u[l]+2*u[l-1])/n[l]),isFinite(t[l])||(t[l]=0));t[o-1]=n[o-2];for(let n=0;o-1>n;n++)i(s,l[n]+u[n]/3,e[n]+t[n]*u[n]/3,l[n+1]-u[n]/3,e[n+1]-t[n+1]*u[n]/3,l[n+1],e[n+1])}return s}const It=new Set;function Lt(){for(let l of It)l.syncRect(!0)}_&&(G(\"resize\",v,Lt),G(\"scroll\",v,Lt,!0),G(x,v,(()=>{en.pxRatio=y})));const Ot=Ft(),Nt=Wt();function jt(l,e,t,n){return(n?[l[0],l[1]].concat(l.slice(2)):[l[0]].concat(l.slice(1))).map(((l,n)=>Ut(l,n,e,t)))}function Ut(l,e,t,n){return Bl({},0==e?t:n,l)}function Vt(l,e,t){return null==e?Rl:[e,t]}const Bt=Vt;function $t(l,e,t){return null==e?Rl:Z(e,t,J,!0)}function Jt(l,e,t,n){return null==e?Rl:B(e,t,l.scales[n].log,!1)}const qt=Jt;function Kt(l,e,t,n){return null==e?Rl:$(e,t,l.scales[n].log,!1)}const Xt=Kt;function Zt(l,e,t,n,i){let o=fl(xl(l),xl(e)),s=e-l,r=L(i/n*s,t);do{let l=t[r],e=n*l/s;if(e>=i&&17>=o+(5>l?Wl.get(l):0))return[l,e]}while(++r<t.length);return[0,0]}function Qt(l){let e,t;return[l=l.replace(/(\\d+)px/,((l,n)=>(e=rl((t=+n)*y))+\"px\")),e,t]}function ln(l){l.show&&[l.font,l.labelFont].forEach((l=>{let e=Al(l[2]*y,1);l[0]=l[0].replace(/[0-9.]+px/,e+\"px\"),l[1]=e}))}function en(u,g,_){const k={mode:Q(u.mode,1)},M=k.mode;function P(l,e,t,n){let i=e.valToPct(l);return n+t*(-1==e.dir?1-i:i)}function W(l,e,t,n){let i=e.valToPct(l);return n+t*(-1==e.dir?i:1-i)}function C(l,e,t,n){return 0==e.ori?P(l,e,t,n):W(l,e,t,n)}k.valToPosH=P,k.valToPosV=W;let F=!1;k.status=0;const R=k.root=D(\"uplot\");null!=u.id&&(R.id=u.id),S(R,u.class),u.title&&(D(\"u-title\",R).textContent=u.title);const O=z(\"canvas\"),K=k.ctx=O.getContext(\"2d\"),X=D(\"u-wrap\",R);G(\"click\",X,(l=>{l.target===el&&(Nn!=Gn||jn!=In)&&Zn.click(k,l)}),!0);const ll=k.under=D(\"u-under\",X);X.appendChild(O);const el=k.over=D(\"u-over\",X),tl=+Q((u=Vl(u)).pxAlign,1),sl=bt(tl);(u.plugins||[]).forEach((l=>{l.opts&&(u=l.opts(k,u)||u)}));const hl=u.ms||.001,pl=k.series=1==M?jt(u.series||[],Ve,ut,!1):function(l,e){return l.map(((l,t)=>0==t?{}:Bl({},e,l)))}(u.series||[null],rt),xl=k.axes=jt(u.axes||[],Ue,it,!0),vl=k.scales={},Tl=k.bands=u.bands||[];Tl.forEach((l=>{l.fill=bl(l.fill||null),l.dir=Q(l.dir,-1)}));const El=2==M?pl[1].facets[0].scale:pl[0].scale,Dl={axes:function(){for(let l=0;xl.length>l;l++){let e=xl[l];if(!e.show||!e._show)continue;let t,n,u=e.side,a=u%2,f=e.stroke(k,l),c=0==u||3==u?-1:1,[h,d]=e._found;if(null!=e.label){let s=rl((e._lpos+e.labelGap*c)*y);_n(e.labelFont[0],f,\"center\",2==u?i:o),K.save(),1==a?(t=n=0,K.translate(s,rl(lt+st/2)),K.rotate((3==u?-il:il)/2)):(t=rl(Qe+ot/2),n=s);let r=_l(e.label)?e.label(k,l,h,d):e.label;K.fillText(r,t,n),K.restore()}if(0==d)continue;let p=vl[e.scale],m=0==a?ot:st,g=0==a?Qe:lt,x=e._splits,w=2==p.distr?x.map((l=>pn[l])):x,_=2==p.distr?pn[x[1]]-pn[x[0]]:h,b=e.ticks,v=e.border,M=b.show?b.size:0,S=rl(M*y),T=rl((2==e.alignTo?e._size-M-e.gap:e.gap)*y),E=e._rotate*-il/180,z=sl(e._pos*y),D=z+(S+T)*c;n=0==a?D:0,t=1==a?D:0,_n(e.font[0],f,1==e.align?s:2==e.align?r:E>0?s:0>E?r:0==a?\"center\":3==u?r:s,E||1==a?\"middle\":2==u?i:o);let P=e.font[1]*e.lineGap,A=x.map((l=>sl(C(l,p,m,g)))),W=e._values;for(let l=0;W.length>l;l++){let e=W[l];if(null!=e){0==a?t=A[l]:n=A[l],e=\"\"+e;let i=-1==e.indexOf(\"\\n\")?[e]:e.split(/\\n/gm);for(let l=0;i.length>l;l++){let e=i[l];E?(K.save(),K.translate(t,n+l*P),K.rotate(E),K.fillText(e,0,0),K.restore()):K.fillText(e,t,n+l*P)}}}b.show&&zn(A,b.filter(k,w,l,d,_),a,u,z,S,Al(b.width*y,3),b.stroke(k,l),b.dash,b.cap);let Y=e.grid;Y.show&&zn(A,Y.filter(k,w,l,d,_),a,0==a?2:1,0==a?lt:Qe,0==a?st:ot,Al(Y.width*y,3),Y.stroke(k,l),Y.dash,Y.cap),v.show&&zn([z],[1],0==a?1:0,0==a?1:2,1==a?lt:Qe,1==a?st:ot,Al(v.width*y,3),v.stroke(k,l),v.dash,v.cap)}Ci(\"drawAxes\")},series:function(){if(Gt>0){let l=pl.some((l=>l._focus))&&dn!=Tt.alpha;l&&(K.globalAlpha=dn=Tt.alpha),pl.forEach(((l,e)=>{if(e>0&&l.show&&(kn(e,!1),kn(e,!0),null==l._paths)){let t=dn;dn!=l.alpha&&(K.globalAlpha=dn=l.alpha);let n=2==M?[0,g[e][0].length-1]:function(l){let e=wl(Lt-1,0,Gt-1),t=wl(en+1,0,Gt-1);for(;null==l[e]&&e>0;)e--;for(;null==l[t]&&Gt-1>t;)t++;return[e,t]}(g[e]);l._paths=l.paths(k,e,n[0],n[1]),dn!=t&&(K.globalAlpha=dn=t)}})),pl.forEach(((l,e)=>{if(e>0&&l.show){let t=dn;dn!=l.alpha&&(K.globalAlpha=dn=l.alpha),null!=l._paths&&yn(e,!1);{let t=null!=l._paths?l._paths.gaps:null,n=l.points.show(k,e,Lt,en,t),i=l.points.filter(k,e,n,t);(n||i)&&(l.points._paths=l.points.paths(k,e,Lt,en,i),yn(e,!0))}dn!=t&&(K.globalAlpha=dn=t),Ci(\"drawSeries\",e)}})),l&&(K.globalAlpha=dn=1)}}},Pl=(u.drawOrder||[\"axes\",\"series\"]).map((l=>Dl[l]));function Cl(l){const e=3==l.distr?e=>dl(e>0?e:l.clamp(k,e,l.min,l.max,l.key)):4==l.distr?e=>ml(e,l.asinh):100==l.distr?e=>l.fwd(e):l=>l;return t=>{let n=e(t),{_min:i,_max:o}=l;return(n-i)/(o-i)}}function Il(l){let e=vl[l];if(null==e){let t=(u.scales||Hl)[l]||Hl;if(null!=t.from){Il(t.from);let e=Bl({},vl[t.from],t,{key:l});e.valToPct=Cl(e),vl[l]=e}else{e=vl[l]=Bl({},l==El?ft:ct,t),e.key=l;let n=e.time,i=e.range,o=Gl(i);if((l!=El||2==M&&!n)&&(!o||null!=i[0]&&null!=i[1]||(i={min:null==i[0]?q:{mode:1,hard:i[0],soft:i[0]},max:null==i[1]?q:{mode:1,hard:i[1],soft:i[1]}},o=!1),!o&&Ol(i))){let l=i;i=(e,t,n)=>null==t?Rl:Z(t,n,l)}e.range=bl(i||(n?Bt:l==El?3==e.distr?qt:4==e.distr?Xt:Vt:3==e.distr?Jt:4==e.distr?Kt:$t)),e.auto=bl(!o&&e.auto),e.clamp=bl(e.clamp||at),e._min=e._max=null,e.valToPct=Cl(e)}}}Il(\"x\"),Il(\"y\"),1==M&&pl.forEach((l=>{Il(l.scale)})),xl.forEach((l=>{Il(l.scale)}));for(let l in u.scales)Il(l);const jl=vl[El],Ul=jl.distr;let $l,ql;0==jl.ori?(S(R,\"u-hz\"),$l=P,ql=W):(S(R,\"u-vt\"),$l=W,ql=P);const Kl={};for(let l in vl){let e=vl[l];null==e.min&&null==e.max||(Kl[l]={min:e.min,max:e.max},e.min=e.max=null)}const Xl=u.tzDate||(l=>new Date(rl(l/hl))),Zl=u.fmtDate||ne,Ql=1==hl?Me(Xl):Ee(Xl),le=De(Xl,ze(1==hl?ye:Te,Zl)),ee=We(Xl,Ae(\"{YYYY}-{MM}-{DD} {h}:{mm}{aa}\",Zl)),te=[],ie=k.legend=Bl({},Ye,u.legend),oe=k.cursor=Bl({},Re,{drag:{y:2==M}},u.cursor),se=ie.show,re=oe.show,ue=ie.markers;let ce,he,de;ie.idxs=te,ue.width=bl(ue.width),ue.dash=bl(ue.dash),ue.stroke=bl(ue.stroke),ue.fill=bl(ue.fill);let pe,me=[],ge=[],xe=!1,we={};if(ie.live){const l=pl[1]?pl[1].values:null;xe=null!=l,pe=xe?l(k,1,0):{_:0};for(let l in pe)we[l]=w}if(se)if(ce=z(\"table\",\"u-legend\",R),de=z(\"tbody\",null,ce),ie.mount(k,ce),xe){he=z(\"thead\",null,ce,de);let l=z(\"tr\",null,he);for(var _e in z(\"th\",null,l),pe)z(\"th\",e,l).textContent=_e}else S(ce,\"u-inline\"),ie.live&&S(ce,\"u-live\");const be={show:!0},ve={show:!1},Pe=new Map;function Ce(l,e,t,n=!0){const i=Pe.get(e)||{},o=oe.bind[l](k,e,t,n);o&&(G(l,e,i[l]=o),Pe.set(e,i))}function He(l,e){const t=Pe.get(e)||{};for(let n in t)null!=l&&n!=l||(I(n,e,t[n]),delete t[n]);null==l&&Pe.delete(e)}let Fe=0,Ge=0,Ie=0,Le=0,Oe=0,Ne=0,je=Oe,Ke=Ne,Xe=Ie,Ze=Le,Qe=0,lt=0,ot=0,st=0;k.bbox={};let ht=!1,pt=!1,mt=!1,xt=!1,wt=!1,_t=!1;function vt(l,e,t){(t||l!=k.width||e!=k.height)&&kt(l,e),An(!1),mt=!0,pt=!0,Jn()}function kt(l,e){k.width=Fe=Ie=l,k.height=Ge=Le=e,Oe=Ne=0,function(){let l=!1,e=!1,t=!1,n=!1;xl.forEach((i=>{if(i.show&&i._show){let{side:o,_size:s}=i,r=s+(null!=i.label?i.labelSize:0);r>0&&(o%2?(Ie-=r,3==o?(Oe+=r,n=!0):t=!0):(Le-=r,0==o?(Ne+=r,l=!0):e=!0))}})),Ct[0]=l,Ct[1]=t,Ct[2]=e,Ct[3]=n,Ie-=Rt[1]+Rt[3],Oe+=Rt[3],Le-=Rt[2]+Rt[0],Ne+=Rt[0]}(),function(){let l=Oe+Ie,e=Ne+Le,t=Oe,n=Ne;function i(i,o){switch(i){case 1:return l+=o,l-o;case 2:return e+=o,e-o;case 3:return t-=o,t+o;case 0:return n-=o,n+o}}xl.forEach((l=>{if(l.show&&l._show){let e=l.side;l._pos=i(e,l._size),null!=l.label&&(l._lpos=i(e,l.labelSize))}}))}();let t=k.bbox;Qe=t.left=zl(Oe*y,.5),lt=t.top=zl(Ne*y,.5),ot=t.width=zl(Ie*y,.5),st=t.height=zl(Le*y,.5)}const yt=3;if(k.setSize=function({width:l,height:e}){vt(l,e)},null==oe.dataIdx){let l=oe.hover,e=l.skip=new Set(l.skip??[]);e.add(void 0);let t=l.prox=bl(l.prox),n=l.bias??=0;oe.dataIdx=(l,i,o,s)=>{if(0==i)return o;let r=o,u=t(l,i,o,s)??gl,a=u>=0&&gl>u,f=0==jl.ori?Ie:Le,c=oe.left,h=g[0],d=g[i];if(e.has(d[o])){r=null;let l,t=null,i=null;if(0==n||-1==n)for(l=o;null==t&&l-- >0;)e.has(d[l])||(t=l);if(0==n||1==n)for(l=o;null==i&&l++<d.length;)e.has(d[l])||(i=l);if(null!=t||null!=i)if(a){let l=c-(null==t?-1/0:$l(h[t],jl,f,0)),e=(null==i?1/0:$l(h[i],jl,f,0))-c;l>e?e>u||(r=i):l>u||(r=t)}else r=null==i?t:null==t||o-t>i-o?i:t}else a&&ol(c-$l(h[o],jl,f,0))>u&&(r=null);return r}}const Mt=l=>{oe.event=l};oe.idxs=te,oe._lock=!1;let St=oe.points;St.show=bl(St.show),St.size=bl(St.size),St.stroke=bl(St.stroke),St.width=bl(St.width),St.fill=bl(St.fill);const Tt=k.focus=Bl({},u.focus||{alpha:.3},oe.focus),Et=Tt.prox>=0,zt=Et&&St.one;let Dt=[],Pt=[],At=[];function Wt(l,e){let t=St.show(k,e);if(t instanceof HTMLElement)return S(t,\"u-cursor-pt\"),S(t,l.class),A(t,-10,-10,Ie,Le),el.insertBefore(t,Dt[e]),t}function Yt(t,n){if(1==M||n>0){let l=1==M&&vl[t.scale].time,e=t.value;t.value=l?Ll(e)?We(Xl,Ae(e,Zl)):e||ee:e||nt,t.label=t.label||(l?\"Time\":\"Value\")}if(zt||n>0){t.width=null==t.width?1:t.width,t.paths=t.paths||Ot||yl,t.fillTo=bl(t.fillTo||gt),t.pxAlign=+Q(t.pxAlign,tl),t.pxRound=bt(t.pxAlign),t.stroke=bl(t.stroke||null),t.fill=bl(t.fill||null),t._stroke=t._fill=t._paths=t._focus=null;let l=function(l){return Al(1*(3+2*(l||1)),3)}(fl(1,t.width)),e=t.points=Bl({},{size:l,width:fl(1,.2*l),stroke:t.stroke,space:2*l,paths:Nt,_stroke:null,_fill:null},t.points);e.show=bl(e.show),e.filter=bl(e.filter),e.fill=bl(e.fill),e.stroke=bl(e.stroke),e.paths=bl(e.paths),e.pxAlign=t.pxAlign}if(se){let i=function(t,n){if(0==n&&(xe||!ie.live||2==M))return Rl;let i=[],o=z(\"tr\",\"u-series\",de,de.childNodes[n]);S(o,t.class),t.show||S(o,l);let s=z(\"th\",null,o);if(ue.show){let l=D(\"u-marker\",s);if(n>0){let e=ue.width(k,n);e&&(l.style.border=e+\"px \"+ue.dash(k,n)+\" \"+ue.stroke(k,n)),l.style.background=ue.fill(k,n)}}let r=D(e,s);for(var u in t.label instanceof HTMLElement?r.appendChild(t.label):r.textContent=t.label,n>0&&(ue.show||(r.style.color=t.width>0?ue.stroke(k,n):ue.fill(k,n)),Ce(\"click\",s,(l=>{if(oe._lock)return;Mt(l);let e=pl.indexOf(t);if((l.ctrlKey||l.metaKey)!=ie.isolate){let l=pl.some(((l,t)=>t>0&&t!=e&&l.show));pl.forEach(((t,n)=>{n>0&&oi(n,l?n==e?be:ve:be,!0,Fi.setSeries)}))}else oi(e,{show:!t.show},!0,Fi.setSeries)}),!1),Et&&Ce(d,s,(l=>{oe._lock||(Mt(l),oi(pl.indexOf(t),ai,!0,Fi.setSeries))}),!1)),pe){let l=z(\"td\",\"u-value\",o);l.textContent=\"--\",i.push(l)}return[o,i]}(t,n);me.splice(n,0,i[0]),ge.splice(n,0,i[1]),ie.values.push(null)}if(re){te.splice(n,0,null);let l=null;zt?0==n&&(l=Wt(t,n)):n>0&&(l=Wt(t,n)),Dt.splice(n,0,l),Pt.splice(n,0,0),At.splice(n,0,0)}Ci(\"addSeries\",n)}k.addSeries=function(l,e){e=null==e?pl.length:e,l=1==M?Ut(l,e,Ve,ut):Ut(l,e,{},rt),pl.splice(e,0,l),Yt(pl[e],e)},k.delSeries=function(l){if(pl.splice(l,1),se){ie.values.splice(l,1),ge.splice(l,1);let e=me.splice(l,1)[0];He(null,e.firstChild),e.remove()}re&&(te.splice(l,1),Dt.splice(l,1)[0].remove(),Pt.splice(l,1),At.splice(l,1)),Ci(\"delSeries\",l)};const Ct=[!1,!1,!1,!1];function Ht(l,e,t){let[n,i,o,s]=t,r=e%2,u=0;return 0==r&&(s||i)&&(u=0==e&&!n||2==e&&!o?rl(Ue.size/3):0),1==r&&(n||o)&&(u=1==e&&!i||3==e&&!s?rl(it.size/2):0),u}const Ft=k.padding=(u.padding||[Ht,Ht,Ht,Ht]).map((l=>bl(Q(l,Ht)))),Rt=k._padding=Ft.map(((l,e)=>l(k,e,Ct,0)));let Gt,Lt=null,en=null;const tn=1==M?pl[0].idxs:null;let nn,on,sn,rn,un,an,fn,cn,hn,dn,pn=null,mn=!1;function gn(l,e){if(k.data=k._data=g=null==l?[]:l,2==M){Gt=0;for(let l=1;pl.length>l;l++)Gt+=g[l][0].length}else{0==g.length&&(k.data=k._data=g=[[]]),pn=g[0],Gt=pn.length;let l=g;if(2==Ul){l=g.slice();let e=l[0]=Array(Gt);for(let l=0;Gt>l;l++)e[l]=l}k._data=g=l}if(An(!0),Ci(\"setData\"),2==Ul&&(mt=!0),!1!==e){let l=jl;l.auto(k,mn)?xn():ii(El,l.min,l.max),xt=xt||oe.left>=0,_t=!0,Jn()}}function xn(){let l,e;mn=!0,1==M&&(Gt>0?(Lt=tn[0]=0,en=tn[1]=Gt-1,l=g[0][Lt],e=g[0][en],2==Ul?(l=Lt,e=en):l==e&&(3==Ul?[l,e]=B(l,l,jl.log,!1):4==Ul?[l,e]=$(l,l,jl.log,!1):jl.time?e=l+rl(86400/hl):[l,e]=Z(l,e,J,!0))):(Lt=tn[0]=l=null,en=tn[1]=e=null)),ii(El,l,e)}function wn(l,e,t,n,i,o){l??=a,t??=Fl,n??=\"butt\",i??=a,o??=\"round\",l!=nn&&(K.strokeStyle=nn=l),i!=on&&(K.fillStyle=on=i),e!=sn&&(K.lineWidth=sn=e),o!=un&&(K.lineJoin=un=o),n!=an&&(K.lineCap=an=n),t!=rn&&K.setLineDash(rn=t)}function _n(l,e,t,n){e!=on&&(K.fillStyle=on=e),l!=fn&&(K.font=fn=l),t!=cn&&(K.textAlign=cn=t),n!=hn&&(K.textBaseline=hn=n)}function bn(l,e,t,n,i=0){if(n.length>0&&l.auto(k,mn)&&(null==e||null==e.min)){let e=Q(Lt,0),o=Q(en,n.length-1),s=null==t.min?function(l,e,t,n=0,i=!1){let o=i?V:U,s=i?j:N;[e,t]=o(l,e,t);let r=l[e],u=l[e];if(e>-1)if(1==n)r=l[e],u=l[t];else if(-1==n)r=l[t],u=l[e];else for(let n=e;t>=n;n++){let e=l[n];s(e)&&(r>e?r=e:e>u&&(u=e))}return[r??gl,u??-gl]}(n,e,o,i,3==l.distr):[t.min,t.max];l.min=al(l.min,t.min=s[0]),l.max=fl(l.max,t.max=s[1])}}k.setData=gn;const vn={min:null,max:null};function kn(l,e){let t=e?pl[l].points:pl[l];t._stroke=t.stroke(k,l),t._fill=t.fill(k,l)}function yn(l,e){let t=e?pl[l].points:pl[l],{stroke:n,fill:i,clip:o,flags:s,_stroke:r=t._stroke,_fill:u=t._fill,_width:a=t.width}=t._paths;a=Al(a*y,3);let f=null,c=a%2/2;e&&null==u&&(u=a>0?\"#fff\":r);let h=1==t.pxAlign&&c>0;if(h&&K.translate(c,c),!e){let l=Qe-a/2,e=lt-a/2,t=ot+a,n=st+a;f=new Path2D,f.rect(l,e,t,n)}e?Sn(r,a,t.dash,t.cap,u,n,i,s,o):function(l,e,t,n,i,o,s,r,u,a,f){let c=!1;0!=u&&Tl.forEach(((h,d)=>{if(h.series[0]==l){let l,p=pl[h.series[1]],m=g[h.series[1]],x=(p._paths||Hl).band;Gl(x)&&(x=1==h.dir?x[0]:x[1]);let w=null;p.show&&x&&function(l,e,t){for(e=Q(e,0),t=Q(t,l.length-1);t>=e;){if(null!=l[e])return!0;e++}return!1}(m,Lt,en)?(w=h.fill(k,d)||o,l=p._paths.clip):x=null,Sn(e,t,n,i,w,s,r,u,a,f,l,x),c=!0}})),c||Sn(e,t,n,i,o,s,r,u,a,f)}(l,r,a,t.dash,t.cap,u,n,i,s,f,o),h&&K.translate(-c,-c)}const Mn=3;function Sn(l,e,t,n,i,o,s,r,u,a,f,c){wn(l,e,t,n,i),(u||a||c)&&(K.save(),u&&K.clip(u),a&&K.clip(a)),c?(r&Mn)==Mn?(K.clip(c),f&&K.clip(f),En(i,s),Tn(l,o,e)):2&r?(En(i,s),K.clip(c),Tn(l,o,e)):1&r&&(K.save(),K.clip(c),f&&K.clip(f),En(i,s),K.restore(),Tn(l,o,e)):(En(i,s),Tn(l,o,e)),(u||a||c)&&K.restore()}function Tn(l,e,t){t>0&&(e instanceof Map?e.forEach(((l,e)=>{K.strokeStyle=nn=e,K.stroke(l)})):null!=e&&l&&K.stroke(e))}function En(l,e){e instanceof Map?e.forEach(((l,e)=>{K.fillStyle=on=e,K.fill(l)})):null!=e&&l&&K.fill(e)}function zn(l,e,t,n,i,o,s,r,u,a){let f=s%2/2;1==tl&&K.translate(f,f),wn(r,s,u,a,r),K.beginPath();let c,h,d,p,m=i+(0==n||3==n?-o:o);0==t?(h=i,p=m):(c=i,d=m);for(let n=0;l.length>n;n++)null!=e[n]&&(0==t?c=d=l[n]:h=p=l[n],K.moveTo(c,h),K.lineTo(d,p));K.stroke(),1==tl&&K.translate(-f,-f)}function Dn(l){let e=!0;return xl.forEach(((t,n)=>{if(!t.show)return;let i=vl[t.scale];if(null==i.min)return void(t._show&&(e=!1,t._show=!1,An(!1)));t._show||(e=!1,t._show=!0,An(!1));let o=t.side,s=o%2,{min:r,max:u}=i,[a,f]=function(l,e,t,n){let i,o=xl[l];if(n>0){let s=o._space=o.space(k,l,e,t,n);i=Zt(e,t,o._incrs=o.incrs(k,l,e,t,n,s),n,s)}else i=[0,0];return o._found=i}(n,r,u,0==s?Ie:Le);if(0==f)return;let c=t._splits=t.splits(k,n,r,u,a,f,2==i.distr),h=2==i.distr?c.map((l=>pn[l])):c,d=2==i.distr?pn[c[1]]-pn[c[0]]:a,p=t._values=t.values(k,t.filter(k,h,n,f,d),n,f,d);t._rotate=2==o?t.rotate(k,p,n,f):0;let m=t._size;t._size=ul(t.size(k,p,n,l)),null!=m&&t._size!=m&&(e=!1)})),e}function Pn(l){let e=!0;return Ft.forEach(((t,n)=>{let i=t(k,n,Ct,l);i!=Rt[n]&&(e=!1),Rt[n]=i})),e}function An(l){pl.forEach(((e,t)=>{t>0&&(e._paths=null,l&&(1==M?(e.min=null,e.max=null):e.facets.forEach((l=>{l.min=null,l.max=null}))))}))}let Wn,Yn,Cn,Hn,Fn,Rn,Gn,In,Ln,On,Nn,jn,Un=!1,Vn=!1,Bn=[];function $n(){Vn=!1;for(let l=0;Bn.length>l;l++)Ci(...Bn[l]);Bn.length=0}function Jn(){Un||(Jl(qn),Un=!0)}function qn(){if(ht&&(function(){for(let l in vl){let e=vl[l];null==Kl[l]&&(null==e.min||null!=Kl[El]&&e.auto(k,mn))&&(Kl[l]=vn)}for(let l in vl){let e=vl[l];null==Kl[l]&&null!=e.from&&null!=Kl[e.from]&&(Kl[l]=vn)}null!=Kl[El]&&An(!0);let l={};for(let e in Kl){let t=Kl[e];if(null!=t){let n=l[e]=Vl(vl[e],Nl);if(null!=t.min)Bl(n,t);else if(e!=El||2==M)if(0==Gt&&null==n.from){let l=n.range(k,null,null,e);n.min=l[0],n.max=l[1]}else n.min=gl,n.max=-gl}}if(Gt>0){pl.forEach(((e,t)=>{if(1==M){let n=e.scale,i=Kl[n];if(null==i)return;let o=l[n];if(0==t){let l=o.range(k,o.min,o.max,n);o.min=l[0],o.max=l[1],Lt=L(o.min,g[0]),en=L(o.max,g[0]),en-Lt>1&&(o.min>g[0][Lt]&&Lt++,g[0][en]>o.max&&en--),e.min=pn[Lt],e.max=pn[en]}else e.show&&e.auto&&bn(o,i,e,g[t],e.sorted);e.idxs[0]=Lt,e.idxs[1]=en}else if(t>0&&e.show&&e.auto){let[n,i]=e.facets,o=n.scale,s=i.scale,[r,u]=g[t],a=l[o],f=l[s];null!=a&&bn(a,Kl[o],n,r,n.sorted),null!=f&&bn(f,Kl[s],i,u,i.sorted),e.min=i.min,e.max=i.max}}));for(let e in l){let t=l[e],n=Kl[e];if(null==t.from&&(null==n||null==n.min)){let l=t.range(k,t.min==gl?null:t.min,t.max==-gl?null:t.max,e);t.min=l[0],t.max=l[1]}}}for(let e in l){let t=l[e];if(null!=t.from){let n=l[t.from];if(null==n.min)t.min=t.max=null;else{let l=t.range(k,n.min,n.max,e);t.min=l[0],t.max=l[1]}}}let e={},t=!1;for(let n in l){let i=l[n],o=vl[n];if(o.min!=i.min||o.max!=i.max){o.min=i.min,o.max=i.max;let l=o.distr;o._min=3==l?dl(o.min):4==l?ml(o.min,o.asinh):100==l?o.fwd(o.min):o.min,o._max=3==l?dl(o.max):4==l?ml(o.max,o.asinh):100==l?o.fwd(o.max):o.max,e[n]=t=!0}}if(t){pl.forEach(((l,t)=>{2==M?t>0&&e.y&&(l._paths=null):e[l.scale]&&(l._paths=null)}));for(let l in e)mt=!0,Ci(\"setScale\",l);re&&oe.left>=0&&(xt=_t=!0)}for(let l in Kl)Kl[l]=null}(),ht=!1),mt&&(function(){let l=!1,e=0;for(;!l;){e++;let t=Dn(e),n=Pn(e);l=e==yt||t&&n,l||(kt(k.width,k.height),pt=!0)}}(),mt=!1),pt){if(E(ll,s,Oe),E(ll,i,Ne),E(ll,t,Ie),E(ll,n,Le),E(el,s,Oe),E(el,i,Ne),E(el,t,Ie),E(el,n,Le),E(X,t,Fe),E(X,n,Ge),O.width=rl(Fe*y),O.height=rl(Ge*y),xl.forEach((({_el:e,_show:t,_size:n,_pos:i,side:o})=>{if(null!=e)if(t){let t=o%2==1;E(e,t?\"left\":\"top\",i-(3===o||0===o?n:0)),E(e,t?\"width\":\"height\",n),E(e,t?\"top\":\"left\",t?Ne:Oe),E(e,t?\"height\":\"width\",t?Le:Ie),T(e,l)}else S(e,l)})),nn=on=sn=un=an=fn=cn=hn=rn=null,dn=1,_i(!0),Oe!=je||Ne!=Ke||Ie!=Xe||Le!=Ze){An(!1);let l=Ie/Xe,e=Le/Ze;if(re&&!xt&&oe.left>=0){oe.left*=l,oe.top*=e,Cn&&A(Cn,rl(oe.left),0,Ie,Le),Hn&&A(Hn,0,rl(oe.top),Ie,Le);for(let t=0;Dt.length>t;t++){let n=Dt[t];null!=n&&(Pt[t]*=l,At[t]*=e,A(n,ul(Pt[t]),ul(At[t]),Ie,Le))}}if(ei.show&&!wt&&ei.left>=0&&ei.width>0){ei.left*=l,ei.width*=l,ei.top*=e,ei.height*=e;for(let l in ki)E(ti,l,ei[l])}je=Oe,Ke=Ne,Xe=Ie,Ze=Le}Ci(\"setSize\"),pt=!1}Fe>0&&Ge>0&&(K.clearRect(0,0,O.width,O.height),Ci(\"drawClear\"),Pl.forEach((l=>l())),Ci(\"draw\")),ei.show&&wt&&(ni(ei),wt=!1),re&&xt&&(xi(null,!0,!1),xt=!1),ie.show&&ie.live&&_t&&(mi(),_t=!1),F||(F=!0,k.status=1,Ci(\"ready\")),mn=!1,Un=!1}function Kn(l,e){let t=vl[l];if(null==t.from){if(0==Gt){let n=t.range(k,e.min,e.max,l);e.min=n[0],e.max=n[1]}if(e.min>e.max){let l=e.min;e.min=e.max,e.max=l}if(Gt>1&&null!=e.min&&null!=e.max&&1e-16>e.max-e.min)return;l==El&&2==t.distr&&Gt>0&&(e.min=L(e.min,g[0]),e.max=L(e.max,g[0]),e.min==e.max&&e.max++),Kl[l]=e,ht=!0,Jn()}}k.batch=function(l,e=!1){Un=!0,Vn=e,l(k),qn(),e&&Bn.length>0&&queueMicrotask($n)},k.redraw=(l,e)=>{mt=e||!1,!1!==l?ii(El,jl.min,jl.max):Jn()},k.setScale=Kn;let Xn=!1;const Zn=oe.drag;let Qn=Zn.x,li=Zn.y;re&&(oe.x&&(Wn=D(\"u-cursor-x\",el)),oe.y&&(Yn=D(\"u-cursor-y\",el)),0==jl.ori?(Cn=Wn,Hn=Yn):(Cn=Yn,Hn=Wn),Nn=oe.left,jn=oe.top);const ei=k.select=Bl({show:!0,over:!0,left:0,width:0,top:0,height:0},u.select),ti=ei.show?D(\"u-select\",ei.over?el:ll):null;function ni(l,e){if(ei.show){for(let e in l)ei[e]=l[e],e in ki&&E(ti,e,l[e]);!1!==e&&Ci(\"setSelect\")}}function ii(l,e,t){Kn(l,{min:e,max:t})}function oi(e,t,n,i){null!=t.focus&&function(l){if(l!=ui){let e=null==l,t=1!=Tt.alpha;pl.forEach(((n,i)=>{if(1==M||i>0){let o=e||0==i||i==l;n._focus=e?null:o,t&&function(l,e){pl[l].alpha=e,re&&null!=Dt[l]&&(Dt[l].style.opacity=e),se&&me[l]&&(me[l].style.opacity=e)}(i,o?1:Tt.alpha)}})),ui=l,t&&Jn()}}(e),null!=t.show&&pl.forEach(((n,i)=>{0>=i||e!=i&&null!=e||(n.show=t.show,function(e){if(pl[e].show)se&&T(me[e],l);else if(se&&S(me[e],l),re){let l=zt?Dt[0]:Dt[e];null!=l&&A(l,-10,-10,Ie,Le)}}(i),2==M?(ii(n.facets[0].scale,null,null),ii(n.facets[1].scale,null,null)):ii(n.scale,null,null),Jn())})),!1!==n&&Ci(\"setSeries\",e,t),i&&Ii(\"setSeries\",k,e,t)}let si,ri,ui;k.setSelect=ni,k.setSeries=oi,k.addBand=function(l,e){l.fill=bl(l.fill||null),l.dir=Q(l.dir,-1),Tl.splice(e=null==e?Tl.length:e,0,l)},k.setBand=function(l,e){Bl(Tl[l],e)},k.delBand=function(l){null==l?Tl.length=0:Tl.splice(l,1)};const ai={focus:!0};function fi(l,e,t){let n=vl[e];t&&(l=l/y-(1==n.ori?Ne:Oe));let i=Ie;1==n.ori&&(i=Le,l=i-l),-1==n.dir&&(l=i-l);let o=n._min,s=o+l/i*(n._max-o),r=n.distr;return 3==r?cl(10,s):4==r?((l,e=1)=>nl.sinh(l)*e)(s,n.asinh):100==r?n.bwd(s):s}function ci(l,e){E(ti,s,ei.left=l),E(ti,t,ei.width=e)}function hi(l,e){E(ti,i,ei.top=l),E(ti,n,ei.height=e)}se&&Et&&Ce(p,ce,(l=>{oe._lock||(Mt(l),null!=ui&&oi(null,ai,!0,Fi.setSeries))})),k.valToIdx=l=>L(l,g[0]),k.posToIdx=function(l,e){return L(fi(l,El,e),g[0],Lt,en)},k.posToVal=fi,k.valToPos=(l,e,t)=>0==vl[e].ori?P(l,vl[e],t?ot:Ie,t?Qe:0):W(l,vl[e],t?st:Le,t?lt:0),k.setCursor=(l,e,t)=>{Nn=l.left,jn=l.top,xi(null,e,t)};let di=0==jl.ori?ci:hi,pi=1==jl.ori?ci:hi;function mi(l,e){if(null!=l&&(l.idxs?l.idxs.forEach(((l,e)=>{te[e]=l})):(l=>void 0===l)(l.idx)||te.fill(l.idx),ie.idx=te[0]),se&&ie.live){for(let l=0;pl.length>l;l++)(l>0||1==M&&!xe)&&gi(l,te[l]);!function(){if(se&&ie.live)for(let l=2==M?1:0;pl.length>l;l++){if(0==l&&xe)continue;let e=ie.values[l],t=0;for(let n in e)ge[l][t++].firstChild.nodeValue=e[n]}}()}_t=!1,!1!==e&&Ci(\"setLegend\")}function gi(l,e){let t,n=pl[l],i=0==l&&2==Ul?pn:g[l];xe?t=n.values(k,l,e)??we:(t=n.value(k,null==e?null:i[e],l,e),t=null==t?we:{_:t}),ie.values[l]=t}function xi(l,e,t){let n;Ln=Nn,On=jn,[Nn,jn]=oe.move(k,Nn,jn),oe.left=Nn,oe.top=jn,re&&(Cn&&A(Cn,rl(Nn),0,Ie,Le),Hn&&A(Hn,0,rl(jn),Ie,Le)),si=gl,ri=null;let i=0==jl.ori?Ie:Le,o=1==jl.ori?Ie:Le;if(0>Nn||0==Gt||Lt>en){n=oe.idx=null;for(let l=0;pl.length>l;l++){let e=Dt[l];null!=e&&A(e,-10,-10,Ie,Le)}Et&&oi(null,ai,!0,null==l&&Fi.setSeries),ie.live&&(te.fill(n),_t=!0)}else{let l,e,t;1==M&&(l=0==jl.ori?Nn:jn,e=fi(l,El),n=oe.idx=L(e,g[0],Lt,en),t=$l(g[0][n],jl,i,0));let s=-10,r=-10,u=0,a=0,f=!0,c=\"\",h=\"\";for(let l=2==M?1:0;pl.length>l;l++){let d=pl[l],p=te[l],m=null==p?null:1==M?g[l][p]:g[l][1][p],x=oe.dataIdx(k,l,n,e),w=null==x?null:1==M?g[l][x]:g[l][1][x];if(_t=_t||w!=m||x!=p,te[l]=x,l>0&&d.show){let e=null==x?-10:x==n?t:$l(1==M?g[0][x]:g[l][0][x],jl,i,0),p=null==w?-10:ql(w,1==M?vl[d.scale]:vl[d.facets[1].scale],o,0);if(Et&&null!=w){let e=1==jl.ori?Nn:jn,t=ol(Tt.dist(k,l,x,p,e));if(si>t){let n=Tt.bias;if(0!=n){let i=fi(e,d.scale),o=0>i?-1:1;o!=(0>w?-1:1)||(1==o?1==n?i>w:w>i:1==n?w>i:i>w)||(si=t,ri=l)}else si=t,ri=l}}if(_t||zt){let t,n;0==jl.ori?(t=e,n=p):(t=p,n=e);let i,o,d,m,g,x,w=!0,_=St.bbox;if(null!=_){w=!1;let e=_(k,l);d=e.left,m=e.top,i=e.width,o=e.height}else d=t,m=n,i=o=St.size(k,l);if(x=St.fill(k,l),g=St.stroke(k,l),zt)l!=ri||si>Tt.prox||(s=d,r=m,u=i,a=o,f=w,c=x,h=g);else{let e=Dt[l];null!=e&&(Pt[l]=d,At[l]=m,H(e,i,o,w),Y(e,x,g),A(e,ul(d),ul(m),Ie,Le))}}}}if(zt){let l=Tt.prox;if(_t||(null==ui?l>=si:si>l||ri!=ui)){let l=Dt[0];null!=l&&(Pt[0]=s,At[0]=r,H(l,u,a,f),Y(l,c,h),A(l,ul(s),ul(r),Ie,Le))}}}if(ei.show&&Xn)if(null!=l){let[e,t]=Fi.scales,[n,s]=Fi.match,[r,u]=l.cursor.sync.scales,a=l.cursor.drag;if(Qn=a._x,li=a._y,Qn||li){let a,f,c,h,d,{left:p,top:m,width:g,height:x}=l.select,w=l.scales[r].ori,_=l.posToVal,b=null!=e&&n(e,r),v=null!=t&&s(t,u);b&&Qn?(0==w?(a=p,f=g):(a=m,f=x),c=vl[e],h=$l(_(a,r),c,i,0),d=$l(_(a+f,r),c,i,0),di(al(h,d),ol(d-h))):di(0,i),v&&li?(1==w?(a=p,f=g):(a=m,f=x),c=vl[t],h=ql(_(a,u),c,o,0),d=ql(_(a+f,u),c,o,0),pi(al(h,d),ol(d-h))):pi(0,o)}else yi()}else{let l=ol(Ln-Fn),e=ol(On-Rn);if(1==jl.ori){let t=l;l=e,e=t}Qn=Zn.x&&l>=Zn.dist,li=Zn.y&&e>=Zn.dist;let t,n,s=Zn.uni;null!=s?Qn&&li&&(Qn=l>=s,li=e>=s,Qn||li||(e>l?li=!0:Qn=!0)):Zn.x&&Zn.y&&(Qn||li)&&(Qn=li=!0),Qn&&(0==jl.ori?(t=Gn,n=Nn):(t=In,n=jn),di(al(t,n),ol(n-t)),li||pi(0,o)),li&&(1==jl.ori?(t=Gn,n=Nn):(t=In,n=jn),pi(al(t,n),ol(n-t)),Qn||di(0,i)),Qn||li||(di(0,0),pi(0,0))}if(Zn._x=Qn,Zn._y=li,null==l){if(t){if(null!=Ri){let[l,e]=Fi.scales;Fi.values[0]=null!=l?fi(0==jl.ori?Nn:jn,l):null,Fi.values[1]=null!=e?fi(1==jl.ori?Nn:jn,e):null}Ii(f,k,Nn,jn,Ie,Le,n)}if(Et){let l=t&&Fi.setSeries,e=Tt.prox;null==ui?si>e||oi(ri,ai,!0,l):si>e?oi(null,ai,!0,l):ri!=ui&&oi(ri,ai,!0,l)}}_t&&(ie.idx=n,mi()),!1!==e&&Ci(\"setCursor\")}k.setLegend=mi;let wi=null;function _i(l=!1){l?wi=null:(wi=el.getBoundingClientRect(),Ci(\"syncRect\",wi))}function bi(l,e,t,n,i,o){oe._lock||Xn&&null!=l&&0==l.movementX&&0==l.movementY||(vi(l,e,t,n,i,o,0,!1,null!=l),null!=l?xi(null,!0,!0):xi(e,!0,!1))}function vi(l,e,t,n,i,o,s,r,u){if(null==wi&&_i(!1),Mt(l),null!=l)t=l.clientX-wi.left,n=l.clientY-wi.top;else{if(0>t||0>n)return Nn=-10,void(jn=-10);let[l,s]=Fi.scales,r=e.cursor.sync,[u,a]=r.values,[f,c]=r.scales,[h,d]=Fi.match,p=e.axes[0].side%2==1,m=0==jl.ori?Ie:Le,g=1==jl.ori?Ie:Le,x=p?o:i,w=p?i:o,_=p?n:t,b=p?t:n;if(t=null!=f?h(l,f)?C(u,vl[l],m,0):-10:m*(_/x),n=null!=c?d(s,c)?C(a,vl[s],g,0):-10:g*(b/w),1==jl.ori){let l=t;t=n,n=l}}!u||null!=e&&e.cursor.event.type!=f||(t>1&&Ie-1>t||(t=zl(t,Ie)),n>1&&Le-1>n||(n=zl(n,Le))),r?(Fn=t,Rn=n,[Gn,In]=oe.move(k,t,n)):(Nn=t,jn=n)}Object.defineProperty(k,\"rect\",{get:()=>(null==wi&&_i(!1),wi)});const ki={width:0,height:0,left:0,top:0};function yi(){ni(ki,!1)}let Mi,Si,Ti,Ei;function zi(l,e,t,n,i,o){Xn=!0,Qn=li=Zn._x=Zn._y=!1,vi(l,e,t,n,i,o,0,!0,!1),null!=l&&(Ce(h,b,Di,!1),Ii(c,k,Gn,In,Ie,Le,null));let{left:s,top:r,width:u,height:a}=ei;Mi=s,Si=r,Ti=u,Ei=a}function Di(l,e,t,n,i,o){Xn=Zn._x=Zn._y=!1,vi(l,e,t,n,i,o,0,!1,!0);let{left:s,top:r,width:u,height:a}=ei,f=u>0||a>0,c=Mi!=s||Si!=r||Ti!=u||Ei!=a;if(f&&c&&ni(ei),Zn.setScale&&f&&c){let l=s,e=u,t=r,n=a;if(1==jl.ori&&(l=r,e=a,t=s,n=u),Qn&&ii(El,fi(l,El),fi(l+e,El)),li)for(let l in vl){let e=vl[l];l!=El&&null==e.from&&e.min!=gl&&ii(l,fi(t+n,l),fi(t,l))}yi()}else oe.lock&&(oe._lock=!oe._lock,xi(e,!0,null!=l));null!=l&&(He(h,b),Ii(h,k,Nn,jn,Ie,Le,null))}function Pi(l){oe._lock||(Mt(l),xn(),yi(),null!=l&&Ii(m,k,Nn,jn,Ie,Le,null))}function Ai(){xl.forEach(ln),vt(k.width,k.height,!0)}G(x,v,Ai);const Wi={};Wi.mousedown=zi,Wi.mousemove=bi,Wi.mouseup=Di,Wi.dblclick=Pi,Wi.setSeries=(l,e,t,n)=>{-1!=(t=(0,Fi.match[2])(k,e,t))&&oi(t,n,!0,!1)},re&&(Ce(c,el,zi),Ce(f,el,bi),Ce(d,el,(l=>{Mt(l),_i(!1)})),Ce(p,el,(function(l){if(oe._lock)return;Mt(l);let e=Xn;if(Xn){let l,e,t=!0,n=!0,i=10;0==jl.ori?(l=Qn,e=li):(l=li,e=Qn),l&&e&&(t=i>=Nn||Nn>=Ie-i,n=i>=jn||jn>=Le-i),l&&t&&(Nn=Gn>Nn?0:Ie),e&&n&&(jn=In>jn?0:Le),xi(null,!0,!0),Xn=!1}Nn=-10,jn=-10,te.fill(null),xi(null,!0,!0),e&&(Xn=e)})),Ce(m,el,Pi),It.add(k),k.syncRect=_i);const Yi=k.hooks=u.hooks||{};function Ci(l,e,t){Vn?Bn.push([l,e,t]):l in Yi&&Yi[l].forEach((l=>{l.call(null,k,e,t)}))}(u.plugins||[]).forEach((l=>{for(let e in l.hooks)Yi[e]=(Yi[e]||[]).concat(l.hooks[e])}));const Hi=(l,e,t)=>t,Fi=Bl({key:null,setSeries:!1,filters:{pub:Ml,sub:Ml},scales:[El,pl[1]?pl[1].scale:null],match:[Sl,Sl,Hi],values:[null,null]},oe.sync);2==Fi.match.length&&Fi.match.push(Hi),oe.sync=Fi;const Ri=Fi.key,Gi=dt(Ri);function Ii(l,e,t,n,i,o,s){Fi.filters.pub(l,e,t,n,i,o,s)&&Gi.pub(l,e,t,n,i,o,s)}function Li(){Ci(\"init\",u,g),gn(g||u.data,!1),Kl[El]?Kn(El,Kl[El]):xn(),wt=ei.show&&(ei.width>0||ei.height>0),xt=_t=!0,vt(u.width,u.height)}return Gi.sub(k),k.pub=function(l,e,t,n,i,o,s){Fi.filters.sub(l,e,t,n,i,o,s)&&Wi[l](null,e,t,n,i,o,s)},k.destroy=function(){Gi.unsub(k),It.delete(k),Pe.clear(),I(x,v,Ai),R.remove(),ce?.remove(),Ci(\"destroy\")},pl.forEach(Yt),xl.forEach((function(l,e){if(l._show=l.show,l.show){let t=vl[l.scale];null==t&&(l.scale=l.side%2?pl[1].scale:El,t=vl[l.scale]);let n=t.time;l.size=bl(l.size),l.space=bl(l.space),l.rotate=bl(l.rotate),Gl(l.incrs)&&l.incrs.forEach((l=>{!Wl.has(l)&&Wl.set(l,Yl(l))})),l.incrs=bl(l.incrs||(2==t.distr?ae:n?1==hl?ke:Se:fe)),l.splits=bl(l.splits||(n&&1==t.distr?Ql:3==t.distr?Je:4==t.distr?qe:$e)),l.stroke=bl(l.stroke),l.grid.stroke=bl(l.grid.stroke),l.ticks.stroke=bl(l.ticks.stroke),l.border.stroke=bl(l.border.stroke);let i=l.values;l.values=Gl(i)&&!Gl(i[0])?bl(i):n?Gl(i)?De(Xl,ze(i,Zl)):Ll(i)?function(l,e){let t=ne(e);return(e,n)=>n.map((e=>t(l(e))))}(Xl,i):i||le:i||Be,l.filter=bl(l.filter||(3>t.distr||10!=t.log?3==t.distr&&2==t.log?tt:kl:et)),l.font=Qt(l.font),l.labelFont=Qt(l.labelFont),l._size=l.size(k,null,e,0),l._space=l._rotate=l._incrs=l._found=l._splits=l._values=null,l._size>0&&(Ct[e]=!0,l._el=D(\"u-axis\",X))}})),_?_ instanceof HTMLElement?(_.appendChild(R),Li()):_(k,Li):Li(),k}en.assign=Bl,en.fmtNum=tl,en.rangeNum=Z,en.rangeLog=B,en.rangeAsinh=$,en.orient=pt,en.pxRatio=y,en.join=function(l,e){if(function(l){let e=l[0][0],t=e.length;for(let n=1;l.length>n;n++){let i=l[n][0];if(i.length!=t)return!1;if(i!=e)for(let l=0;t>l;l++)if(i[l]!=e[l])return!1}return!0}(l)){let e=l[0].slice();for(let t=1;l.length>t;t++)e.push(...l[t].slice(1));return function(l,e=100){const t=l.length;if(1>=t)return!0;let n=0,i=t-1;for(;i>=n&&null==l[n];)n++;for(;i>=n&&null==l[i];)i--;if(n>=i)return!0;const o=fl(1,sl((i-n+1)/e));for(let e=l[n],t=n+o;i>=t;t+=o){const n=l[t];if(null!=n){if(e>=n)return!1;e=n}}return!0}(e[0])||(e=function(l){let e=l[0],t=e.length,n=Array(t);for(let l=0;n.length>l;l++)n[l]=l;n.sort(((l,t)=>e[l]-e[t]));let i=[];for(let e=0;l.length>e;e++){let o=l[e],s=Array(t);for(let l=0;t>l;l++)s[l]=o[n[l]];i.push(s)}return i}(e)),e}let t=new Set;for(let e=0;l.length>e;e++){let n=l[e][0],i=n.length;for(let l=0;i>l;l++)t.add(n[l])}let n=[Array.from(t).sort(((l,e)=>l-e))],i=n[0].length,o=new Map;for(let l=0;i>l;l++)o.set(n[0][l],l);for(let t=0;l.length>t;t++){let s=l[t],r=s[0];for(let l=1;s.length>l;l++){let u=s[l],a=Array(i).fill(void 0),f=e?e[t][l]:1,c=[];for(let l=0;u.length>l;l++){let e=u[l],t=o.get(r[l]);null===e?0!=f&&(a[t]=e,2==f&&c.push(t)):a[t]=e}$l(a,c,i),n.push(a)}}return n},en.fmtDate=ne,en.tzDate=function(l,e){let t;return\"UTC\"==e||\"Etc/UTC\"==e?t=new Date(+l+6e4*l.getTimezoneOffset()):e==ie?t=l:(t=new Date(l.toLocaleString(\"en-US\",{timeZone:e})),t.setMilliseconds(l.getMilliseconds())),t},en.sync=dt;{en.addGap=function(l,e,t){let n=l[l.length-1];n&&n[0]==e?n[1]=t:l.push([e,t])},en.clipGaps=wt;let l=en.paths={points:Wt};l.linear=Ft,l.stepped=function(l){const e=Q(l.align,1),t=Q(l.ascDesc,!1),n=Q(l.alignGaps,0),i=Q(l.extend,!1);return(l,o,s,r)=>pt(l,o,((u,a,f,c,h,d,p,m,g,x,w)=>{[s,r]=U(f,s,r);let _=u.pxRound,{left:b,width:v}=l.bbox,k=l=>_(d(l,c,x,m)),M=l=>_(p(l,h,w,g)),S=0==c.ori?Mt:St;const T={stroke:new Path2D,fill:null,clip:null,band:null,gaps:null,flags:1},E=T.stroke,z=c.dir*(0==c.ori?1:-1);let D=M(f[1==z?s:r]),P=k(a[1==z?s:r]),A=P,W=P;i&&-1==e&&(W=b,S(E,W,D)),S(E,P,D);for(let l=1==z?s:r;l>=s&&r>=l;l+=z){let t=f[l];if(null==t)continue;let n=k(a[l]),i=M(t);1==e?S(E,n,D):S(E,A,i),S(E,n,i),D=i,A=n}let Y=A;i&&1==e&&(Y=b+v,S(E,Y,D));let[C,H]=mt(l,o);if(null!=u.fill||0!=C){let e=T.fill=new Path2D(E),t=M(u.fillTo(l,o,u.min,u.max,C));S(e,Y,t),S(e,W,t)}if(!u.spanGaps){let i=[];i.push(..._t(a,f,s,r,z,k,n));let h=u.width*y/2,d=t||1==e?h:-h,p=t||-1==e?-h:h;i.forEach((l=>{l[0]+=d,l[1]+=p})),T.gaps=i=u.gaps(l,o,s,r,i),T.clip=wt(i,c.ori,m,g,x,w)}return 0!=H&&(T.band=2==H?[xt(l,o,s,r,E,-1),xt(l,o,s,r,E,1)]:xt(l,o,s,r,E,H)),T}))},l.bars=function(l){const e=Q((l=l||Hl).size,[.6,gl,1]),t=l.align||0,n=l.gap||0;let i=l.radius;i=null==i?[0,0]:\"number\"==typeof i?[i,0]:i;const o=bl(i),s=1-e[0],r=Q(e[1],gl),u=Q(e[2],1),a=Q(l.disp,Hl),f=Q(l.each,(()=>{})),{fill:c,stroke:h}=a;return(l,e,i,d)=>pt(l,e,((p,m,g,x,w,_,b,v,k,M,S)=>{let T,E,z=p.pxRound,D=t,P=n*y,A=r*y,W=u*y;0==x.ori?[T,E]=o(l,e):[E,T]=o(l,e);const Y=x.dir*(0==x.ori?1:-1);let C,H,F,R=0==x.ori?Tt:Et,G=0==x.ori?f:(l,e,t,n,i,o,s)=>{f(l,e,t,i,n,s,o)},I=Q(l.bands,Fl).find((l=>l.series[0]==e)),L=p.fillTo(l,e,p.min,p.max,null!=I?I.dir:0),O=z(b(L,w,S,k)),N=M,j=z(p.width*y),U=!1,V=null,B=null,$=null,J=null;null==c||0!=j&&null==h||(U=!0,V=c.values(l,e,i,d),B=new Map,new Set(V).forEach((l=>{null!=l&&B.set(l,new Path2D)})),j>0&&($=h.values(l,e,i,d),J=new Map,new Set($).forEach((l=>{null!=l&&J.set(l,new Path2D)}))));let{x0:q,size:K}=a;if(null!=q&&null!=K){D=1,m=q.values(l,e,i,d),2==q.unit&&(m=m.map((e=>l.posToVal(v+e*M,x.key,!0))));let t=K.values(l,e,i,d);H=2==K.unit?t[0]*M:_(t[0],x,M,v)-_(0,x,M,v),N=Rt(m,g,_,x,M,v,N),F=N-H+P}else N=Rt(m,g,_,x,M,v,N),F=N*s+P,H=N-F;1>F&&(F=0),H/2>j||(j=0),5>F&&(z=vl);let X=F>0;H=z(wl(N-F-(X?j:0),W,A)),C=(0==D?H/2:D==Y?0:H)-D*Y*((0==D?P/2:0)+(X?j/2:0));const Z={stroke:null,fill:null,clip:null,band:null,gaps:null,flags:0},ll=U?null:new Path2D;let el=null;if(null!=I)el=l.data[I.series[1]];else{let{y0:t,y1:n}=a;null!=t&&null!=n&&(g=n.values(l,e,i,d),el=t.values(l,e,i,d))}let tl=T*H,nl=E*H;for(let t=1==Y?i:d;t>=i&&d>=t;t+=Y){let n=g[t];if(null==n)continue;if(null!=el){let l=el[t]??0;if(n-l==0)continue;O=b(l,w,S,k)}let i=_(2!=x.distr||null!=a?m[t]:t,x,M,v),o=b(Q(n,L),w,S,k),s=z(i-C),r=z(fl(o,O)),u=z(al(o,O)),f=r-u;if(null!=n){let i=0>n?nl:tl,o=0>n?tl:nl;U?(j>0&&null!=$[t]&&R(J.get($[t]),s,u+sl(j/2),H,fl(0,f-j),i,o),null!=V[t]&&R(B.get(V[t]),s,u+sl(j/2),H,fl(0,f-j),i,o)):R(ll,s,u+sl(j/2),H,fl(0,f-j),i,o),G(l,e,t,s-j/2,u,H+j,f)}}return j>0?Z.stroke=U?J:ll:U||(Z._fill=0==p.width?p._fill:p._stroke??p._fill,Z.width=0),Z.fill=U?B:ll,Z}))},l.spline=function(l){return function(l,e){const t=Q(e?.alignGaps,0);return(e,n,i,o)=>pt(e,n,((s,r,u,a,f,c,h,d,p,m,g)=>{[i,o]=U(u,i,o);let x,w,_,b=s.pxRound,v=l=>b(c(l,a,m,d)),k=l=>b(h(l,f,g,p));0==a.ori?(x=kt,_=Mt,w=Pt):(x=yt,_=St,w=At);const y=a.dir*(0==a.ori?1:-1);let M=v(r[1==y?i:o]),S=M,T=[],E=[];for(let l=1==y?i:o;l>=i&&o>=l;l+=y)if(null!=u[l]){let e=v(r[l]);T.push(S=e),E.push(k(u[l]))}const z={stroke:l(T,E,x,_,w,b),fill:null,clip:null,band:null,gaps:null,flags:1},D=z.stroke;let[P,A]=mt(e,n);if(null!=s.fill||0!=P){let l=z.fill=new Path2D(D),t=k(s.fillTo(e,n,s.min,s.max,P));_(l,S,t),_(l,M,t)}if(!s.spanGaps){let l=[];l.push(..._t(r,u,i,o,y,v,t)),z.gaps=l=s.gaps(e,n,i,o,l),z.clip=wt(l,a.ori,d,p,m,g)}return 0!=A&&(z.band=2==A?[xt(e,n,i,o,D,-1),xt(e,n,i,o,D,1)]:xt(e,n,i,o,D,A)),z}))}(Gt,l)}}return en}();\n</script>\n  <script>// Data pivoting: Convert row-oriented data to column-oriented for uPlot\nfunction pivotData(rowData) {\n  if (!rowData || rowData.length === 0) return [[], []];\n  \n  const numCols = rowData[0].length;\n  const cols = Array.from({ length: numCols }, () => []);\n  \n  for (let i = 0; i < rowData.length; i++) {\n    for (let j = 0; j < numCols; j++) {\n      cols[j].push(rowData[i][j]);\n    }\n  }\n  \n  return cols;\n}\n\n// Format milliseconds as human-readable duration\nfunction formatDuration(ms) {\n  if (ms == null) return '     -   ';\n  \n  let value, unit;\n  \n  if (ms < 1) {\n    value = (ms * 1000).toFixed(ms * 1000 < 10 ? 1 : 0);\n    unit = 'μs';\n  } else if (ms < 1000) {\n    value = ms.toFixed(ms < 10 ? 1 : 0);\n    unit = 'ms';\n  } else {\n    value = (ms / 1000).toFixed(ms / 1000 < 10 ? 1 : 0);\n    unit = ' s';\n  }\n  \n  // Pad to ensure consistent width and add spacing to avoid tick overlap\n  return value.padStart(4, ' ') + unit + '      ';\n}\n\n// PNG export functionality using native canvas\nfunction exportToPNG(uplotInstance, filename) {\n  const canvas = uplotInstance.root.querySelector('canvas');\n  if (!canvas) return;\n  \n  canvas.toBlob(function(blob) {\n    const url = URL.createObjectURL(blob);\n    const a = document.createElement('a');\n    a.setAttribute('download', filename || 'vegeta-plot.png');\n    a.setAttribute('href', url);\n    a.click();\n    URL.revokeObjectURL(url);\n  });\n}\n</script>\n  <script>\n    (function() {\n      const opts = {\n     \"title\": \"TestPlot\",\n     \"labels\": [\n      \"Seconds\",\n      \"1000QPS: OK\",\n      \"2000QPS: OK\",\n      \"500QPS: OK\"\n     ],\n     \"colors\": [\n      \"#E9D758\",\n      \"#297373\",\n      \"#39393A\"\n     ]\n    };\n      const rowData = [\n    [0,1,null,null],\n    [0,null,0,null],\n    [0,null,null,0],\n    [0.088,null,26,null],\n    [0.105,26,null,null],\n    [0.172,null,null,19],\n    [0.252,null,0,null],\n    [0.253,0,null,null],\n    [0.335,null,null,97],\n    [0.503,null,null,0],\n    [0.587,null,22,null],\n    [0.666,27,null,null],\n    [0.754,0,null,null],\n    [0.862,null,null,36],\n    [0.928,null,40,null],\n    [1.006,null,0,null],\n    [1.052,null,null,59],\n    [1.207,43,null,null],\n    [1.2570000000000001,null,null,0],\n    [1.259,0,null,null],\n    [1.312,null,25,null],\n    [1.509,null,0,null],\n    [1.512,null,null,32],\n    [1.514,40,null,null],\n    [1.7610000000000001,0,null,null],\n    [1.762,null,null,0],\n    [1.7770000000000001,null,21,null],\n    [2.085,null,null,61],\n    [2.094,10,null,null],\n    [2.195,null,339,null],\n    [2.263,null,0,null],\n    [2.337,null,null,102],\n    [2.362,19,null,null],\n    [2.513,null,null,0],\n    [2.5140000000000002,0,null,null],\n    [2.6109999999999998,null,15,null],\n    [2.797,null,67,null],\n    [2.9,null,null,23],\n    [2.951,23,null,null],\n    [3.016,null,null,0],\n    [3.017,null,0,null],\n    [3.156,43,null,null],\n    [3.268,0,null,null],\n    [3.286,null,null,81],\n    [3.445,null,25,null],\n    [3.548,36,null,null],\n    [3.634,null,null,169],\n    [3.761,null,56,null],\n    [3.769,0,null,null],\n    [3.769,null,0,null],\n    [3.77,null,null,0],\n    [4.032,null,111,null],\n    [4.06,16,null,null],\n    [4.194,null,null,52],\n    [4.272,null,null,0],\n    [4.274,null,0,null],\n    [4.321,32,null,null],\n    [4.523,0,null,null],\n    [4.601,null,null,28],\n    [4.621,null,26,null],\n    [4.824,null,null,41],\n    [4.924,null,35,null],\n    [4.965,32,null,null],\n    [5.026,null,null,0],\n    [5.027,0,null,null],\n    [5.028,null,0,null],\n    [5.324,null,22,null],\n    [5.47,null,null,12],\n    [5.5,23,null,null],\n    [5.529,0,null,null],\n    [5.563,null,null,30],\n    [5.573,null,46,null],\n    [5.779,null,null,0],\n    [5.781,null,0,null],\n    [5.971,39,null,null],\n    [6.043,null,null,21],\n    [6.13,227,null,null],\n    [6.231,null,29,null],\n    [6.283,0,null,null],\n    [6.284,null,0,null],\n    [6.284,null,null,0],\n    [6.7059999999999995,null,48,null],\n    [6.772,null,null,101],\n    [6.782,54,null,null],\n    [6.784,null,0,null],\n    [6.785,null,null,0],\n    [6.787,0,null,null],\n    [7.081,null,24,null],\n    [7.106,19,null,null],\n    [7.117,null,null,79],\n    [7.287,null,0,null],\n    [7.29,null,null,0],\n    [7.537,40,null,null],\n    [7.538,0,null,null],\n    [7.559,null,null,20],\n    [7.771,null,125,null],\n    [7.79,null,0,null],\n    [7.816,15,null,null],\n    [7.951,null,null,37],\n    [8.042,null,null,0],\n    [8.093,27,null,null],\n    [8.146,null,984,null],\n    [8.292,0,null,null],\n    [8.292,null,0,null],\n    [8.399000000000001,null,null,43],\n    [8.686,null,19,null],\n    [8.711,null,null,80],\n    [8.784,35,null,null],\n    [8.794,null,0,null],\n    [8.795,0,null,null],\n    [8.795,null,null,0],\n    [9.083,null,23,null],\n    [9.215,26,null,null],\n    [9.259,null,null,38],\n    [9.298,null,0,null],\n    [9.3,null,null,0],\n    [9.496,33,null,null],\n    [9.552,null,null,16],\n    [9.67,null,10,null],\n    [9.798,96,null,null],\n    [9.799,0,null,null],\n    [9.966,null,null,35],\n    [9.973,null,162,null],\n    [10.051,null,null,0],\n    [10.052,null,0,null],\n    [10.145,37,null,null],\n    [10.33,null,null,36],\n    [10.516,63,null,null],\n    [10.525,null,151,null],\n    [10.553,0,null,null],\n    [10.553,null,null,0],\n    [10.555,null,0,null],\n    [10.844,null,null,19],\n    [11.001,51,null,null],\n    [11.012,null,58,null],\n    [11.056,0,null,null],\n    [11.056,null,0,null],\n    [11.197,null,null,40],\n    [11.332,null,null,95],\n    [11.337,null,29,null],\n    [11.463,25,null,null],\n    [11.558,0,null,null],\n    [11.558,null,null,0],\n    [11.647,null,44,null],\n    [11.92,null,70,null],\n    [11.986,22,null,null],\n    [12.032,null,null,22],\n    [12.061,null,null,0],\n    [12.062,null,0,null],\n    [12.252,41,null,null],\n    [12.312,0,null,null],\n    [12.458,null,null,66],\n    [12.473,null,37,null],\n    [12.564,null,null,0],\n    [12.745,18,null,null],\n    [12.778,null,54,null],\n    [12.814,null,0,null],\n    [12.86,null,null,21],\n    [12.874,55,null,null],\n    [13.066,0,null,null],\n    [13.128,null,null,80],\n    [13.154,null,60,null],\n    [13.317,33,null,null],\n    [13.317,null,0,null],\n    [13.317,null,null,0],\n    [13.568999999999999,null,23,null],\n    [13.57,0,null,null],\n    [13.697,null,null,34],\n    [13.82,null,null,0],\n    [13.858,null,43,null],\n    [13.887,21,null,null],\n    [14.072,null,0,null],\n    [14.24,null,null,19],\n    [14.242,30,null,null],\n    [14.323,null,null,0],\n    [14.346,null,19,null],\n    [14.513,50,null,null],\n    [14.574,0,null,null],\n    [14.623,null,null,62],\n    [14.766,null,28,null],\n    [14.824,null,null,0],\n    [14.826,null,0,null],\n    [15.069,161,null,null],\n    [15.077,0,null,null],\n    [15.223,null,null,20],\n    [15.296,null,28,null],\n    [15.327,null,0,null],\n    [15.4,32,null,null],\n    [15.486,null,null,33],\n    [15.578,0,null,null],\n    [15.579,null,null,0],\n    [15.638,null,36,null],\n    [15.829,null,0,null],\n    [15.854,22,null,null],\n    [15.987,null,null,14],\n    [16.102,40,null,null],\n    [16.115,null,21,null],\n    [16.233,null,null,22],\n    [16.333,0,null,null],\n    [16.541,null,null,149],\n    [16.559,null,127,null],\n    [16.583,null,0,null],\n    [16.584,null,null,0],\n    [16.778,33,null,null],\n    [16.84,null,151,null],\n    [16.898,null,null,16],\n    [17.037,55,null,null],\n    [17.087,0,null,null],\n    [17.087,null,0,null],\n    [17.158,null,null,35],\n    [17.338,null,null,0],\n    [17.388,null,25,null],\n    [17.503,56,null,null],\n    [17.588,0,null,null],\n    [17.796,null,53,null],\n    [17.813,null,null,28],\n    [17.839,null,null,0],\n    [17.841,null,0,null],\n    [17.959,55,null,null],\n    [18.091,0,null,null],\n    [18.107,null,57,null],\n    [18.125,null,null,19],\n    [18.433,59,null,null],\n    [18.537,null,53,null],\n    [18.575,null,null,24],\n    [18.593,0,null,null],\n    [18.593,null,0,null],\n    [18.593,null,null,0],\n    [19.033,null,null,25],\n    [19.044,null,19,null],\n    [19.084,53,null,null],\n    [19.096,0,null,null],\n    [19.136,null,110,null],\n    [19.33,null,null,381],\n    [19.347,null,null,0],\n    [19.348,null,0,null],\n    [19.552,16,null,null],\n    [19.598,0,null,null],\n    [19.699,null,null,35],\n    [19.732,null,81,null],\n    [19.849,null,0,null],\n    [19.849,null,null,0],\n    [20.021,36,null,null],\n    [20.102,0,null,null],\n    [20.328,null,30,null],\n    [20.345,null,null,19],\n    [20.352,null,0,null],\n    [20.352,null,null,0],\n    [20.372,13,null,null],\n    [20.693,null,null,26],\n    [20.723,null,29,null],\n    [20.831,22,null,null],\n    [20.854,0,null,null],\n    [20.854,null,0,null],\n    [20.854,null,null,0],\n    [21.13,41,null,null],\n    [21.176,null,null,15],\n    [21.207,null,23,null],\n    [21.357,0,null,null],\n    [21.359,null,0,null],\n    [21.359,null,null,0],\n    [21.664,null,31,null],\n    [21.669,36,null,null],\n    [21.792,null,null,31],\n    [21.862,0,null,null],\n    [22.029,null,57,null],\n    [22.105,null,null,52],\n    [22.111,null,null,0],\n    [22.112,null,0,null],\n    [22.129,28,null,null],\n    [22.438,null,null,14],\n    [22.509,null,22,null],\n    [22.55,35,null,null],\n    [22.613,0,null,null],\n    [22.707,null,null,43],\n    [22.766,null,29,null],\n    [22.864,null,null,0],\n    [22.911,194,null,null],\n    [23.104,null,41,null],\n    [23.116,0,null,null],\n    [23.116,null,0,null],\n    [23.145,null,null,11],\n    [23.407,null,90,null],\n    [23.408,null,null,27],\n    [23.599,11,null,null],\n    [23.618,0,null,null],\n    [23.618,null,0,null],\n    [23.618,null,null,0],\n    [23.96,null,24,null],\n    [23.998,26,null,null],\n    [24.03,null,null,13],\n    [24.121,0,null,null],\n    [24.122,null,null,0],\n    [24.303,null,44,null],\n    [24.372,null,0,null],\n    [24.39,13,null,null],\n    [24.554,null,null,37],\n    [24.623,null,null,0],\n    [24.624,null,51,null],\n    [24.833,30,null,null],\n    [24.874,null,0,null],\n    [24.979,null,null,14],\n    [25.027,194,null,null],\n    [25.126,0,null,null],\n    [25.157,null,null,40],\n    [25.176,null,520,null],\n    [25.377,null,1,null],\n    [25.377,null,null,0],\n    [25.434,379,null,null],\n    [25.629,0,null,null],\n    [25.7,null,18,null],\n    [25.876,null,null,31],\n    [25.879,null,null,0],\n    [25.883,null,28,null],\n    [25.978,17,null,null],\n    [26.263,null,null,45],\n    [26.27,48,null,null],\n    [26.354,null,31,null],\n    [26.382,null,0,null],\n    [26.382,null,null,0],\n    [26.384,0,null,null],\n    [26.72,null,29,null],\n    [26.725,null,null,47],\n    [26.729,66,null,null],\n    [26.885,0,null,null],\n    [26.98,null,68,null],\n    [27.083,null,null,104],\n    [27.136,71,null,null],\n    [27.136,null,0,null],\n    [27.136,null,null,0],\n    [27.409,null,23,null],\n    [27.537,null,null,32],\n    [27.575,74,null,null],\n    [27.638,0,null,null],\n    [27.639,null,null,0],\n    [27.731,null,42,null],\n    [27.954,null,null,13],\n    [27.974,18,null,null],\n    [28.031,null,69,null],\n    [28.141,null,0,null],\n    [28.228,23,null,null],\n    [28.298,null,null,26],\n    [28.392,0,null,null],\n    [28.394,null,null,0],\n    [28.561,null,21,null],\n    [28.737,null,32,null],\n    [28.761,null,null,17],\n    [28.854,41,null,null],\n    [28.894,0,null,null],\n    [28.98,null,null,35],\n    [29.067,null,37,null],\n    [29.146,null,null,0],\n    [29.149,null,0,null],\n    [29.262,31,null,null],\n    [29.515,44,null,null],\n    [29.516,null,43,null],\n    [29.64,null,null,86],\n    [29.648,null,0,null],\n    [29.65,0,null,null],\n    [29.65,null,null,0],\n    [29.913,null,79,null],\n    [30.092,null,null,31],\n    [30.129,30,null,null],\n    [30.151,0,null,null],\n    [30.151,null,0,null],\n    [30.312,null,null,49],\n    [30.404,null,null,0],\n    [30.515,null,48,null],\n    [30.591,15,null,null],\n    [30.653,null,0,null],\n    [30.655,0,null,null],\n    [30.704,null,null,31],\n    [30.904,null,null,0],\n    [31.122,28,null,null],\n    [31.126,null,63,null],\n    [31.156,0,null,null],\n    [31.207,null,null,51],\n    [31.311,null,108,null],\n    [31.407,null,0,null],\n    [31.408,null,null,0],\n    [31.605,23,null,null],\n    [31.692,null,29,null],\n    [31.837,null,null,131],\n    [31.866,91,null,null],\n    [31.909,0,null,null],\n    [31.909,null,0,null],\n    [31.909,null,null,0],\n    [32.313,31,null,null],\n    [32.329,null,null,28],\n    [32.376,null,17,null],\n    [32.412,null,0,null],\n    [32.412,null,null,0],\n    [32.498,163,null,null],\n    [32.663,0,null,null],\n    [32.776,null,null,18],\n    [32.828,null,14,null],\n    [32.914,null,null,0],\n    [33.11,17,null,null],\n    [33.122,null,32,null],\n    [33.168,null,0,null],\n    [33.376,null,null,38],\n    [33.383,28,null,null],\n    [33.417,0,null,null],\n    [33.417,null,null,0],\n    [33.664,null,75,null],\n    [33.668,null,0,null],\n    [33.752,22,null,null],\n    [33.801,null,null,12],\n    [34.033,42,null,null],\n    [34.069,null,null,32],\n    [34.154,null,14,null],\n    [34.171,0,null,null],\n    [34.171,null,null,0],\n    [34.172,null,0,null],\n    [34.446,40,null,null],\n    [34.506,null,null,26],\n    [34.519,null,61,null],\n    [34.673,null,0,null],\n    [34.82,null,null,40],\n    [34.873,55,null,null],\n    [34.924,0,null,null],\n    [34.924,null,null,0],\n    [34.967,null,12,null],\n    [35.26,null,null,53],\n    [35.294,null,35,null],\n    [35.31,52,null,null],\n    [35.427,0,null,null],\n    [35.427,null,0,null],\n    [35.427,null,null,0],\n    [35.708,15,null,null],\n    [35.785,null,25,null],\n    [35.908,null,null,20],\n    [35.93,null,null,0],\n    [35.931,null,0,null],\n    [35.98,19,null,null],\n    [36.181,0,null,null],\n    [36.285,null,45,null],\n    [36.336,null,null,48],\n    [36.432,null,0,null],\n    [36.432,null,null,0],\n    [36.496,23,null,null],\n    [36.683,0,null,null],\n    [36.716,null,null,20],\n    [36.875,null,54,null],\n    [36.934,null,0,null],\n    [37.069,55,null,null],\n    [37.106,null,null,25],\n    [37.186,0,null,null],\n    [37.301,null,24,null],\n    [37.347,null,null,45],\n    [37.437,null,0,null],\n    [37.437,null,null,0],\n    [37.444,11,null,null],\n    [37.722,null,null,45],\n    [37.783,null,18,null],\n    [37.862,34,null,null],\n    [37.939,0,null,null],\n    [37.94,null,null,0],\n    [38.15,null,32,null],\n    [38.191,null,0,null],\n    [38.269,12,null,null],\n    [38.347,null,null,70],\n    [38.448,null,null,0],\n    [38.598,20,null,null],\n    [38.632,null,63,null],\n    [38.694,null,0,null],\n    [38.8,39,null,null],\n    [38.924,null,null,67],\n    [38.944,0,null,null],\n    [38.944,null,null,0],\n    [39.194,null,31,null],\n    [39.367,null,81,null],\n    [39.381,null,null,22],\n    [39.419,104,null,null],\n    [39.447,0,null,null],\n    [39.448,null,0,null],\n    [39.536,null,null,45],\n    [39.698,null,null,0],\n    [39.721,30,null,null],\n    [39.756,null,17,null],\n    [39.949,0,null,null],\n    [39.983,null,null,19],\n    [40.126,null,25,null],\n    [40.201,null,0,null],\n    [40.328,26,null,null],\n    [40.431,null,null,26],\n    [40.452,0,null,null],\n    [40.505,null,null,134],\n    [40.628,null,133,null],\n    [40.703,null,0,null],\n    [40.703,null,null,0],\n    [40.897,14,null,null],\n    [40.985,164,null,null],\n    [41.107,null,12,null],\n    [41.151,null,null,71],\n    [41.206,1,null,null],\n    [41.208,null,0,null],\n    [41.208,null,null,0],\n    [41.571,null,17,null],\n    [41.609,27,null,null],\n    [41.659,null,null,18],\n    [41.708,null,0,null],\n    [41.709,0,null,null],\n    [41.82,null,null,64],\n    [41.96,null,null,0],\n    [42.015,38,null,null],\n    [42.028,null,26,null],\n    [42.211,null,0,null],\n    [42.214,0,null,null],\n    [42.216,null,null,21],\n    [42.462,null,null,0],\n    [42.483,null,31,null],\n    [42.589,27,null,null],\n    [42.713,null,0,null],\n    [42.81,null,null,16],\n    [42.942,39,null,null],\n    [42.964,0,null,null],\n    [43.101,null,null,43],\n    [43.194,null,21,null],\n    [43.216,null,null,0],\n    [43.218,null,0,null],\n    [43.37,77,null,null],\n    [43.467,0,null,null],\n    [43.548,null,22,null],\n    [43.708,null,null,10],\n    [43.836,null,null,86],\n    [43.957,null,26,null],\n    [43.967,27,null,null],\n    [43.969,null,0,null],\n    [43.969,null,null,0],\n    [43.971,0,null,null],\n    [44.223,null,null,29],\n    [44.273,null,16,null],\n    [44.36,65,null,null],\n    [44.473,0,null,null],\n    [44.473,null,0,null],\n    [44.682,null,null,41],\n    [44.723,null,null,0],\n    [44.781,null,34,null],\n    [44.889,31,null,null],\n    [44.974,0,null,null],\n    [44.976,null,0,null],\n    [45.072,null,null,15],\n    [45.26,null,14,null],\n    [45.376,246,null,null],\n    [45.46,null,null,47],\n    [45.477,0,null,null],\n    [45.687,null,null,255],\n    [45.72,null,28,null],\n    [45.728,null,0,null],\n    [45.728,null,null,0],\n    [45.733,110,null,null],\n    [45.979,0,null,null],\n    [46.03,null,null,48],\n    [46.048,null,24,null],\n    [46.231,null,null,0],\n    [46.271,27,null,null],\n    [46.481,null,82,null],\n    [46.482,0,null,null],\n    [46.485,null,0,null],\n    [46.499,null,null,56],\n    [46.733,null,null,0],\n    [46.815,16,null,null],\n    [46.932,null,15,null],\n    [47.006,null,null,51],\n    [47.097,41,null,null],\n    [47.21,null,27,null],\n    [47.236,0,null,null],\n    [47.236,null,null,0],\n    [47.238,null,0,null],\n    [47.502,null,135,null],\n    [47.606,13,null,null],\n    [47.716,null,null,28],\n    [47.738,null,null,0],\n    [47.739,null,0,null],\n    [47.887,23,null,null],\n    [48.153,99,null,null],\n    [48.161,null,58,null],\n    [48.233,null,null,26],\n    [48.241,null,0,null],\n    [48.37,null,null,55],\n    [48.374,350,null,null],\n    [48.492,0,null,null],\n    [48.494,null,null,0],\n    [48.499,null,22,null],\n    [48.772,null,null,23],\n    [48.781,24,null,null],\n    [48.936,null,27,null],\n    [48.994,0,null,null],\n    [48.995,null,0,null],\n    [49.162,null,null,29],\n    [49.362,null,49,null],\n    [49.374,44,null,null],\n    [49.494,null,null,58],\n    [49.497,null,null,0],\n    [49.498,0,null,null],\n    [49.5,null,0,null],\n    [49.754,null,null,29],\n    [49.794,null,19,null],\n    [49.798,23,null,null],\n    [50,null,null,0],\n    [50.214,null,21,null],\n    [50.221,58,null,null],\n    [50.251,0,null,null],\n    [50.273,null,196,null],\n    [50.297,null,null,18],\n    [50.502,null,null,0],\n    [50.504,null,0,null],\n    [50.575,14,null,null],\n    [50.812,null,null,22],\n    [50.823,null,18,null],\n    [50.945,22,null,null],\n    [51.005,null,null,0],\n    [51.074,47,null,null],\n    [51.105,null,26,null],\n    [51.256,0,null,null],\n    [51.49,null,56,null],\n    [51.495,null,null,10],\n    [51.508,null,0,null],\n    [51.517,35,null,null],\n    [51.599,null,null,53],\n    [51.758,null,null,0],\n    [51.759,0,null,null],\n    [51.894,null,39,null],\n    [52.01,null,0,null],\n    [52.157,34,null,null],\n    [52.213,null,null,20],\n    [52.261,null,null,0],\n    [52.262,0,null,null],\n    [52.373,null,42,null],\n    [52.512,null,0,null],\n    [52.625,18,null,null],\n    [52.698,null,null,34],\n    [52.908,39,null,null],\n    [52.93,null,23,null],\n    [52.983,null,null,45],\n    [53.015,null,0,null],\n    [53.015,null,null,0],\n    [53.017,0,null,null],\n    [53.288,null,38,null],\n    [53.327,22,null,null],\n    [53.43,null,null,23],\n    [53.562,61,null,null],\n    [53.688,null,null,136],\n    [53.694,null,44,null],\n    [53.768,138,null,null],\n    [53.768,null,0,null],\n    [53.77,null,null,0],\n    [54.02,0,null,null],\n    [54.094,null,28,null],\n    [54.163,null,null,41],\n    [54.271,null,null,0],\n    [54.39,null,52,null],\n    [54.473,41,null,null],\n    [54.522,0,null,null],\n    [54.692,null,null,20],\n    [54.701,null,145,null],\n    [54.773,null,0,null],\n    [54.773,null,null,0],\n    [54.822,19,null,null],\n    [55.025,0,null,null],\n    [55.078,null,92,null],\n    [55.181,null,null,41],\n    [55.276,null,null,0],\n    [55.277,null,0,null],\n    [55.363,45,null,null],\n    [55.527,0,null,null],\n    [55.565,null,null,25],\n    [55.704,null,82,null],\n    [55.778,null,null,0],\n    [55.779,null,0,null],\n    [55.984,46,null,null],\n    [56.031,0,null,null],\n    [56.078,null,null,46],\n    [56.167,null,35,null],\n    [56.379,48,null,null],\n    [56.455,null,50,null],\n    [56.461,null,null,163],\n    [56.532,0,null,null],\n    [56.532,null,0,null],\n    [56.532,null,null,0],\n    [56.784,138,null,null],\n    [56.841,null,61,null],\n    [56.886,null,null,37],\n    [57.035,0,null,null],\n    [57.035,null,0,null],\n    [57.036,null,null,0],\n    [57.346,null,15,null],\n    [57.396,null,null,56],\n    [57.495,30,null,null],\n    [57.537,0,null,null],\n    [57.538,null,null,0],\n    [57.662,null,28,null],\n    [57.809,null,137,null],\n    [57.818,101,null,null],\n    [57.936,null,null,15],\n    [58.04,null,0,null],\n    [58.041,0,null,null],\n    [58.241,null,null,61],\n    [58.291,null,null,0],\n    [58.471,null,20,null],\n    [58.523,18,null,null],\n    [58.542,null,0,null],\n    [58.664,null,null,19],\n    [58.703,49,null,null],\n    [58.815,119,null,null],\n    [58.849,null,null,29],\n    [58.967,null,20,null],\n    [59.045,0,null,null],\n    [59.158,null,70,null],\n    [59.197,null,null,53],\n    [59.296,null,null,0],\n    [59.299,null,0,null],\n    [59.412,36,null,null],\n    [59.547,0,null,null],\n    [59.565,null,26,null],\n    [59.768,null,null,15],\n    [59.798,null,0,null],\n    [59.799,null,null,0],\n    [59.819,23,null,null],\n    [60.1,34,null,null],\n    [60.11,null,null,26],\n    [60.198,null,32,null],\n    [60.301,0,null,null],\n    [60.301,null,0,null],\n    [60.302,null,null,0],\n    [60.58,null,null,106],\n    [60.715,null,48,null],\n    [60.789,40,null,null],\n    [60.803,0,null,null],\n    [60.803,null,null,0],\n    [60.804,null,0,null],\n    [61.161,21,null,null],\n    [61.249,null,null,76],\n    [61.29,null,13,null],\n    [61.306,0,null,null],\n    [61.311,null,null,0],\n    [61.51,null,31,null],\n    [61.559,null,0,null],\n    [61.679,null,null,40],\n    [61.804,40,null,null],\n    [61.808,null,null,0],\n    [61.809,0,null,null],\n    [61.938,null,137,null],\n    [62.06,null,0,null],\n    [62.113,null,null,42],\n    [62.3,10,null,null],\n    [62.443,null,17,null],\n    [62.47,null,null,106],\n    [62.48,37,null,null],\n    [62.562,0,null,null],\n    [62.563,null,null,0],\n    [62.591,null,27,null],\n    [62.815,null,0,null],\n    [62.816,null,null,43],\n    [62.946,40,null,null],\n    [63.065,0,null,null],\n    [63.065,null,null,0],\n    [63.251,null,36,null],\n    [63.357,51,null,null],\n    [63.469,null,null,17],\n    [63.556,null,68,null],\n    [63.567,0,null,null],\n    [63.636,null,null,56],\n    [63.773,null,739,null],\n    [63.818,null,0,null],\n    [63.819,null,null,0],\n    [63.931,31,null,null],\n    [64.071,0,null,null],\n    [64.087,null,null,15],\n    [64.169,null,25,null],\n    [64.331,null,87,null],\n    [64.408,20,null,null],\n    [64.564,null,null,16],\n    [64.572,null,0,null],\n    [64.573,null,null,0],\n    [64.733,44,null,null],\n    [64.823,0,null,null],\n    [64.885,null,8,null],\n    [64.979,null,null,30],\n    [65.202,null,null,50],\n    [65.272,27,null,null],\n    [65.293,null,28,null],\n    [65.326,null,0,null],\n    [65.326,null,null,0],\n    [65.327,0,null,null],\n    [65.657,62,null,null],\n    [65.675,null,null,106],\n    [65.679,null,18,null],\n    [65.828,null,0,null],\n    [65.829,0,null,null],\n    [65.829,null,null,0],\n    [66.111,null,null,44],\n    [66.114,17,null,null],\n    [66.322,null,25,null],\n    [66.331,0,null,null],\n    [66.332,null,null,0],\n    [66.418,null,55,null],\n    [66.582,null,0,null],\n    [66.634,null,null,41],\n    [66.701,40,null,null],\n    [66.833,0,null,null],\n    [66.955,null,null,47],\n    [67.018,null,47,null],\n    [67.085,null,null,0],\n    [67.086,null,0,null],\n    [67.307,17,null,null],\n    [67.456,null,34,null],\n    [67.501,31,null,null],\n    [67.528,null,null,23],\n    [67.587,0,null,null],\n    [67.587,null,0,null],\n    [67.587,null,null,0],\n    [67.917,23,null,null],\n    [67.938,null,109,null],\n    [67.95,null,null,40],\n    [68.09,null,0,null],\n    [68.09,null,null,0],\n    [68.11,121,null,null],\n    [68.341,0,null,null],\n    [68.357,null,292,null],\n    [68.533,null,null,20],\n    [68.593,null,0,null],\n    [68.689,72,null,null],\n    [68.744,null,null,64],\n    [68.843,0,null,null],\n    [68.844,null,null,0],\n    [68.943,null,47,null],\n    [69.095,null,0,null],\n    [69.105,22,null,null],\n    [69.12,null,null,21],\n    [69.371,null,26,null],\n    [69.423,null,null,35],\n    [69.527,37,null,null],\n    [69.597,0,null,null],\n    [69.597,null,0,null],\n    [69.767,null,null,115],\n    [69.849,null,null,0],\n    [70.05,24,null,null],\n    [70.083,null,54,null],\n    [70.1,null,0,null],\n    [70.101,0,null,null],\n    [70.299,null,null,47],\n    [70.38,null,21,null],\n    [70.46,31,null,null],\n    [70.6,null,null,78],\n    [70.602,0,null,null],\n    [70.602,null,null,0],\n    [70.831,null,58,null],\n    [70.853,null,0,null],\n    [70.863,null,null,20],\n    [71.025,52,null,null],\n    [71.105,0,null,null],\n    [71.143,null,null,38],\n    [71.206,null,28,null],\n    [71.357,null,0,null],\n    [71.357,null,null,0],\n    [71.477,18,null,null],\n    [71.697,null,null,16],\n    [71.832,null,78,null],\n    [71.847,26,null,null],\n    [71.858,0,null,null],\n    [71.858,null,0,null],\n    [72.102,null,null,60],\n    [72.11,null,null,0],\n    [72.162,63,null,null],\n    [72.246,null,20,null],\n    [72.365,0,null,null],\n    [72.442,null,38,null],\n    [72.45,null,null,32],\n    [72.725,33,null,null],\n    [72.815,null,null,40],\n    [72.858,null,47,null],\n    [72.863,0,null,null],\n    [72.863,null,null,0],\n    [72.864,null,0,null],\n    [73.138,null,null,19],\n    [73.182,27,null,null],\n    [73.301,null,16,null],\n    [73.367,null,0,null],\n    [73.437,null,null,32],\n    [73.603,68,null,null],\n    [73.617,0,null,null],\n    [73.617,null,null,0],\n    [73.702,null,40,null],\n    [73.869,null,0,null],\n    [74.047,28,null,null],\n    [74.118,null,null,67],\n    [74.122,null,null,0],\n    [74.282,null,29,null],\n    [74.295,44,null,null],\n    [74.371,0,null,null],\n    [74.435,null,null,17],\n    [74.59,null,36,null],\n    [74.622,null,0,null],\n    [74.641,19,null,null],\n    [74.747,null,null,49],\n    [74.873,null,null,0],\n    [74.95,null,40,null],\n    [75.098,37,null,null],\n    [75.126,null,0,null],\n    [75.202,null,null,21],\n    [75.345,81,null,null],\n    [75.376,null,null,0],\n    [75.377,0,null,null],\n    [75.499,null,13,null],\n    [75.753,38,null,null],\n    [75.797,null,null,44],\n    [75.801,null,16,null],\n    [75.878,0,null,null],\n    [75.878,null,null,0],\n    [76.066,null,29,null],\n    [76.131,null,0,null],\n    [76.157,null,null,19],\n    [76.336,19,null,null],\n    [76.381,0,null,null],\n    [76.381,null,null,0],\n    [76.421,null,17,null],\n    [76.656,null,33,null],\n    [76.859,null,null,27],\n    [76.88,24,null,null],\n    [76.883,0,null,null],\n    [76.883,null,0,null],\n    [76.883,null,null,0],\n    [77.144,null,19,null],\n    [77.251,null,null,33],\n    [77.309,10,null,null],\n    [77.387,null,null,0],\n    [77.545,16,null,null],\n    [77.63,null,136,null],\n    [77.637,null,0,null],\n    [77.845,20,null,null],\n    [77.881,null,null,53],\n    [77.889,null,null,0],\n    [77.927,null,75,null],\n    [77.976,34,null,null],\n    [78.14,null,0,null],\n    [78.141,0,null,null],\n    [78.38,null,null,23],\n    [78.391,null,null,0],\n    [78.543,null,25,null],\n    [78.554,125,null,null],\n    [78.642,0,null,null],\n    [78.643,null,0,null],\n    [78.828,null,null,43],\n    [78.894,null,null,0],\n    [79.037,null,41,null],\n    [79.05,35,null,null],\n    [79.145,null,0,null],\n    [79.147,0,null,null],\n    [79.211,null,null,18],\n    [79.411,19,null,null],\n    [79.447,null,19,null],\n    [79.463,null,null,34],\n    [79.659,24,null,null],\n    [79.797,null,105,null],\n    [79.829,null,null,140],\n    [79.898,null,0,null],\n    [79.898,null,null,0],\n    [80.029,40,null,null],\n    [80.152,0,null,null],\n    [80.247,null,null,69],\n    [80.273,null,21,null],\n    [80.401,null,0,null],\n    [80.403,null,null,0],\n    [80.425,17,null,null],\n    [80.755,63,null,null],\n    [80.824,null,19,null],\n    [80.857,null,null,41],\n    [80.903,0,null,null],\n    [80.903,null,0,null],\n    [81.111,null,null,134],\n    [81.155,null,null,0],\n    [81.274,null,17,null],\n    [81.326,30,null,null],\n    [81.407,0,null,null],\n    [81.619,null,29,null],\n    [81.622,null,null,24],\n    [81.657,null,0,null],\n    [81.659,null,null,0],\n    [81.785,26,null,null],\n    [81.908,0,null,null],\n    [82.026,null,14,null],\n    [82.129,null,null,21],\n    [82.16,null,0,null],\n    [82.16,null,null,0],\n    [82.254,26,null,null],\n    [82.423,null,null,35],\n    [82.447,null,10,null],\n    [82.545,38,null,null],\n    [82.662,0,null,null],\n    [82.663,null,null,0],\n    [82.884,null,14,null],\n    [83.029,null,33,null],\n    [83.102,74,null,null],\n    [83.142,null,null,17],\n    [83.165,0,null,null],\n    [83.166,null,0,null],\n    [83.394,null,null,47],\n    [83.416,36,null,null],\n    [83.492,null,14,null],\n    [83.659,null,null,130],\n    [83.667,0,null,null],\n    [83.669,null,null,0],\n    [83.749,null,229,null],\n    [83.918,null,0,null],\n    [83.939,null,null,15],\n    [83.98,85,null,null],\n    [84.171,0,null,null],\n    [84.258,null,40,null],\n    [84.27,null,null,25],\n    [84.423,null,0,null],\n    [84.511,null,null,47],\n    [84.575,53,null,null],\n    [84.672,0,null,null],\n    [84.673,null,null,0],\n    [84.901,null,47,null],\n    [84.925,null,0,null],\n    [85.134,29,null,null],\n    [85.14,null,null,27],\n    [85.175,0,null,null],\n    [85.21,null,34,null],\n    [85.419,null,null,348],\n    [85.426,null,null,0],\n    [85.427,null,0,null],\n    [85.585,28,null,null],\n    [85.677,0,null,null],\n    [85.788,null,null,44],\n    [85.838,null,31,null],\n    [85.929,null,null,0],\n    [85.964,43,null,null],\n    [86.012,null,194,null],\n    [86.18,0,null,null],\n    [86.18,null,null,20],\n    [86.181,null,0,null],\n    [86.431,null,null,0],\n    [86.506,null,21,null],\n    [86.666,54,null,null],\n    [86.682,0,null,null],\n    [86.751,null,null,25],\n    [86.917,null,457,null],\n    [86.933,null,0,null],\n    [87.144,24,null,null],\n    [87.145,null,null,38],\n    [87.185,null,null,0],\n    [87.188,null,32,null],\n    [87.341,42,null,null],\n    [87.436,0,null,null],\n    [87.439,null,0,null],\n    [87.61,null,null,17],\n    [87.733,null,27,null],\n    [87.74,22,null,null],\n    [87.869,null,null,59],\n    [87.938,null,0,null],\n    [87.939,null,null,0],\n    [87.984,51,null,null],\n    [88.19,0,null,null],\n    [88.285,null,null,17],\n    [88.289,null,74,null],\n    [88.441,null,0,null],\n    [88.56,33,null,null],\n    [88.621,null,null,29],\n    [88.692,null,null,0],\n    [88.695,0,null,null],\n    [88.715,null,22,null],\n    [88.943,null,0,null],\n    [89.003,null,null,21],\n    [89.164,16,null,null],\n    [89.195,0,null,null],\n    [89.198,null,null,0],\n    [89.427,null,22,null],\n    [89.448,null,0,null],\n    [89.471,17,null,null],\n    [89.668,null,null,20],\n    [89.698,null,null,0],\n    [89.724,null,57,null],\n    [89.922,17,null,null],\n    [89.948,null,0,null],\n    [89.949,0,null,null],\n    [90.196,null,null,66],\n    [90.201,null,null,0],\n    [90.209,38,null,null],\n    [90.233,null,28,null],\n    [90.451,null,0,null],\n    [90.491,null,null,15],\n    [90.584,54,null,null],\n    [90.705,0,null,null],\n    [90.851,null,21,null],\n    [90.923,null,null,121],\n    [90.953,null,null,0],\n    [90.965,null,52,null],\n    [91.188,26,null,null],\n    [91.27,null,null,11],\n    [91.279,48,null,null],\n    [91.293,null,708,null],\n    [91.456,null,0,null],\n    [91.458,0,null,null],\n    [91.491,null,null,28],\n    [91.707,null,null,0],\n    [91.757,24,null,null],\n    [91.937,null,55,null],\n    [91.958,null,0,null],\n    [92.195,null,null,23],\n    [92.208,50,null,null],\n    [92.21,null,null,0],\n    [92.317,null,33,null],\n    [92.38,87,null,null],\n    [92.463,null,0,null],\n    [92.465,0,null,null],\n    [92.651,null,null,16],\n    [92.744,null,29,null],\n    [92.766,21,null,null],\n    [92.892,null,null,314],\n    [92.963,null,0,null],\n    [92.964,null,null,0],\n    [93.17,24,null,null],\n    [93.216,0,null,null],\n    [93.305,null,14,null],\n    [93.459,null,null,16],\n    [93.511,169,null,null],\n    [93.551,null,null,56],\n    [93.589,null,29,null],\n    [93.717,null,null,0],\n    [93.718,0,null,null],\n    [93.859,null,53,null],\n    [93.968,null,0,null],\n    [93.998,75,null,null],\n    [94.066,null,null,23],\n    [94.324,null,22,null],\n    [94.358,93,null,null],\n    [94.44,null,null,29],\n    [94.471,0,null,null],\n    [94.573,null,28,null],\n    [94.644,null,null,46],\n    [94.724,null,null,0],\n    [94.731,null,0,null],\n    [94.899,17,null,null],\n    [94.974,0,null,null],\n    [95.016,null,78,null],\n    [95.179,null,null,33],\n    [95.225,null,null,0],\n    [95.227,null,0,null],\n    [95.39,38,null,null],\n    [95.476,0,null,null],\n    [95.541,null,18,null],\n    [95.594,null,null,20],\n    [95.757,14,null,null],\n    [95.777,null,93,null],\n    [95.828,null,null,50],\n    [95.978,null,0,null],\n    [95.978,null,null,0],\n    [96.085,52,null,null],\n    [96.23,0,null,null],\n    [96.381,null,null,96],\n    [96.41,null,8,null],\n    [96.481,null,0,null],\n    [96.481,null,null,0],\n    [96.603,19,null,null],\n    [96.732,0,null,null],\n    [96.738,null,24,null],\n    [96.873,null,null,28],\n    [97.013,14,null,null],\n    [97.04,null,null,50],\n    [97.202,null,32,null],\n    [97.235,null,null,0],\n    [97.245,35,null,null],\n    [97.408,null,68,null],\n    [97.486,0,null,null],\n    [97.486,null,0,null],\n    [97.525,null,null,61],\n    [97.74,null,null,0],\n    [97.849,null,25,null],\n    [97.881,30,null,null],\n    [97.988,null,0,null],\n    [97.989,null,null,26],\n    [97.991,0,null,null],\n    [98.24,null,null,0],\n    [98.243,null,23,null],\n    [98.366,15,null,null],\n    [98.576,27,null,null],\n    [98.61,null,null,23],\n    [98.62,null,55,null],\n    [98.742,0,null,null],\n    [98.742,null,null,0],\n    [98.743,null,0,null],\n    [98.995,null,null,39],\n    [99.001,null,45,null],\n    [99.165,11,null,null],\n    [99.247,null,0,null],\n    [99.362,17,null,null],\n    [99.464,null,null,38],\n    [99.496,null,null,0],\n    [99.583,45,null,null],\n    [99.617,null,9,null],\n    [99.747,0,null,null],\n    [99.815,null,null,71],\n    [99.954,null,47,null],\n    [99.999,0,null,null],\n    [99.999,null,0,null],\n    [99.999,null,null,0]  ];\n      \n      \n      const data = pivotData(rowData);\n      \n      \n      let isDarkTheme = true;\n      let isLogScale = true;\n      let currentPlot = null;\n      \n      function createPlot(logScale) {\n        \n        const series = [{ label: opts.labels[0] }];\n        for (let i = 1; i < opts.labels.length; i++) {\n          series.push({\n            label: opts.labels[i],\n            stroke: opts.colors[i - 1] || '#8b949e',\n            width: 2,\n            points: { show: false },\n            value: (u, v) => formatDuration(v)\n          });\n        }\n        const plotWidth = Math.max(600, document.getElementById('plot').parentElement.clientWidth - 40);\n        \n        const axisColor = isDarkTheme ? '#8b949e' : '#6b7280';\n        const gridColor = isDarkTheme ? '#30363d' : '#e5e7eb';\n        \n        \n        const yScale = logScale\n          ? {\n              distr: 3,\n              log: 10\n            }\n          : {\n              \n            };\n        \n        const uplotOpts = {\n          title: null,\n          width: plotWidth,\n          height: 500,\n          series: series,\n          scales: {\n            x: {\n              time: false\n            },\n            y: yScale\n          },\n          axes: [\n            {\n              label: \"Seconds elapsed\",\n              labelSize: 30,\n              size: 50,\n              stroke: axisColor,\n              grid: {\n                show: true,\n                stroke: gridColor,\n                width: 1\n              },\n              ticks: {\n                show: false\n              }\n            },\n            {\n              label: \"Latency\",\n              labelSize: 30,\n              size: 80,\n              stroke: axisColor,\n              grid: {\n                show: true,\n                stroke: gridColor,\n                width: 1\n              },\n              ticks: {\n                show: false,\n                size: 0\n              },\n              values: (u, vals) => vals.map(v => formatDuration(v))\n            }\n          ],\n          legend: {\n            show: true,\n            live: true\n          },\n          cursor: {\n            drag: {\n              x: true,\n              y: false\n            },\n            points: {\n              show: true,\n              size: 8,\n              width: 2\n            }\n          },\n          hooks: {\n            setSelect: [\n              function(u) {\n                const min = u.posToVal(u.select.left, 'x');\n                const max = u.posToVal(u.select.left + u.select.width, 'x');\n                u.setScale('x', { min, max });\n              }\n            ]\n          }\n        };\n        \n        if (currentPlot) {\n          currentPlot.destroy();\n        }\n        \n        currentPlot = new uPlot(uplotOpts, data, document.getElementById('plot'));\n        return currentPlot;\n      }\n      \n      \n      createPlot(isLogScale);\n      \n      \n      let resizeTimeout;\n      window.addEventListener('resize', function() {\n        clearTimeout(resizeTimeout);\n        resizeTimeout = setTimeout(function() {\n          const plotWidth = Math.max(600, document.getElementById('plot').parentElement.clientWidth - 40);\n          currentPlot.setSize({ width: plotWidth, height: 500 });\n        }, 150);\n      });\n      \n      \n      document.getElementById('toggleTheme').addEventListener('click', function() {\n        isDarkTheme = !isDarkTheme;\n        document.body.className = isDarkTheme ? 'dark' : 'light';\n        this.textContent = isDarkTheme ? '☀️ Light' : '🌙 Dark';\n        createPlot(isLogScale);\n      });\n      \n      \n      document.getElementById('resetZoom').addEventListener('click', function() {\n        currentPlot.setScale('x', { min: data[0][0], max: data[0][data[0].length - 1] });\n      });\n      \n      \n      document.getElementById('toggleLogScale').addEventListener('click', function() {\n        isLogScale = !isLogScale;\n        this.classList.toggle('active', isLogScale);\n        createPlot(isLogScale);\n      });\n      \n      \n      document.getElementById('exportPNG').addEventListener('click', function() {\n        exportToPNG(currentPlot, 'vegeta-plot.png');\n      });\n    })();\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "lib/plot/timeseries.go",
    "content": "package plot\n\nimport (\n\t\"errors\"\n\t\"time\"\n\n\ttsz \"github.com/tsenart/go-tsz\"\n\t\"github.com/tsenart/vegeta/v12/lib/lttb\"\n)\n\n// An in-memory timeSeries of points with high compression of\n// both timestamps and values.  It's not safe for concurrent use.\ntype timeSeries struct {\n\tattack string\n\tlabel  string\n\tprev   uint64\n\tdata   *tsz.Series\n\tlen    int\n}\n\nfunc newTimeSeries(attack, label string) *timeSeries {\n\treturn &timeSeries{\n\t\tattack: attack,\n\t\tlabel:  label,\n\t\tdata:   tsz.New(0),\n\t}\n}\n\nvar errMonotonicTimestamp = errors.New(\"timeseries: non monotonically increasing timestamp\")\n\nfunc (ts *timeSeries) add(t uint64, v float64) error {\n\tif ts.prev > t {\n\t\treturn errMonotonicTimestamp\n\t}\n\n\tts.data.Push(t, v)\n\tts.prev = t\n\tts.len++\n\n\treturn nil\n}\n\nfunc (ts *timeSeries) iter() lttb.Iter {\n\tit := ts.data.Iter()\n\treturn func(count int) ([]lttb.Point, error) {\n\t\tps := make([]lttb.Point, 0, count)\n\t\tfor i := 0; i < count && it.Next(); i++ {\n\t\t\tt, v := it.Values()\n\t\t\tps = append(ps, lttb.Point{\n\t\t\t\tX: time.Duration(t * 1e6).Seconds(),\n\t\t\t\tY: v,\n\t\t\t})\n\t\t}\n\t\treturn ps, it.Err()\n\t}\n}\n"
  },
  {
    "path": "lib/prom/grafana.json",
    "content": "{\n  \"__inputs\": [\n    {\n      \"name\": \"DS_PROMETHEUS\",\n      \"label\": \"prometheus\",\n      \"description\": \"\",\n      \"type\": \"datasource\",\n      \"pluginId\": \"prometheus\",\n      \"pluginName\": \"Prometheus\"\n    }\n  ],\n  \"__requires\": [\n    {\n      \"type\": \"grafana\",\n      \"id\": \"grafana\",\n      \"name\": \"Grafana\",\n      \"version\": \"5.2.4\"\n    },\n    {\n      \"type\": \"panel\",\n      \"id\": \"graph\",\n      \"name\": \"Graph\",\n      \"version\": \"5.0.0\"\n    },\n    {\n      \"type\": \"datasource\",\n      \"id\": \"prometheus\",\n      \"name\": \"Prometheus\",\n      \"version\": \"5.0.0\"\n    }\n  ],\n  \"annotations\": {\n    \"list\": [\n      {\n        \"builtIn\": 1,\n        \"datasource\": \"-- Grafana --\",\n        \"enable\": true,\n        \"hide\": true,\n        \"iconColor\": \"rgba(0, 211, 255, 1)\",\n        \"name\": \"Annotations & Alerts\",\n        \"type\": \"dashboard\"\n      }\n    ]\n  },\n  \"editable\": true,\n  \"gnetId\": null,\n  \"graphTooltip\": 0,\n  \"id\": null,\n  \"links\": [],\n  \"panels\": [\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 4,\n        \"w\": 12,\n        \"x\": 0,\n        \"y\": 0\n      },\n      \"id\": 12,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"rate(request_seconds_count{status=~\\\"2..\\\"}[1m])/rate(request_seconds_count[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"status {{status}} {{url}}\",\n          \"refId\": \"A\"\n        },\n        {\n          \"expr\": \"rate(request_seconds_count{status=~\\\"3..\\\"}[1m])/rate(request_seconds_count[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"status {{status}} {{url}}\",\n          \"refId\": \"B\"\n        },\n        {\n          \"expr\": \"rate(request_seconds_count{status=~\\\"4..\\\"}[1m])/rate(request_seconds_count[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"status {{status}} {{url}}\",\n          \"refId\": \"C\"\n        },\n        {\n          \"expr\": \"rate(request_seconds_count{status=~\\\"5..\\\"}[1m])/rate(request_seconds_count[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"status {{status}} {{url}}\",\n          \"refId\": \"D\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Request Status\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"percentunit\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    },\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 4,\n        \"w\": 12,\n        \"x\": 12,\n        \"y\": 0\n      },\n      \"id\": 6,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"histogram_quantile(0.50, sum(rate(request_seconds_bucket[1m])) by (le, status))\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"P50 {{status}}\",\n          \"refId\": \"A\"\n        },\n        {\n          \"expr\": \"histogram_quantile(0.90, sum(rate(request_seconds_bucket[1m])) by (le, status))\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"P90 {{status}}\",\n          \"refId\": \"B\"\n        },\n        {\n          \"expr\": \"histogram_quantile(0.99, sum(rate(request_seconds_bucket[1m])) by (le, status))\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"P99 {{status}}\",\n          \"refId\": \"C\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Average Request Latency\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"s\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    },\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 5,\n        \"w\": 12,\n        \"x\": 0,\n        \"y\": 4\n      },\n      \"id\": 4,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"rate(request_seconds_count[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"throughtput {{url}} {{status}}\",\n          \"refId\": \"A\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Requests per second\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"reqps\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    },\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 5,\n        \"w\": 12,\n        \"x\": 12,\n        \"y\": 4\n      },\n      \"id\": 8,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"go_threads{job=\\\"vegeta\\\"} \",\n          \"format\": \"time_series\",\n          \"hide\": false,\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"Vegeta Go threads\",\n          \"refId\": \"A\"\n        },\n        {\n          \"expr\": \"go_goroutines{job=\\\"vegeta\\\"} \",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"Vegeta Go routines\",\n          \"refId\": \"B\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Vegeta threads\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    },\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 5,\n        \"w\": 12,\n        \"x\": 0,\n        \"y\": 9\n      },\n      \"id\": 2,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"rate(request_bytes_in[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"bytes_out {{url}} {{status}}\",\n          \"refId\": \"A\"\n        },\n        {\n          \"expr\": \"rate(request_bytes_out[1m])\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"legendFormat\": \"bytes_out {{url}} {{status}}\",\n          \"refId\": \"B\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Data throughput\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"Bps\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    },\n    {\n      \"aliasColors\": {},\n      \"bars\": false,\n      \"dashLength\": 10,\n      \"dashes\": false,\n      \"datasource\": \"${DS_PROMETHEUS}\",\n      \"fill\": 1,\n      \"gridPos\": {\n        \"h\": 5,\n        \"w\": 12,\n        \"x\": 12,\n        \"y\": 9\n      },\n      \"id\": 10,\n      \"legend\": {\n        \"avg\": false,\n        \"current\": false,\n        \"max\": false,\n        \"min\": false,\n        \"show\": true,\n        \"total\": false,\n        \"values\": false\n      },\n      \"lines\": true,\n      \"linewidth\": 1,\n      \"links\": [],\n      \"nullPointMode\": \"null\",\n      \"percentage\": false,\n      \"pointradius\": 5,\n      \"points\": false,\n      \"renderer\": \"flot\",\n      \"seriesOverrides\": [],\n      \"spaceLength\": 10,\n      \"stack\": false,\n      \"steppedLine\": false,\n      \"targets\": [\n        {\n          \"expr\": \"go_memstats_alloc_bytes{job=\\\"vegeta\\\"}\",\n          \"format\": \"time_series\",\n          \"intervalFactor\": 1,\n          \"refId\": \"A\"\n        }\n      ],\n      \"thresholds\": [],\n      \"timeFrom\": null,\n      \"timeShift\": null,\n      \"title\": \"Vegeta Heap Size\",\n      \"tooltip\": {\n        \"shared\": true,\n        \"sort\": 0,\n        \"value_type\": \"individual\"\n      },\n      \"type\": \"graph\",\n      \"xaxis\": {\n        \"buckets\": null,\n        \"mode\": \"time\",\n        \"name\": null,\n        \"show\": true,\n        \"values\": []\n      },\n      \"yaxes\": [\n        {\n          \"format\": \"decbytes\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        },\n        {\n          \"format\": \"short\",\n          \"label\": null,\n          \"logBase\": 1,\n          \"max\": null,\n          \"min\": null,\n          \"show\": true\n        }\n      ],\n      \"yaxis\": {\n        \"align\": false,\n        \"alignLevel\": null\n      }\n    }\n  ],\n  \"refresh\": false,\n  \"schemaVersion\": 16,\n  \"style\": \"dark\",\n  \"tags\": [],\n  \"templating\": {\n    \"list\": []\n  },\n  \"time\": {\n    \"from\": \"2023-07-23T13:28:35.330Z\",\n    \"to\": \"2023-07-23T13:33:18.000Z\"\n  },\n  \"timepicker\": {\n    \"refresh_intervals\": [\n      \"5s\",\n      \"10s\",\n      \"30s\",\n      \"1m\",\n      \"5m\",\n      \"15m\",\n      \"30m\",\n      \"1h\",\n      \"2h\",\n      \"1d\"\n    ],\n    \"time_options\": [\n      \"5m\",\n      \"15m\",\n      \"1h\",\n      \"6h\",\n      \"12h\",\n      \"24h\",\n      \"2d\",\n      \"7d\",\n      \"30d\"\n    ]\n  },\n  \"timezone\": \"\",\n  \"title\": \"Vegeta\",\n  \"uid\": \"6GNY5DGGk\",\n  \"version\": 3\n}"
  },
  {
    "path": "lib/prom/prom.go",
    "content": "package prom\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"strconv\"\n\t\"time\"\n\n\t\"github.com/prometheus/client_golang/prometheus\"\n\t\"github.com/prometheus/client_golang/prometheus/promhttp\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\n// Metrics encapsulates Prometheus metrics of an attack.\ntype Metrics struct {\n\trequestLatencyHistogram *prometheus.HistogramVec\n\trequestBytesInCounter   *prometheus.CounterVec\n\trequestBytesOutCounter  *prometheus.CounterVec\n\trequestFailCounter      *prometheus.CounterVec\n}\n\n// NewMetrics returns a new Metrics instance that must be\n// registered in a Prometheus registry with Register.\nfunc NewMetrics() *Metrics {\n\tbaseLabels := []string{\"method\", \"url\", \"status\"}\n\treturn &Metrics{\n\t\trequestLatencyHistogram: prometheus.NewHistogramVec(prometheus.HistogramOpts{\n\t\t\tName:    \"request_seconds\",\n\t\t\tHelp:    \"Request latency\",\n\t\t\tBuckets: prometheus.DefBuckets,\n\t\t}, baseLabels),\n\t\trequestBytesInCounter: prometheus.NewCounterVec(prometheus.CounterOpts{\n\t\t\tName: \"request_bytes_in\",\n\t\t\tHelp: \"Bytes received from servers as response to requests\",\n\t\t}, baseLabels),\n\t\trequestBytesOutCounter: prometheus.NewCounterVec(prometheus.CounterOpts{\n\t\t\tName: \"request_bytes_out\",\n\t\t\tHelp: \"Bytes sent to servers during requests\",\n\t\t}, baseLabels),\n\t\trequestFailCounter: prometheus.NewCounterVec(prometheus.CounterOpts{\n\t\t\tName: \"request_fail_count\",\n\t\t\tHelp: \"Count of failed requests\",\n\t\t}, append(baseLabels[:len(baseLabels):len(baseLabels)], \"message\")),\n\t}\n}\n\n// Register registers all Prometheus metrics in r.\nfunc (pm *Metrics) Register(r prometheus.Registerer) error {\n\tfor _, c := range []prometheus.Collector{\n\t\tpm.requestLatencyHistogram,\n\t\tpm.requestBytesInCounter,\n\t\tpm.requestBytesOutCounter,\n\t\tpm.requestFailCounter,\n\t} {\n\t\tif err := r.Register(c); err != nil {\n\t\t\treturn fmt.Errorf(\"failed to register metric %v: %w\", c, err)\n\t\t}\n\t}\n\treturn nil\n}\n\n// Observe metrics given a vegeta.Result.\nfunc (pm *Metrics) Observe(res *vegeta.Result) {\n\tcode := strconv.FormatUint(uint64(res.Code), 10)\n\tpm.requestBytesInCounter.WithLabelValues(res.Method, res.URL, code).Add(float64(res.BytesIn))\n\tpm.requestBytesOutCounter.WithLabelValues(res.Method, res.URL, code).Add(float64(res.BytesOut))\n\tpm.requestLatencyHistogram.WithLabelValues(res.Method, res.URL, code).Observe(res.Latency.Seconds())\n\tif res.Error != \"\" {\n\t\tpm.requestFailCounter.WithLabelValues(res.Method, res.URL, code, res.Error)\n\t}\n}\n\n// NewHandler returns a new http.Handler that exposes Prometheus\n// metrics registed in r in the OpenMetrics format.\nfunc NewHandler(r *prometheus.Registry, startTime time.Time) http.Handler {\n\treturn promhttp.HandlerFor(r, promhttp.HandlerOpts{\n\t\tRegistry:          r,\n\t\tEnableOpenMetrics: true,\n\t\tProcessStartTime:  startTime,\n\t})\n}\n"
  },
  {
    "path": "lib/prom/prom_test.go",
    "content": "package prom\n\nimport (\n\t\"io\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/prometheus/client_golang/prometheus\"\n\t\"github.com/prometheus/prometheus/model/textparse\"\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nfunc TestMetrics_Observe(t *testing.T) {\n\treg := prometheus.NewRegistry()\n\tpm := NewMetrics()\n\n\tif err := pm.Register(reg); err != nil {\n\t\tt.Fatal(\"error registering metrics\", err)\n\t}\n\n\tsrv := httptest.NewServer(NewHandler(reg, time.Now().UTC()))\n\tdefer srv.Close()\n\n\t// XXX: Result timestamps are ignored, since Prometheus aggregates metrics\n\t// and only assigns timestamps to series in the server once it scrapes.\n\t// To have accurate timestamps we'd have to implement a remote write integration.\n\n\tr := &vegeta.Result{\n\t\tURL:      \"http://test.com/test1\",\n\t\tMethod:   \"GET\",\n\t\tCode:     500,\n\t\tError:    \"Internal Server Error\",\n\t\tLatency:  100 * time.Millisecond,\n\t\tBytesIn:  1000,\n\t\tBytesOut: 50,\n\t}\n\n\tpm.Observe(r)\n\n\tresp, err := http.Get(srv.URL)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to get prometheus metrics. err=%s\", err)\n\t}\n\n\tif resp.StatusCode != 200 {\n\t\tt.Fatalf(\"status code should be 200. code=%d\", resp.StatusCode)\n\t}\n\n\tdata, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tt.Errorf(\"error reading response body: err=%v\", err)\n\t}\n\n\tp, err := textparse.New(data, resp.Header.Get(\"Content-Type\"), true, nil)\n\tif err != nil {\n\t\tt.Fatalf(\"error creating prometheus metrics parser. err=%v\", err)\n\t}\n\n\twant := map[string]struct{}{\n\t\t\"request_seconds\":    struct{}{},\n\t\t\"request_bytes_in\":   struct{}{},\n\t\t\"request_bytes_out\":  struct{}{},\n\t\t\"request_fail_count\": struct{}{},\n\t}\n\n\tt.Log(string(data))\n\n\tfor len(want) > 0 {\n\t\t_, err := p.Next()\n\t\tif err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tt.Fatalf(\"error parsing prometheus metrics. err=%v\", err)\n\t\t}\n\n\t\tname, _ := p.Help()\n\t\tnameStr := string(name)\n\n\t\tif _, ok := want[nameStr]; ok {\n\t\t\tdelete(want, nameStr)\n\t\t}\n\t}\n\n\tif len(want) > 0 {\n\t\tt.Errorf(\"missing metrics: %v\", want)\n\t}\n}\n"
  },
  {
    "path": "lib/reporters.go",
    "content": "package vegeta\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"sort\"\n\t\"strings\"\n\t\"text/tabwriter\"\n\t\"time\"\n)\n\n// A Report represents the state a Reporter uses to write out its reports.\ntype Report interface {\n\t// Add adds a given *Result to a Report.\n\tAdd(*Result)\n}\n\n// Closer wraps the optional Report Close method.\ntype Closer interface {\n\t// Close permantently closes a Report, running any necessary book keeping.\n\tClose()\n}\n\n// A Reporter function writes out reports to the given io.Writer or returns an\n// error in case of failure.\ntype Reporter func(io.Writer) error\n\n// Report is a convenience method wrapping the Reporter function type.\nfunc (rep Reporter) Report(w io.Writer) error { return rep(w) }\n\n// NewHistogramReporter returns a Reporter that writes out a Histogram as\n// aligned, formatted text.\nfunc NewHistogramReporter(h *Histogram) Reporter {\n\treturn func(w io.Writer) (err error) {\n\t\ttw := tabwriter.NewWriter(w, 0, 8, 2, ' ', tabwriter.StripEscape)\n\t\tif _, err = fmt.Fprintf(tw, \"Bucket\\t\\t#\\t%%\\tHistogram\\n\"); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tfor i, count := range h.Counts {\n\t\t\tratio := float64(count) / float64(h.Total)\n\t\t\tlo, hi := h.Buckets.Nth(i)\n\t\t\tpad := strings.Repeat(\"#\", int(ratio*75))\n\t\t\t_, err = fmt.Fprintf(tw, \"[%s,\\t%s]\\t%d\\t%.2f%%\\t%s\\n\", lo, hi, count, ratio*100, pad)\n\t\t\tif err != nil {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\n\t\treturn tw.Flush()\n\t}\n}\n\n// NewTextReporter returns a Reporter that writes out Metrics as aligned,\n// formatted text.\nfunc NewTextReporter(m *Metrics) Reporter {\n\tconst fmtstr = \"Requests\\t[total, rate, throughput]\\t%d, %.2f, %.2f\\n\" +\n\t\t\"Duration\\t[total, attack, wait]\\t%s, %s, %s\\n\" +\n\t\t\"Latencies\\t[min, mean, 50, 90, 95, 99, max]\\t%s, %s, %s, %s, %s, %s, %s\\n\" +\n\t\t\"Bytes In\\t[total, mean]\\t%d, %.2f\\n\" +\n\t\t\"Bytes Out\\t[total, mean]\\t%d, %.2f\\n\" +\n\t\t\"Success\\t[ratio]\\t%.2f%%\\n\" +\n\t\t\"Status Codes\\t[code:count]\\t\"\n\n\treturn func(w io.Writer) (err error) {\n\t\ttw := tabwriter.NewWriter(w, 0, 8, 2, ' ', tabwriter.StripEscape)\n\t\tif _, err = fmt.Fprintf(tw, fmtstr,\n\t\t\tm.Requests, m.Rate, m.Throughput,\n\t\t\tround(m.Duration+m.Wait),\n\t\t\tround(m.Duration),\n\t\t\tround(m.Wait),\n\t\t\tround(m.Latencies.Min),\n\t\t\tround(m.Latencies.Mean),\n\t\t\tround(m.Latencies.P50),\n\t\t\tround(m.Latencies.P90),\n\t\t\tround(m.Latencies.P95),\n\t\t\tround(m.Latencies.P99),\n\t\t\tround(m.Latencies.Max),\n\t\t\tm.BytesIn.Total, m.BytesIn.Mean,\n\t\t\tm.BytesOut.Total, m.BytesOut.Mean,\n\t\t\tm.Success*100,\n\t\t); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tcodes := make([]string, 0, len(m.StatusCodes))\n\t\tfor code := range m.StatusCodes {\n\t\t\tcodes = append(codes, code)\n\t\t}\n\n\t\tsort.Strings(codes)\n\n\t\tfor _, code := range codes {\n\t\t\tcount := m.StatusCodes[code]\n\t\t\tif _, err = fmt.Fprintf(tw, \"%s:%d  \", code, count); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\n\t\tif _, err = fmt.Fprintln(tw, \"\\nError Set:\"); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tfor _, e := range m.Errors {\n\t\t\tif _, err = fmt.Fprintln(tw, e); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\n\t\treturn tw.Flush()\n\t}\n}\n\nvar durations = [...]time.Duration{\n\ttime.Hour,\n\ttime.Minute,\n\ttime.Second,\n\ttime.Millisecond,\n\ttime.Microsecond,\n\ttime.Nanosecond,\n}\n\n// round to the next most precise unit\nfunc round(d time.Duration) time.Duration {\n\tfor i, unit := range durations {\n\t\tif d >= unit && i < len(durations)-1 {\n\t\t\treturn d.Round(durations[i+1])\n\t\t}\n\t}\n\treturn d\n}\n\n// NewJSONReporter returns a Reporter that writes out Metrics as JSON.\nfunc NewJSONReporter(m *Metrics) Reporter {\n\treturn func(w io.Writer) error {\n\t\treturn json.NewEncoder(w).Encode(m)\n\t}\n}\n\nvar logarithmic = []float64{\n\t0.00,\n\t0.100,\n\t0.200,\n\t0.300,\n\t0.400,\n\t0.500,\n\t0.550,\n\t0.600,\n\t0.650,\n\t0.700,\n\t0.750,\n\t0.775,\n\t0.800,\n\t0.825,\n\t0.850,\n\t0.875,\n\t0.8875,\n\t0.900,\n\t0.9125,\n\t0.925,\n\t0.9375,\n\t0.94375,\n\t0.950,\n\t0.95625,\n\t0.9625,\n\t0.96875,\n\t0.971875,\n\t0.975,\n\t0.978125,\n\t0.98125,\n\t0.984375,\n\t0.985938,\n\t0.9875,\n\t0.989062,\n\t0.990625,\n\t0.992188,\n\t0.992969,\n\t0.99375,\n\t0.994531,\n\t0.995313,\n\t0.996094,\n\t0.996484,\n\t0.996875,\n\t0.997266,\n\t0.997656,\n\t0.998047,\n\t0.998242,\n\t0.998437,\n\t0.998633,\n\t0.998828,\n\t0.999023,\n\t0.999121,\n\t0.999219,\n\t0.999316,\n\t0.999414,\n\t0.999512,\n\t0.999561,\n\t0.999609,\n\t0.999658,\n\t0.999707,\n\t0.999756,\n\t0.99978,\n\t0.999805,\n\t0.999829,\n\t0.999854,\n\t0.999878,\n\t0.99989,\n\t0.999902,\n\t0.999915,\n\t0.999927,\n\t0.999939,\n\t0.999945,\n\t0.999951,\n\t0.999957,\n\t0.999963,\n\t0.999969,\n\t0.999973,\n\t0.999976,\n\t0.999979,\n\t0.999982,\n\t0.999985,\n\t0.999986,\n\t0.999988,\n\t0.999989,\n\t0.999991,\n\t0.999992,\n\t0.999993,\n\t0.999994,\n\t0.999995,\n\t0.999996,\n\t0.999997,\n\t0.999998,\n\t0.999999,\n\t1.0,\n}\n\n// NewHDRHistogramPlotReporter returns a Reporter that writes out latency metrics\n// in a format plottable by http://hdrhistogram.github.io/HdrHistogram/plotFiles.html.\nfunc NewHDRHistogramPlotReporter(m *Metrics) Reporter {\n\treturn func(w io.Writer) error {\n\t\ttw := tabwriter.NewWriter(w, 0, 8, 2, ' ', tabwriter.StripEscape)\n\t\t_, err := fmt.Fprintf(tw, \"Value(ms)\\tPercentile\\tTotalCount\\t1/(1-Percentile)\\n\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\ttotal := float64(m.Requests)\n\t\tfor _, q := range logarithmic {\n\t\t\tvalue := milliseconds(m.Latencies.Quantile(q))\n\t\t\toneBy := oneByQuantile(q)\n\t\t\tcount := int64((q * total) + 0.5) // Count at quantile\n\t\t\t_, err = fmt.Fprintf(tw, \"%f\\t%f\\t%d\\t%f\\n\", value, q, count, oneBy)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\n\t\treturn tw.Flush()\n\t}\n}\n\n// milliseconds converts the given duration to a number of\n// fractional milliseconds. Splitting the integer and fraction\n// ourselves guarantees that converting the returned float64 to an\n// integer rounds the same way that a pure integer conversion would have,\n// even in cases where, say, float64(d.Nanoseconds())/1e9 would have rounded\n// differently.\nfunc milliseconds(d time.Duration) float64 {\n\tmsec, nsec := d/time.Millisecond, d%time.Millisecond\n\treturn float64(msec) + float64(nsec)/1e6\n}\n\nfunc oneByQuantile(q float64) float64 {\n\tif q < 1.0 {\n\t\treturn 1 / (1 - q)\n\t}\n\treturn float64(10000000)\n}\n"
  },
  {
    "path": "lib/results.go",
    "content": "package vegeta\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"encoding/base64\"\n\t\"encoding/csv\"\n\t\"encoding/gob\"\n\t\"io\"\n\t\"net/http\"\n\t\"net/textproto\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/mailru/easyjson/jlexer\"\n\t\"github.com/mailru/easyjson/jwriter\"\n)\n\nfunc init() {\n\tgob.Register(&Result{})\n}\n\n// Result contains the results of a single Target hit.\ntype Result struct {\n\tAttack    string        `json:\"attack\"`\n\tSeq       uint64        `json:\"seq\"`\n\tCode      uint16        `json:\"code\"`\n\tTimestamp time.Time     `json:\"timestamp\"`\n\tLatency   time.Duration `json:\"latency\"`\n\tBytesOut  uint64        `json:\"bytes_out\"`\n\tBytesIn   uint64        `json:\"bytes_in\"`\n\tError     string        `json:\"error\"`\n\tBody      []byte        `json:\"body\"`\n\tMethod    string        `json:\"method\"`\n\tURL       string        `json:\"url\"`\n\tHeaders   http.Header   `json:\"headers\"`\n}\n\n// End returns the time at which a Result ended.\nfunc (r *Result) End() time.Time { return r.Timestamp.Add(r.Latency) }\n\n// Equal returns true if the given Result is equal to the receiver.\nfunc (r Result) Equal(other Result) bool {\n\treturn r.Attack == other.Attack &&\n\t\tr.Seq == other.Seq &&\n\t\tr.Code == other.Code &&\n\t\tr.Timestamp.Equal(other.Timestamp) &&\n\t\tr.Latency == other.Latency &&\n\t\tr.BytesIn == other.BytesIn &&\n\t\tr.BytesOut == other.BytesOut &&\n\t\tr.Error == other.Error &&\n\t\tbytes.Equal(r.Body, other.Body) &&\n\t\tr.Method == other.Method &&\n\t\tr.URL == other.URL &&\n\t\theaderEqual(r.Headers, other.Headers)\n}\n\nfunc headerEqual(h1, h2 http.Header) bool {\n\tif len(h1) != len(h2) {\n\t\treturn false\n\t}\n\tif h1 == nil || h2 == nil {\n\t\treturn h1 == nil && h2 == nil\n\t}\n\tfor key, values1 := range h1 {\n\t\tvalues2 := h2[key]\n\t\tif len(values1) != len(values2) {\n\t\t\treturn false\n\t\t}\n\t\tfor i := range values1 {\n\t\t\tif values1[i] != values2[i] {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\treturn true\n}\n\n// Results is a slice of Result type elements.\ntype Results []Result\n\n// Add implements the Add method of the Report interface by appending the given\n// Result to the slice.\nfunc (rs *Results) Add(r *Result) { *rs = append(*rs, *r) }\n\n// Close implements the Close method of the Report interface by sorting the\n// Results.\nfunc (rs *Results) Close() { sort.Sort(rs) }\n\n// The following methods implement sort.Interface\nfunc (rs Results) Len() int           { return len(rs) }\nfunc (rs Results) Less(i, j int) bool { return rs[i].Timestamp.Before(rs[j].Timestamp) }\nfunc (rs Results) Swap(i, j int)      { rs[i], rs[j] = rs[j], rs[i] }\n\n// A Decoder decodes a Result and returns an error in case of failure.\ntype Decoder func(*Result) error\n\n// A DecoderFactory constructs a new Decoder from a given io.Reader.\ntype DecoderFactory func(io.Reader) Decoder\n\n// DecoderFor automatically detects the encoding of the first few bytes in\n// the given io.Reader and then returns the corresponding Decoder or nil\n// in case of failing to detect a supported encoding.\nfunc DecoderFor(r io.Reader) Decoder {\n\tvar buf bytes.Buffer\n\tfor _, dec := range []DecoderFactory{\n\t\tNewDecoder,\n\t\tNewJSONDecoder,\n\t\tNewCSVDecoder,\n\t} {\n\t\trd := io.MultiReader(bytes.NewReader(buf.Bytes()), io.TeeReader(r, &buf))\n\t\tif err := dec(rd).Decode(&Result{}); err == nil {\n\t\t\treturn dec(io.MultiReader(&buf, r))\n\t\t}\n\t}\n\treturn nil\n}\n\n// NewRoundRobinDecoder returns a new Decoder that round robins across the\n// given Decoders on every invocation or decoding error.\nfunc NewRoundRobinDecoder(dec ...Decoder) Decoder {\n\t// Optimization for single Decoder case.\n\tif len(dec) == 1 {\n\t\treturn dec[0]\n\t}\n\n\tvar seq uint64\n\treturn func(r *Result) (err error) {\n\t\tfor range dec {\n\t\t\trobin := seq % uint64(len(dec))\n\t\t\tseq++\n\t\t\tif err = dec[robin].Decode(r); err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t\treturn err\n\t}\n}\n\n// NewDecoder returns a new gob Decoder for the given io.Reader.\nfunc NewDecoder(rd io.Reader) Decoder {\n\tdec := gob.NewDecoder(rd)\n\treturn func(r *Result) error { return dec.Decode(r) }\n}\n\n// Decode is an an adapter method calling the Decoder function itself with the\n// given parameters.\nfunc (dec Decoder) Decode(r *Result) error { return dec(r) }\n\n// An Encoder encodes a Result and returns an error in case of failure.\ntype Encoder func(*Result) error\n\n// NewEncoder returns a new Result encoder closure for the given io.Writer\nfunc NewEncoder(r io.Writer) Encoder {\n\tenc := gob.NewEncoder(r)\n\treturn func(r *Result) error { return enc.Encode(r) }\n}\n\n// Encode is an an adapter method calling the Encoder function itself with the\n// given parameters.\nfunc (enc Encoder) Encode(r *Result) error { return enc(r) }\n\n// NewCSVEncoder returns an Encoder that dumps the given *Result as a CSV\n// record. The columns are: UNIX timestamp in ns since epoch,\n// HTTP status code, request latency in ns, bytes out, bytes in,\n// response body, and lastly the error.\nfunc NewCSVEncoder(w io.Writer) Encoder {\n\tenc := csv.NewWriter(w)\n\treturn func(r *Result) error {\n\t\terr := enc.Write([]string{\n\t\t\tstrconv.FormatInt(r.Timestamp.UnixNano(), 10),\n\t\t\tstrconv.FormatUint(uint64(r.Code), 10),\n\t\t\tstrconv.FormatInt(r.Latency.Nanoseconds(), 10),\n\t\t\tstrconv.FormatUint(r.BytesOut, 10),\n\t\t\tstrconv.FormatUint(r.BytesIn, 10),\n\t\t\tr.Error,\n\t\t\tbase64.StdEncoding.EncodeToString(r.Body),\n\t\t\tr.Attack,\n\t\t\tstrconv.FormatUint(r.Seq, 10),\n\t\t\tr.Method,\n\t\t\tr.URL,\n\t\t\tbase64.StdEncoding.EncodeToString(headerBytes(r.Headers)),\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tenc.Flush()\n\n\t\treturn enc.Error()\n\t}\n}\n\nfunc headerBytes(h http.Header) []byte {\n\tif h == nil {\n\t\treturn nil\n\t}\n\tvar hdr bytes.Buffer\n\t_ = h.Write(&hdr)\n\treturn append(hdr.Bytes(), '\\r', '\\n')\n}\n\n// NewCSVDecoder returns a Decoder that decodes CSV encoded Results.\nfunc NewCSVDecoder(r io.Reader) Decoder {\n\tdec := csv.NewReader(r)\n\tdec.FieldsPerRecord = 12\n\tdec.TrimLeadingSpace = true\n\n\treturn func(r *Result) error {\n\t\trec, err := dec.Read()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tts, err := strconv.ParseInt(rec[0], 10, 64)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tr.Timestamp = time.Unix(0, ts)\n\n\t\tcode, err := strconv.ParseUint(rec[1], 10, 16)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tr.Code = uint16(code)\n\n\t\tlatency, err := strconv.ParseInt(rec[2], 10, 64)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tr.Latency = time.Duration(latency)\n\n\t\tif r.BytesOut, err = strconv.ParseUint(rec[3], 10, 64); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tif r.BytesIn, err = strconv.ParseUint(rec[4], 10, 64); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tr.Error = rec[5]\n\t\tif r.Body, err = base64.StdEncoding.DecodeString(rec[6]); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tr.Attack = rec[7]\n\t\tif r.Seq, err = strconv.ParseUint(rec[8], 10, 64); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tr.Method = rec[9]\n\t\tr.URL = rec[10]\n\n\t\tif rec[11] != \"\" {\n\t\t\tpr := textproto.NewReader(bufio.NewReader(\n\t\t\t\tbase64.NewDecoder(base64.StdEncoding, strings.NewReader(rec[11]))))\n\t\t\thdr, err := pr.ReadMIMEHeader()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tr.Headers = http.Header(hdr)\n\t\t}\n\n\t\treturn err\n\t}\n}\n\n//go:generate easyjson -no_std_marshalers -output_filename results_easyjson.go results.go\n//easyjson:json\ntype jsonResult Result\n\n// NewJSONEncoder returns an Encoder that dumps the given *Results as a JSON\n// object.\nfunc NewJSONEncoder(w io.Writer) Encoder {\n\tvar jw jwriter.Writer\n\treturn func(r *Result) error {\n\t\t(*jsonResult)(r).MarshalEasyJSON(&jw)\n\t\tif jw.Error != nil {\n\t\t\treturn jw.Error\n\t\t}\n\t\tjw.RawByte('\\n')\n\t\t_, err := jw.DumpTo(w)\n\t\treturn err\n\t}\n}\n\n// NewJSONDecoder returns a Decoder that decodes JSON encoded Results.\nfunc NewJSONDecoder(r io.Reader) Decoder {\n\trd := bufio.NewReader(r)\n\treturn func(r *Result) (err error) {\n\t\tvar jl jlexer.Lexer\n\t\tif jl.Data, err = rd.ReadBytes('\\n'); err != nil {\n\t\t\treturn err\n\t\t}\n\t\t(*jsonResult)(r).UnmarshalEasyJSON(&jl)\n\t\treturn jl.Error()\n\t}\n}\n"
  },
  {
    "path": "lib/results_easyjson.go",
    "content": "// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.\n\npackage vegeta\n\nimport (\n\tjson \"encoding/json\"\n\thttp \"net/http\"\n\ttime \"time\"\n\n\teasyjson \"github.com/mailru/easyjson\"\n\tjlexer \"github.com/mailru/easyjson/jlexer\"\n\tjwriter \"github.com/mailru/easyjson/jwriter\"\n)\n\n// suppress unused package warning\nvar (\n\t_ *json.RawMessage\n\t_ *jlexer.Lexer\n\t_ *jwriter.Writer\n\t_ easyjson.Marshaler\n)\n\nfunc easyjsonBd1621b8DecodeGithubComTsenartVegetaV12Lib(in *jlexer.Lexer, out *jsonResult) {\n\tisTopLevel := in.IsStart()\n\tif in.IsNull() {\n\t\tif isTopLevel {\n\t\t\tin.Consumed()\n\t\t}\n\t\tin.Skip()\n\t\treturn\n\t}\n\tin.Delim('{')\n\tfor !in.IsDelim('}') {\n\t\tkey := in.UnsafeFieldName(false)\n\t\tin.WantColon()\n\t\tif in.IsNull() {\n\t\t\tin.Skip()\n\t\t\tin.WantComma()\n\t\t\tcontinue\n\t\t}\n\t\tswitch key {\n\t\tcase \"attack\":\n\t\t\tout.Attack = string(in.String())\n\t\tcase \"seq\":\n\t\t\tout.Seq = uint64(in.Uint64())\n\t\tcase \"code\":\n\t\t\tout.Code = uint16(in.Uint16())\n\t\tcase \"timestamp\":\n\t\t\tif data := in.Raw(); in.Ok() {\n\t\t\t\tin.AddError((out.Timestamp).UnmarshalJSON(data))\n\t\t\t}\n\t\tcase \"latency\":\n\t\t\tout.Latency = time.Duration(in.Int64())\n\t\tcase \"bytes_out\":\n\t\t\tout.BytesOut = uint64(in.Uint64())\n\t\tcase \"bytes_in\":\n\t\t\tout.BytesIn = uint64(in.Uint64())\n\t\tcase \"error\":\n\t\t\tout.Error = string(in.String())\n\t\tcase \"body\":\n\t\t\tif in.IsNull() {\n\t\t\t\tin.Skip()\n\t\t\t\tout.Body = nil\n\t\t\t} else {\n\t\t\t\tout.Body = in.Bytes()\n\t\t\t}\n\t\tcase \"method\":\n\t\t\tout.Method = string(in.String())\n\t\tcase \"url\":\n\t\t\tout.URL = string(in.String())\n\t\tcase \"headers\":\n\t\t\tif in.IsNull() {\n\t\t\t\tin.Skip()\n\t\t\t} else {\n\t\t\t\tin.Delim('{')\n\t\t\t\tout.Headers = make(http.Header)\n\t\t\t\tfor !in.IsDelim('}') {\n\t\t\t\t\tkey := string(in.String())\n\t\t\t\t\tin.WantColon()\n\t\t\t\t\tvar v2 []string\n\t\t\t\t\tif in.IsNull() {\n\t\t\t\t\t\tin.Skip()\n\t\t\t\t\t\tv2 = nil\n\t\t\t\t\t} else {\n\t\t\t\t\t\tin.Delim('[')\n\t\t\t\t\t\tif v2 == nil {\n\t\t\t\t\t\t\tif !in.IsDelim(']') {\n\t\t\t\t\t\t\t\tv2 = make([]string, 0, 4)\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tv2 = []string{}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tv2 = (v2)[:0]\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor !in.IsDelim(']') {\n\t\t\t\t\t\t\tvar v3 string\n\t\t\t\t\t\t\tv3 = string(in.String())\n\t\t\t\t\t\t\tv2 = append(v2, v3)\n\t\t\t\t\t\t\tin.WantComma()\n\t\t\t\t\t\t}\n\t\t\t\t\t\tin.Delim(']')\n\t\t\t\t\t}\n\t\t\t\t\t(out.Headers)[key] = v2\n\t\t\t\t\tin.WantComma()\n\t\t\t\t}\n\t\t\t\tin.Delim('}')\n\t\t\t}\n\t\tdefault:\n\t\t\tin.SkipRecursive()\n\t\t}\n\t\tin.WantComma()\n\t}\n\tin.Delim('}')\n\tif isTopLevel {\n\t\tin.Consumed()\n\t}\n}\nfunc easyjsonBd1621b8EncodeGithubComTsenartVegetaV12Lib(out *jwriter.Writer, in jsonResult) {\n\tout.RawByte('{')\n\tfirst := true\n\t_ = first\n\t{\n\t\tconst prefix string = \",\\\"attack\\\":\"\n\t\tout.RawString(prefix[1:])\n\t\tout.String(string(in.Attack))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"seq\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Uint64(uint64(in.Seq))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"code\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Uint16(uint16(in.Code))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"timestamp\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Raw((in.Timestamp).MarshalJSON())\n\t}\n\t{\n\t\tconst prefix string = \",\\\"latency\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Int64(int64(in.Latency))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"bytes_out\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Uint64(uint64(in.BytesOut))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"bytes_in\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Uint64(uint64(in.BytesIn))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"error\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.String(string(in.Error))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"body\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.Base64Bytes(in.Body)\n\t}\n\t{\n\t\tconst prefix string = \",\\\"method\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.String(string(in.Method))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"url\\\":\"\n\t\tout.RawString(prefix)\n\t\tout.String(string(in.URL))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"headers\\\":\"\n\t\tout.RawString(prefix)\n\t\tif in.Headers == nil && (out.Flags&jwriter.NilMapAsEmpty) == 0 {\n\t\t\tout.RawString(`null`)\n\t\t} else {\n\t\t\tout.RawByte('{')\n\t\t\tv6First := true\n\t\t\tfor v6Name, v6Value := range in.Headers {\n\t\t\t\tif v6First {\n\t\t\t\t\tv6First = false\n\t\t\t\t} else {\n\t\t\t\t\tout.RawByte(',')\n\t\t\t\t}\n\t\t\t\tout.String(string(v6Name))\n\t\t\t\tout.RawByte(':')\n\t\t\t\tif v6Value == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {\n\t\t\t\t\tout.RawString(\"null\")\n\t\t\t\t} else {\n\t\t\t\t\tout.RawByte('[')\n\t\t\t\t\tfor v7, v8 := range v6Value {\n\t\t\t\t\t\tif v7 > 0 {\n\t\t\t\t\t\t\tout.RawByte(',')\n\t\t\t\t\t\t}\n\t\t\t\t\t\tout.String(string(v8))\n\t\t\t\t\t}\n\t\t\t\t\tout.RawByte(']')\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.RawByte('}')\n\t\t}\n\t}\n\tout.RawByte('}')\n}\n\n// MarshalEasyJSON supports easyjson.Marshaler interface\nfunc (v jsonResult) MarshalEasyJSON(w *jwriter.Writer) {\n\teasyjsonBd1621b8EncodeGithubComTsenartVegetaV12Lib(w, v)\n}\n\n// UnmarshalEasyJSON supports easyjson.Unmarshaler interface\nfunc (v *jsonResult) UnmarshalEasyJSON(l *jlexer.Lexer) {\n\teasyjsonBd1621b8DecodeGithubComTsenartVegetaV12Lib(l, v)\n}\n"
  },
  {
    "path": "lib/results_fuzz.go",
    "content": "//go:build gofuzz\n// +build gofuzz\n\npackage vegeta\n\nimport (\n\t\"bytes\"\n\t\"io\"\n)\n\n// FuzzResultsFormatDetection tests result list format detection.\nfunc FuzzResultsFormatDetection(fuzz []byte) int {\n\tdecoder := DecoderFor(bytes.NewReader(fuzz))\n\tif decoder == nil {\n\t\treturn 0\n\t}\n\tok := readAllResults(decoder)\n\tif !ok {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\n// FuzzGobDecoder tests decoding a gob format result list.\nfunc FuzzGobDecoder(fuzz []byte) int {\n\tdecoder := NewDecoder(bytes.NewReader(fuzz))\n\tok := readAllResults(decoder)\n\tif !ok {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\n// FuzzCSVDecoder tests decoding a CSV format result list.\nfunc FuzzCSVDecoder(fuzz []byte) int {\n\tdecoder := NewCSVDecoder(bytes.NewReader(fuzz))\n\tok := readAllResults(decoder)\n\tif !ok {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\n// FuzzJSONDecoder tests decoding a JSON format result list.\nfunc FuzzJSONDecoder(fuzz []byte) int {\n\tdecoder := NewJSONDecoder(bytes.NewReader(fuzz))\n\tok := readAllResults(decoder)\n\tif !ok {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\nfunc readAllResults(decoder Decoder) (ok bool) {\n\tfor {\n\t\tresult := &Result{}\n\t\terr := decoder.Decode(result)\n\t\tif err == io.EOF {\n\t\t\treturn true\n\t\t} else if err != nil {\n\t\t\treturn false\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "lib/results_test.go",
    "content": "package vegeta\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"io\"\n\t\"math/rand\"\n\t\"net/http\"\n\t\"reflect\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\t\"pgregory.net/rapid\"\n)\n\nfunc TestResultDecoding(t *testing.T) {\n\tt.Parallel()\n\n\tvar b1, b2 bytes.Buffer\n\tenc := []Encoder{NewEncoder(&b1), NewEncoder(&b2)}\n\n\tfor i := 0; i < 10; i++ {\n\t\tif err := enc[i%len(enc)](&Result{Code: uint16(i + 1)}); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\tgot := make([]uint16, 10)\n\tdec := NewRoundRobinDecoder(\n\t\tNewDecoder(&b2),\n\t\tNewDecoder(&bytes.Reader{}),\n\t\tNewDecoder(&b1),\n\t)\n\n\tfor i := range got {\n\t\tvar r Result\n\t\tif err := dec(&r); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tgot[i] = r.Code\n\t}\n\n\twant := []uint16{2, 1, 4, 3, 6, 5, 8, 7, 10, 9}\n\tif !reflect.DeepEqual(got, want) {\n\t\tt.Errorf(\"got: %v, want: %v\", got, want)\n\t}\n\n\tvar r Result\n\tif got, want := dec(&r), io.EOF; got != want {\n\t\tt.Errorf(\"got: %v, want: %v\", got, want)\n\t}\n}\n\nfunc TestResultEncoding(t *testing.T) {\n\tt.Parallel()\n\n\tnewStdJSONEncoder := func(w io.Writer) Encoder {\n\t\tenc := json.NewEncoder(w)\n\t\treturn func(r *Result) error { return enc.Encode(r) }\n\t}\n\n\tnewStdJSONDecoder := func(r io.Reader) Decoder {\n\t\tdec := json.NewDecoder(r)\n\t\treturn func(r *Result) error { return dec.Decode(r) }\n\t}\n\n\tfor _, tc := range []struct {\n\t\tencoding string\n\t\tenc      func(io.Writer) Encoder\n\t\tdec      func(io.Reader) Decoder\n\t}{\n\t\t{\"auto-gob\", NewEncoder, DecoderFor},\n\t\t{\"auto-json\", NewJSONEncoder, DecoderFor},\n\t\t{\"auto-csv\", NewCSVEncoder, DecoderFor},\n\t\t{\"gob\", NewEncoder, NewDecoder},\n\t\t{\"csv\", NewCSVEncoder, NewCSVDecoder},\n\t\t{\"json\", NewJSONEncoder, NewJSONDecoder},\n\t\t{\"json-dec-compat\", NewJSONEncoder, newStdJSONDecoder},\n\t\t{\"json-enc-compat\", newStdJSONEncoder, NewJSONDecoder},\n\t} {\n\t\ttc := tc\n\t\tt.Run(tc.encoding, func(t *testing.T) {\n\t\t\trapid.Check(t, func(t *rapid.T) {\n\t\t\t\thdrs := rapid.MapOf(\n\t\t\t\t\trapid.StringMatching(\"^[!#$%&'*+\\\\-.^_`|~0-9a-zA-Z]+$\"),\n\t\t\t\t\trapid.SliceOfN(rapid.StringMatching(`^[0-9a-zA-Z]+$`), 1, -1),\n\t\t\t\t).Draw(t, \"headers\")\n\n\t\t\t\twant := Result{\n\t\t\t\t\tAttack:    rapid.StringMatching(`^\\w+$`).Draw(t, \"attack\"),\n\t\t\t\t\tSeq:       rapid.Uint64().Draw(t, \"seq\"),\n\t\t\t\t\tCode:      rapid.Uint16().Draw(t, \"code\"),\n\t\t\t\t\tTimestamp: time.Unix(rapid.Int64Range(0, 1e8).Draw(t, \"timestamp\"), 0),\n\t\t\t\t\tLatency:   time.Duration(rapid.Int64Min(0).Draw(t, \"latency\")),\n\t\t\t\t\tBytesIn:   rapid.Uint64().Draw(t, \"bytes_in\"),\n\t\t\t\t\tBytesOut:  rapid.Uint64().Draw(t, \"bytes_out\"),\n\t\t\t\t\tError:     rapid.StringMatching(`^\\w+$`).Draw(t, \"error\"),\n\t\t\t\t\tBody:      rapid.SliceOf(rapid.Byte()).Draw(t, \"body\"),\n\t\t\t\t\tMethod: rapid.StringMatching(\"^(GET|PUT|POST|DELETE|HEAD|OPTIONS)$\").\n\t\t\t\t\t\tDraw(t, \"method\"),\n\t\t\t\t\tURL: rapid.StringMatching(`^(https?):\\/\\/([a-zA-Z0-9-\\.]+)(:[0-9]{1,5})?\\/?([a-zA-Z0-9\\-\\._\\?\\,\\'\\/\\\\\\+&amp;%\\$#\\=~]*)$`).Draw(t, \"url\"),\n\t\t\t\t}\n\n\t\t\t\tif len(hdrs) > 0 {\n\t\t\t\t\twant.Headers = make(http.Header, len(hdrs))\n\t\t\t\t}\n\n\t\t\t\tfor k, vs := range hdrs {\n\t\t\t\t\tfor _, v := range vs {\n\t\t\t\t\t\twant.Headers.Add(k, v)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tvar buf bytes.Buffer\n\t\t\t\tenc := tc.enc(&buf)\n\t\t\t\tfor j := 0; j < 2; j++ {\n\t\t\t\t\tif err := enc(&want); err != nil {\n\t\t\t\t\t\tt.Fatal(err)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tencoded := buf.String()\n\n\t\t\t\tdec := tc.dec(&buf)\n\t\t\t\tif dec == nil {\n\t\t\t\t\tt.Fatal(\"Cannot get decoder\")\n\t\t\t\t}\n\t\t\t\tfor j := 0; j < 2; j++ {\n\t\t\t\t\tvar got Result\n\t\t\t\t\tif err := dec(&got); err != nil {\n\t\t\t\t\t\tt.Fatalf(\"err: %q buffer: %s\", err, encoded)\n\t\t\t\t\t}\n\n\t\t\t\t\tif !got.Equal(want) {\n\t\t\t\t\t\tt.Logf(\"encoded: %s\", encoded)\n\t\t\t\t\t\tt.Fatalf(\"mismatch: %s\", cmp.Diff(got, want))\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t})\n\t\t})\n\t}\n}\n\nfunc BenchmarkResultEncodings(b *testing.B) {\n\tb.StopTimer()\n\tb.ResetTimer()\n\n\trng := rand.New(rand.NewSource(0)) // #skipcq: GSC-G404\n\tzf := rand.NewZipf(rng, 3, 2, 1000)\n\tbegan := time.Now()\n\tresults := make([]Result, 1e5)\n\n\tfor i := 0; i < cap(results); i++ {\n\t\tresults[i] = Result{\n\t\t\tAttack:    \"Big Bang!\",\n\t\t\tSeq:       uint64(i),\n\t\t\tTimestamp: began.Add(time.Duration(i) * time.Millisecond),\n\t\t\tLatency:   time.Duration(zf.Uint64()) * time.Millisecond,\n\t\t}\n\t}\n\n\tfor _, tc := range []struct {\n\t\tencoding string\n\t\tenc      func(io.Writer) Encoder\n\t\tdec      func(io.Reader) Decoder\n\t}{\n\t\t{\"gob\", NewEncoder, NewDecoder},\n\t\t{\"csv\", NewCSVEncoder, NewCSVDecoder},\n\t\t{\"json\", NewJSONEncoder, NewJSONDecoder},\n\t} {\n\t\tenc := tc.enc(io.Discard)\n\n\t\tb.Run(tc.encoding+\"-encode\", func(b *testing.B) {\n\t\t\tfor i := 0; i < b.N; i++ {\n\t\t\t\tenc.Encode(&results[i%len(results)])\n\t\t\t}\n\t\t})\n\n\t\tvar buf bytes.Buffer\n\t\tenc = tc.enc(&buf)\n\t\tfor _, r := range results {\n\t\t\tenc.Encode(&r)\n\t\t}\n\n\t\tdec := tc.dec(&buf)\n\t\tb.Run(tc.encoding+\"-decode\", func(b *testing.B) {\n\t\t\tvar r Result\n\t\t\tfor i := 0; i < b.N; i++ {\n\t\t\t\tdec.Decode(&r)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "lib/target.schema.json",
    "content": "{\n  \"$schema\": \"http://json-schema.org/draft-04/schema#\",\n  \"$ref\": \"#/definitions/Target\",\n  \"definitions\": {\n    \"Target\": {\n      \"required\": [\n        \"method\",\n        \"url\"\n      ],\n      \"properties\": {\n        \"method\": {\n          \"type\": \"string\"\n        },\n        \"url\": {\n          \"type\": \"string\"\n        },\n        \"body\": {\n          \"type\": \"string\",\n          \"media\": {\n            \"binaryEncoding\": \"base64\"\n          }\n        },\n        \"header\": {\n          \"patternProperties\": {\n            \".*\": {\n              \"items\": {\n                \"type\": \"string\"\n              },\n              \"type\": \"array\"\n            }\n          },\n          \"type\": \"object\"\n        }\n      },\n      \"additionalProperties\": false,\n      \"type\": \"object\"\n    }\n  }\n}"
  },
  {
    "path": "lib/targets.go",
    "content": "package vegeta\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"os\"\n\t\"regexp\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n\n\tjlexer \"github.com/mailru/easyjson/jlexer\"\n\tjwriter \"github.com/mailru/easyjson/jwriter\"\n)\n\n// Target is an HTTP request blueprint.\n//\n//go:generate go run ../internal/cmd/jsonschema/main.go -type=Target -output=target.schema.json\ntype Target struct {\n\tMethod string      `json:\"method\"`\n\tURL    string      `json:\"url\"`\n\tBody   []byte      `json:\"body,omitempty\"`\n\tHeader http.Header `json:\"header,omitempty\"`\n}\n\n// Request creates an *http.Request out of Target and returns it along with an\n// error in case of failure.\nfunc (t *Target) Request() (*http.Request, error) {\n\tvar body io.Reader\n\tif len(t.Body) != 0 {\n\t\tbody = bytes.NewReader(t.Body)\n\t}\n\n\treq, err := http.NewRequest(t.Method, t.URL, body)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfor k, vs := range t.Header {\n\t\treq.Header[k] = make([]string, len(vs))\n\t\tcopy(req.Header[k], vs)\n\t}\n\n\tif host := req.Header.Get(\"Host\"); host != \"\" {\n\t\treq.Host = host\n\t}\n\n\treturn req, nil\n}\n\n// Equal returns true if the target is equal to the other given target.\nfunc (t *Target) Equal(other *Target) bool {\n\tswitch {\n\tcase t == other:\n\t\treturn true\n\tcase t == nil || other == nil:\n\t\treturn false\n\tdefault:\n\t\tequal := t.Method == other.Method &&\n\t\t\tt.URL == other.URL &&\n\t\t\tbytes.Equal(t.Body, other.Body) &&\n\t\t\tlen(t.Header) == len(other.Header)\n\n\t\tif !equal {\n\t\t\treturn false\n\t\t}\n\n\t\tfor k := range t.Header {\n\t\t\tleft, right := t.Header[k], other.Header[k]\n\t\t\tif len(left) != len(right) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tfor i := range left {\n\t\t\t\tif left[i] != right[i] {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn true\n\t}\n}\n\nvar (\n\t// ErrNoTargets is returned when not enough Targets are available.\n\tErrNoTargets = errors.New(\"no targets to attack\")\n\t// ErrNilTarget is returned when the passed Target pointer is nil.\n\tErrNilTarget = errors.New(\"nil target\")\n\t// ErrNoMethod is returned by JSONTargeter when a parsed Target has\n\t// no method.\n\tErrNoMethod = errors.New(\"target: required method is missing\")\n\t// ErrNoURL is returned by JSONTargeter when a parsed Target has no\n\t// URL.\n\tErrNoURL = errors.New(\"target: required url is missing\")\n\t// TargetFormats contains the canonical list of the valid target\n\t// format identifiers.\n\tTargetFormats = []string{HTTPTargetFormat, JSONTargetFormat}\n)\n\nconst (\n\t// HTTPTargetFormat is the human readable identifier for the HTTP target format.\n\tHTTPTargetFormat = \"http\"\n\t// JSONTargetFormat is the human readable identifier for the JSON target format.\n\tJSONTargetFormat = \"json\"\n)\n\n// A Targeter decodes a Target or returns an error in case of failure.\n// Implementations must be safe for concurrent use.\ntype Targeter func(*Target) error\n\n// Decode is a convenience method that calls the underlying Targeter function.\nfunc (tr Targeter) Decode(t *Target) error {\n\treturn tr(t)\n}\n\n// NewJSONTargeter returns a new targeter that decodes one Target from the\n// given io.Reader on every invocation. Each target is one JSON object in its own line.\n//\n// The method and url fields are required. If present, the body field must be base64 encoded.\n// The generated [JSON Schema](lib/target.schema.json) defines the format in detail.\n//\n//\t{\"method\":\"POST\", \"url\":\"https://goku/1\", \"header\":{\"Content-Type\":[\"text/plain\"], \"body\": \"Rk9P\"}\n//\t{\"method\":\"GET\",  \"url\":\"https://goku/2\"}\n//\n// body will be set as the Target's body if no body is provided in each target definition.\n// hdr will be merged with the each Target's headers.\nfunc NewJSONTargeter(src io.Reader, body []byte, header http.Header) Targeter {\n\ttype reader struct {\n\t\t*bufio.Reader\n\t\tsync.Mutex\n\t}\n\trd := reader{Reader: bufio.NewReader(src)}\n\n\treturn func(tgt *Target) (err error) {\n\t\tif tgt == nil {\n\t\t\treturn ErrNilTarget\n\t\t}\n\n\t\tvar jl jlexer.Lexer\n\n\t\trd.Lock()\n\t\tfor len(jl.Data) == 0 {\n\t\t\tif jl.Data, err = rd.ReadBytes('\\n'); err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tjl.Data = bytes.TrimSpace(jl.Data) // Skip empty lines\n\t\t}\n\t\trd.Unlock()\n\n\t\tif err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\terr = ErrNoTargets\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\n\t\tvar t jsonTarget\n\t\tt.decode(&jl)\n\n\t\tif err = jl.Error(); err != nil {\n\t\t\treturn err\n\t\t} else if t.Method == \"\" {\n\t\t\treturn ErrNoMethod\n\t\t} else if t.URL == \"\" {\n\t\t\treturn ErrNoURL\n\t\t}\n\n\t\ttgt.Method = t.Method\n\t\ttgt.URL = t.URL\n\t\tif tgt.Body = body; len(t.Body) > 0 {\n\t\t\ttgt.Body = t.Body\n\t\t}\n\n\t\tif tgt.Header == nil {\n\t\t\ttgt.Header = http.Header{}\n\t\t}\n\n\t\tfor k, vs := range header {\n\t\t\ttgt.Header[k] = append(tgt.Header[k], vs...)\n\t\t}\n\n\t\tfor k, vs := range t.Header {\n\t\t\ttgt.Header[k] = append(tgt.Header[k], vs...)\n\t\t}\n\n\t\treturn nil\n\t}\n}\n\n// A TargetEncoder encodes a Target in a format that can be read by a Targeter.\ntype TargetEncoder func(*Target) error\n\n// Encode is a convenience method that calls the underlying TargetEncoder function.\nfunc (enc TargetEncoder) Encode(t *Target) error {\n\treturn enc(t)\n}\n\n// NewJSONTargetEncoder returns a TargetEncoder that encodes Targets in the JSON format.\nfunc NewJSONTargetEncoder(w io.Writer) TargetEncoder {\n\tvar jw jwriter.Writer\n\treturn func(t *Target) error {\n\t\t(*jsonTarget)(t).encode(&jw)\n\t\tif jw.Error != nil {\n\t\t\treturn jw.Error\n\t\t}\n\t\tjw.RawByte('\\n')\n\t\t_, err := jw.DumpTo(w)\n\t\treturn err\n\t}\n}\n\n// NewStaticTargeter returns a Targeter which round-robins over the passed\n// Targets.\nfunc NewStaticTargeter(tgts ...Target) Targeter {\n\ti := int64(-1)\n\treturn func(tgt *Target) error {\n\t\tif tgt == nil {\n\t\t\treturn ErrNilTarget\n\t\t}\n\t\t*tgt = tgts[atomic.AddInt64(&i, 1)%int64(len(tgts))]\n\t\treturn nil\n\t}\n}\n\n// ReadAllTargets eagerly reads all Targets out of the provided Targeter.\nfunc ReadAllTargets(t Targeter) (tgts []Target, err error) {\n\tfor {\n\t\tvar tgt Target\n\t\tif err = t(&tgt); err == ErrNoTargets {\n\t\t\tbreak\n\t\t} else if err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttgts = append(tgts, tgt)\n\t}\n\n\tif len(tgts) == 0 {\n\t\treturn nil, ErrNoTargets\n\t}\n\n\treturn tgts, nil\n}\n\n// NewHTTPTargeter returns a new Targeter that decodes one Target from the\n// given io.Reader on every invocation. The format is as follows:\n//\n//\tGET https://foo.bar/a/b/c\n//\tHeader-X: 123\n//\tHeader-Y: 321\n//\t@/path/to/body/file\n//\n//\tPOST https://foo.bar/b/c/a\n//\tHeader-X: 123\n//\n// body will be set as the Target's body if no body is provided.\n// hdr will be merged with the each Target's headers.\nfunc NewHTTPTargeter(src io.Reader, body []byte, hdr http.Header) Targeter {\n\tvar mu sync.Mutex\n\tsc := peekingScanner{src: bufio.NewScanner(src)}\n\treturn func(tgt *Target) (err error) {\n\t\tmu.Lock()\n\t\tdefer mu.Unlock()\n\n\t\tif tgt == nil {\n\t\t\treturn ErrNilTarget\n\t\t}\n\n\t\tvar line string\n\t\tfor {\n\t\t\tif !sc.Scan() {\n\t\t\t\treturn ErrNoTargets\n\t\t\t}\n\t\t\tline = strings.TrimSpace(sc.Text())\n\n\t\t\tif len(line) != 0 && line[0] != '#' {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\ttgt.Body = body\n\t\ttgt.Header = http.Header{}\n\t\tfor k, vs := range hdr {\n\t\t\ttgt.Header[k] = vs\n\t\t}\n\n\t\ttokens := strings.SplitN(line, \" \", 2)\n\t\tif len(tokens) < 2 {\n\t\t\treturn fmt.Errorf(\"bad target: %s\", line)\n\t\t}\n\t\tif !startsWithHTTPMethod(line) {\n\t\t\treturn fmt.Errorf(\"bad method: %s\", tokens[0])\n\t\t}\n\t\ttgt.Method = tokens[0]\n\t\tif _, err = url.ParseRequestURI(tokens[1]); err != nil {\n\t\t\treturn fmt.Errorf(\"bad URL: %s, %w\", tokens[1], err)\n\t\t}\n\t\ttgt.URL = tokens[1]\n\t\tline = strings.TrimSpace(sc.Peek())\n\t\tif line == \"\" || startsWithHTTPMethod(line) {\n\t\t\treturn nil\n\t\t}\n\t\tfor sc.Scan() {\n\t\t\tif line = strings.TrimSpace(sc.Text()); line == \"\" {\n\t\t\t\tbreak\n\t\t\t} else if strings.HasPrefix(line, \"#\") {\n\t\t\t\tcontinue\n\t\t\t} else if strings.HasPrefix(line, \"@\") {\n\t\t\t\tif tgt.Body, err = os.ReadFile(line[1:]); err != nil {\n\t\t\t\t\treturn fmt.Errorf(\"bad body: %w\", err)\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\ttokens = strings.SplitN(line, \":\", 2)\n\t\t\tif len(tokens) < 2 {\n\t\t\t\treturn fmt.Errorf(\"bad header: %s\", line)\n\t\t\t}\n\t\t\tfor i := range tokens {\n\t\t\t\tif tokens[i] = strings.TrimSpace(tokens[i]); tokens[i] == \"\" {\n\t\t\t\t\treturn fmt.Errorf(\"bad header: %s\", line)\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Add key/value directly to the http.Header (map[string][]string).\n\t\t\t// http.Header.Add() canonicalizes keys but vegeta is used\n\t\t\t// to test systems that require case-sensitive headers.\n\t\t\ttgt.Header[tokens[0]] = append(tgt.Header[tokens[0]], tokens[1])\n\t\t}\n\t\tif err = sc.Err(); err != nil {\n\t\t\treturn ErrNoTargets\n\t\t}\n\t\treturn nil\n\t}\n}\n\nvar httpMethodChecker = regexp.MustCompile(`^[A-Z]+\\s`)\n\n// A line starts with an http method when the first word is uppercase ascii\n// followed by a space.\nfunc startsWithHTTPMethod(t string) bool {\n\treturn httpMethodChecker.MatchString(t)\n}\n\n// Wrap a Scanner so we can cheat and look at the next value and react accordingly,\n// but still have it be around the next time we Scan() + Text()\ntype peekingScanner struct {\n\tsrc    *bufio.Scanner\n\tpeeked string\n}\n\nfunc (s *peekingScanner) Err() error {\n\treturn s.src.Err()\n}\n\nfunc (s *peekingScanner) Peek() string {\n\tif !s.src.Scan() {\n\t\treturn \"\"\n\t}\n\ts.peeked = s.src.Text()\n\treturn s.peeked\n}\n\nfunc (s *peekingScanner) Scan() bool {\n\tif s.peeked == \"\" {\n\t\treturn s.src.Scan()\n\t}\n\treturn true\n}\n\nfunc (s *peekingScanner) Text() string {\n\tif s.peeked == \"\" {\n\t\treturn s.src.Text()\n\t}\n\tt := s.peeked\n\ts.peeked = \"\"\n\treturn t\n}\n"
  },
  {
    "path": "lib/targets_easyjson.go",
    "content": "// This file has been modified from the original generated code to make it work with\n// type alias jsonTarget so that the methods aren't exposed in Target.\n\npackage vegeta\n\nimport (\n\thttp \"net/http\"\n\n\tjlexer \"github.com/mailru/easyjson/jlexer\"\n\tjwriter \"github.com/mailru/easyjson/jwriter\"\n)\n\ntype jsonTarget Target\n\nfunc (t *jsonTarget) decode(in *jlexer.Lexer) {\n\tisTopLevel := in.IsStart()\n\tif in.IsNull() {\n\t\tif isTopLevel {\n\t\t\tin.Consumed()\n\t\t}\n\t\tin.Skip()\n\t\treturn\n\t}\n\tin.Delim('{')\n\tfor !in.IsDelim('}') {\n\t\tkey := in.UnsafeString()\n\t\tin.WantColon()\n\t\tif in.IsNull() {\n\t\t\tin.Skip()\n\t\t\tin.WantComma()\n\t\t\tcontinue\n\t\t}\n\t\tswitch key {\n\t\tcase \"method\":\n\t\t\tt.Method = string(in.String())\n\t\tcase \"url\":\n\t\t\tt.URL = string(in.String())\n\t\tcase \"body\":\n\t\t\tif in.IsNull() {\n\t\t\t\tin.Skip()\n\t\t\t\tt.Body = nil\n\t\t\t} else {\n\t\t\t\tt.Body = in.Bytes()\n\t\t\t}\n\t\tcase \"header\":\n\t\t\tif in.IsNull() {\n\t\t\t\tin.Skip()\n\t\t\t} else {\n\t\t\t\tin.Delim('{')\n\t\t\t\tif !in.IsDelim('}') {\n\t\t\t\t\tt.Header = make(http.Header)\n\t\t\t\t} else {\n\t\t\t\t\tt.Header = nil\n\t\t\t\t}\n\t\t\t\tfor !in.IsDelim('}') {\n\t\t\t\t\tkey := string(in.String())\n\t\t\t\t\tin.WantColon()\n\t\t\t\t\tvar v2 []string\n\t\t\t\t\tif in.IsNull() {\n\t\t\t\t\t\tin.Skip()\n\t\t\t\t\t\tv2 = nil\n\t\t\t\t\t} else {\n\t\t\t\t\t\tin.Delim('[')\n\t\t\t\t\t\tif v2 == nil {\n\t\t\t\t\t\t\tif !in.IsDelim(']') {\n\t\t\t\t\t\t\t\tv2 = make([]string, 0, 4)\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tv2 = []string{}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tv2 = (v2)[:0]\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor !in.IsDelim(']') {\n\t\t\t\t\t\t\tvar v3 string\n\t\t\t\t\t\t\tv3 = string(in.String())\n\t\t\t\t\t\t\tv2 = append(v2, v3)\n\t\t\t\t\t\t\tin.WantComma()\n\t\t\t\t\t\t}\n\t\t\t\t\t\tin.Delim(']')\n\t\t\t\t\t}\n\t\t\t\t\t(t.Header)[key] = v2\n\t\t\t\t\tin.WantComma()\n\t\t\t\t}\n\t\t\t\tin.Delim('}')\n\t\t\t}\n\t\tdefault:\n\t\t\tin.SkipRecursive()\n\t\t}\n\t\tin.WantComma()\n\t}\n\tin.Delim('}')\n\tif isTopLevel {\n\t\tin.Consumed()\n\t}\n}\n\nfunc (t jsonTarget) encode(out *jwriter.Writer) {\n\tout.RawByte('{')\n\tfirst := true\n\t_ = first\n\t{\n\t\tconst prefix string = \",\\\"method\\\":\"\n\t\tif first {\n\t\t\tfirst = false\n\t\t\tout.RawString(prefix[1:])\n\t\t} else {\n\t\t\tout.RawString(prefix)\n\t\t}\n\t\tout.String(string(t.Method))\n\t}\n\t{\n\t\tconst prefix string = \",\\\"url\\\":\"\n\t\tif first {\n\t\t\tfirst = false\n\t\t\tout.RawString(prefix[1:])\n\t\t} else {\n\t\t\tout.RawString(prefix)\n\t\t}\n\t\tout.String(string(t.URL))\n\t}\n\tif len(t.Body) != 0 {\n\t\tconst prefix string = \",\\\"body\\\":\"\n\t\tif first {\n\t\t\tfirst = false\n\t\t\tout.RawString(prefix[1:])\n\t\t} else {\n\t\t\tout.RawString(prefix)\n\t\t}\n\t\tout.Base64Bytes(t.Body)\n\t}\n\tif len(t.Header) != 0 {\n\t\tconst prefix string = \",\\\"header\\\":\"\n\t\tif first {\n\t\t\tfirst = false\n\t\t\tout.RawString(prefix[1:])\n\t\t} else {\n\t\t\tout.RawString(prefix)\n\t\t}\n\t\t{\n\t\t\tout.RawByte('{')\n\t\t\tv6First := true\n\t\t\tfor v6Name, v6Value := range t.Header {\n\t\t\t\tif v6First {\n\t\t\t\t\tv6First = false\n\t\t\t\t} else {\n\t\t\t\t\tout.RawByte(',')\n\t\t\t\t}\n\t\t\t\tout.String(string(v6Name))\n\t\t\t\tout.RawByte(':')\n\t\t\t\tif v6Value == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {\n\t\t\t\t\tout.RawString(\"null\")\n\t\t\t\t} else {\n\t\t\t\t\tout.RawByte('[')\n\t\t\t\t\tfor v7, v8 := range v6Value {\n\t\t\t\t\t\tif v7 > 0 {\n\t\t\t\t\t\t\tout.RawByte(',')\n\t\t\t\t\t\t}\n\t\t\t\t\t\tout.String(string(v8))\n\t\t\t\t\t}\n\t\t\t\t\tout.RawByte(']')\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.RawByte('}')\n\t\t}\n\t}\n\tout.RawByte('}')\n}\n"
  },
  {
    "path": "lib/targets_fuzz.go",
    "content": "//go:build gofuzz\n// +build gofuzz\n\npackage vegeta\n\nimport (\n\t\"bytes\"\n\t\"net/http\"\n)\n\n// FuzzHTTPTargeter tests decoding an HTTP encoded target list.\nfunc FuzzHTTPTargeter(fuzz []byte) int {\n\theaders, body, fuzz, ok := decodeFuzzTargetDefaults(fuzz)\n\tif !ok {\n\t\treturn -1\n\t}\n\ttargeter := NewHTTPTargeter(\n\t\tbytes.NewReader(fuzz),\n\t\tbody,\n\t\theaders,\n\t)\n\t_, err := ReadAllTargets(targeter)\n\tif err != nil {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\n// FuzzJSONTargeter tests decoding a JSON encoded target list.\nfunc FuzzJSONTargeter(fuzz []byte) int {\n\theaders, body, fuzz, ok := decodeFuzzTargetDefaults(fuzz)\n\tif !ok {\n\t\treturn -1\n\t}\n\ttargeter := NewJSONTargeter(\n\t\tbytes.NewReader(fuzz),\n\t\tbody,\n\t\theaders,\n\t)\n\t_, err := ReadAllTargets(targeter)\n\tif err != nil {\n\t\treturn 0\n\t}\n\treturn 1\n}\n\nfunc decodeFuzzTargetDefaults(fuzz []byte) (\n\theaders http.Header,\n\tbody []byte,\n\trest []byte,\n\tok bool,\n) {\n\tif len(fuzz) < 2 {\n\t\treturn\n\t}\n\theaders = make(map[string][]string)\n\tbody = []byte{}\n\trest = []byte{}\n\trest, ok = decodeFuzzHeaders(fuzz, headers)\n\tif !ok {\n\t\treturn\n\t}\n\tif len(rest) == 0 {\n\t\tok = true\n\t\treturn\n\t}\n\tbody, rest, ok = extractFuzzByteString(rest)\n\treturn\n}\n"
  },
  {
    "path": "lib/targets_test.go",
    "content": "package vegeta\n\nimport (\n\t\"bytes\"\n\t\"crypto/rand\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\t\"os\"\n\t\"reflect\"\n\t\"strings\"\n\t\"testing\"\n)\n\nfunc TestTargetRequest(t *testing.T) {\n\tt.Parallel()\n\n\tbody, err := io.ReadAll(io.LimitReader(rand.Reader, 1024*512))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttgt := Target{\n\t\tMethod: \"GET\",\n\t\tURL:    \"http://:9999/\",\n\t\tBody:   body,\n\t\tHeader: http.Header{\n\t\t\t\"X-Some-Header\":       []string{\"1\"},\n\t\t\t\"X-Some-Other-Header\": []string{\"2\"},\n\t\t\t\"X-Some-New-Header\":   []string{\"3\"},\n\t\t\t\"Host\":                []string{\"lolcathost\"},\n\t\t},\n\t}\n\treq, _ := tgt.Request()\n\n\treqBody, err := io.ReadAll(req.Body)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif !bytes.Equal(tgt.Body, reqBody) {\n\t\tt.Fatalf(\"Target body wasn't copied correctly\")\n\t}\n\n\ttgt.Header.Set(\"X-Stuff\", \"0\")\n\tif req.Header.Get(\"X-Stuff\") == \"0\" {\n\t\tt.Error(\"Each Target must have its own Header\")\n\t}\n\n\twant, got := tgt.Header.Get(\"Host\"), req.Header.Get(\"Host\")\n\tif want != got {\n\t\tt.Fatalf(\"Target Header wasn't copied correctly. Want: %s, Got: %s\", want, got)\n\t}\n\tif req.Host != want {\n\t\tt.Fatalf(\"Target Host wasn't copied correctly. Want: %s, Got: %s\", want, req.Host)\n\t}\n}\n\nfunc TestTargetRequest_EmptyBody(t *testing.T) {\n\tt.Parallel()\n\n\ttgt := Target{\n\t\tMethod: \"GET\",\n\t\tURL:    \"http://:9999/\",\n\t\tBody:   []byte{},\n\t\tHeader: http.Header{\n\t\t\t\"X-Some-Header\":       []string{\"1\"},\n\t\t\t\"X-Some-Other-Header\": []string{\"2\"},\n\t\t\t\"X-Some-New-Header\":   []string{\"3\"},\n\t\t\t\"Host\":                []string{\"lolcathost\"},\n\t\t},\n\t}\n\treq, _ := tgt.Request()\n\tif req.Body != nil {\n\t\tt.Fatal(\"Body should be nil\")\n\t}\n\n\ttgt.Header.Set(\"X-Stuff\", \"0\")\n\tif req.Header.Get(\"X-Stuff\") == \"0\" {\n\t\tt.Error(\"Each Target must have its own Header\")\n\t}\n\n\twant, got := tgt.Header.Get(\"Host\"), req.Header.Get(\"Host\")\n\tif want != got {\n\t\tt.Fatalf(\"Target Header wasn't copied correctly. Want: %s, Got: %s\", want, got)\n\t}\n\tif req.Host != want {\n\t\tt.Fatalf(\"Target Host wasn't copied correctly. Want: %s, Got: %s\", want, req.Host)\n\t}\n}\n\nfunc TestJSONTargeter(t *testing.T) {\n\ttarget := func(s string) io.Reader {\n\t\treturn strings.NewReader(s + \"\\n\")\n\t}\n\n\tfor _, tc := range []struct {\n\t\tname string\n\t\tsrc  io.Reader\n\t\tbody []byte\n\t\thdr  http.Header\n\t\tin   *Target\n\t\tout  *Target\n\t\terr  error\n\t}{\n\t\t{\n\t\t\tname: \"nil target\",\n\t\t\tsrc:  &bytes.Buffer{},\n\t\t\tin:   nil,\n\t\t\tout:  nil,\n\t\t\terr:  ErrNilTarget,\n\t\t},\n\t\t{\n\t\t\tname: \"empty buffer\",\n\t\t\tsrc:  &bytes.Buffer{},\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  ErrNoTargets,\n\t\t},\n\t\t{\n\t\t\tname: \"no new line\",\n\t\t\tsrc:  strings.NewReader(`{\"method\": \"GET\", \"url\": \"https://goku\"}`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  ErrNoTargets,\n\t\t},\n\t\t{\n\t\t\tname: \"empty object\",\n\t\t\tsrc:  target(\"{}\"),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  ErrNoMethod,\n\t\t},\n\t\t{\n\t\t\tname: \"empty method\",\n\t\t\tsrc:  target(`{\"method\": \"\"}`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  ErrNoMethod,\n\t\t},\n\t\t{\n\t\t\tname: \"empty url\",\n\t\t\tsrc:  target(`{\"method\": \"GET\"}`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  ErrNoURL,\n\t\t},\n\t\t{\n\t\t\tname: \"bad body encoding\",\n\t\t\tsrc:  target(`{\"method\": \"GET\", \"url\": \"http://goku\", \"body\": \"NOT BASE64\"}`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{},\n\t\t\terr:  errors.New(\"parse error: illegal base64 data at input byte 3 near offset 0 of ''\"),\n\t\t},\n\t\t{\n\t\t\tname: \"default body\",\n\t\t\tsrc:  target(`{\"method\": \"GET\", \"url\": \"http://goku\"}`),\n\t\t\tbody: []byte(`ATTACK!`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{Method: \"GET\", URL: \"http://goku\", Body: []byte(\"ATTACK!\")},\n\t\t},\n\t\t{\n\t\t\tname: \"headers merge\",\n\t\t\tsrc:  target(`{\"method\": \"GET\", \"url\": \"http://goku\", \"header\":{\"x\": [\"foo\"]}}`),\n\t\t\thdr:  http.Header{\"x\": []string{\"bar\"}},\n\t\t\tin:   &Target{Header: http.Header{\"y\": []string{\"baz\"}}},\n\t\t\tout:  &Target{Method: \"GET\", URL: \"http://goku\", Header: http.Header{\"y\": []string{\"baz\"}, \"x\": []string{\"bar\", \"foo\"}}},\n\t\t},\n\t\t{\n\t\t\tname: \"no defaults\",\n\t\t\tsrc:  target(`{\"method\": \"GET\", \"url\": \"http://goku\", \"header\":{\"x\": [\"foo\"]}, \"body\": \"QVRUQUNLIQ==\"}`),\n\t\t\tin:   &Target{},\n\t\t\tout:  &Target{Method: \"GET\", URL: \"http://goku\", Header: http.Header{\"x\": []string{\"foo\"}}, Body: []byte(\"ATTACK!\")},\n\t\t},\n\t\t{\n\t\t\tname: \"skips empty lines and surrounding whitespace\",\n\t\t\tsrc: strings.NewReader(`\n\n\t\t\t\t  {\"method\": \"GET\", \"url\": \"https://goku\"}\n\n\t\t\t`),\n\t\t\tin:  &Target{},\n\t\t\tout: &Target{Method: \"GET\", URL: \"https://goku\"},\n\t\t},\n\t} {\n\t\ttc := tc\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tt.Parallel()\n\n\t\t\terr := NewJSONTargeter(tc.src, tc.body, tc.hdr)(tc.in)\n\t\t\tif got, want := tc.in, tc.out; !got.Equal(want) {\n\t\t\t\tt.Errorf(\"got Target %#v, want %#v\", got, want)\n\t\t\t}\n\n\t\t\tif got, want := fmt.Sprint(err), fmt.Sprint(tc.err); got != want {\n\t\t\t\tt.Errorf(\"got error: %+v, want: %+v\", got, want)\n\t\t\t}\n\t\t})\n\t}\n\n}\n\nfunc TestReadAllTargets(t *testing.T) {\n\tequal := func(a, b []Target) bool {\n\t\tif len(a) != len(b) {\n\t\t\treturn false\n\t\t}\n\n\t\tfor i := range a {\n\t\t\tif !a[i].Equal(&b[i]) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\treturn true\n\t}\n\n\ttargets := []Target{\n\t\t{Method: \"GET\", URL: \"http://:6060/\"},\n\t\t{Method: \"HEAD\", URL: \"http://:6606/\"},\n\t}\n\n\tfor _, tc := range []struct {\n\t\tname string\n\t\tin   Targeter\n\t\tout  []Target\n\t\terr  error\n\t}{\n\t\t{\n\t\t\tname: \"HTTPTargeter/single\",\n\t\t\tin:   NewHTTPTargeter(strings.NewReader(`GET http://:6060/`), nil, nil),\n\t\t\tout:  targets[:1],\n\t\t},\n\t\t{\n\t\t\tname: \"HTTPTargeter/many\",\n\t\t\tin: NewHTTPTargeter(strings.NewReader(`\n\t\t\t\tGET http://:6060/\n\t\t\t\tHEAD http://:6606/\n\t\t\t`), nil, nil),\n\t\t\tout: targets,\n\t\t},\n\t\t{\n\t\t\tname: \"JSONTargeter/single\",\n\t\t\tin:   NewJSONTargeter(strings.NewReader(`{\"method\": \"GET\", \"url\": \"http://:6060/\"}`+\"\\n\"), nil, nil),\n\t\t\tout:  targets[:1],\n\t\t},\n\t\t{\n\t\t\tname: \"JSONTargeter/many\",\n\t\t\tin: NewJSONTargeter(strings.NewReader(`\n\t\t\t\t{\"method\": \"GET\", \"url\": \"http://:6060/\"}\n\t\t\t\t{\"method\": \"HEAD\", \"url\": \"http://:6606/\"}\n\t\t\t`), nil, nil),\n\t\t\tout: targets,\n\t\t},\n\t\t{\n\t\t\tname: \"no targets\",\n\t\t\tin:   NewHTTPTargeter(strings.NewReader(\"\"), nil, nil),\n\t\t\terr:  ErrNoTargets,\n\t\t},\n\t\t{\n\t\t\tname: \"unexpected error\",\n\t\t\tin:   NewJSONTargeter(errReader{err: io.ErrUnexpectedEOF}, nil, nil),\n\t\t\terr:  io.ErrUnexpectedEOF,\n\t\t},\n\t} {\n\t\ttc := tc\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tt.Parallel()\n\t\t\tout, err := ReadAllTargets(tc.in)\n\t\t\tif got, want := out, tc.out; !equal(got, want) {\n\t\t\t\tt.Errorf(\"got targets: %#v, want %#v\", got, want)\n\t\t\t}\n\n\t\t\tif got, want := fmt.Sprint(err), fmt.Sprint(tc.err); got != want {\n\t\t\t\tt.Errorf(\"got err %v, want %v\", got, want)\n\t\t\t}\n\t\t})\n\t}\n}\n\ntype errReader struct{ err error }\n\nfunc (e errReader) Read(p []byte) (n int, err error) {\n\treturn 0, e.err\n}\n\nfunc TestNewHTTPTargeter(t *testing.T) {\n\tt.Parallel()\n\n\tfor want, def := range map[error]string{\n\t\terrors.New(\"bad method\"): \"DO_WORK http://:6000\",\n\t\terrors.New(\"bad method\"): \"DOwork http://:6000\",\n\t\terrors.New(\"bad target\"): \"GET\",\n\t\terrors.New(\"bad URL\"):    \"GET foobar\",\n\t\terrors.New(\"bad body\"): `\n\t\t\tGET http://:6060\n\t\t\t@238hhqwjhd8hhw3r.txt`,\n\t\terrors.New(\"bad header\"): `\n\t\t\tGET http://:6060\n\t\t\tAuthorization`,\n\t\terrors.New(\"bad header\"): `\n\t\t\tGET http://:6060\n\t\t\tAuthorization:`,\n\t\terrors.New(\"bad header\"): `\n\t\t\tGET http://:6060\n\t\t\t: 1234`,\n\t} {\n\t\tsrc := bytes.NewBufferString(strings.TrimSpace(def))\n\t\tread := NewHTTPTargeter(src, []byte{}, http.Header{})\n\t\tif got := read(&Target{}); got == nil || !strings.HasPrefix(got.Error(), want.Error()) {\n\t\t\tt.Errorf(\"got: %s, want: %s\\n%s\", got, want, def)\n\t\t}\n\t}\n\n\tbodyf, err := os.CreateTemp(\"\", \"vegeta-\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer bodyf.Close()\n\tdefer os.Remove(bodyf.Name())\n\tbodyf.WriteString(\"Hello world!\")\n\n\ttargets := fmt.Sprint(`\n\t\tGET http://:6060/\n\t\tX-Header: 1\n\t\tX-Header: 2\n\n\t\tPUT https://:6060/123\n\n\t\tDELETE http://moo:443/boo\n\n\t\tPOST http://foobar.org/fnord\n\t\tAuthorization: x12345\n\t\t@`, bodyf.Name(),\n\t\t`\n\n\n\t\tPOST http://foobar.org/fnord/2\n\t\tAuthorization: x67890\n\t\t@`, bodyf.Name(),\n\t\t`\n\n\t\tSUBSCRIBE http://foobar.org/sub\n\n\t\t# This is a comment. Lines starting with hash pound are ignored.\n\t\tGET http://:6060/\n\t\tX-Header: 1\n\t\tX-Header: 2`,\n\t\t`\n\n\t\tGET http://:8000/\n\t\t# This is a comment. Lines starting with hash pound are ignored even inside the target.\n\t\tX-Header: 1\n\t\t# Another comment.\n\t\tX-Header: 2`,\n\t)\n\n\tsrc := bytes.NewBufferString(strings.TrimSpace(targets))\n\tread := NewHTTPTargeter(src, []byte{}, http.Header{\"Content-Type\": []string{\"text/plain\"}})\n\tfor _, want := range []Target{\n\t\t{\n\t\t\tMethod: \"GET\",\n\t\t\tURL:    \"http://:6060/\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\n\t\t\t\t\"X-Header\":     []string{\"1\", \"2\"},\n\t\t\t\t\"Content-Type\": []string{\"text/plain\"},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tMethod: \"PUT\",\n\t\t\tURL:    \"https://:6060/123\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\"Content-Type\": []string{\"text/plain\"}},\n\t\t},\n\t\t{\n\t\t\tMethod: \"DELETE\",\n\t\t\tURL:    \"http://moo:443/boo\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\"Content-Type\": []string{\"text/plain\"}},\n\t\t},\n\t\t{\n\t\t\tMethod: \"POST\",\n\t\t\tURL:    \"http://foobar.org/fnord\",\n\t\t\tBody:   []byte(\"Hello world!\"),\n\t\t\tHeader: http.Header{\n\t\t\t\t\"Authorization\": []string{\"x12345\"},\n\t\t\t\t\"Content-Type\":  []string{\"text/plain\"},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tMethod: \"POST\",\n\t\t\tURL:    \"http://foobar.org/fnord/2\",\n\t\t\tBody:   []byte(\"Hello world!\"),\n\t\t\tHeader: http.Header{\n\t\t\t\t\"Authorization\": []string{\"x67890\"},\n\t\t\t\t\"Content-Type\":  []string{\"text/plain\"},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tMethod: \"SUBSCRIBE\",\n\t\t\tURL:    \"http://foobar.org/sub\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\"Content-Type\": []string{\"text/plain\"}},\n\t\t},\n\t\t{ // Preceding comment is ignored and target is parsed correctly.\n\t\t\tMethod: \"GET\",\n\t\t\tURL:    \"http://:6060/\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\n\t\t\t\t\"X-Header\":     []string{\"1\", \"2\"},\n\t\t\t\t\"Content-Type\": []string{\"text/plain\"},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tMethod: \"GET\",\n\t\t\tURL:    \"http://:8000/\",\n\t\t\tBody:   []byte{},\n\t\t\tHeader: http.Header{\n\t\t\t\t\"X-Header\":     []string{\"1\", \"2\"},\n\t\t\t\t\"Content-Type\": []string{\"text/plain\"},\n\t\t\t},\n\t\t},\n\t} {\n\t\tvar got Target\n\t\tif err := read(&got); err != nil {\n\t\t\tt.Fatal(err)\n\t\t} else if !reflect.DeepEqual(want, got) {\n\t\t\tt.Fatalf(\"want: %#v, got: %#v\", want, got)\n\t\t}\n\t}\n\tvar got Target\n\tif err := read(&got); err != ErrNoTargets {\n\t\tt.Fatalf(\"got: %v, want: %v\", err, ErrNoTargets)\n\t} else if !reflect.DeepEqual(got, Target{}) {\n\t\tt.Fatalf(\"got: %v, want: %v\", got, nil)\n\t}\n}\n\nfunc TestErrNilTarget(t *testing.T) {\n\tt.Parallel()\n\n\tfor i, tr := range []Targeter{\n\t\tNewStaticTargeter(Target{Method: \"GET\", URL: \"http://foo.bar\"}),\n\t\tNewJSONTargeter(strings.NewReader(\"\"), nil, nil),\n\t\tNewHTTPTargeter(strings.NewReader(\"GET http://foo.bar\"), nil, nil),\n\t} {\n\t\tif got, want := tr(nil), ErrNilTarget; got != want {\n\t\t\tt.Errorf(\"test #%d: got: %v, want: %v\", i, got, want)\n\t\t}\n\t}\n}\n\nfunc BenchmarkJSONTargetEncoding(b *testing.B) {\n\tb.StopTimer()\n\tb.ResetTimer()\n\n\ttargets := make([]Target, 1e5)\n\tfor i := 0; i < cap(targets); i++ {\n\t\ttargets[i] = Target{\n\t\t\tMethod: \"POST\",\n\t\t\tURL:    \"https://goku/12345\",\n\t\t\tBody:   []byte(\"BIG BANG!\"),\n\t\t\tHeader: http.Header{\"Content-Type\": []string{\"high/energy\"}},\n\t\t}\n\t}\n\n\tvar buf bytes.Buffer\n\tenc := NewJSONTargetEncoder(&buf)\n\n\tb.Run(\"encode\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\tenc.Encode(&targets[i%len(targets)])\n\t\t}\n\t})\n\n\tdec := NewJSONTargeter(&buf, nil, nil)\n\tb.Run(\"decode\", func(b *testing.B) {\n\t\tfor i := 0; i < b.N; i++ {\n\t\t\tdec.Decode(&targets[i%len(targets)])\n\t\t}\n\t})\n}\n"
  },
  {
    "path": "lib/util_fuzz.go",
    "content": "//go:build gofuzz\n// +build gofuzz\n\npackage vegeta\n\nfunc decodeFuzzHeaders(fuzz []byte, headers map[string][]string) (\n\trest []byte,\n\tok bool,\n) {\n\trest = fuzz\n\tfor {\n\t\tif len(rest) == 0 {\n\t\t\t// Consumed all fuzz\n\t\t\tok = true\n\t\t\treturn\n\t\t}\n\t\tif fuzz[0] == 0 {\n\t\t\t// Headers terminated\n\t\t\tif len(rest) == 1 {\n\t\t\t\trest = []byte{}\n\t\t\t} else {\n\t\t\t\trest = rest[1:]\n\t\t\t}\n\t\t\tok = true\n\t\t\treturn\n\t\t}\n\t\tif len(fuzz) == 1 {\n\t\t\t// Invalid headers encoding\n\t\t\treturn\n\t\t}\n\t\trest, ok = decodeFuzzHeader(rest[1:], headers)\n\t\tif !ok {\n\t\t\treturn\n\t\t}\n\t}\n}\n\nfunc decodeFuzzHeader(fuzz []byte, headers map[string][]string) (\n\trest []byte,\n\tok bool,\n) {\n\tif len(fuzz) == 0 {\n\t\tok = true\n\t\treturn\n\t}\n\tname, rest, ok := extractFuzzString(fuzz)\n\tif !ok {\n\t\treturn\n\t}\n\tvalue, rest, ok := extractFuzzString(rest)\n\tif !ok {\n\t\treturn\n\t}\n\tif header, ok := headers[name]; ok {\n\t\theaders[name] = append(header, value)\n\t} else {\n\t\theaders[name] = []string{value}\n\t}\n\tok = true\n\treturn\n}\n\nfunc extractFuzzString(fuzz []byte) (\n\tvalue string,\n\trest []byte,\n\tok bool,\n) {\n\tif len(fuzz) < 2 {\n\t\t// Invalid string encoding\n\t\treturn\n\t}\n\tlength := int(fuzz[0])\n\tif length == 0 {\n\t\t// Invalid length\n\t\treturn\n\t}\n\tif len(fuzz) < (length + 1) {\n\t\t// Insufficient fuzz\n\t\treturn\n\t}\n\tvalue = string(fuzz[1 : length+1])\n\tif len(fuzz) == (length + 1) {\n\t\t// Consumed all fuzz\n\t\trest = []byte{}\n\t} else {\n\t\t// More fuzz\n\t\trest = fuzz[length+1:]\n\t}\n\tok = true\n\treturn\n}\n\nfunc extractFuzzByteString(fuzz []byte) (\n\tvalue []byte,\n\trest []byte,\n\tok bool,\n) {\n\tif len(fuzz) < 2 {\n\t\t// Invalid byte string encoding\n\t\treturn\n\t}\n\tlength := int(fuzz[0])\n\tif length == 0 {\n\t\t// Invalid length\n\t\treturn\n\t}\n\tif len(fuzz) < (length + 1) {\n\t\t// Insufficient fuzz\n\t\treturn\n\t}\n\tvalue = fuzz[1 : length+1]\n\tif len(fuzz) == (length + 1) {\n\t\t// Consumed all fuzz\n\t\trest = []byte{}\n\t} else {\n\t\t// More fuzz\n\t\trest = fuzz[length+1:]\n\t}\n\tok = true\n\treturn\n}\n"
  },
  {
    "path": "main.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\t\"runtime\"\n\t\"runtime/pprof\"\n\t\"sort\"\n\t\"strings\"\n)\n\nfunc main() {\n\tcommands := map[string]command{\n\t\t\"attack\": attackCmd(),\n\t\t\"report\": reportCmd(),\n\t\t\"plot\":   plotCmd(),\n\t\t\"encode\": encodeCmd(),\n\t\t\"dump\":   dumpCmd(),\n\t}\n\n\tfs := flag.NewFlagSet(\"vegeta\", flag.ExitOnError)\n\tcpus := fs.Int(\"cpus\", runtime.NumCPU(), \"Number of CPUs to use\")\n\tprofile := fs.String(\"profile\", \"\", \"Enable profiling of [cpu, heap]\")\n\tversion := fs.Bool(\"version\", false, \"Print version and exit\")\n\n\tfs.Usage = func() {\n\t\tfmt.Fprintln(fs.Output(), \"Usage: vegeta [global flags] <command> [command flags]\")\n\t\tfmt.Fprintf(fs.Output(), \"\\nglobal flags:\\n\")\n\t\tfs.PrintDefaults()\n\n\t\tnames := make([]string, 0, len(commands))\n\t\tfor name := range commands {\n\t\t\tnames = append(names, name)\n\t\t}\n\n\t\tsort.Strings(names)\n\t\tfor _, name := range names {\n\t\t\tif cmd := commands[name]; cmd.fs != nil {\n\t\t\t\tfmt.Fprintf(fs.Output(), \"\\n%s command:\\n\", name)\n\t\t\t\tcmd.fs.SetOutput(fs.Output())\n\t\t\t\tcmd.fs.PrintDefaults()\n\t\t\t}\n\t\t}\n\n\t\tfmt.Fprintf(fs.Output(), \"%s\\n\", examples)\n\t}\n\n\tfs.Parse(os.Args[1:])\n\n\tif *version {\n\t\tfmt.Printf(\"Version: %s\\nCommit: %s\\nRuntime: %s %s/%s\\nDate: %s\\n\",\n\t\t\tVersion,\n\t\t\tCommit,\n\t\t\truntime.Version(),\n\t\t\truntime.GOOS,\n\t\t\truntime.GOARCH,\n\t\t\tDate,\n\t\t)\n\t\treturn\n\t}\n\n\truntime.GOMAXPROCS(*cpus)\n\n\tfor _, prof := range strings.Split(*profile, \",\") {\n\t\tif prof = strings.TrimSpace(prof); prof == \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tf, err := os.Create(prof + \".pprof\")\n\t\tif err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\t\tdefer f.Close()\n\n\t\tswitch {\n\t\tcase strings.HasPrefix(prof, \"cpu\"):\n\t\t\tpprof.StartCPUProfile(f)\n\t\t\tdefer pprof.StopCPUProfile()\n\t\tcase strings.HasPrefix(prof, \"heap\"):\n\t\t\tdefer pprof.Lookup(\"heap\").WriteTo(f, 0)\n\t\t}\n\t}\n\n\targs := fs.Args()\n\tif len(args) == 0 {\n\t\tfs.Usage()\n\t\tos.Exit(1)\n\t}\n\n\tif cmd, ok := commands[args[0]]; !ok {\n\t\tlog.Fatalf(\"Unknown command: %s\", args[0])\n\t} else if err := cmd.fn(args[1:]); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\n// Set at linking time\nvar (\n\tCommit  string\n\tDate    string\n\tVersion string\n)\n\nconst examples = `\nexamples:\n  echo \"GET http://localhost/\" | vegeta attack -duration=5s | tee results.bin | vegeta report\n  vegeta report -type=json results.bin > metrics.json\n  cat results.bin | vegeta plot > plot.html\n  cat results.bin | vegeta report -type=\"hist[0,100ms,200ms,300ms]\"\n`\n\ntype command struct {\n\tfs *flag.FlagSet\n\tfn func(args []string) error\n}\n"
  },
  {
    "path": "plot.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"os/signal\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n\t\"github.com/tsenart/vegeta/v12/lib/plot\"\n)\n\nconst plotUsage = `Usage: vegeta plot [options] [<file>...]\n\nOutputs an HTML time series plot of request latencies over time.\nThe X axis represents elapsed time in seconds from the beginning\nof the earliest attack in all input files. The Y axis represents\nrequest latency in milliseconds.\n\nClick and drag to select a region to zoom into. Double click to zoom out.\nChoose a different number on the bottom left corner input field\nto change the moving average window size (in data points).\n\nArguments:\n  <file>  A file with vegeta attack results encoded with one of\n          the supported encodings (gob | json | csv) [default: stdin]\n\nOptions:\n  --title      Title and header of the resulting HTML page.\n               [default: Vegeta Plot]\n  --threshold  Threshold of data points to downsample series to.\n               Series with less than --threshold number of data\n               points are not downsampled. [default: 4000]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -name=50qps -rate=50 -duration=5s > results.50qps.bin\n  cat results.50qps.bin | vegeta plot > plot.50qps.html\n  echo \"GET http://:80\" | vegeta attack -name=100qps -rate=100 -duration=5s > results.100qps.bin\n  vegeta plot results.50qps.bin results.100qps.bin > plot.html\n`\n\nfunc plotCmd() command {\n\tfs := flag.NewFlagSet(\"vegeta plot\", flag.ExitOnError)\n\ttitle := fs.String(\"title\", \"Vegeta Plot\", \"Title and header of the resulting HTML page\")\n\tthreshold := fs.Int(\"threshold\", 4000, \"Threshold of data points above which series are downsampled.\")\n\toutput := fs.String(\"output\", \"stdout\", \"Output file\")\n\n\tfs.Usage = func() {\n\t\tfmt.Fprintf(os.Stderr, \"%s\\n\", plotUsage)\n\t}\n\n\treturn command{fs, func(args []string) error {\n\t\tfs.Parse(args)\n\t\tfiles := fs.Args()\n\t\tif len(files) == 0 {\n\t\t\tfiles = append(files, \"stdin\")\n\t\t}\n\t\treturn plotRun(files, *threshold, *title, *output)\n\t}}\n}\n\nfunc plotRun(files []string, threshold int, title, output string) error {\n\tdec, mc, err := decoder(files)\n\tdefer mc.Close()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tout, err := file(output, true)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer out.Close()\n\n\tsigch := make(chan os.Signal, 1)\n\tsignal.Notify(sigch, os.Interrupt)\n\n\tp := plot.New(\n\t\tplot.Title(title),\n\t\tplot.Downsample(threshold),\n\t\tplot.Label(plot.ErrorLabeler),\n\t)\n\ndecode:\n\tfor {\n\t\tselect {\n\t\tcase <-sigch:\n\t\t\tbreak decode\n\t\tdefault:\n\t\t\tvar r vegeta.Result\n\t\t\tif err = dec.Decode(&r); err != nil {\n\t\t\t\tif err == io.EOF {\n\t\t\t\t\tbreak decode\n\t\t\t\t}\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif err = p.Add(&r); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\tp.Close()\n\n\t_, err = p.WriteTo(out)\n\treturn err\n}\n"
  },
  {
    "path": "report.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"os/signal\"\n\t\"strings\"\n\t\"time\"\n\n\tvegeta \"github.com/tsenart/vegeta/v12/lib\"\n)\n\nconst reportUsage = `Usage: vegeta report [options] [<file>...]\n\nOutputs a report of attack results.\n\nArguments:\n  <file>  A file with vegeta attack results encoded with one of\n          the supported encodings (gob | json | csv) [default: stdin]\n\nOptions:\n  --type    Which report type to generate (text | json | hist[buckets] | hdrplot).\n            [default: text]\n\n  --every   Write the report to --output at every given interval (e.g 100ms)\n            The default of 0 means the report will only be written after\n            all results have been processed. [default: 0]\n\n  --output  Output file [default: stdout]\n\nExamples:\n  echo \"GET http://:80\" | vegeta attack -rate=10/s > results.gob\n  echo \"GET http://:80\" | vegeta attack -rate=100/s | vegeta encode > results.json\n  vegeta report < results.gob | rg -vU 'Error Set:.*' # Don't show errors\n  vegeta report results.*\n`\n\nfunc reportCmd() command {\n\tfs := flag.NewFlagSet(\"vegeta report\", flag.ExitOnError)\n\ttyp := fs.String(\"type\", \"text\", \"Report type to generate [text, json, hist[buckets], hdrplot]\")\n\tevery := fs.Duration(\"every\", 0, \"Report interval\")\n\toutput := fs.String(\"output\", \"stdout\", \"Output file\")\n\tbuckets := fs.String(\"buckets\", \"\", \"Histogram buckets, e.g.: \\\"[0,1ms,10ms]\\\"\")\n\n\tfs.Usage = func() {\n\t\tfmt.Fprintf(os.Stderr, \"%s\\n\", reportUsage)\n\t}\n\n\treturn command{fs, func(args []string) error {\n\t\tfs.Parse(args)\n\t\tfiles := fs.Args()\n\t\tif len(files) == 0 {\n\t\t\tfiles = append(files, \"stdin\")\n\t\t}\n\t\treturn report(files, *typ, *output, *every, *buckets)\n\t}}\n}\n\nfunc report(files []string, typ, output string, every time.Duration, bucketsStr string) error {\n\tif len(typ) < 4 {\n\t\treturn fmt.Errorf(\"invalid report type: %s\", typ)\n\t}\n\n\tdec, mc, err := decoder(files)\n\tdefer mc.Close()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tout, err := file(output, true)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer out.Close()\n\n\tvar (\n\t\trep    vegeta.Reporter\n\t\treport vegeta.Report\n\t)\n\n\tswitch typ {\n\tcase \"plot\":\n\t\treturn fmt.Errorf(\"The plot reporter has been deprecated and succeeded by the vegeta plot command\")\n\tcase \"text\":\n\t\tvar m vegeta.Metrics\n\t\trep, report = vegeta.NewTextReporter(&m), &m\n\tcase \"json\":\n\t\tvar m vegeta.Metrics\n\t\tif bucketsStr != \"\" {\n\t\t\tm.Histogram = &vegeta.Histogram{}\n\t\t\tif err := m.Histogram.Buckets.UnmarshalText([]byte(bucketsStr)); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\trep, report = vegeta.NewJSONReporter(&m), &m\n\tcase \"hdrplot\":\n\t\tvar m vegeta.Metrics\n\t\trep, report = vegeta.NewHDRHistogramPlotReporter(&m), &m\n\tdefault:\n\t\tswitch {\n\t\tcase strings.HasPrefix(typ, \"hist\"):\n\t\t\tvar hist vegeta.Histogram\n\t\t\tif bucketsStr == \"\" { // Old way\n\t\t\t\tif len(typ) < 6 {\n\t\t\t\t\treturn fmt.Errorf(\"bad buckets: '%s'\", typ[4:])\n\t\t\t\t}\n\t\t\t\tbucketsStr = typ[4:]\n\t\t\t}\n\t\t\tif err := hist.Buckets.UnmarshalText([]byte(bucketsStr)); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\trep, report = vegeta.NewHistogramReporter(&hist), &hist\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"unknown report type: %q\", typ)\n\t\t}\n\t}\n\n\tsigch := make(chan os.Signal, 1)\n\tsignal.Notify(sigch, os.Interrupt)\n\n\tvar ticks <-chan time.Time\n\tif every > 0 {\n\t\tticker := time.NewTicker(every)\n\t\tdefer ticker.Stop()\n\t\tticks = ticker.C\n\t}\n\n\trc, _ := report.(vegeta.Closer)\ndecode:\n\tfor {\n\t\tselect {\n\t\tcase <-sigch:\n\t\t\tbreak decode\n\t\tcase <-ticks:\n\t\t\tif err = clear(out); err != nil {\n\t\t\t\treturn err\n\t\t\t} else if err = writeReport(rep, rc, out); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tdefault:\n\t\t\tvar r vegeta.Result\n\t\t\tif err = dec.Decode(&r); err != nil {\n\t\t\t\tif err == io.EOF {\n\t\t\t\t\tbreak decode\n\t\t\t\t}\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\treport.Add(&r)\n\t\t}\n\t}\n\n\treturn writeReport(rep, rc, out)\n}\n\nfunc writeReport(r vegeta.Reporter, rc vegeta.Closer, out io.Writer) error {\n\tif rc != nil {\n\t\trc.Close()\n\t}\n\treturn r.Report(out)\n}\n\nfunc clear(out io.Writer) error {\n\tif f, ok := out.(*os.File); ok && f == os.Stdout {\n\t\treturn clearScreen()\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "report_nonwindows.go",
    "content": "//go:build !windows\n// +build !windows\n\npackage main\n\nimport (\n\t\"os\"\n)\n\nvar escCodes = []byte(\"\\033[2J\\033[0;0H\")\n\nfunc clearScreen() error {\n\t_, err := os.Stdout.Write(escCodes)\n\treturn err\n}\n"
  },
  {
    "path": "report_windows.go",
    "content": "//go:build windows\n// +build windows\n\npackage main\n\nimport (\n\t\"os\"\n\t\"os/exec\"\n)\n\nfunc clearScreen() error {\n\tcmd := exec.Command(\"cmd\", \"/c\", \"cls\")\n\tcmd.Stdout = os.Stdout\n\treturn cmd.Run()\n}\n"
  },
  {
    "path": "scripts/load-ramping/README.md",
    "content": "# Load ramping\n\nThis script will automatically run vegeta against a target with different request\nrates and graph the latency distribution and success rate at each request rate.\n\nUsage:\n\n```\necho GET http://localhost:8080/ | python3 ramp-requests.py\n```\n\nDependencies:\n\n* Python 3\n* Gnuplot\n\nFor more documentation, see https://github.com/tsenart/vegeta/wiki/Load-ramping\n"
  },
  {
    "path": "scripts/load-ramping/ramp-requests.plt",
    "content": "# Two plots: success rate plot on top, rate/latency distribution below\nset multiplot layout 2,1\n\n\n#\n# Shared config\n#\n\n# Scale (x/color)\nset autoscale xfix\nset logscale xycb 10\n\n# Grid\nset mxtics 10\nset mytics 10\nset tics scale 0.0000000001  # Tics themselves can't be styled indepedently, so use grid only\nset grid xtics ytics mxtics mytics lc rgb '#888888' lw 0.5 lt 1, lc rgb '#888888' lt 1 lw 0.1\n\n\n#\n# Top plot: success rate\n#\n\n# Manual positioning to align both plots\nset lmargin at screen 0.10\nset rmargin at screen 0.87\nset bmargin at screen 0.80\nset tmargin at screen 0.95\n\n# Scale (y only)\nset yrange [1.0:100.0]\n\n# Axes\nunset xlabel\nset xtics format \"\"\nset ylabel \"Success\"\nset ytics format \"%.2f%%\"\n\n# Plot (incl. fraction to percentage conversion)\nplot \"results_success.txt\" using 1:($2 * 100.0):(0.0) with line lw 3 lc rgb \"red\" title \"\"\n\n\n#\n# Bottom plot: rate vs latency\n#\n\n# Manual positioning to align both plots\nset lmargin at screen 0.10\nset rmargin at screen 0.87\nset tmargin at screen 0.75\nset bmargin at screen 0.15\n\n# Scale (y only)\nunset yrange\nset autoscale yfix\n\n# Axes\nset xlabel \"Requests (per sec)\"\nset xtics format \"%.f\"\nset ylabel \"Latency\" offset -1.5,0,0\nset ytics ( \\\n    \"1ns\" 1.0e0, \"10ns\" 1.0e1, \"100ns\" 1.0e2, \\\n    \"1us\" 1.0e3, \"10us\" 1.0e4, \"100us\" 1.0e5, \\\n    \"1ms\" 1.0e6, \"10ms\" 1.0e7, \"100ms\" 1.0e8, \\\n    \"1s\" 1.0e9, \"10s\" 1.0e10, \"100s\" 1.0e11 )\n\n# Color box\nset cblabel \"\"\nset cbrange[0.001:100.0]\nset format cb \"%.9g%%\"\n\n# Plot (incl. fraction to percentage conversion)\nset datafile separator \" \"\nset pm3d map corners2color c1\nsplot \"results_latency.txt\" u 1:2:($3 * 100.0) with pm3d title \"\"\n"
  },
  {
    "path": "scripts/load-ramping/ramp-requests.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport os\nimport subprocess\nimport sys\nimport time\n\n\nif '-h' in sys.argv or '--help' in sys.argv:\n    print('usage:', file=sys.stderr)\n    print('echo GET http://localhost:8080/ | %s' % sys.argv[0], file=sys.stderr)\n    sys.exit(1)\n\ntarget = sys.stdin.read().strip()\n\n\n# Log-spaced rates (each ca. +25% (+1dB) of the previous, covering 1/sec to 100k/sec)\nrates = [10.0 ** (i / 10.0) for i in range(50)]\n\n# Log-spaced buckets (each ca. +25% (+1dB) of the previous, covering <1us to >10s)\nbuckets = [0] + [1e3 * 10.0 ** (i / 10.0) for i in range(71)]\n\n\n# Run vegeta attack\nfor rate in rates:\n    filename='results_%i.bin' % (1000*rate)\n    if not os.path.exists(filename):\n        cmd = 'vegeta attack -duration 5s -rate %i/1000s -output %s' % (1000*rate, filename)\n        print(cmd, file=sys.stderr)\n        subprocess.run(cmd, shell=True, input=target, encoding='utf-8')\n        time.sleep(5)\n\n\n# Run vegeta report, and extract data for gnuplot\nwith open('results_latency.txt', 'w') as out_latency, \\\n     open('results_success.txt', 'w') as out_success:\n\n    for rate in rates:\n        cmd = 'vegeta report -type=json -buckets \\'%s\\' results_%i.bin' \\\n            % (\"[%s]\" % \",\".join(\"%ins\" % bucket for bucket in buckets), 1000*rate)\n        print(cmd, file=sys.stderr)\n        result = json.loads(subprocess.check_output(cmd, shell=True))\n\n        # (Request rate, Response latency) -> (Fraction of responses)\n        for latency, count in result['buckets'].items():\n            latency_nsec = float(latency)\n            fraction = count / sum(result['buckets'].values()) * result['success']\n            print(rate, latency_nsec, fraction, file=out_latency)\n        print(file=out_latency)\n\n        # (Request rate) -> (Success rate)\n        print(rate, result['success'], file=out_success)\n\nprint('# wrote results_latency.txt and results_success.txt', file=sys.stderr)\n\n\n# Visualize with gnuplot (PNG)\ncmd = 'gnuplot -e \"set term png size 1280, 800\" ramp-requests.plt > result.png'\nprint(cmd, file=sys.stderr)\nsubprocess.run(cmd, shell=True)\n\n# Visualize with gnuplot (default, likely a UI)\ncmd = 'gnuplot -persist ramp-requests.plt'\nprint(cmd, file=sys.stderr)\nsubprocess.run(cmd, shell=True)\n"
  }
]