diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d67969a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,33 @@ +root = true + +# defaults +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +# JavaScript, JSON, JSX, JavaScript Modules, TypeScript +# https://github.com/feross/standard +# https://prettier.io +[*.{cjs,js,json,jsx,mjs,ts,tsx}] +indent_size = 2 +indent_style = space + +# Shell +# https://google.github.io/styleguide/shell.xml#Indentation +[*.{bash,sh,zsh}] +indent_size = 2 +indent_style = space + +# TOML +# https://github.com/toml-lang/toml/tree/master/examples +[*.toml] +indent_size = 2 +indent_style = space + +# YAML +# http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668 +[*.{yaml,yml}] +indent_size = 2 +indent_style = space diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..68788a2 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +/lib +src/generated/**/* \ No newline at end of file diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..7b84619 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,6 @@ +{ + "extends": [ + "oclif", + "oclif-typescript" + ] +} diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..ef1390d --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [12.x, 14.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install --frozen-lockfile + - run: yarn build + - run: yarn test diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..f82f34c --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,50 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + - run: yarn install --frozen-lockfile + - run: yarn build + - run: yarn test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + registry-url: https://registry.npmjs.org/ + - run: yarn install --frozen-lockfile + - run: yarn build + - run: yarn publish --access public + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} + + publish-gpr: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + registry-url: https://npm.pkg.github.com/ + - run: yarn install --frozen-lockfile + - run: yarn build + - run: yarn publish --access public + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31756c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*-debug.log +*-error.log +/.nyc_output +/dist +/lib +/tmp +node_modules +.DS_Store +.npmrc +.cache/ +cache/ +*.log +*.tgz +*.tar.gz \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..9ce53c9 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,8 @@ +lib/**/* +dist/**/* +bin/**/* +*.min.js +*.html +*.css +docs/**/* +src/generated/**/* diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..dfaf852 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 The Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..71558a2 --- /dev/null +++ b/README.md @@ -0,0 +1,168 @@ +

+ +

+ +sushi-sh +====== + +> Command Line Interface for SushiSwap + + +## Overview + +```sh-session +$ npm install -g sushi-sh +$ sushi COMMAND +running command... +$ sushi (-v|--version|version) +sushi-sh/1.1.0 darwin-x64 node-v14.17.3 +$ sushi --help [COMMAND] +USAGE + $ sushi COMMAND +... +``` + + + +## Commands + +### sushi _meta + +* [`sushi _meta`] + +### sushi autocomplete [SHELL] + +* [`sushi autocomplete [SHELL]`] + +### sushi bundle + +* [`sushi bundle`] + +### sushi bundles + +* [`sushi bundles`] + +### sushi burn + +* [`sushi burn`] + +### sushi burns + +* [`sushi burns`] + +### sushi commands + +* [`sushi commands`] + +### sushi help + +* [`sushi help [COMMAND]`] + +### sushi liquidityPosition + +* [`sushi liquidityPosition`] + +### sushi liquidityPositionSnapshot + +* [`sushi liquidityPositionSnapshot`] + +### liquidityPositionSnapshots + +* [`sushi liquidityPositionSnapshots`] + +### sushi liquidityPositions + +* [`sushi liquidityPositions`] + +### sushi mint + +* [`sushi mint`] + +### sushi mints + +* [`sushi mints`] + +### sushi pair + +* [`sushi pair`] + +### sushi pairDayData + +* [`sushi pairDayData`] + +### sushi pairDayDatas + +* [`sushi pairDayDatas`] + +### sushi pairHourData + +* [`sushi pairHourData`] + +### sushi pairHourDatas + +* [`sushi pairHourDatas`] + +### sushi pairs + +* [`sushi pairs`] + +### sushi swap + +* [`sushi swap`] + +### sushi swaps + +* [`sushi swaps`] + +### sushi token + +* [`sushi token`] + +### sushi tokenDayData + +* [`sushi tokenDayData`] + +### sushi tokenDayDatas + +* [`sushi tokenDayDatas`] + +### sushi tokens + +* [`sushi tokens`] + +### sushi transaction + +* [`sushi transaction`] + +### sushi transactions + +* [`sushi transactions`] + +### sushi sushiswapDayData + +* [`sushi sushiswapDayData`] + +### sushi sushiswapDayDatas + +* [`sushi sushiswapDayDatas`] + +### sushi sushiswapFactories + +* [`sushi sushiswapFactories`] + +### sushi sushiswapFactory + +* [`sushi sushiswapFactory`] + +### sushi user + +* [`sushi user`] + +### sushi users + +* [`sushi users`] + + +## License + +MIT diff --git a/bin/run b/bin/run new file mode 100755 index 0000000..30b14e1 --- /dev/null +++ b/bin/run @@ -0,0 +1,5 @@ +#!/usr/bin/env node + +require('@oclif/command').run() +.then(require('@oclif/command/flush')) +.catch(require('@oclif/errors/handle')) diff --git a/bin/run.cmd b/bin/run.cmd new file mode 100755 index 0000000..968fc30 --- /dev/null +++ b/bin/run.cmd @@ -0,0 +1,3 @@ +@echo off + +node "%~dp0\run" %* diff --git a/codegen.yml b/codegen.yml new file mode 100644 index 0000000..c23054e --- /dev/null +++ b/codegen.yml @@ -0,0 +1,14 @@ +overwrite: true +schema: "https://api.thegraph.com/subgraphs/name/sushiswap/exchange" +#documents: "src/**/*.gql" +generates: + src/types.ts: + - typescript + src/commands/: + preset: near-operation-file + presetConfig: + extension: .ts + baseTypesPath: ../types.ts + plugins: + - typescript-oclif: + handlerPath: ../../handler diff --git a/docs/assets/css/main.css b/docs/assets/css/main.css new file mode 100644 index 0000000..3c0dcab --- /dev/null +++ b/docs/assets/css/main.css @@ -0,0 +1 @@ +/*! normalize.css v1.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:sans-serif}button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4,.tsd-index-panel h3{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:80%}sub{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure,form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button]{-webkit-appearance:button;cursor:pointer;*overflow:visible}input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.hljs{display:inline-block;padding:.5em;background:#fff;color:#000}.hljs-comment,.hljs-annotation,.hljs-template_comment,.diff .hljs-header,.hljs-chunk,.apache .hljs-cbracket{color:green}.hljs-keyword,.hljs-id,.hljs-built_in,.css .smalltalk .hljs-class,.hljs-winutils,.bash .hljs-variable,.tex .hljs-command,.hljs-request,.hljs-status,.nginx .hljs-title{color:blue}.xml .hljs-tag{color:blue}.xml .hljs-tag .hljs-value{color:blue}.hljs-string,.hljs-title,.hljs-parent,.hljs-tag .hljs-value,.hljs-rules .hljs-value{color:#a31515}.ruby .hljs-symbol{color:#a31515}.ruby .hljs-symbol .hljs-string{color:#a31515}.hljs-template_tag,.django .hljs-variable,.hljs-addition,.hljs-flow,.hljs-stream,.apache .hljs-tag,.hljs-date,.tex .hljs-formula,.coffeescript .hljs-attribute{color:#a31515}.ruby .hljs-string,.hljs-decorator,.hljs-filter .hljs-argument,.hljs-localvars,.hljs-array,.hljs-attr_selector,.hljs-pseudo,.hljs-pi,.hljs-doctype,.hljs-deletion,.hljs-envvar,.hljs-shebang,.hljs-preprocessor,.hljs-pragma,.userType,.apache .hljs-sqbracket,.nginx .hljs-built_in,.tex .hljs-special,.hljs-prompt{color:#2b91af}.hljs-phpdoc,.hljs-javadoc,.hljs-xmlDocTag{color:gray}.vhdl .hljs-typename{font-weight:bold}.vhdl .hljs-string{color:#666}.vhdl .hljs-literal{color:#a31515}.vhdl .hljs-attribute{color:#00b0e8}.xml .hljs-attribute{color:red}ul.tsd-descriptions>li>:first-child,.tsd-panel>:first-child,.col>:first-child,.col-11>:first-child,.col-10>:first-child,.col-9>:first-child,.col-8>:first-child,.col-7>:first-child,.col-6>:first-child,.col-5>:first-child,.col-4>:first-child,.col-3>:first-child,.col-2>:first-child,.col-1>:first-child,ul.tsd-descriptions>li>:first-child>:first-child,.tsd-panel>:first-child>:first-child,.col>:first-child>:first-child,.col-11>:first-child>:first-child,.col-10>:first-child>:first-child,.col-9>:first-child>:first-child,.col-8>:first-child>:first-child,.col-7>:first-child>:first-child,.col-6>:first-child>:first-child,.col-5>:first-child>:first-child,.col-4>:first-child>:first-child,.col-3>:first-child>:first-child,.col-2>:first-child>:first-child,.col-1>:first-child>:first-child,ul.tsd-descriptions>li>:first-child>:first-child>:first-child,.tsd-panel>:first-child>:first-child>:first-child,.col>:first-child>:first-child>:first-child,.col-11>:first-child>:first-child>:first-child,.col-10>:first-child>:first-child>:first-child,.col-9>:first-child>:first-child>:first-child,.col-8>:first-child>:first-child>:first-child,.col-7>:first-child>:first-child>:first-child,.col-6>:first-child>:first-child>:first-child,.col-5>:first-child>:first-child>:first-child,.col-4>:first-child>:first-child>:first-child,.col-3>:first-child>:first-child>:first-child,.col-2>:first-child>:first-child>:first-child,.col-1>:first-child>:first-child>:first-child{margin-top:0}ul.tsd-descriptions>li>:last-child,.tsd-panel>:last-child,.col>:last-child,.col-11>:last-child,.col-10>:last-child,.col-9>:last-child,.col-8>:last-child,.col-7>:last-child,.col-6>:last-child,.col-5>:last-child,.col-4>:last-child,.col-3>:last-child,.col-2>:last-child,.col-1>:last-child,ul.tsd-descriptions>li>:last-child>:last-child,.tsd-panel>:last-child>:last-child,.col>:last-child>:last-child,.col-11>:last-child>:last-child,.col-10>:last-child>:last-child,.col-9>:last-child>:last-child,.col-8>:last-child>:last-child,.col-7>:last-child>:last-child,.col-6>:last-child>:last-child,.col-5>:last-child>:last-child,.col-4>:last-child>:last-child,.col-3>:last-child>:last-child,.col-2>:last-child>:last-child,.col-1>:last-child>:last-child,ul.tsd-descriptions>li>:last-child>:last-child>:last-child,.tsd-panel>:last-child>:last-child>:last-child,.col>:last-child>:last-child>:last-child,.col-11>:last-child>:last-child>:last-child,.col-10>:last-child>:last-child>:last-child,.col-9>:last-child>:last-child>:last-child,.col-8>:last-child>:last-child>:last-child,.col-7>:last-child>:last-child>:last-child,.col-6>:last-child>:last-child>:last-child,.col-5>:last-child>:last-child>:last-child,.col-4>:last-child>:last-child>:last-child,.col-3>:last-child>:last-child>:last-child,.col-2>:last-child>:last-child>:last-child,.col-1>:last-child>:last-child>:last-child{margin-bottom:0}.container{max-width:1200px;margin:0 auto;padding:0 40px}@media(max-width: 640px){.container{padding:0 20px}}.container-main{padding-bottom:200px}.row{display:flex;position:relative;margin:0 -10px}.row:after{visibility:hidden;display:block;content:"";clear:both;height:0}.col,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{box-sizing:border-box;float:left;padding:0 10px}.col-1{width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.col-3{width:25%}.offset-3{margin-left:25%}.col-4{width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.col-6{width:50%}.offset-6{margin-left:50%}.col-7{width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.col-9{width:75%}.offset-9{margin-left:75%}.col-10{width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.tsd-kind-icon{display:block;position:relative;padding-left:20px;text-indent:-20px}.tsd-kind-icon:before{content:"";display:inline-block;vertical-align:middle;width:17px;height:17px;margin:0 3px 2px 0;background-image:url(../images/icons.png)}@media(-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi){.tsd-kind-icon:before{background-image:url(../images/icons@2x.png);background-size:238px 204px}}.tsd-signature.tsd-kind-icon:before{background-position:0 -153px}.tsd-kind-object-literal>.tsd-kind-icon:before{background-position:0px -17px}.tsd-kind-object-literal.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -17px}.tsd-kind-object-literal.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -17px}.tsd-kind-class>.tsd-kind-icon:before{background-position:0px -34px}.tsd-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -34px}.tsd-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -34px}.tsd-kind-class.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -51px}.tsd-kind-interface>.tsd-kind-icon:before{background-position:0px -68px}.tsd-kind-interface.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -68px}.tsd-kind-interface.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -68px}.tsd-kind-interface.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -85px}.tsd-kind-namespace>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-namespace.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-namespace.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-module>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-module.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-module.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-enum>.tsd-kind-icon:before{background-position:0px -119px}.tsd-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -119px}.tsd-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -119px}.tsd-kind-enum-member>.tsd-kind-icon:before{background-position:0px -136px}.tsd-kind-enum-member.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -136px}.tsd-kind-enum-member.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -136px}.tsd-kind-signature>.tsd-kind-icon:before{background-position:0px -153px}.tsd-kind-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -153px}.tsd-kind-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -153px}.tsd-kind-type-alias>.tsd-kind-icon:before{background-position:0px -170px}.tsd-kind-type-alias.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -170px}.tsd-kind-type-alias.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -170px}.tsd-kind-type-alias.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -187px}.tsd-kind-variable>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-variable.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-variable.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-property>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-property.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-property.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-get-signature>.tsd-kind-icon:before{background-position:-136px -17px}.tsd-kind-get-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -17px}.tsd-kind-get-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -17px}.tsd-kind-set-signature>.tsd-kind-icon:before{background-position:-136px -34px}.tsd-kind-set-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -34px}.tsd-kind-set-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -34px}.tsd-kind-accessor>.tsd-kind-icon:before{background-position:-136px -51px}.tsd-kind-accessor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -51px}.tsd-kind-accessor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -51px}.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -51px}.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-function.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-method.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-constructor>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-constructor-signature>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-index-signature>.tsd-kind-icon:before{background-position:-136px -119px}.tsd-kind-index-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -119px}.tsd-kind-index-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -119px}.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -136px}.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -136px}.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -136px}.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -136px}.tsd-is-static>.tsd-kind-icon:before{background-position:-136px -153px}.tsd-is-static.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -153px}.tsd-is-static.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -153px}.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -153px}.tsd-is-static.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -187px}.tsd-is-static.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -187px}.tsd-is-static.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -187px}@keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-out{from{opacity:1;visibility:visible}to{opacity:0}}@keyframes fade-in-delayed{0%{opacity:0}33%{opacity:0}100%{opacity:1}}@keyframes fade-out-delayed{0%{opacity:1;visibility:visible}66%{opacity:0}100%{opacity:0}}@keyframes shift-to-left{from{transform:translate(0, 0)}to{transform:translate(-25%, 0)}}@keyframes unshift-to-left{from{transform:translate(-25%, 0)}to{transform:translate(0, 0)}}@keyframes pop-in-from-right{from{transform:translate(100%, 0)}to{transform:translate(0, 0)}}@keyframes pop-out-to-right{from{transform:translate(0, 0);visibility:visible}to{transform:translate(100%, 0)}}body{background:#fdfdfd;font-family:"Segoe UI",sans-serif;font-size:16px;color:#222}a{color:#4da6ff;text-decoration:none}a:hover{text-decoration:underline}code,pre{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;padding:.2em;margin:0;font-size:14px;background-color:rgba(0,0,0,.04)}pre{padding:10px}pre code{padding:0;font-size:100%;background-color:transparent}.tsd-typography{line-height:1.333em}.tsd-typography ul{list-style:square;padding:0 0 0 20px;margin:0}.tsd-typography h4,.tsd-typography .tsd-index-panel h3,.tsd-index-panel .tsd-typography h3,.tsd-typography h5,.tsd-typography h6{font-size:1em;margin:0}.tsd-typography h5,.tsd-typography h6{font-weight:normal}.tsd-typography p,.tsd-typography ul,.tsd-typography ol{margin:1em 0}@media(min-width: 901px)and (max-width: 1024px){html.default .col-content{width:72%}html.default .col-menu{width:28%}html.default .tsd-navigation{padding-left:10px}}@media(max-width: 900px){html.default .col-content{float:none;width:100%}html.default .col-menu{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;z-index:1024;top:0 !important;bottom:0 !important;left:auto !important;right:0 !important;width:100%;padding:20px 20px 0 0;max-width:450px;visibility:hidden;background-color:#fff;transform:translate(100%, 0)}html.default .col-menu>*:last-child{padding-bottom:20px}html.default .overlay{content:"";display:block;position:fixed;z-index:1023;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75);visibility:hidden}html.default.to-has-menu .overlay{animation:fade-in .4s}html.default.to-has-menu header,html.default.to-has-menu footer,html.default.to-has-menu .col-content{animation:shift-to-left .4s}html.default.to-has-menu .col-menu{animation:pop-in-from-right .4s}html.default.from-has-menu .overlay{animation:fade-out .4s}html.default.from-has-menu header,html.default.from-has-menu footer,html.default.from-has-menu .col-content{animation:unshift-to-left .4s}html.default.from-has-menu .col-menu{animation:pop-out-to-right .4s}html.default.has-menu body{overflow:hidden}html.default.has-menu .overlay{visibility:visible}html.default.has-menu header,html.default.has-menu footer,html.default.has-menu .col-content{transform:translate(-25%, 0)}html.default.has-menu .col-menu{visibility:visible;transform:translate(0, 0)}}.tsd-page-title{padding:70px 0 20px 0;margin:0 0 40px 0;background:#fff;box-shadow:0 0 5px rgba(0,0,0,.35)}.tsd-page-title h1{margin:0}.tsd-breadcrumb{margin:0;padding:0;color:#707070}.tsd-breadcrumb a{color:#707070;text-decoration:none}.tsd-breadcrumb a:hover{text-decoration:underline}.tsd-breadcrumb li{display:inline}.tsd-breadcrumb li:after{content:" / "}html.minimal .container{margin:0}html.minimal .container-main{padding-top:50px;padding-bottom:0}html.minimal .content-wrap{padding-left:300px}html.minimal .tsd-navigation{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;z-index:1;left:0;top:40px;bottom:0;width:300px;padding:20px;margin:0}html.minimal .tsd-member .tsd-member{margin-left:0}html.minimal .tsd-page-toolbar{position:fixed;z-index:2}html.minimal #tsd-filter .tsd-filter-group{right:0;transform:none}html.minimal footer{background-color:transparent}html.minimal footer .container{padding:0}html.minimal .tsd-generator{padding:0}@media(max-width: 900px){html.minimal .tsd-navigation{display:none}html.minimal .content-wrap{padding-left:0}}dl.tsd-comment-tags{overflow:hidden}dl.tsd-comment-tags dt{float:left;padding:1px 5px;margin:0 10px 0 0;border-radius:4px;border:1px solid #707070;color:#707070;font-size:.8em;font-weight:normal}dl.tsd-comment-tags dd{margin:0 0 10px 0}dl.tsd-comment-tags dd:before,dl.tsd-comment-tags dd:after{display:table;content:" "}dl.tsd-comment-tags dd pre,dl.tsd-comment-tags dd:after{clear:both}dl.tsd-comment-tags p{margin:0}.tsd-panel.tsd-comment .lead{font-size:1.1em;line-height:1.333em;margin-bottom:2em}.tsd-panel.tsd-comment .lead:last-child{margin-bottom:0}.toggle-protected .tsd-is-private{display:none}.toggle-public .tsd-is-private,.toggle-public .tsd-is-protected,.toggle-public .tsd-is-private-protected{display:none}.toggle-inherited .tsd-is-inherited{display:none}.toggle-only-exported .tsd-is-not-exported{display:none}.toggle-externals .tsd-is-external{display:none}#tsd-filter{position:relative;display:inline-block;height:40px;vertical-align:bottom}.no-filter #tsd-filter{display:none}#tsd-filter .tsd-filter-group{display:inline-block;height:40px;vertical-align:bottom;white-space:nowrap}#tsd-filter input{display:none}@media(max-width: 900px){#tsd-filter .tsd-filter-group{display:block;position:absolute;top:40px;right:20px;height:auto;background-color:#fff;visibility:hidden;transform:translate(50%, 0);box-shadow:0 0 4px rgba(0,0,0,.25)}.has-options #tsd-filter .tsd-filter-group{visibility:visible}.to-has-options #tsd-filter .tsd-filter-group{animation:fade-in .2s}.from-has-options #tsd-filter .tsd-filter-group{animation:fade-out .2s}#tsd-filter label,#tsd-filter .tsd-select{display:block;padding-right:20px}}footer{border-top:1px solid #eee;background-color:#fff}footer.with-border-bottom{border-bottom:1px solid #eee}footer .tsd-legend-group{font-size:0}footer .tsd-legend{display:inline-block;width:25%;padding:0;font-size:16px;list-style:none;line-height:1.333em;vertical-align:top}@media(max-width: 900px){footer .tsd-legend{width:50%}}.tsd-hierarchy{list-style:square;padding:0 0 0 20px;margin:0}.tsd-hierarchy .target{font-weight:bold}.tsd-index-panel .tsd-index-content{margin-bottom:-30px !important}.tsd-index-panel .tsd-index-section{margin-bottom:30px !important}.tsd-index-panel h3{margin:0 -20px 10px -20px;padding:0 20px 10px 20px;border-bottom:1px solid #eee}.tsd-index-panel ul.tsd-index-list{-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3;-webkit-column-gap:20px;-moz-column-gap:20px;-ms-column-gap:20px;-o-column-gap:20px;column-gap:20px;padding:0;list-style:none;line-height:1.333em}@media(max-width: 900px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:1;-moz-column-count:1;-ms-column-count:1;-o-column-count:1;column-count:1}}@media(min-width: 901px)and (max-width: 1024px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}}.tsd-index-panel ul.tsd-index-list li{-webkit-page-break-inside:avoid;-moz-page-break-inside:avoid;-ms-page-break-inside:avoid;-o-page-break-inside:avoid;page-break-inside:avoid}.tsd-index-panel a,.tsd-index-panel .tsd-parent-kind-module a{color:#9600ff}.tsd-index-panel .tsd-parent-kind-interface a{color:#647f1b}.tsd-index-panel .tsd-parent-kind-enum a{color:#937210}.tsd-index-panel .tsd-parent-kind-class a{color:#0672de}.tsd-index-panel .tsd-kind-module a{color:#9600ff}.tsd-index-panel .tsd-kind-interface a{color:#647f1b}.tsd-index-panel .tsd-kind-enum a{color:#937210}.tsd-index-panel .tsd-kind-class a{color:#0672de}.tsd-index-panel .tsd-is-private a{color:#707070}.tsd-flag{display:inline-block;padding:1px 5px;border-radius:4px;color:#fff;background-color:#707070;text-indent:0;font-size:14px;font-weight:normal}.tsd-anchor{position:absolute;top:-100px}.tsd-member{position:relative}.tsd-member .tsd-anchor+h3{margin-top:0;margin-bottom:0;border-bottom:none}.tsd-navigation{margin:0 0 0 40px}.tsd-navigation a{display:block;padding-top:2px;padding-bottom:2px;border-left:2px solid transparent;color:#222;text-decoration:none;transition:border-left-color .1s}.tsd-navigation a:hover{text-decoration:underline}.tsd-navigation ul{margin:0;padding:0;list-style:none}.tsd-navigation li{padding:0}.tsd-navigation.primary{padding-bottom:40px}.tsd-navigation.primary a{display:block;padding-top:6px;padding-bottom:6px}.tsd-navigation.primary ul li a{padding-left:5px}.tsd-navigation.primary ul li li a{padding-left:25px}.tsd-navigation.primary ul li li li a{padding-left:45px}.tsd-navigation.primary ul li li li li a{padding-left:65px}.tsd-navigation.primary ul li li li li li a{padding-left:85px}.tsd-navigation.primary ul li li li li li li a{padding-left:105px}.tsd-navigation.primary>ul{border-bottom:1px solid #eee}.tsd-navigation.primary li{border-top:1px solid #eee}.tsd-navigation.primary li.current>a{font-weight:bold}.tsd-navigation.primary li.label span{display:block;padding:20px 0 6px 5px;color:#707070}.tsd-navigation.primary li.globals+li>span,.tsd-navigation.primary li.globals+li>a{padding-top:20px}.tsd-navigation.secondary{max-height:calc(100vh - 1rem - 40px);overflow:auto;position:-webkit-sticky;position:sticky;top:calc(.5rem + 40px);transition:.3s}.tsd-navigation.secondary.tsd-navigation--toolbar-hide{max-height:calc(100vh - 1rem);top:.5rem}.tsd-navigation.secondary ul{transition:opacity .2s}.tsd-navigation.secondary ul li a{padding-left:25px}.tsd-navigation.secondary ul li li a{padding-left:45px}.tsd-navigation.secondary ul li li li a{padding-left:65px}.tsd-navigation.secondary ul li li li li a{padding-left:85px}.tsd-navigation.secondary ul li li li li li a{padding-left:105px}.tsd-navigation.secondary ul li li li li li li a{padding-left:125px}.tsd-navigation.secondary ul.current a{border-left-color:#eee}.tsd-navigation.secondary li.focus>a,.tsd-navigation.secondary ul.current li.focus>a{border-left-color:#000}.tsd-navigation.secondary li.current{margin-top:20px;margin-bottom:20px;border-left-color:#eee}.tsd-navigation.secondary li.current>a{font-weight:bold}@media(min-width: 901px){.menu-sticky-wrap{position:static}}.tsd-panel{margin:20px 0;padding:20px;background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.25)}.tsd-panel:empty{display:none}.tsd-panel>h1,.tsd-panel>h2,.tsd-panel>h3{margin:1.5em -20px 10px -20px;padding:0 20px 10px 20px;border-bottom:1px solid #eee}.tsd-panel>h1.tsd-before-signature,.tsd-panel>h2.tsd-before-signature,.tsd-panel>h3.tsd-before-signature{margin-bottom:0;border-bottom:0}.tsd-panel table{display:block;width:100%;overflow:auto;margin-top:10px;word-break:normal;word-break:keep-all}.tsd-panel table th{font-weight:bold}.tsd-panel table th,.tsd-panel table td{padding:6px 13px;border:1px solid #ddd}.tsd-panel table tr{background-color:#fff;border-top:1px solid #ccc}.tsd-panel table tr:nth-child(2n){background-color:#f8f8f8}.tsd-panel-group{margin:60px 0}.tsd-panel-group>h1,.tsd-panel-group>h2,.tsd-panel-group>h3{padding-left:20px;padding-right:20px}#tsd-search{transition:background-color .2s}#tsd-search .title{position:relative;z-index:2}#tsd-search .field{position:absolute;left:0;top:0;right:40px;height:40px}#tsd-search .field input{box-sizing:border-box;position:relative;top:-50px;z-index:1;width:100%;padding:0 10px;opacity:0;outline:0;border:0;background:transparent;color:#222}#tsd-search .field label{position:absolute;overflow:hidden;right:-40px}#tsd-search .field input,#tsd-search .title{transition:opacity .2s}#tsd-search .results{position:absolute;visibility:hidden;top:40px;width:100%;margin:0;padding:0;list-style:none;box-shadow:0 0 4px rgba(0,0,0,.25)}#tsd-search .results li{padding:0 10px;background-color:#fdfdfd}#tsd-search .results li:nth-child(even){background-color:#fff}#tsd-search .results li.state{display:none}#tsd-search .results li.current,#tsd-search .results li:hover{background-color:#eee}#tsd-search .results a{display:block}#tsd-search .results a:before{top:10px}#tsd-search .results span.parent{color:#707070;font-weight:normal}#tsd-search.has-focus{background-color:#eee}#tsd-search.has-focus .field input{top:0;opacity:1}#tsd-search.has-focus .title{z-index:0;opacity:0}#tsd-search.has-focus .results{visibility:visible}#tsd-search.loading .results li.state.loading{display:block}#tsd-search.failure .results li.state.failure{display:block}.tsd-signature{margin:0 0 1em 0;padding:10px;border:1px solid #eee;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px;overflow-x:auto}.tsd-signature.tsd-kind-icon{padding-left:30px}.tsd-signature.tsd-kind-icon:before{top:10px;left:10px}.tsd-panel>.tsd-signature{margin-left:-20px;margin-right:-20px;border-width:1px 0}.tsd-panel>.tsd-signature.tsd-kind-icon{padding-left:40px}.tsd-panel>.tsd-signature.tsd-kind-icon:before{left:20px}.tsd-signature-symbol{color:#707070;font-weight:normal}.tsd-signature-type{font-style:italic;font-weight:normal}.tsd-signatures{padding:0;margin:0 0 1em 0;border:1px solid #eee}.tsd-signatures .tsd-signature{margin:0;border-width:1px 0 0 0;transition:background-color .1s}.tsd-signatures .tsd-signature:first-child{border-top-width:0}.tsd-signatures .tsd-signature.current{background-color:#eee}.tsd-signatures.active>.tsd-signature{cursor:pointer}.tsd-panel>.tsd-signatures{margin-left:-20px;margin-right:-20px;border-width:1px 0}.tsd-panel>.tsd-signatures .tsd-signature.tsd-kind-icon{padding-left:40px}.tsd-panel>.tsd-signatures .tsd-signature.tsd-kind-icon:before{left:20px}.tsd-panel>a.anchor+.tsd-signatures{border-top-width:0;margin-top:-20px}ul.tsd-descriptions{position:relative;overflow:hidden;padding:0;list-style:none}ul.tsd-descriptions.active>.tsd-description{display:none}ul.tsd-descriptions.active>.tsd-description.current{display:block}ul.tsd-descriptions.active>.tsd-description.fade-in{animation:fade-in-delayed .3s}ul.tsd-descriptions.active>.tsd-description.fade-out{animation:fade-out-delayed .3s;position:absolute;display:block;top:0;left:0;right:0;opacity:0;visibility:hidden}ul.tsd-descriptions h4,ul.tsd-descriptions .tsd-index-panel h3,.tsd-index-panel ul.tsd-descriptions h3{font-size:16px;margin:1em 0 .5em 0}ul.tsd-parameters,ul.tsd-type-parameters{list-style:square;margin:0;padding-left:20px}ul.tsd-parameters>li.tsd-parameter-signature,ul.tsd-type-parameters>li.tsd-parameter-signature{list-style:none;margin-left:-20px}ul.tsd-parameters h5,ul.tsd-type-parameters h5{font-size:16px;margin:1em 0 .5em 0}ul.tsd-parameters .tsd-comment,ul.tsd-type-parameters .tsd-comment{margin-top:-0.5em}.tsd-sources{font-size:14px;color:#707070;margin:0 0 1em 0}.tsd-sources a{color:#707070;text-decoration:underline}.tsd-sources ul,.tsd-sources p{margin:0 !important}.tsd-sources ul{list-style:none;padding:0}.tsd-page-toolbar{position:fixed;z-index:1;top:0;left:0;width:100%;height:40px;color:#333;background:#fff;border-bottom:1px solid #eee;transition:transform .3s linear}.tsd-page-toolbar a{color:#333;text-decoration:none}.tsd-page-toolbar a.title{font-weight:bold}.tsd-page-toolbar a.title:hover{text-decoration:underline}.tsd-page-toolbar .table-wrap{display:table;width:100%;height:40px}.tsd-page-toolbar .table-cell{display:table-cell;position:relative;white-space:nowrap;line-height:40px}.tsd-page-toolbar .table-cell:first-child{width:100%}.tsd-page-toolbar--hide{transform:translateY(-100%)}.tsd-select .tsd-select-list li:before,.tsd-select .tsd-select-label:before,.tsd-widget:before{content:"";display:inline-block;width:40px;height:40px;margin:0 -8px 0 0;background-image:url(../images/widgets.png);background-repeat:no-repeat;text-indent:-1024px;vertical-align:bottom}@media(-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi){.tsd-select .tsd-select-list li:before,.tsd-select .tsd-select-label:before,.tsd-widget:before{background-image:url(../images/widgets@2x.png);background-size:320px 40px}}.tsd-widget{display:inline-block;overflow:hidden;opacity:.6;height:40px;transition:opacity .1s,background-color .2s;vertical-align:bottom;cursor:pointer}.tsd-widget:hover{opacity:.8}.tsd-widget.active{opacity:1;background-color:#eee}.tsd-widget.no-caption{width:40px}.tsd-widget.no-caption:before{margin:0}.tsd-widget.search:before{background-position:0 0}.tsd-widget.menu:before{background-position:-40px 0}.tsd-widget.options:before{background-position:-80px 0}.tsd-widget.options,.tsd-widget.menu{display:none}@media(max-width: 900px){.tsd-widget.options,.tsd-widget.menu{display:inline-block}}input[type=checkbox]+.tsd-widget:before{background-position:-120px 0}input[type=checkbox]:checked+.tsd-widget:before{background-position:-160px 0}.tsd-select{position:relative;display:inline-block;height:40px;transition:opacity .1s,background-color .2s;vertical-align:bottom;cursor:pointer}.tsd-select .tsd-select-label{opacity:.6;transition:opacity .2s}.tsd-select .tsd-select-label:before{background-position:-240px 0}.tsd-select.active .tsd-select-label{opacity:.8}.tsd-select.active .tsd-select-list{visibility:visible;opacity:1;transition-delay:0s}.tsd-select .tsd-select-list{position:absolute;visibility:hidden;top:40px;left:0;margin:0;padding:0;opacity:0;list-style:none;box-shadow:0 0 4px rgba(0,0,0,.25);transition:visibility 0s .2s,opacity .2s}.tsd-select .tsd-select-list li{padding:0 20px 0 0;background-color:#fdfdfd}.tsd-select .tsd-select-list li:before{background-position:40px 0}.tsd-select .tsd-select-list li:nth-child(even){background-color:#fff}.tsd-select .tsd-select-list li:hover{background-color:#eee}.tsd-select .tsd-select-list li.selected:before{background-position:-200px 0}@media(max-width: 900px){.tsd-select .tsd-select-list{top:0;left:auto;right:100%;margin-right:-5px}.tsd-select .tsd-select-label:before{background-position:-280px 0}}img{max-width:100%} diff --git a/docs/assets/images/icons.png b/docs/assets/images/icons.png new file mode 100644 index 0000000..3836d5f Binary files /dev/null and b/docs/assets/images/icons.png differ diff --git a/docs/assets/images/icons@2x.png b/docs/assets/images/icons@2x.png new file mode 100644 index 0000000..5a209e2 Binary files /dev/null and b/docs/assets/images/icons@2x.png differ diff --git a/docs/assets/images/widgets.png b/docs/assets/images/widgets.png new file mode 100644 index 0000000..c738053 Binary files /dev/null and b/docs/assets/images/widgets.png differ diff --git a/docs/assets/images/widgets@2x.png b/docs/assets/images/widgets@2x.png new file mode 100644 index 0000000..4bbbd57 Binary files /dev/null and b/docs/assets/images/widgets@2x.png differ diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js new file mode 100644 index 0000000..c2190a9 --- /dev/null +++ b/docs/assets/js/main.js @@ -0,0 +1,51 @@ +!function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=2)}([function(e,t,r){var n,i; +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */!function(){var s,o,a,u,l,c,h,d,f,p,y,m,v,g,x,w,L,E,b,S,k,Q,O,P,T,_,C=function(e){var t=new C.Builder;return t.pipeline.add(C.trimmer,C.stopWordFilter,C.stemmer),t.searchPipeline.add(C.stemmer),e.call(t,t),t.build()};C.version="2.3.9" +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */,C.utils={},C.utils.warn=(s=this,function(e){s.console&&console.warn&&console.warn(e)}),C.utils.asString=function(e){return null==e?"":e.toString()},C.utils.clone=function(e){if(null==e)return e;for(var t=Object.create(null),r=Object.keys(e),n=0;n0){var u=C.utils.clone(t)||{};u.position=[o,a],u.index=i.length,i.push(new C.Token(r.slice(o,s),u))}o=s+1}}return i},C.tokenizer.separator=/[\s\-]+/ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */,C.Pipeline=function(){this._stack=[]},C.Pipeline.registeredFunctions=Object.create(null),C.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&C.utils.warn("Overwriting existing registered function: "+t),e.label=t,C.Pipeline.registeredFunctions[e.label]=e},C.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||C.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},C.Pipeline.load=function(e){var t=new C.Pipeline;return e.forEach((function(e){var r=C.Pipeline.registeredFunctions[e];if(!r)throw new Error("Cannot load unregistered function: "+e);t.add(r)})),t},C.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach((function(e){C.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)}),this)},C.Pipeline.prototype.after=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");r+=1,this._stack.splice(r,0,t)},C.Pipeline.prototype.before=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");this._stack.splice(r,0,t)},C.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},C.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=i),s!=e);)n=r-t,i=t+Math.floor(n/2),s=this.elements[2*i];return s==e||s>e?2*i:sa?l+=2:o==a&&(t+=r[u+1]*n[l+1],u+=2,l+=2);return t},C.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},C.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var s,o=i.str.charAt(0);o in i.node.edges?s=i.node.edges[o]:(s=new C.TokenSet,i.node.edges[o]=s),1==i.str.length&&(s.final=!0),n.push({node:s,editsRemaining:i.editsRemaining,str:i.str.slice(1)})}if(0!=i.editsRemaining){if("*"in i.node.edges)var a=i.node.edges["*"];else{a=new C.TokenSet;i.node.edges["*"]=a}if(0==i.str.length&&(a.final=!0),n.push({node:a,editsRemaining:i.editsRemaining-1,str:i.str}),i.str.length>1&&n.push({node:i.node,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)}),1==i.str.length&&(i.node.final=!0),i.str.length>=1){if("*"in i.node.edges)var u=i.node.edges["*"];else{u=new C.TokenSet;i.node.edges["*"]=u}1==i.str.length&&(u.final=!0),n.push({node:u,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)})}if(i.str.length>1){var l,c=i.str.charAt(0),h=i.str.charAt(1);h in i.node.edges?l=i.node.edges[h]:(l=new C.TokenSet,i.node.edges[h]=l),1==i.str.length&&(l.final=!0),n.push({node:l,editsRemaining:i.editsRemaining-1,str:c+i.str.slice(2)})}}}return r},C.TokenSet.fromString=function(e){for(var t=new C.TokenSet,r=t,n=0,i=e.length;n=e;t--){var r=this.uncheckedNodes[t],n=r.child.toString();n in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[n]:(r.child._str=n,this.minimizedNodes[n]=r.child),this.uncheckedNodes.pop()}} +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */,C.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},C.Index.prototype.search=function(e){return this.query((function(t){new C.QueryParser(e,t).parse()}))},C.Index.prototype.query=function(e){for(var t=new C.Query(this.fields),r=Object.create(null),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=0;a1?1:e},C.Builder.prototype.k1=function(e){this._k1=e},C.Builder.prototype.add=function(e,t){var r=e[this._ref],n=Object.keys(this._fields);this._documents[r]=t||{},this.documentCount+=1;for(var i=0;i=this.length)return C.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},C.QueryLexer.prototype.width=function(){return this.pos-this.start},C.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},C.QueryLexer.prototype.backup=function(){this.pos-=1},C.QueryLexer.prototype.acceptDigitRun=function(){var e,t;do{t=(e=this.next()).charCodeAt(0)}while(t>47&&t<58);e!=C.QueryLexer.EOS&&this.backup()},C.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(C.QueryLexer.TERM)),e.ignore(),e.more())return C.QueryLexer.lexText},C.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.EDIT_DISTANCE),C.QueryLexer.lexText},C.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.BOOST),C.QueryLexer.lexText},C.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(C.QueryLexer.TERM)},C.QueryLexer.termSeparator=C.tokenizer.separator,C.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==C.QueryLexer.EOS)return C.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return C.QueryLexer.lexField;if("~"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexBoost;if("+"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if("-"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if(t.match(C.QueryLexer.termSeparator))return C.QueryLexer.lexTerm}else e.escapeCharacter()}},C.QueryParser=function(e,t){this.lexer=new C.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},C.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=C.QueryParser.parseClause;e;)e=e(this);return this.query},C.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},C.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},C.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},C.QueryParser.parseClause=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case C.QueryLexer.PRESENCE:return C.QueryParser.parsePresence;case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+t.type;throw t.str.length>=1&&(r+=" with value '"+t.str+"'"),new C.QueryParseError(r,t.start,t.end)}},C.QueryParser.parsePresence=function(e){var t=e.consumeLexeme();if(null!=t){switch(t.str){case"-":e.currentClause.presence=C.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=C.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+t.str+"'";throw new C.QueryParseError(r,t.start,t.end)}var n=e.peekLexeme();if(null==n){r="expecting term or field, found nothing";throw new C.QueryParseError(r,t.start,t.end)}switch(n.type){case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:r="expecting term or field, found '"+n.type+"'";throw new C.QueryParseError(r,n.start,n.end)}}},C.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var r=e.query.allFields.map((function(e){return"'"+e+"'"})).join(", "),n="unrecognised field '"+t.str+"', possible fields: "+r;throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.fields=[t.str];var i=e.peekLexeme();if(null==i){n="expecting term, found nothing";throw new C.QueryParseError(n,t.start,t.end)}switch(i.type){case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:n="expecting term, found '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}}},C.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(null!=r)switch(r.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+r.type+"'";throw new C.QueryParseError(n,r.start,r.end)}else e.nextClause()}},C.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="edit distance must be numeric";throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.editDistance=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}else e.nextClause()}},C.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="boost must be numeric";throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.boost=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}else e.nextClause()}},void 0===(i="function"==typeof(n=function(){return C})?n.call(t,r,t,e):n)||(e.exports=i)}()},function(e,t,r){},function(e,t,r){"use strict";r.r(t);var n=[];function i(e,t){n.push({selector:t,constructor:e})}var s,o,a=function(){function e(){this.createComponents(document.body)}return e.prototype.createComponents=function(e){n.forEach((function(t){e.querySelectorAll(t.selector).forEach((function(e){e.dataset.hasInstance||(new t.constructor({el:e}),e.dataset.hasInstance=String(!0))}))}))},e}(),u=function(e){this.el=e.el},l=r(0),c=(s=function(e,t){return(s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}s(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});!function(e){e[e.Idle=0]="Idle",e[e.Loading=1]="Loading",e[e.Ready=2]="Ready",e[e.Failure=3]="Failure"}(o||(o={}));var h=function(e){function t(t){var r=e.call(this,t)||this;r.query="",r.loadingState=o.Idle,r.hasFocus=!1,r.preventPress=!1,r.data=null,r.index=null,r.resultClicked=!1;var n=document.querySelector("#tsd-search-field"),i=document.querySelector(".results");if(!n||!i)throw new Error("The input field or the result list wrapper are not found");return r.field=n,r.results=i,r.base=r.el.dataset.base+"/",r.bindEvents(),r}return c(t,e),t.prototype.loadIndex=function(){var e=this;if(this.loadingState==o.Idle&&!this.data){setTimeout((function(){e.loadingState==o.Idle&&e.setLoadingState(o.Loading)}),500);var t=this.el.dataset.index;t?fetch(t).then((function(e){if(!e.ok)throw new Error("The search index is missing");return e.json()})).then((function(t){e.data=t,e.index=l.Index.load(t.index),e.setLoadingState(o.Ready)})).catch((function(t){console.error(t),e.setLoadingState(o.Failure)})):this.setLoadingState(o.Failure)}},t.prototype.updateResults=function(){if(this.loadingState==o.Ready&&(this.results.textContent="",this.query&&this.index&&this.data)){var e=this.index.search("*"+this.query+"*");0===e.length&&(e=this.index.search("*"+this.query+"~1*"));for(var t=0,r=Math.min(10,e.length);t"+e+""})),s=n.parent||"";(s=s.replace(new RegExp(this.query,"i"),(function(e){return""+e+""})))&&(i=''+s+"."+i);var a=document.createElement("li");a.classList.value=n.classes,a.innerHTML='\n '+i+"\n ",this.results.appendChild(a)}}},t.prototype.setLoadingState=function(e){this.loadingState!=e&&(this.el.classList.remove(o[this.loadingState].toLowerCase()),this.loadingState=e,this.el.classList.add(o[this.loadingState].toLowerCase()),this.updateResults())},t.prototype.setHasFocus=function(e){this.hasFocus!=e&&(this.hasFocus=e,this.el.classList.toggle("has-focus"),e?(this.setQuery(""),this.field.value=""):this.field.value=this.query)},t.prototype.setQuery=function(e){this.query=e.trim(),this.updateResults()},t.prototype.setCurrentResult=function(e){var t=this.results.querySelector(".current");if(t){var r=1==e?t.nextElementSibling:t.previousElementSibling;r&&(t.classList.remove("current"),r.classList.add("current"))}else(t=this.results.querySelector(1==e?"li:first-child":"li:last-child"))&&t.classList.add("current")},t.prototype.gotoCurrentResult=function(){var e=this.results.querySelector(".current");if(e||(e=this.results.querySelector("li:first-child")),e){var t=e.querySelector("a");t&&(window.location.href=t.href),this.field.blur()}},t.prototype.bindEvents=function(){var e=this;this.results.addEventListener("mousedown",(function(){e.resultClicked=!0})),this.results.addEventListener("mouseup",(function(){e.resultClicked=!1,e.setHasFocus(!1)})),this.field.addEventListener("focusin",(function(){e.setHasFocus(!0),e.loadIndex()})),this.field.addEventListener("focusout",(function(){e.resultClicked?e.resultClicked=!1:setTimeout((function(){return e.setHasFocus(!1)}),100)})),this.field.addEventListener("input",(function(){e.setQuery(e.field.value)})),this.field.addEventListener("keydown",(function(t){13==t.keyCode||27==t.keyCode||38==t.keyCode||40==t.keyCode?(e.preventPress=!0,t.preventDefault(),13==t.keyCode?e.gotoCurrentResult():27==t.keyCode?e.field.blur():38==t.keyCode?e.setCurrentResult(-1):40==t.keyCode&&e.setCurrentResult(1)):e.preventPress=!1})),this.field.addEventListener("keypress",(function(t){e.preventPress&&t.preventDefault()})),document.body.addEventListener("keydown",(function(t){t.altKey||t.ctrlKey||t.metaKey||!e.hasFocus&&t.keyCode>47&&t.keyCode<112&&e.field.focus()}))},t}(u),d=function(){function e(){this.listeners={}}return e.prototype.addEventListener=function(e,t){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(t)},e.prototype.removeEventListener=function(e,t){if(e in this.listeners)for(var r=this.listeners[e],n=0,i=r.length;n=this.scrollTop||0===this.scrollTop,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.secondaryNav.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop},t.instance=new t,t}(d),m=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),v=function(e){function t(t){var r=e.call(this,t)||this;return r.anchors=[],r.index=-1,y.instance.addEventListener("resize",(function(){return r.onResize()})),y.instance.addEventListener("scroll",(function(e){return r.onScroll(e)})),r.createAnchors(),r}return m(t,e),t.prototype.createAnchors=function(){var e=this,t=window.location.href;-1!=t.indexOf("#")&&(t=t.substr(0,t.indexOf("#"))),this.el.querySelectorAll("a").forEach((function(r){var n=r.href;if(-1!=n.indexOf("#")&&n.substr(0,t.length)==t){var i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;s&&o&&e.anchors.push({link:o,anchor:s,position:0})}})),this.onResize()},t.prototype.onResize=function(){for(var e,t=0,r=this.anchors.length;t-1&&r[i].position>t;)i-=1;for(;i-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=i,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))},t}(u),g=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),x=function(){function e(e,t){this.signature=e,this.description=t}return e.prototype.addClass=function(e){return this.signature.classList.add(e),this.description.classList.add(e),this},e.prototype.removeClass=function(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this},e}(),w=function(e){function t(t){var r=e.call(this,t)||this;return r.groups=[],r.index=-1,r.createGroups(),r.container&&(r.el.classList.add("active"),Array.from(r.el.children).forEach((function(e){e.addEventListener("touchstart",(function(e){return r.onClick(e)})),e.addEventListener("click",(function(e){return r.onClick(e)}))})),r.container.classList.add("active"),r.setIndex(0)),r}return g(t,e),t.prototype.setIndex=function(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index!=e){var t=this.groups[e];if(this.index>-1){var r=this.groups[this.index];r.removeClass("current").addClass("fade-out"),t.addClass("current"),t.addClass("fade-in"),y.instance.triggerResize(),setTimeout((function(){r.removeClass("fade-out"),t.removeClass("fade-in")}),300)}else t.addClass("current"),y.instance.triggerResize();this.index=e}},t.prototype.createGroups=function(){var e=this.el.children;if(!(e.length<2)){this.container=this.el.nextElementSibling;var t=this.container.children;this.groups=[];for(var r=0;r10}})),document.addEventListener(b,(function(){Q=!1})),document.addEventListener("click",(function(e){k&&(e.preventDefault(),e.stopImmediatePropagation(),k=!1)}));var T=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),_=function(e){function t(t){var r=e.call(this,t)||this;return r.className=r.el.dataset.toggle||"",r.el.addEventListener(b,(function(e){return r.onPointerUp(e)})),r.el.addEventListener("click",(function(e){return e.preventDefault()})),document.addEventListener(L,(function(e){return r.onDocumentPointerDown(e)})),document.addEventListener(b,(function(e){return r.onDocumentPointerUp(e)})),r}return T(t,e),t.prototype.setActive=function(e){if(this.active!=e){this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);var t=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(t),setTimeout((function(){return document.documentElement.classList.remove(t)}),500)}},t.prototype.onPointerUp=function(e){O||(this.setActive(!0),e.preventDefault())},t.prototype.onDocumentPointerDown=function(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}},t.prototype.onDocumentPointerUp=function(e){var t=this;if(!O&&this.active&&e.target.closest(".col-menu")){var r=e.target.closest("a");if(r){var n=window.location.href;-1!=n.indexOf("#")&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout((function(){return t.setActive(!1)}),250)}}},t}(u),C=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),R=function(){function e(e,t){this.key=e,this.value=t,this.defaultValue=t,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}return e.prototype.initialize=function(){},e.prototype.setValue=function(e){if(this.value!=e){var t=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(t,e)}},e}(),I=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return C(t,e),t.prototype.initialize=function(){var e=this,t=document.querySelector("#tsd-filter-"+this.key);t&&(this.checkbox=t,this.checkbox.addEventListener("change",(function(){e.setValue(e.checkbox.checked)})))},t.prototype.handleValueChange=function(e,t){this.checkbox&&(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))},t.prototype.fromLocalStorage=function(e){return"true"==e},t.prototype.toLocalStorage=function(e){return e?"true":"false"},t}(R),j=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return C(t,e),t.prototype.initialize=function(){var e=this;document.documentElement.classList.add("toggle-"+this.key+this.value);var t=document.querySelector("#tsd-filter-"+this.key);if(t){this.select=t;var r=function(){e.select.classList.add("active")};this.select.addEventListener(L,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",(function(){e.select.classList.remove("active")})),this.select.querySelectorAll("li").forEach((function(r){r.addEventListener(b,(function(r){t.classList.remove("active"),e.setValue(r.target.dataset.value||"")}))})),document.addEventListener(L,(function(t){e.select.contains(t.target)||e.select.classList.remove("active")}))}},t.prototype.handleValueChange=function(e,t){this.select.querySelectorAll("li.selected").forEach((function(e){e.classList.remove("selected")}));var r=this.select.querySelector('li[data-value="'+t+'"]'),n=this.select.querySelector(".tsd-select-label");r&&n&&(r.classList.add("selected"),n.textContent=r.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+t)},t.prototype.fromLocalStorage=function(e){return e},t.prototype.toLocalStorage=function(e){return e},t}(R),F=function(e){function t(t){var r=e.call(this,t)||this;return r.optionVisibility=new j("visibility","private"),r.optionInherited=new I("inherited",!0),r.optionExternals=new I("externals",!0),r.optionOnlyExported=new I("only-exported",!1),r}return C(t,e),t.isSupported=function(){try{return void 0!==window.localStorage}catch(e){return!1}},t}(u);r(1);i(h,"#tsd-search"),i(v,".menu-highlight"),i(w,".tsd-signatures"),i(_,"a[data-toggle]"),F.isSupported()?i(F,"#tsd-filter"):document.documentElement.classList.add("no-filter");var N=new a;Object.defineProperty(window,"app",{value:N})}]); \ No newline at end of file diff --git a/docs/assets/js/search.json b/docs/assets/js/search.json new file mode 100644 index 0000000..dcf7ab0 --- /dev/null +++ b/docs/assets/js/search.json @@ -0,0 +1 @@ +{"kinds":{"1":"Module","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"\"handler\"","url":"modules/_handler_.html","classes":"tsd-kind-module"},{"id":1,"kind":256,"name":"QueryHandlerProps","url":"interfaces/_handler_.queryhandlerprops.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported","parent":"\"handler\""},{"id":2,"kind":1024,"name":"command","url":"interfaces/_handler_.queryhandlerprops.html#command","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"handler\".QueryHandlerProps"},{"id":3,"kind":1024,"name":"query","url":"interfaces/_handler_.queryhandlerprops.html#query","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"handler\".QueryHandlerProps"},{"id":4,"kind":1024,"name":"variables","url":"interfaces/_handler_.queryhandlerprops.html#variables","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"\"handler\".QueryHandlerProps"},{"id":5,"kind":32,"name":"client","url":"modules/_handler_.html#client","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"handler\""},{"id":6,"kind":64,"name":"handler","url":"modules/_handler_.html#handler","classes":"tsd-kind-function tsd-parent-kind-module","parent":"\"handler\""},{"id":7,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-module"},{"id":8,"kind":16777216,"name":"run","url":"modules/_index_.html#run","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""},{"id":9,"kind":1,"name":"\"types\"","url":"modules/_types_.html","classes":"tsd-kind-module"},{"id":10,"kind":4,"name":"Bundle_OrderBy","url":"enums/_types_.bundle_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":11,"kind":16,"name":"Id","url":"enums/_types_.bundle_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Bundle_OrderBy"},{"id":12,"kind":16,"name":"EthPrice","url":"enums/_types_.bundle_orderby.html#ethprice","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Bundle_OrderBy"},{"id":13,"kind":4,"name":"Burn_OrderBy","url":"enums/_types_.burn_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":14,"kind":16,"name":"Id","url":"enums/_types_.burn_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":15,"kind":16,"name":"Transaction","url":"enums/_types_.burn_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":16,"kind":16,"name":"Timestamp","url":"enums/_types_.burn_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":17,"kind":16,"name":"Pair","url":"enums/_types_.burn_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":18,"kind":16,"name":"Liquidity","url":"enums/_types_.burn_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":19,"kind":16,"name":"Sender","url":"enums/_types_.burn_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":20,"kind":16,"name":"Amount0","url":"enums/_types_.burn_orderby.html#amount0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":21,"kind":16,"name":"Amount1","url":"enums/_types_.burn_orderby.html#amount1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":22,"kind":16,"name":"To","url":"enums/_types_.burn_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":23,"kind":16,"name":"LogIndex","url":"enums/_types_.burn_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":24,"kind":16,"name":"AmountUsd","url":"enums/_types_.burn_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":25,"kind":16,"name":"Complete","url":"enums/_types_.burn_orderby.html#complete","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":26,"kind":16,"name":"FeeTo","url":"enums/_types_.burn_orderby.html#feeto","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":27,"kind":16,"name":"FeeLiquidity","url":"enums/_types_.burn_orderby.html#feeliquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Burn_OrderBy"},{"id":28,"kind":4,"name":"DayData_OrderBy","url":"enums/_types_.daydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":29,"kind":16,"name":"Id","url":"enums/_types_.daydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":30,"kind":16,"name":"Date","url":"enums/_types_.daydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":31,"kind":16,"name":"Factory","url":"enums/_types_.daydata_orderby.html#factory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":32,"kind":16,"name":"VolumeEth","url":"enums/_types_.daydata_orderby.html#volumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":33,"kind":16,"name":"VolumeUsd","url":"enums/_types_.daydata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":34,"kind":16,"name":"UntrackedVolume","url":"enums/_types_.daydata_orderby.html#untrackedvolume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":35,"kind":16,"name":"LiquidityEth","url":"enums/_types_.daydata_orderby.html#liquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":36,"kind":16,"name":"LiquidityUsd","url":"enums/_types_.daydata_orderby.html#liquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":37,"kind":16,"name":"TxCount","url":"enums/_types_.daydata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".DayData_OrderBy"},{"id":38,"kind":4,"name":"Factory_OrderBy","url":"enums/_types_.factory_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":39,"kind":16,"name":"Id","url":"enums/_types_.factory_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":40,"kind":16,"name":"PairCount","url":"enums/_types_.factory_orderby.html#paircount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":41,"kind":16,"name":"VolumeUsd","url":"enums/_types_.factory_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":42,"kind":16,"name":"VolumeEth","url":"enums/_types_.factory_orderby.html#volumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":43,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_types_.factory_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":44,"kind":16,"name":"LiquidityUsd","url":"enums/_types_.factory_orderby.html#liquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":45,"kind":16,"name":"LiquidityEth","url":"enums/_types_.factory_orderby.html#liquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":46,"kind":16,"name":"TxCount","url":"enums/_types_.factory_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":47,"kind":16,"name":"TokenCount","url":"enums/_types_.factory_orderby.html#tokencount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":48,"kind":16,"name":"UserCount","url":"enums/_types_.factory_orderby.html#usercount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":49,"kind":16,"name":"Pairs","url":"enums/_types_.factory_orderby.html#pairs","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":50,"kind":16,"name":"Tokens","url":"enums/_types_.factory_orderby.html#tokens","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":51,"kind":16,"name":"HourData","url":"enums/_types_.factory_orderby.html#hourdata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":52,"kind":16,"name":"DayData","url":"enums/_types_.factory_orderby.html#daydata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Factory_OrderBy"},{"id":53,"kind":4,"name":"HourData_OrderBy","url":"enums/_types_.hourdata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":54,"kind":16,"name":"Id","url":"enums/_types_.hourdata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":55,"kind":16,"name":"Date","url":"enums/_types_.hourdata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":56,"kind":16,"name":"Factory","url":"enums/_types_.hourdata_orderby.html#factory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":57,"kind":16,"name":"VolumeEth","url":"enums/_types_.hourdata_orderby.html#volumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":58,"kind":16,"name":"VolumeUsd","url":"enums/_types_.hourdata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":59,"kind":16,"name":"UntrackedVolume","url":"enums/_types_.hourdata_orderby.html#untrackedvolume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":60,"kind":16,"name":"LiquidityEth","url":"enums/_types_.hourdata_orderby.html#liquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":61,"kind":16,"name":"LiquidityUsd","url":"enums/_types_.hourdata_orderby.html#liquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":62,"kind":16,"name":"TxCount","url":"enums/_types_.hourdata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".HourData_OrderBy"},{"id":63,"kind":4,"name":"LiquidityPositionSnapshot_OrderBy","url":"enums/_types_.liquiditypositionsnapshot_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":64,"kind":16,"name":"Id","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":65,"kind":16,"name":"LiquidityPosition","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#liquidityposition","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":66,"kind":16,"name":"Timestamp","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":67,"kind":16,"name":"Block","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#block","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":68,"kind":16,"name":"User","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#user","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":69,"kind":16,"name":"Pair","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":70,"kind":16,"name":"Token0PriceUsd","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#token0priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":71,"kind":16,"name":"Token1PriceUsd","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#token1priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":72,"kind":16,"name":"Reserve0","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":73,"kind":16,"name":"Reserve1","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":74,"kind":16,"name":"ReserveUsd","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":75,"kind":16,"name":"LiquidityTokenTotalSupply","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#liquiditytokentotalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":76,"kind":16,"name":"LiquidityTokenBalance","url":"enums/_types_.liquiditypositionsnapshot_orderby.html#liquiditytokenbalance","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPositionSnapshot_OrderBy"},{"id":77,"kind":4,"name":"LiquidityPosition_OrderBy","url":"enums/_types_.liquidityposition_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":78,"kind":16,"name":"Id","url":"enums/_types_.liquidityposition_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":79,"kind":16,"name":"User","url":"enums/_types_.liquidityposition_orderby.html#user","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":80,"kind":16,"name":"Pair","url":"enums/_types_.liquidityposition_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":81,"kind":16,"name":"LiquidityTokenBalance","url":"enums/_types_.liquidityposition_orderby.html#liquiditytokenbalance","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":82,"kind":16,"name":"Snapshots","url":"enums/_types_.liquidityposition_orderby.html#snapshots","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":83,"kind":16,"name":"Block","url":"enums/_types_.liquidityposition_orderby.html#block","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":84,"kind":16,"name":"Timestamp","url":"enums/_types_.liquidityposition_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".LiquidityPosition_OrderBy"},{"id":85,"kind":4,"name":"Mint_OrderBy","url":"enums/_types_.mint_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":86,"kind":16,"name":"Id","url":"enums/_types_.mint_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":87,"kind":16,"name":"Transaction","url":"enums/_types_.mint_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":88,"kind":16,"name":"Timestamp","url":"enums/_types_.mint_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":89,"kind":16,"name":"Pair","url":"enums/_types_.mint_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":90,"kind":16,"name":"To","url":"enums/_types_.mint_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":91,"kind":16,"name":"Liquidity","url":"enums/_types_.mint_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":92,"kind":16,"name":"Sender","url":"enums/_types_.mint_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":93,"kind":16,"name":"Amount0","url":"enums/_types_.mint_orderby.html#amount0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":94,"kind":16,"name":"Amount1","url":"enums/_types_.mint_orderby.html#amount1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":95,"kind":16,"name":"LogIndex","url":"enums/_types_.mint_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":96,"kind":16,"name":"AmountUsd","url":"enums/_types_.mint_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":97,"kind":16,"name":"FeeTo","url":"enums/_types_.mint_orderby.html#feeto","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":98,"kind":16,"name":"FeeLiquidity","url":"enums/_types_.mint_orderby.html#feeliquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Mint_OrderBy"},{"id":99,"kind":4,"name":"OrderDirection","url":"enums/_types_.orderdirection.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":100,"kind":16,"name":"Asc","url":"enums/_types_.orderdirection.html#asc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".OrderDirection"},{"id":101,"kind":16,"name":"Desc","url":"enums/_types_.orderdirection.html#desc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".OrderDirection"},{"id":102,"kind":4,"name":"PairDayData_OrderBy","url":"enums/_types_.pairdaydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":103,"kind":16,"name":"Id","url":"enums/_types_.pairdaydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":104,"kind":16,"name":"Date","url":"enums/_types_.pairdaydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":105,"kind":16,"name":"Pair","url":"enums/_types_.pairdaydata_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":106,"kind":16,"name":"Token0","url":"enums/_types_.pairdaydata_orderby.html#token0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":107,"kind":16,"name":"Token1","url":"enums/_types_.pairdaydata_orderby.html#token1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":108,"kind":16,"name":"Reserve0","url":"enums/_types_.pairdaydata_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":109,"kind":16,"name":"Reserve1","url":"enums/_types_.pairdaydata_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":110,"kind":16,"name":"TotalSupply","url":"enums/_types_.pairdaydata_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":111,"kind":16,"name":"ReserveUsd","url":"enums/_types_.pairdaydata_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":112,"kind":16,"name":"VolumeToken0","url":"enums/_types_.pairdaydata_orderby.html#volumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":113,"kind":16,"name":"VolumeToken1","url":"enums/_types_.pairdaydata_orderby.html#volumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":114,"kind":16,"name":"VolumeUsd","url":"enums/_types_.pairdaydata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":115,"kind":16,"name":"TxCount","url":"enums/_types_.pairdaydata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairDayData_OrderBy"},{"id":116,"kind":4,"name":"PairHourData_OrderBy","url":"enums/_types_.pairhourdata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":117,"kind":16,"name":"Id","url":"enums/_types_.pairhourdata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":118,"kind":16,"name":"Date","url":"enums/_types_.pairhourdata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":119,"kind":16,"name":"Pair","url":"enums/_types_.pairhourdata_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":120,"kind":16,"name":"Reserve0","url":"enums/_types_.pairhourdata_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":121,"kind":16,"name":"Reserve1","url":"enums/_types_.pairhourdata_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":122,"kind":16,"name":"ReserveUsd","url":"enums/_types_.pairhourdata_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":123,"kind":16,"name":"VolumeToken0","url":"enums/_types_.pairhourdata_orderby.html#volumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":124,"kind":16,"name":"VolumeToken1","url":"enums/_types_.pairhourdata_orderby.html#volumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":125,"kind":16,"name":"VolumeUsd","url":"enums/_types_.pairhourdata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":126,"kind":16,"name":"TxCount","url":"enums/_types_.pairhourdata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".PairHourData_OrderBy"},{"id":127,"kind":4,"name":"Pair_OrderBy","url":"enums/_types_.pair_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":128,"kind":16,"name":"Id","url":"enums/_types_.pair_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":129,"kind":16,"name":"Factory","url":"enums/_types_.pair_orderby.html#factory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":130,"kind":16,"name":"Name","url":"enums/_types_.pair_orderby.html#name","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":131,"kind":16,"name":"Token0","url":"enums/_types_.pair_orderby.html#token0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":132,"kind":16,"name":"Token1","url":"enums/_types_.pair_orderby.html#token1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":133,"kind":16,"name":"Reserve0","url":"enums/_types_.pair_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":134,"kind":16,"name":"Reserve1","url":"enums/_types_.pair_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":135,"kind":16,"name":"TotalSupply","url":"enums/_types_.pair_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":136,"kind":16,"name":"ReserveEth","url":"enums/_types_.pair_orderby.html#reserveeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":137,"kind":16,"name":"ReserveUsd","url":"enums/_types_.pair_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":138,"kind":16,"name":"TrackedReserveEth","url":"enums/_types_.pair_orderby.html#trackedreserveeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":139,"kind":16,"name":"Token0Price","url":"enums/_types_.pair_orderby.html#token0price","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":140,"kind":16,"name":"Token1Price","url":"enums/_types_.pair_orderby.html#token1price","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":141,"kind":16,"name":"VolumeToken0","url":"enums/_types_.pair_orderby.html#volumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":142,"kind":16,"name":"VolumeToken1","url":"enums/_types_.pair_orderby.html#volumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":143,"kind":16,"name":"VolumeUsd","url":"enums/_types_.pair_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":144,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_types_.pair_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":145,"kind":16,"name":"TxCount","url":"enums/_types_.pair_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":146,"kind":16,"name":"LiquidityProviderCount","url":"enums/_types_.pair_orderby.html#liquidityprovidercount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":147,"kind":16,"name":"LiquidityPositions","url":"enums/_types_.pair_orderby.html#liquiditypositions","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":148,"kind":16,"name":"LiquidityPositionSnapshots","url":"enums/_types_.pair_orderby.html#liquiditypositionsnapshots","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":149,"kind":16,"name":"DayData","url":"enums/_types_.pair_orderby.html#daydata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":150,"kind":16,"name":"HourData","url":"enums/_types_.pair_orderby.html#hourdata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":151,"kind":16,"name":"Mints","url":"enums/_types_.pair_orderby.html#mints","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":152,"kind":16,"name":"Burns","url":"enums/_types_.pair_orderby.html#burns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":153,"kind":16,"name":"Swaps","url":"enums/_types_.pair_orderby.html#swaps","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":154,"kind":16,"name":"Timestamp","url":"enums/_types_.pair_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":155,"kind":16,"name":"Block","url":"enums/_types_.pair_orderby.html#block","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Pair_OrderBy"},{"id":156,"kind":4,"name":"Swap_OrderBy","url":"enums/_types_.swap_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":157,"kind":16,"name":"Id","url":"enums/_types_.swap_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":158,"kind":16,"name":"Transaction","url":"enums/_types_.swap_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":159,"kind":16,"name":"Timestamp","url":"enums/_types_.swap_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":160,"kind":16,"name":"Pair","url":"enums/_types_.swap_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":161,"kind":16,"name":"Sender","url":"enums/_types_.swap_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":162,"kind":16,"name":"Amount0In","url":"enums/_types_.swap_orderby.html#amount0in","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":163,"kind":16,"name":"Amount1In","url":"enums/_types_.swap_orderby.html#amount1in","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":164,"kind":16,"name":"Amount0Out","url":"enums/_types_.swap_orderby.html#amount0out","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":165,"kind":16,"name":"Amount1Out","url":"enums/_types_.swap_orderby.html#amount1out","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":166,"kind":16,"name":"To","url":"enums/_types_.swap_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":167,"kind":16,"name":"LogIndex","url":"enums/_types_.swap_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":168,"kind":16,"name":"AmountUsd","url":"enums/_types_.swap_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Swap_OrderBy"},{"id":169,"kind":4,"name":"TokenDayData_OrderBy","url":"enums/_types_.tokendaydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":170,"kind":16,"name":"Id","url":"enums/_types_.tokendaydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":171,"kind":16,"name":"Date","url":"enums/_types_.tokendaydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":172,"kind":16,"name":"Token","url":"enums/_types_.tokendaydata_orderby.html#token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":173,"kind":16,"name":"Volume","url":"enums/_types_.tokendaydata_orderby.html#volume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":174,"kind":16,"name":"VolumeEth","url":"enums/_types_.tokendaydata_orderby.html#volumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":175,"kind":16,"name":"VolumeUsd","url":"enums/_types_.tokendaydata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":176,"kind":16,"name":"TxCount","url":"enums/_types_.tokendaydata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":177,"kind":16,"name":"Liquidity","url":"enums/_types_.tokendaydata_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":178,"kind":16,"name":"LiquidityEth","url":"enums/_types_.tokendaydata_orderby.html#liquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":179,"kind":16,"name":"LiquidityUsd","url":"enums/_types_.tokendaydata_orderby.html#liquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":180,"kind":16,"name":"PriceUsd","url":"enums/_types_.tokendaydata_orderby.html#priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenDayData_OrderBy"},{"id":181,"kind":4,"name":"TokenHourData_OrderBy","url":"enums/_types_.tokenhourdata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":182,"kind":16,"name":"Id","url":"enums/_types_.tokenhourdata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":183,"kind":16,"name":"Date","url":"enums/_types_.tokenhourdata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":184,"kind":16,"name":"Token","url":"enums/_types_.tokenhourdata_orderby.html#token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":185,"kind":16,"name":"Volume","url":"enums/_types_.tokenhourdata_orderby.html#volume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":186,"kind":16,"name":"VolumeEth","url":"enums/_types_.tokenhourdata_orderby.html#volumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":187,"kind":16,"name":"VolumeUsd","url":"enums/_types_.tokenhourdata_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":188,"kind":16,"name":"TxCount","url":"enums/_types_.tokenhourdata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":189,"kind":16,"name":"Liquidity","url":"enums/_types_.tokenhourdata_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":190,"kind":16,"name":"LiquidityEth","url":"enums/_types_.tokenhourdata_orderby.html#liquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":191,"kind":16,"name":"LiquidityUsd","url":"enums/_types_.tokenhourdata_orderby.html#liquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":192,"kind":16,"name":"PriceUsd","url":"enums/_types_.tokenhourdata_orderby.html#priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".TokenHourData_OrderBy"},{"id":193,"kind":4,"name":"Token_OrderBy","url":"enums/_types_.token_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":194,"kind":16,"name":"Id","url":"enums/_types_.token_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":195,"kind":16,"name":"Factory","url":"enums/_types_.token_orderby.html#factory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":196,"kind":16,"name":"Symbol","url":"enums/_types_.token_orderby.html#symbol","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":197,"kind":16,"name":"Name","url":"enums/_types_.token_orderby.html#name","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":198,"kind":16,"name":"Decimals","url":"enums/_types_.token_orderby.html#decimals","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":199,"kind":16,"name":"TotalSupply","url":"enums/_types_.token_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":200,"kind":16,"name":"Volume","url":"enums/_types_.token_orderby.html#volume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":201,"kind":16,"name":"VolumeUsd","url":"enums/_types_.token_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":202,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_types_.token_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":203,"kind":16,"name":"TxCount","url":"enums/_types_.token_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":204,"kind":16,"name":"Liquidity","url":"enums/_types_.token_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":205,"kind":16,"name":"DerivedEth","url":"enums/_types_.token_orderby.html#derivedeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":206,"kind":16,"name":"HourData","url":"enums/_types_.token_orderby.html#hourdata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":207,"kind":16,"name":"DayData","url":"enums/_types_.token_orderby.html#daydata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":208,"kind":16,"name":"BasePairs","url":"enums/_types_.token_orderby.html#basepairs","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":209,"kind":16,"name":"QuotePairs","url":"enums/_types_.token_orderby.html#quotepairs","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":210,"kind":16,"name":"BasePairsDayData","url":"enums/_types_.token_orderby.html#basepairsdaydata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":211,"kind":16,"name":"QuotePairsDayData","url":"enums/_types_.token_orderby.html#quotepairsdaydata","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Token_OrderBy"},{"id":212,"kind":4,"name":"Transaction_OrderBy","url":"enums/_types_.transaction_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":213,"kind":16,"name":"Id","url":"enums/_types_.transaction_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":214,"kind":16,"name":"BlockNumber","url":"enums/_types_.transaction_orderby.html#blocknumber","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":215,"kind":16,"name":"Timestamp","url":"enums/_types_.transaction_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":216,"kind":16,"name":"Mints","url":"enums/_types_.transaction_orderby.html#mints","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":217,"kind":16,"name":"Burns","url":"enums/_types_.transaction_orderby.html#burns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":218,"kind":16,"name":"Swaps","url":"enums/_types_.transaction_orderby.html#swaps","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".Transaction_OrderBy"},{"id":219,"kind":4,"name":"User_OrderBy","url":"enums/_types_.user_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":220,"kind":16,"name":"Id","url":"enums/_types_.user_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".User_OrderBy"},{"id":221,"kind":16,"name":"LiquidityPositions","url":"enums/_types_.user_orderby.html#liquiditypositions","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\".User_OrderBy"},{"id":222,"kind":4,"name":"_SubgraphErrorPolicy_","url":"enums/_types_._subgrapherrorpolicy_.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"types\""},{"id":223,"kind":16,"name":"Allow","url":"enums/_types_._subgrapherrorpolicy_.html#allow","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\"._SubgraphErrorPolicy_"},{"id":224,"kind":16,"name":"Deny","url":"enums/_types_._subgrapherrorpolicy_.html#deny","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"types\"._SubgraphErrorPolicy_"},{"id":225,"kind":4194304,"name":"Maybe","url":"modules/_types_.html#maybe","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"types\""},{"id":226,"kind":4194304,"name":"Exact","url":"modules/_types_.html#exact","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"types\""},{"id":227,"kind":65536,"name":"__type","url":"modules/_types_.html#exact.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Exact"},{"id":228,"kind":4194304,"name":"MakeOptional","url":"modules/_types_.html#makeoptional","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"types\""},{"id":229,"kind":4194304,"name":"MakeMaybe","url":"modules/_types_.html#makemaybe","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"types\""},{"id":230,"kind":4194304,"name":"Scalars","url":"modules/_types_.html#scalars","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":231,"kind":65536,"name":"__type","url":"modules/_types_.html#scalars.__type-75","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Scalars"},{"id":232,"kind":32,"name":"ID","url":"modules/_types_.html#scalars.__type-75.id-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":233,"kind":32,"name":"String","url":"modules/_types_.html#scalars.__type-75.string","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":234,"kind":32,"name":"Boolean","url":"modules/_types_.html#scalars.__type-75.boolean","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":235,"kind":32,"name":"Int","url":"modules/_types_.html#scalars.__type-75.int","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":236,"kind":32,"name":"Float","url":"modules/_types_.html#scalars.__type-75.float","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":237,"kind":32,"name":"BigDecimal","url":"modules/_types_.html#scalars.__type-75.bigdecimal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":238,"kind":32,"name":"BigInt","url":"modules/_types_.html#scalars.__type-75.bigint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":239,"kind":32,"name":"Bytes","url":"modules/_types_.html#scalars.__type-75.bytes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Scalars.__type"},{"id":240,"kind":4194304,"name":"Block_Height","url":"modules/_types_.html#block_height","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":241,"kind":65536,"name":"__type","url":"modules/_types_.html#block_height.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Block_Height"},{"id":242,"kind":32,"name":"hash","url":"modules/_types_.html#block_height.__type.hash","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Block_Height.__type"},{"id":243,"kind":32,"name":"number","url":"modules/_types_.html#block_height.__type.number","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Block_Height.__type"},{"id":244,"kind":4194304,"name":"Bundle","url":"modules/_types_.html#bundle","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":245,"kind":65536,"name":"__type","url":"modules/_types_.html#bundle.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Bundle"},{"id":246,"kind":32,"name":"__typename","url":"modules/_types_.html#bundle.__type-1.__typename","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle.__type"},{"id":247,"kind":32,"name":"id","url":"modules/_types_.html#bundle.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle.__type"},{"id":248,"kind":32,"name":"ethPrice","url":"modules/_types_.html#bundle.__type-1.ethprice","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle.__type"},{"id":249,"kind":4194304,"name":"Bundle_Filter","url":"modules/_types_.html#bundle_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":250,"kind":65536,"name":"__type","url":"modules/_types_.html#bundle_filter.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Bundle_Filter"},{"id":251,"kind":32,"name":"id","url":"modules/_types_.html#bundle_filter.__type-2.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":252,"kind":32,"name":"id_not","url":"modules/_types_.html#bundle_filter.__type-2.id_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":253,"kind":32,"name":"id_gt","url":"modules/_types_.html#bundle_filter.__type-2.id_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":254,"kind":32,"name":"id_lt","url":"modules/_types_.html#bundle_filter.__type-2.id_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":255,"kind":32,"name":"id_gte","url":"modules/_types_.html#bundle_filter.__type-2.id_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":256,"kind":32,"name":"id_lte","url":"modules/_types_.html#bundle_filter.__type-2.id_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":257,"kind":32,"name":"id_in","url":"modules/_types_.html#bundle_filter.__type-2.id_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":258,"kind":32,"name":"id_not_in","url":"modules/_types_.html#bundle_filter.__type-2.id_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":259,"kind":32,"name":"ethPrice","url":"modules/_types_.html#bundle_filter.__type-2.ethprice-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":260,"kind":32,"name":"ethPrice_not","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":261,"kind":32,"name":"ethPrice_gt","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":262,"kind":32,"name":"ethPrice_lt","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":263,"kind":32,"name":"ethPrice_gte","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":264,"kind":32,"name":"ethPrice_lte","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":265,"kind":32,"name":"ethPrice_in","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":266,"kind":32,"name":"ethPrice_not_in","url":"modules/_types_.html#bundle_filter.__type-2.ethprice_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Bundle_Filter.__type"},{"id":267,"kind":4194304,"name":"Burn","url":"modules/_types_.html#burn","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":268,"kind":65536,"name":"__type","url":"modules/_types_.html#burn.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Burn"},{"id":269,"kind":32,"name":"__typename","url":"modules/_types_.html#burn.__type-3.__typename-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":270,"kind":32,"name":"id","url":"modules/_types_.html#burn.__type-3.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":271,"kind":32,"name":"transaction","url":"modules/_types_.html#burn.__type-3.transaction","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":272,"kind":32,"name":"timestamp","url":"modules/_types_.html#burn.__type-3.timestamp","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":273,"kind":32,"name":"pair","url":"modules/_types_.html#burn.__type-3.pair","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":274,"kind":32,"name":"liquidity","url":"modules/_types_.html#burn.__type-3.liquidity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":275,"kind":32,"name":"sender","url":"modules/_types_.html#burn.__type-3.sender","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":276,"kind":32,"name":"amount0","url":"modules/_types_.html#burn.__type-3.amount0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":277,"kind":32,"name":"amount1","url":"modules/_types_.html#burn.__type-3.amount1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":278,"kind":32,"name":"to","url":"modules/_types_.html#burn.__type-3.to","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":279,"kind":32,"name":"logIndex","url":"modules/_types_.html#burn.__type-3.logindex","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":280,"kind":32,"name":"amountUSD","url":"modules/_types_.html#burn.__type-3.amountusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":281,"kind":32,"name":"complete","url":"modules/_types_.html#burn.__type-3.complete","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":282,"kind":32,"name":"feeTo","url":"modules/_types_.html#burn.__type-3.feeto","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":283,"kind":32,"name":"feeLiquidity","url":"modules/_types_.html#burn.__type-3.feeliquidity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn.__type"},{"id":284,"kind":4194304,"name":"Burn_Filter","url":"modules/_types_.html#burn_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":285,"kind":65536,"name":"__type","url":"modules/_types_.html#burn_filter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Burn_Filter"},{"id":286,"kind":32,"name":"id","url":"modules/_types_.html#burn_filter.__type-4.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":287,"kind":32,"name":"id_not","url":"modules/_types_.html#burn_filter.__type-4.id_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":288,"kind":32,"name":"id_gt","url":"modules/_types_.html#burn_filter.__type-4.id_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":289,"kind":32,"name":"id_lt","url":"modules/_types_.html#burn_filter.__type-4.id_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":290,"kind":32,"name":"id_gte","url":"modules/_types_.html#burn_filter.__type-4.id_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":291,"kind":32,"name":"id_lte","url":"modules/_types_.html#burn_filter.__type-4.id_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":292,"kind":32,"name":"id_in","url":"modules/_types_.html#burn_filter.__type-4.id_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":293,"kind":32,"name":"id_not_in","url":"modules/_types_.html#burn_filter.__type-4.id_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":294,"kind":32,"name":"transaction","url":"modules/_types_.html#burn_filter.__type-4.transaction-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":295,"kind":32,"name":"transaction_not","url":"modules/_types_.html#burn_filter.__type-4.transaction_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":296,"kind":32,"name":"transaction_gt","url":"modules/_types_.html#burn_filter.__type-4.transaction_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":297,"kind":32,"name":"transaction_lt","url":"modules/_types_.html#burn_filter.__type-4.transaction_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":298,"kind":32,"name":"transaction_gte","url":"modules/_types_.html#burn_filter.__type-4.transaction_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":299,"kind":32,"name":"transaction_lte","url":"modules/_types_.html#burn_filter.__type-4.transaction_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":300,"kind":32,"name":"transaction_in","url":"modules/_types_.html#burn_filter.__type-4.transaction_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":301,"kind":32,"name":"transaction_not_in","url":"modules/_types_.html#burn_filter.__type-4.transaction_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":302,"kind":32,"name":"transaction_contains","url":"modules/_types_.html#burn_filter.__type-4.transaction_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":303,"kind":32,"name":"transaction_not_contains","url":"modules/_types_.html#burn_filter.__type-4.transaction_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":304,"kind":32,"name":"transaction_starts_with","url":"modules/_types_.html#burn_filter.__type-4.transaction_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":305,"kind":32,"name":"transaction_not_starts_with","url":"modules/_types_.html#burn_filter.__type-4.transaction_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":306,"kind":32,"name":"transaction_ends_with","url":"modules/_types_.html#burn_filter.__type-4.transaction_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":307,"kind":32,"name":"transaction_not_ends_with","url":"modules/_types_.html#burn_filter.__type-4.transaction_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":308,"kind":32,"name":"timestamp","url":"modules/_types_.html#burn_filter.__type-4.timestamp-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":309,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#burn_filter.__type-4.timestamp_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":310,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#burn_filter.__type-4.timestamp_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":311,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#burn_filter.__type-4.timestamp_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":312,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#burn_filter.__type-4.timestamp_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":313,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#burn_filter.__type-4.timestamp_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":314,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#burn_filter.__type-4.timestamp_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":315,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#burn_filter.__type-4.timestamp_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":316,"kind":32,"name":"pair","url":"modules/_types_.html#burn_filter.__type-4.pair-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":317,"kind":32,"name":"pair_not","url":"modules/_types_.html#burn_filter.__type-4.pair_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":318,"kind":32,"name":"pair_gt","url":"modules/_types_.html#burn_filter.__type-4.pair_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":319,"kind":32,"name":"pair_lt","url":"modules/_types_.html#burn_filter.__type-4.pair_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":320,"kind":32,"name":"pair_gte","url":"modules/_types_.html#burn_filter.__type-4.pair_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":321,"kind":32,"name":"pair_lte","url":"modules/_types_.html#burn_filter.__type-4.pair_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":322,"kind":32,"name":"pair_in","url":"modules/_types_.html#burn_filter.__type-4.pair_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":323,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#burn_filter.__type-4.pair_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":324,"kind":32,"name":"pair_contains","url":"modules/_types_.html#burn_filter.__type-4.pair_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":325,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#burn_filter.__type-4.pair_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":326,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#burn_filter.__type-4.pair_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":327,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#burn_filter.__type-4.pair_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":328,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#burn_filter.__type-4.pair_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":329,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#burn_filter.__type-4.pair_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":330,"kind":32,"name":"liquidity","url":"modules/_types_.html#burn_filter.__type-4.liquidity-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":331,"kind":32,"name":"liquidity_not","url":"modules/_types_.html#burn_filter.__type-4.liquidity_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":332,"kind":32,"name":"liquidity_gt","url":"modules/_types_.html#burn_filter.__type-4.liquidity_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":333,"kind":32,"name":"liquidity_lt","url":"modules/_types_.html#burn_filter.__type-4.liquidity_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":334,"kind":32,"name":"liquidity_gte","url":"modules/_types_.html#burn_filter.__type-4.liquidity_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":335,"kind":32,"name":"liquidity_lte","url":"modules/_types_.html#burn_filter.__type-4.liquidity_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":336,"kind":32,"name":"liquidity_in","url":"modules/_types_.html#burn_filter.__type-4.liquidity_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":337,"kind":32,"name":"liquidity_not_in","url":"modules/_types_.html#burn_filter.__type-4.liquidity_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":338,"kind":32,"name":"sender","url":"modules/_types_.html#burn_filter.__type-4.sender-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":339,"kind":32,"name":"sender_not","url":"modules/_types_.html#burn_filter.__type-4.sender_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":340,"kind":32,"name":"sender_in","url":"modules/_types_.html#burn_filter.__type-4.sender_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":341,"kind":32,"name":"sender_not_in","url":"modules/_types_.html#burn_filter.__type-4.sender_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":342,"kind":32,"name":"sender_contains","url":"modules/_types_.html#burn_filter.__type-4.sender_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":343,"kind":32,"name":"sender_not_contains","url":"modules/_types_.html#burn_filter.__type-4.sender_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":344,"kind":32,"name":"amount0","url":"modules/_types_.html#burn_filter.__type-4.amount0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":345,"kind":32,"name":"amount0_not","url":"modules/_types_.html#burn_filter.__type-4.amount0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":346,"kind":32,"name":"amount0_gt","url":"modules/_types_.html#burn_filter.__type-4.amount0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":347,"kind":32,"name":"amount0_lt","url":"modules/_types_.html#burn_filter.__type-4.amount0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":348,"kind":32,"name":"amount0_gte","url":"modules/_types_.html#burn_filter.__type-4.amount0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":349,"kind":32,"name":"amount0_lte","url":"modules/_types_.html#burn_filter.__type-4.amount0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":350,"kind":32,"name":"amount0_in","url":"modules/_types_.html#burn_filter.__type-4.amount0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":351,"kind":32,"name":"amount0_not_in","url":"modules/_types_.html#burn_filter.__type-4.amount0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":352,"kind":32,"name":"amount1","url":"modules/_types_.html#burn_filter.__type-4.amount1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":353,"kind":32,"name":"amount1_not","url":"modules/_types_.html#burn_filter.__type-4.amount1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":354,"kind":32,"name":"amount1_gt","url":"modules/_types_.html#burn_filter.__type-4.amount1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":355,"kind":32,"name":"amount1_lt","url":"modules/_types_.html#burn_filter.__type-4.amount1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":356,"kind":32,"name":"amount1_gte","url":"modules/_types_.html#burn_filter.__type-4.amount1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":357,"kind":32,"name":"amount1_lte","url":"modules/_types_.html#burn_filter.__type-4.amount1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":358,"kind":32,"name":"amount1_in","url":"modules/_types_.html#burn_filter.__type-4.amount1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":359,"kind":32,"name":"amount1_not_in","url":"modules/_types_.html#burn_filter.__type-4.amount1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":360,"kind":32,"name":"to","url":"modules/_types_.html#burn_filter.__type-4.to-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":361,"kind":32,"name":"to_not","url":"modules/_types_.html#burn_filter.__type-4.to_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":362,"kind":32,"name":"to_in","url":"modules/_types_.html#burn_filter.__type-4.to_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":363,"kind":32,"name":"to_not_in","url":"modules/_types_.html#burn_filter.__type-4.to_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":364,"kind":32,"name":"to_contains","url":"modules/_types_.html#burn_filter.__type-4.to_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":365,"kind":32,"name":"to_not_contains","url":"modules/_types_.html#burn_filter.__type-4.to_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":366,"kind":32,"name":"logIndex","url":"modules/_types_.html#burn_filter.__type-4.logindex-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":367,"kind":32,"name":"logIndex_not","url":"modules/_types_.html#burn_filter.__type-4.logindex_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":368,"kind":32,"name":"logIndex_gt","url":"modules/_types_.html#burn_filter.__type-4.logindex_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":369,"kind":32,"name":"logIndex_lt","url":"modules/_types_.html#burn_filter.__type-4.logindex_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":370,"kind":32,"name":"logIndex_gte","url":"modules/_types_.html#burn_filter.__type-4.logindex_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":371,"kind":32,"name":"logIndex_lte","url":"modules/_types_.html#burn_filter.__type-4.logindex_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":372,"kind":32,"name":"logIndex_in","url":"modules/_types_.html#burn_filter.__type-4.logindex_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":373,"kind":32,"name":"logIndex_not_in","url":"modules/_types_.html#burn_filter.__type-4.logindex_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":374,"kind":32,"name":"amountUSD","url":"modules/_types_.html#burn_filter.__type-4.amountusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":375,"kind":32,"name":"amountUSD_not","url":"modules/_types_.html#burn_filter.__type-4.amountusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":376,"kind":32,"name":"amountUSD_gt","url":"modules/_types_.html#burn_filter.__type-4.amountusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":377,"kind":32,"name":"amountUSD_lt","url":"modules/_types_.html#burn_filter.__type-4.amountusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":378,"kind":32,"name":"amountUSD_gte","url":"modules/_types_.html#burn_filter.__type-4.amountusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":379,"kind":32,"name":"amountUSD_lte","url":"modules/_types_.html#burn_filter.__type-4.amountusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":380,"kind":32,"name":"amountUSD_in","url":"modules/_types_.html#burn_filter.__type-4.amountusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":381,"kind":32,"name":"amountUSD_not_in","url":"modules/_types_.html#burn_filter.__type-4.amountusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":382,"kind":32,"name":"complete","url":"modules/_types_.html#burn_filter.__type-4.complete-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":383,"kind":32,"name":"complete_not","url":"modules/_types_.html#burn_filter.__type-4.complete_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":384,"kind":32,"name":"complete_in","url":"modules/_types_.html#burn_filter.__type-4.complete_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":385,"kind":32,"name":"complete_not_in","url":"modules/_types_.html#burn_filter.__type-4.complete_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":386,"kind":32,"name":"feeTo","url":"modules/_types_.html#burn_filter.__type-4.feeto-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":387,"kind":32,"name":"feeTo_not","url":"modules/_types_.html#burn_filter.__type-4.feeto_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":388,"kind":32,"name":"feeTo_in","url":"modules/_types_.html#burn_filter.__type-4.feeto_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":389,"kind":32,"name":"feeTo_not_in","url":"modules/_types_.html#burn_filter.__type-4.feeto_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":390,"kind":32,"name":"feeTo_contains","url":"modules/_types_.html#burn_filter.__type-4.feeto_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":391,"kind":32,"name":"feeTo_not_contains","url":"modules/_types_.html#burn_filter.__type-4.feeto_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":392,"kind":32,"name":"feeLiquidity","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":393,"kind":32,"name":"feeLiquidity_not","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":394,"kind":32,"name":"feeLiquidity_gt","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":395,"kind":32,"name":"feeLiquidity_lt","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":396,"kind":32,"name":"feeLiquidity_gte","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":397,"kind":32,"name":"feeLiquidity_lte","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":398,"kind":32,"name":"feeLiquidity_in","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":399,"kind":32,"name":"feeLiquidity_not_in","url":"modules/_types_.html#burn_filter.__type-4.feeliquidity_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Burn_Filter.__type"},{"id":400,"kind":4194304,"name":"DayData","url":"modules/_types_.html#daydata","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":401,"kind":65536,"name":"__type","url":"modules/_types_.html#daydata.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".DayData"},{"id":402,"kind":32,"name":"__typename","url":"modules/_types_.html#daydata.__type-5.__typename-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":403,"kind":32,"name":"id","url":"modules/_types_.html#daydata.__type-5.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":404,"kind":32,"name":"date","url":"modules/_types_.html#daydata.__type-5.date","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":405,"kind":32,"name":"factory","url":"modules/_types_.html#daydata.__type-5.factory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":406,"kind":32,"name":"volumeETH","url":"modules/_types_.html#daydata.__type-5.volumeeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":407,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#daydata.__type-5.volumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":408,"kind":32,"name":"untrackedVolume","url":"modules/_types_.html#daydata.__type-5.untrackedvolume","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":409,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#daydata.__type-5.liquidityeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":410,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#daydata.__type-5.liquidityusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":411,"kind":32,"name":"txCount","url":"modules/_types_.html#daydata.__type-5.txcount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData.__type"},{"id":412,"kind":4194304,"name":"DayData_Filter","url":"modules/_types_.html#daydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":413,"kind":65536,"name":"__type","url":"modules/_types_.html#daydata_filter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".DayData_Filter"},{"id":414,"kind":32,"name":"id","url":"modules/_types_.html#daydata_filter.__type-6.id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":415,"kind":32,"name":"id_not","url":"modules/_types_.html#daydata_filter.__type-6.id_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":416,"kind":32,"name":"id_gt","url":"modules/_types_.html#daydata_filter.__type-6.id_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":417,"kind":32,"name":"id_lt","url":"modules/_types_.html#daydata_filter.__type-6.id_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":418,"kind":32,"name":"id_gte","url":"modules/_types_.html#daydata_filter.__type-6.id_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":419,"kind":32,"name":"id_lte","url":"modules/_types_.html#daydata_filter.__type-6.id_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":420,"kind":32,"name":"id_in","url":"modules/_types_.html#daydata_filter.__type-6.id_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":421,"kind":32,"name":"id_not_in","url":"modules/_types_.html#daydata_filter.__type-6.id_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":422,"kind":32,"name":"date","url":"modules/_types_.html#daydata_filter.__type-6.date-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":423,"kind":32,"name":"date_not","url":"modules/_types_.html#daydata_filter.__type-6.date_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":424,"kind":32,"name":"date_gt","url":"modules/_types_.html#daydata_filter.__type-6.date_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":425,"kind":32,"name":"date_lt","url":"modules/_types_.html#daydata_filter.__type-6.date_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":426,"kind":32,"name":"date_gte","url":"modules/_types_.html#daydata_filter.__type-6.date_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":427,"kind":32,"name":"date_lte","url":"modules/_types_.html#daydata_filter.__type-6.date_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":428,"kind":32,"name":"date_in","url":"modules/_types_.html#daydata_filter.__type-6.date_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":429,"kind":32,"name":"date_not_in","url":"modules/_types_.html#daydata_filter.__type-6.date_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":430,"kind":32,"name":"factory","url":"modules/_types_.html#daydata_filter.__type-6.factory-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":431,"kind":32,"name":"factory_not","url":"modules/_types_.html#daydata_filter.__type-6.factory_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":432,"kind":32,"name":"factory_gt","url":"modules/_types_.html#daydata_filter.__type-6.factory_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":433,"kind":32,"name":"factory_lt","url":"modules/_types_.html#daydata_filter.__type-6.factory_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":434,"kind":32,"name":"factory_gte","url":"modules/_types_.html#daydata_filter.__type-6.factory_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":435,"kind":32,"name":"factory_lte","url":"modules/_types_.html#daydata_filter.__type-6.factory_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":436,"kind":32,"name":"factory_in","url":"modules/_types_.html#daydata_filter.__type-6.factory_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":437,"kind":32,"name":"factory_not_in","url":"modules/_types_.html#daydata_filter.__type-6.factory_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":438,"kind":32,"name":"factory_contains","url":"modules/_types_.html#daydata_filter.__type-6.factory_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":439,"kind":32,"name":"factory_not_contains","url":"modules/_types_.html#daydata_filter.__type-6.factory_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":440,"kind":32,"name":"factory_starts_with","url":"modules/_types_.html#daydata_filter.__type-6.factory_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":441,"kind":32,"name":"factory_not_starts_with","url":"modules/_types_.html#daydata_filter.__type-6.factory_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":442,"kind":32,"name":"factory_ends_with","url":"modules/_types_.html#daydata_filter.__type-6.factory_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":443,"kind":32,"name":"factory_not_ends_with","url":"modules/_types_.html#daydata_filter.__type-6.factory_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":444,"kind":32,"name":"volumeETH","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":445,"kind":32,"name":"volumeETH_not","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":446,"kind":32,"name":"volumeETH_gt","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":447,"kind":32,"name":"volumeETH_lt","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":448,"kind":32,"name":"volumeETH_gte","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":449,"kind":32,"name":"volumeETH_lte","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":450,"kind":32,"name":"volumeETH_in","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":451,"kind":32,"name":"volumeETH_not_in","url":"modules/_types_.html#daydata_filter.__type-6.volumeeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":452,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":453,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":454,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":455,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":456,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":457,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":458,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":459,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#daydata_filter.__type-6.volumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":460,"kind":32,"name":"untrackedVolume","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":461,"kind":32,"name":"untrackedVolume_not","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":462,"kind":32,"name":"untrackedVolume_gt","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":463,"kind":32,"name":"untrackedVolume_lt","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":464,"kind":32,"name":"untrackedVolume_gte","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":465,"kind":32,"name":"untrackedVolume_lte","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":466,"kind":32,"name":"untrackedVolume_in","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":467,"kind":32,"name":"untrackedVolume_not_in","url":"modules/_types_.html#daydata_filter.__type-6.untrackedvolume_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":468,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":469,"kind":32,"name":"liquidityETH_not","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":470,"kind":32,"name":"liquidityETH_gt","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":471,"kind":32,"name":"liquidityETH_lt","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":472,"kind":32,"name":"liquidityETH_gte","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":473,"kind":32,"name":"liquidityETH_lte","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":474,"kind":32,"name":"liquidityETH_in","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":475,"kind":32,"name":"liquidityETH_not_in","url":"modules/_types_.html#daydata_filter.__type-6.liquidityeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":476,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":477,"kind":32,"name":"liquidityUSD_not","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":478,"kind":32,"name":"liquidityUSD_gt","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":479,"kind":32,"name":"liquidityUSD_lt","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":480,"kind":32,"name":"liquidityUSD_gte","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":481,"kind":32,"name":"liquidityUSD_lte","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":482,"kind":32,"name":"liquidityUSD_in","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":483,"kind":32,"name":"liquidityUSD_not_in","url":"modules/_types_.html#daydata_filter.__type-6.liquidityusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":484,"kind":32,"name":"txCount","url":"modules/_types_.html#daydata_filter.__type-6.txcount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":485,"kind":32,"name":"txCount_not","url":"modules/_types_.html#daydata_filter.__type-6.txcount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":486,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#daydata_filter.__type-6.txcount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":487,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#daydata_filter.__type-6.txcount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":488,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#daydata_filter.__type-6.txcount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":489,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#daydata_filter.__type-6.txcount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":490,"kind":32,"name":"txCount_in","url":"modules/_types_.html#daydata_filter.__type-6.txcount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":491,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#daydata_filter.__type-6.txcount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".DayData_Filter.__type"},{"id":492,"kind":4194304,"name":"Factory","url":"modules/_types_.html#factory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":493,"kind":65536,"name":"__type","url":"modules/_types_.html#factory-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Factory"},{"id":494,"kind":32,"name":"__typename","url":"modules/_types_.html#factory-2.__type-8.__typename-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":495,"kind":32,"name":"id","url":"modules/_types_.html#factory-2.__type-8.id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":496,"kind":32,"name":"pairCount","url":"modules/_types_.html#factory-2.__type-8.paircount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":497,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#factory-2.__type-8.volumeusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":498,"kind":32,"name":"volumeETH","url":"modules/_types_.html#factory-2.__type-8.volumeeth-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":499,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#factory-2.__type-8.untrackedvolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":500,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#factory-2.__type-8.liquidityusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":501,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#factory-2.__type-8.liquidityeth-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":502,"kind":32,"name":"txCount","url":"modules/_types_.html#factory-2.__type-8.txcount-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":503,"kind":32,"name":"tokenCount","url":"modules/_types_.html#factory-2.__type-8.tokencount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":504,"kind":32,"name":"userCount","url":"modules/_types_.html#factory-2.__type-8.usercount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":505,"kind":32,"name":"pairs","url":"modules/_types_.html#factory-2.__type-8.pairs","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":506,"kind":32,"name":"tokens","url":"modules/_types_.html#factory-2.__type-8.tokens","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":507,"kind":32,"name":"hourData","url":"modules/_types_.html#factory-2.__type-8.hourdata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":508,"kind":32,"name":"dayData","url":"modules/_types_.html#factory-2.__type-8.daydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory.__type"},{"id":509,"kind":4194304,"name":"FactoryPairsArgs","url":"modules/_types_.html#factorypairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":510,"kind":65536,"name":"__type","url":"modules/_types_.html#factorypairsargs.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".FactoryPairsArgs"},{"id":511,"kind":32,"name":"skip","url":"modules/_types_.html#factorypairsargs.__type-11.skip-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryPairsArgs.__type"},{"id":512,"kind":32,"name":"first","url":"modules/_types_.html#factorypairsargs.__type-11.first-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryPairsArgs.__type"},{"id":513,"kind":32,"name":"orderBy","url":"modules/_types_.html#factorypairsargs.__type-11.orderby-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryPairsArgs.__type"},{"id":514,"kind":32,"name":"orderDirection","url":"modules/_types_.html#factorypairsargs.__type-11.orderdirection-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryPairsArgs.__type"},{"id":515,"kind":32,"name":"where","url":"modules/_types_.html#factorypairsargs.__type-11.where-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryPairsArgs.__type"},{"id":516,"kind":4194304,"name":"FactoryTokensArgs","url":"modules/_types_.html#factorytokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":517,"kind":65536,"name":"__type","url":"modules/_types_.html#factorytokensargs.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".FactoryTokensArgs"},{"id":518,"kind":32,"name":"skip","url":"modules/_types_.html#factorytokensargs.__type-12.skip-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryTokensArgs.__type"},{"id":519,"kind":32,"name":"first","url":"modules/_types_.html#factorytokensargs.__type-12.first-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryTokensArgs.__type"},{"id":520,"kind":32,"name":"orderBy","url":"modules/_types_.html#factorytokensargs.__type-12.orderby-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryTokensArgs.__type"},{"id":521,"kind":32,"name":"orderDirection","url":"modules/_types_.html#factorytokensargs.__type-12.orderdirection-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryTokensArgs.__type"},{"id":522,"kind":32,"name":"where","url":"modules/_types_.html#factorytokensargs.__type-12.where-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryTokensArgs.__type"},{"id":523,"kind":4194304,"name":"FactoryHourDataArgs","url":"modules/_types_.html#factoryhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":524,"kind":65536,"name":"__type","url":"modules/_types_.html#factoryhourdataargs.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".FactoryHourDataArgs"},{"id":525,"kind":32,"name":"skip","url":"modules/_types_.html#factoryhourdataargs.__type-10.skip-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryHourDataArgs.__type"},{"id":526,"kind":32,"name":"first","url":"modules/_types_.html#factoryhourdataargs.__type-10.first-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryHourDataArgs.__type"},{"id":527,"kind":32,"name":"orderBy","url":"modules/_types_.html#factoryhourdataargs.__type-10.orderby-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryHourDataArgs.__type"},{"id":528,"kind":32,"name":"orderDirection","url":"modules/_types_.html#factoryhourdataargs.__type-10.orderdirection-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryHourDataArgs.__type"},{"id":529,"kind":32,"name":"where","url":"modules/_types_.html#factoryhourdataargs.__type-10.where-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryHourDataArgs.__type"},{"id":530,"kind":4194304,"name":"FactoryDayDataArgs","url":"modules/_types_.html#factorydaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":531,"kind":65536,"name":"__type","url":"modules/_types_.html#factorydaydataargs.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".FactoryDayDataArgs"},{"id":532,"kind":32,"name":"skip","url":"modules/_types_.html#factorydaydataargs.__type-9.skip","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryDayDataArgs.__type"},{"id":533,"kind":32,"name":"first","url":"modules/_types_.html#factorydaydataargs.__type-9.first","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryDayDataArgs.__type"},{"id":534,"kind":32,"name":"orderBy","url":"modules/_types_.html#factorydaydataargs.__type-9.orderby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryDayDataArgs.__type"},{"id":535,"kind":32,"name":"orderDirection","url":"modules/_types_.html#factorydaydataargs.__type-9.orderdirection-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryDayDataArgs.__type"},{"id":536,"kind":32,"name":"where","url":"modules/_types_.html#factorydaydataargs.__type-9.where","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".FactoryDayDataArgs.__type"},{"id":537,"kind":4194304,"name":"Factory_Filter","url":"modules/_types_.html#factory_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":538,"kind":65536,"name":"__type","url":"modules/_types_.html#factory_filter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Factory_Filter"},{"id":539,"kind":32,"name":"id","url":"modules/_types_.html#factory_filter.__type-13.id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":540,"kind":32,"name":"id_not","url":"modules/_types_.html#factory_filter.__type-13.id_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":541,"kind":32,"name":"id_gt","url":"modules/_types_.html#factory_filter.__type-13.id_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":542,"kind":32,"name":"id_lt","url":"modules/_types_.html#factory_filter.__type-13.id_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":543,"kind":32,"name":"id_gte","url":"modules/_types_.html#factory_filter.__type-13.id_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":544,"kind":32,"name":"id_lte","url":"modules/_types_.html#factory_filter.__type-13.id_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":545,"kind":32,"name":"id_in","url":"modules/_types_.html#factory_filter.__type-13.id_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":546,"kind":32,"name":"id_not_in","url":"modules/_types_.html#factory_filter.__type-13.id_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":547,"kind":32,"name":"pairCount","url":"modules/_types_.html#factory_filter.__type-13.paircount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":548,"kind":32,"name":"pairCount_not","url":"modules/_types_.html#factory_filter.__type-13.paircount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":549,"kind":32,"name":"pairCount_gt","url":"modules/_types_.html#factory_filter.__type-13.paircount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":550,"kind":32,"name":"pairCount_lt","url":"modules/_types_.html#factory_filter.__type-13.paircount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":551,"kind":32,"name":"pairCount_gte","url":"modules/_types_.html#factory_filter.__type-13.paircount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":552,"kind":32,"name":"pairCount_lte","url":"modules/_types_.html#factory_filter.__type-13.paircount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":553,"kind":32,"name":"pairCount_in","url":"modules/_types_.html#factory_filter.__type-13.paircount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":554,"kind":32,"name":"pairCount_not_in","url":"modules/_types_.html#factory_filter.__type-13.paircount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":555,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#factory_filter.__type-13.volumeusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":556,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":557,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":558,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":559,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":560,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":561,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":562,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#factory_filter.__type-13.volumeusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":563,"kind":32,"name":"volumeETH","url":"modules/_types_.html#factory_filter.__type-13.volumeeth-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":564,"kind":32,"name":"volumeETH_not","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":565,"kind":32,"name":"volumeETH_gt","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":566,"kind":32,"name":"volumeETH_lt","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":567,"kind":32,"name":"volumeETH_gte","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":568,"kind":32,"name":"volumeETH_lte","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":569,"kind":32,"name":"volumeETH_in","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":570,"kind":32,"name":"volumeETH_not_in","url":"modules/_types_.html#factory_filter.__type-13.volumeeth_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":571,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":572,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":573,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":574,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":575,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":576,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":577,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":578,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_types_.html#factory_filter.__type-13.untrackedvolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":579,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":580,"kind":32,"name":"liquidityUSD_not","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":581,"kind":32,"name":"liquidityUSD_gt","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":582,"kind":32,"name":"liquidityUSD_lt","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":583,"kind":32,"name":"liquidityUSD_gte","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":584,"kind":32,"name":"liquidityUSD_lte","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":585,"kind":32,"name":"liquidityUSD_in","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":586,"kind":32,"name":"liquidityUSD_not_in","url":"modules/_types_.html#factory_filter.__type-13.liquidityusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":587,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":588,"kind":32,"name":"liquidityETH_not","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":589,"kind":32,"name":"liquidityETH_gt","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":590,"kind":32,"name":"liquidityETH_lt","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":591,"kind":32,"name":"liquidityETH_gte","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":592,"kind":32,"name":"liquidityETH_lte","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":593,"kind":32,"name":"liquidityETH_in","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":594,"kind":32,"name":"liquidityETH_not_in","url":"modules/_types_.html#factory_filter.__type-13.liquidityeth_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":595,"kind":32,"name":"txCount","url":"modules/_types_.html#factory_filter.__type-13.txcount-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":596,"kind":32,"name":"txCount_not","url":"modules/_types_.html#factory_filter.__type-13.txcount_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":597,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#factory_filter.__type-13.txcount_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":598,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#factory_filter.__type-13.txcount_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":599,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#factory_filter.__type-13.txcount_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":600,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#factory_filter.__type-13.txcount_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":601,"kind":32,"name":"txCount_in","url":"modules/_types_.html#factory_filter.__type-13.txcount_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":602,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#factory_filter.__type-13.txcount_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":603,"kind":32,"name":"tokenCount","url":"modules/_types_.html#factory_filter.__type-13.tokencount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":604,"kind":32,"name":"tokenCount_not","url":"modules/_types_.html#factory_filter.__type-13.tokencount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":605,"kind":32,"name":"tokenCount_gt","url":"modules/_types_.html#factory_filter.__type-13.tokencount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":606,"kind":32,"name":"tokenCount_lt","url":"modules/_types_.html#factory_filter.__type-13.tokencount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":607,"kind":32,"name":"tokenCount_gte","url":"modules/_types_.html#factory_filter.__type-13.tokencount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":608,"kind":32,"name":"tokenCount_lte","url":"modules/_types_.html#factory_filter.__type-13.tokencount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":609,"kind":32,"name":"tokenCount_in","url":"modules/_types_.html#factory_filter.__type-13.tokencount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":610,"kind":32,"name":"tokenCount_not_in","url":"modules/_types_.html#factory_filter.__type-13.tokencount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":611,"kind":32,"name":"userCount","url":"modules/_types_.html#factory_filter.__type-13.usercount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":612,"kind":32,"name":"userCount_not","url":"modules/_types_.html#factory_filter.__type-13.usercount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":613,"kind":32,"name":"userCount_gt","url":"modules/_types_.html#factory_filter.__type-13.usercount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":614,"kind":32,"name":"userCount_lt","url":"modules/_types_.html#factory_filter.__type-13.usercount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":615,"kind":32,"name":"userCount_gte","url":"modules/_types_.html#factory_filter.__type-13.usercount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":616,"kind":32,"name":"userCount_lte","url":"modules/_types_.html#factory_filter.__type-13.usercount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":617,"kind":32,"name":"userCount_in","url":"modules/_types_.html#factory_filter.__type-13.usercount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":618,"kind":32,"name":"userCount_not_in","url":"modules/_types_.html#factory_filter.__type-13.usercount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Factory_Filter.__type"},{"id":619,"kind":4194304,"name":"HourData","url":"modules/_types_.html#hourdata-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":620,"kind":65536,"name":"__type","url":"modules/_types_.html#hourdata-1.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".HourData"},{"id":621,"kind":32,"name":"__typename","url":"modules/_types_.html#hourdata-1.__type-14.__typename-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":622,"kind":32,"name":"id","url":"modules/_types_.html#hourdata-1.__type-14.id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":623,"kind":32,"name":"date","url":"modules/_types_.html#hourdata-1.__type-14.date-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":624,"kind":32,"name":"factory","url":"modules/_types_.html#hourdata-1.__type-14.factory-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":625,"kind":32,"name":"volumeETH","url":"modules/_types_.html#hourdata-1.__type-14.volumeeth-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":626,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#hourdata-1.__type-14.volumeusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":627,"kind":32,"name":"untrackedVolume","url":"modules/_types_.html#hourdata-1.__type-14.untrackedvolume-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":628,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#hourdata-1.__type-14.liquidityeth-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":629,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#hourdata-1.__type-14.liquidityusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":630,"kind":32,"name":"txCount","url":"modules/_types_.html#hourdata-1.__type-14.txcount-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData.__type"},{"id":631,"kind":4194304,"name":"HourData_Filter","url":"modules/_types_.html#hourdata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":632,"kind":65536,"name":"__type","url":"modules/_types_.html#hourdata_filter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".HourData_Filter"},{"id":633,"kind":32,"name":"id","url":"modules/_types_.html#hourdata_filter.__type-15.id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":634,"kind":32,"name":"id_not","url":"modules/_types_.html#hourdata_filter.__type-15.id_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":635,"kind":32,"name":"id_gt","url":"modules/_types_.html#hourdata_filter.__type-15.id_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":636,"kind":32,"name":"id_lt","url":"modules/_types_.html#hourdata_filter.__type-15.id_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":637,"kind":32,"name":"id_gte","url":"modules/_types_.html#hourdata_filter.__type-15.id_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":638,"kind":32,"name":"id_lte","url":"modules/_types_.html#hourdata_filter.__type-15.id_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":639,"kind":32,"name":"id_in","url":"modules/_types_.html#hourdata_filter.__type-15.id_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":640,"kind":32,"name":"id_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.id_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":641,"kind":32,"name":"date","url":"modules/_types_.html#hourdata_filter.__type-15.date-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":642,"kind":32,"name":"date_not","url":"modules/_types_.html#hourdata_filter.__type-15.date_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":643,"kind":32,"name":"date_gt","url":"modules/_types_.html#hourdata_filter.__type-15.date_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":644,"kind":32,"name":"date_lt","url":"modules/_types_.html#hourdata_filter.__type-15.date_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":645,"kind":32,"name":"date_gte","url":"modules/_types_.html#hourdata_filter.__type-15.date_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":646,"kind":32,"name":"date_lte","url":"modules/_types_.html#hourdata_filter.__type-15.date_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":647,"kind":32,"name":"date_in","url":"modules/_types_.html#hourdata_filter.__type-15.date_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":648,"kind":32,"name":"date_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.date_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":649,"kind":32,"name":"factory","url":"modules/_types_.html#hourdata_filter.__type-15.factory-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":650,"kind":32,"name":"factory_not","url":"modules/_types_.html#hourdata_filter.__type-15.factory_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":651,"kind":32,"name":"factory_gt","url":"modules/_types_.html#hourdata_filter.__type-15.factory_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":652,"kind":32,"name":"factory_lt","url":"modules/_types_.html#hourdata_filter.__type-15.factory_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":653,"kind":32,"name":"factory_gte","url":"modules/_types_.html#hourdata_filter.__type-15.factory_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":654,"kind":32,"name":"factory_lte","url":"modules/_types_.html#hourdata_filter.__type-15.factory_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":655,"kind":32,"name":"factory_in","url":"modules/_types_.html#hourdata_filter.__type-15.factory_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":656,"kind":32,"name":"factory_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.factory_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":657,"kind":32,"name":"factory_contains","url":"modules/_types_.html#hourdata_filter.__type-15.factory_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":658,"kind":32,"name":"factory_not_contains","url":"modules/_types_.html#hourdata_filter.__type-15.factory_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":659,"kind":32,"name":"factory_starts_with","url":"modules/_types_.html#hourdata_filter.__type-15.factory_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":660,"kind":32,"name":"factory_not_starts_with","url":"modules/_types_.html#hourdata_filter.__type-15.factory_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":661,"kind":32,"name":"factory_ends_with","url":"modules/_types_.html#hourdata_filter.__type-15.factory_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":662,"kind":32,"name":"factory_not_ends_with","url":"modules/_types_.html#hourdata_filter.__type-15.factory_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":663,"kind":32,"name":"volumeETH","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":664,"kind":32,"name":"volumeETH_not","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":665,"kind":32,"name":"volumeETH_gt","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":666,"kind":32,"name":"volumeETH_lt","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":667,"kind":32,"name":"volumeETH_gte","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":668,"kind":32,"name":"volumeETH_lte","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":669,"kind":32,"name":"volumeETH_in","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":670,"kind":32,"name":"volumeETH_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.volumeeth_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":671,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":672,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":673,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":674,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":675,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":676,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":677,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":678,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.volumeusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":679,"kind":32,"name":"untrackedVolume","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":680,"kind":32,"name":"untrackedVolume_not","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":681,"kind":32,"name":"untrackedVolume_gt","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":682,"kind":32,"name":"untrackedVolume_lt","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":683,"kind":32,"name":"untrackedVolume_gte","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":684,"kind":32,"name":"untrackedVolume_lte","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":685,"kind":32,"name":"untrackedVolume_in","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":686,"kind":32,"name":"untrackedVolume_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.untrackedvolume_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":687,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":688,"kind":32,"name":"liquidityETH_not","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":689,"kind":32,"name":"liquidityETH_gt","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":690,"kind":32,"name":"liquidityETH_lt","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":691,"kind":32,"name":"liquidityETH_gte","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":692,"kind":32,"name":"liquidityETH_lte","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":693,"kind":32,"name":"liquidityETH_in","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":694,"kind":32,"name":"liquidityETH_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityeth_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":695,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":696,"kind":32,"name":"liquidityUSD_not","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":697,"kind":32,"name":"liquidityUSD_gt","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":698,"kind":32,"name":"liquidityUSD_lt","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":699,"kind":32,"name":"liquidityUSD_gte","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":700,"kind":32,"name":"liquidityUSD_lte","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":701,"kind":32,"name":"liquidityUSD_in","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":702,"kind":32,"name":"liquidityUSD_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.liquidityusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":703,"kind":32,"name":"txCount","url":"modules/_types_.html#hourdata_filter.__type-15.txcount-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":704,"kind":32,"name":"txCount_not","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":705,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":706,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":707,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":708,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":709,"kind":32,"name":"txCount_in","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":710,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#hourdata_filter.__type-15.txcount_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".HourData_Filter.__type"},{"id":711,"kind":4194304,"name":"LiquidityPosition","url":"modules/_types_.html#liquidityposition","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":712,"kind":65536,"name":"__type","url":"modules/_types_.html#liquidityposition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".LiquidityPosition"},{"id":713,"kind":32,"name":"__typename","url":"modules/_types_.html#liquidityposition.__type-16.__typename-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":714,"kind":32,"name":"id","url":"modules/_types_.html#liquidityposition.__type-16.id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":715,"kind":32,"name":"user","url":"modules/_types_.html#liquidityposition.__type-16.user","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":716,"kind":32,"name":"pair","url":"modules/_types_.html#liquidityposition.__type-16.pair-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":717,"kind":32,"name":"liquidityTokenBalance","url":"modules/_types_.html#liquidityposition.__type-16.liquiditytokenbalance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":718,"kind":32,"name":"snapshots","url":"modules/_types_.html#liquidityposition.__type-16.snapshots","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":719,"kind":32,"name":"block","url":"modules/_types_.html#liquidityposition.__type-16.block","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":720,"kind":32,"name":"timestamp","url":"modules/_types_.html#liquidityposition.__type-16.timestamp-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition.__type"},{"id":721,"kind":4194304,"name":"LiquidityPositionSnapshotsArgs","url":"modules/_types_.html#liquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":722,"kind":65536,"name":"__type","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".LiquidityPositionSnapshotsArgs"},{"id":723,"kind":32,"name":"skip","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19.skip-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshotsArgs.__type"},{"id":724,"kind":32,"name":"first","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19.first-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshotsArgs.__type"},{"id":725,"kind":32,"name":"orderBy","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19.orderby-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshotsArgs.__type"},{"id":726,"kind":32,"name":"orderDirection","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19.orderdirection-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshotsArgs.__type"},{"id":727,"kind":32,"name":"where","url":"modules/_types_.html#liquiditypositionsnapshotsargs.__type-19.where-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshotsArgs.__type"},{"id":728,"kind":4194304,"name":"LiquidityPositionSnapshot","url":"modules/_types_.html#liquiditypositionsnapshot","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":729,"kind":65536,"name":"__type","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".LiquidityPositionSnapshot"},{"id":730,"kind":32,"name":"__typename","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.__typename-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":731,"kind":32,"name":"id","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.id-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":732,"kind":32,"name":"liquidityPosition","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.liquidityposition-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":733,"kind":32,"name":"timestamp","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.timestamp-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":734,"kind":32,"name":"block","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.block-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":735,"kind":32,"name":"user","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.user-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":736,"kind":32,"name":"pair","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.pair-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":737,"kind":32,"name":"token0PriceUSD","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.token0priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":738,"kind":32,"name":"token1PriceUSD","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.token1priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":739,"kind":32,"name":"reserve0","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.reserve0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":740,"kind":32,"name":"reserve1","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.reserve1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":741,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.reserveusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":742,"kind":32,"name":"liquidityTokenTotalSupply","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.liquiditytokentotalsupply","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":743,"kind":32,"name":"liquidityTokenBalance","url":"modules/_types_.html#liquiditypositionsnapshot.__type-17.liquiditytokenbalance-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot.__type"},{"id":744,"kind":4194304,"name":"LiquidityPositionSnapshot_Filter","url":"modules/_types_.html#liquiditypositionsnapshot_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":745,"kind":65536,"name":"__type","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".LiquidityPositionSnapshot_Filter"},{"id":746,"kind":32,"name":"id","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":747,"kind":32,"name":"id_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":748,"kind":32,"name":"id_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":749,"kind":32,"name":"id_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":750,"kind":32,"name":"id_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":751,"kind":32,"name":"id_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":752,"kind":32,"name":"id_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":753,"kind":32,"name":"id_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.id_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":754,"kind":32,"name":"liquidityPosition","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":755,"kind":32,"name":"liquidityPosition_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":756,"kind":32,"name":"liquidityPosition_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":757,"kind":32,"name":"liquidityPosition_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":758,"kind":32,"name":"liquidityPosition_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":759,"kind":32,"name":"liquidityPosition_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":760,"kind":32,"name":"liquidityPosition_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":761,"kind":32,"name":"liquidityPosition_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":762,"kind":32,"name":"liquidityPosition_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":763,"kind":32,"name":"liquidityPosition_not_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":764,"kind":32,"name":"liquidityPosition_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":765,"kind":32,"name":"liquidityPosition_not_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":766,"kind":32,"name":"liquidityPosition_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":767,"kind":32,"name":"liquidityPosition_not_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquidityposition_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":768,"kind":32,"name":"timestamp","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":769,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":770,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":771,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":772,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":773,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":774,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":775,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.timestamp_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":776,"kind":32,"name":"block","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":777,"kind":32,"name":"block_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":778,"kind":32,"name":"block_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":779,"kind":32,"name":"block_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":780,"kind":32,"name":"block_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":781,"kind":32,"name":"block_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":782,"kind":32,"name":"block_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":783,"kind":32,"name":"block_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.block_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":784,"kind":32,"name":"user","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":785,"kind":32,"name":"user_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":786,"kind":32,"name":"user_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":787,"kind":32,"name":"user_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":788,"kind":32,"name":"user_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":789,"kind":32,"name":"user_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":790,"kind":32,"name":"user_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":791,"kind":32,"name":"user_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":792,"kind":32,"name":"user_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":793,"kind":32,"name":"user_not_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":794,"kind":32,"name":"user_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":795,"kind":32,"name":"user_not_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":796,"kind":32,"name":"user_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":797,"kind":32,"name":"user_not_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.user_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":798,"kind":32,"name":"pair","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":799,"kind":32,"name":"pair_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":800,"kind":32,"name":"pair_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":801,"kind":32,"name":"pair_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":802,"kind":32,"name":"pair_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":803,"kind":32,"name":"pair_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":804,"kind":32,"name":"pair_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":805,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":806,"kind":32,"name":"pair_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":807,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":808,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":809,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":810,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":811,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.pair_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":812,"kind":32,"name":"token0PriceUSD","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":813,"kind":32,"name":"token0PriceUSD_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":814,"kind":32,"name":"token0PriceUSD_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":815,"kind":32,"name":"token0PriceUSD_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":816,"kind":32,"name":"token0PriceUSD_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":817,"kind":32,"name":"token0PriceUSD_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":818,"kind":32,"name":"token0PriceUSD_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":819,"kind":32,"name":"token0PriceUSD_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token0priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":820,"kind":32,"name":"token1PriceUSD","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":821,"kind":32,"name":"token1PriceUSD_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":822,"kind":32,"name":"token1PriceUSD_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":823,"kind":32,"name":"token1PriceUSD_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":824,"kind":32,"name":"token1PriceUSD_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":825,"kind":32,"name":"token1PriceUSD_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":826,"kind":32,"name":"token1PriceUSD_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":827,"kind":32,"name":"token1PriceUSD_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.token1priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":828,"kind":32,"name":"reserve0","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":829,"kind":32,"name":"reserve0_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":830,"kind":32,"name":"reserve0_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":831,"kind":32,"name":"reserve0_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":832,"kind":32,"name":"reserve0_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":833,"kind":32,"name":"reserve0_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":834,"kind":32,"name":"reserve0_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":835,"kind":32,"name":"reserve0_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":836,"kind":32,"name":"reserve1","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":837,"kind":32,"name":"reserve1_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":838,"kind":32,"name":"reserve1_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":839,"kind":32,"name":"reserve1_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":840,"kind":32,"name":"reserve1_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":841,"kind":32,"name":"reserve1_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":842,"kind":32,"name":"reserve1_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":843,"kind":32,"name":"reserve1_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserve1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":844,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":845,"kind":32,"name":"reserveUSD_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":846,"kind":32,"name":"reserveUSD_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":847,"kind":32,"name":"reserveUSD_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":848,"kind":32,"name":"reserveUSD_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":849,"kind":32,"name":"reserveUSD_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":850,"kind":32,"name":"reserveUSD_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":851,"kind":32,"name":"reserveUSD_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.reserveusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":852,"kind":32,"name":"liquidityTokenTotalSupply","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":853,"kind":32,"name":"liquidityTokenTotalSupply_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":854,"kind":32,"name":"liquidityTokenTotalSupply_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":855,"kind":32,"name":"liquidityTokenTotalSupply_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":856,"kind":32,"name":"liquidityTokenTotalSupply_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":857,"kind":32,"name":"liquidityTokenTotalSupply_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":858,"kind":32,"name":"liquidityTokenTotalSupply_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":859,"kind":32,"name":"liquidityTokenTotalSupply_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokentotalsupply_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":860,"kind":32,"name":"liquidityTokenBalance","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":861,"kind":32,"name":"liquidityTokenBalance_not","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":862,"kind":32,"name":"liquidityTokenBalance_gt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":863,"kind":32,"name":"liquidityTokenBalance_lt","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":864,"kind":32,"name":"liquidityTokenBalance_gte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":865,"kind":32,"name":"liquidityTokenBalance_lte","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":866,"kind":32,"name":"liquidityTokenBalance_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":867,"kind":32,"name":"liquidityTokenBalance_not_in","url":"modules/_types_.html#liquiditypositionsnapshot_filter.__type-18.liquiditytokenbalance_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPositionSnapshot_Filter.__type"},{"id":868,"kind":4194304,"name":"LiquidityPosition_Filter","url":"modules/_types_.html#liquidityposition_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":869,"kind":65536,"name":"__type","url":"modules/_types_.html#liquidityposition_filter.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".LiquidityPosition_Filter"},{"id":870,"kind":32,"name":"id","url":"modules/_types_.html#liquidityposition_filter.__type-20.id-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":871,"kind":32,"name":"id_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":872,"kind":32,"name":"id_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":873,"kind":32,"name":"id_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":874,"kind":32,"name":"id_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":875,"kind":32,"name":"id_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":876,"kind":32,"name":"id_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":877,"kind":32,"name":"id_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.id_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":878,"kind":32,"name":"user","url":"modules/_types_.html#liquidityposition_filter.__type-20.user-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":879,"kind":32,"name":"user_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":880,"kind":32,"name":"user_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":881,"kind":32,"name":"user_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":882,"kind":32,"name":"user_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":883,"kind":32,"name":"user_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":884,"kind":32,"name":"user_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":885,"kind":32,"name":"user_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":886,"kind":32,"name":"user_contains","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":887,"kind":32,"name":"user_not_contains","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":888,"kind":32,"name":"user_starts_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":889,"kind":32,"name":"user_not_starts_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":890,"kind":32,"name":"user_ends_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":891,"kind":32,"name":"user_not_ends_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.user_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":892,"kind":32,"name":"pair","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":893,"kind":32,"name":"pair_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":894,"kind":32,"name":"pair_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":895,"kind":32,"name":"pair_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":896,"kind":32,"name":"pair_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":897,"kind":32,"name":"pair_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":898,"kind":32,"name":"pair_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":899,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":900,"kind":32,"name":"pair_contains","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":901,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":902,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":903,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_not_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":904,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":905,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#liquidityposition_filter.__type-20.pair_not_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":906,"kind":32,"name":"liquidityTokenBalance","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":907,"kind":32,"name":"liquidityTokenBalance_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":908,"kind":32,"name":"liquidityTokenBalance_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":909,"kind":32,"name":"liquidityTokenBalance_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":910,"kind":32,"name":"liquidityTokenBalance_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":911,"kind":32,"name":"liquidityTokenBalance_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":912,"kind":32,"name":"liquidityTokenBalance_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":913,"kind":32,"name":"liquidityTokenBalance_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.liquiditytokenbalance_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":914,"kind":32,"name":"block","url":"modules/_types_.html#liquidityposition_filter.__type-20.block-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":915,"kind":32,"name":"block_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":916,"kind":32,"name":"block_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":917,"kind":32,"name":"block_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":918,"kind":32,"name":"block_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":919,"kind":32,"name":"block_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":920,"kind":32,"name":"block_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":921,"kind":32,"name":"block_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.block_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":922,"kind":32,"name":"timestamp","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":923,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":924,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":925,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":926,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":927,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":928,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":929,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#liquidityposition_filter.__type-20.timestamp_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".LiquidityPosition_Filter.__type"},{"id":930,"kind":4194304,"name":"Mint","url":"modules/_types_.html#mint","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":931,"kind":65536,"name":"__type","url":"modules/_types_.html#mint.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Mint"},{"id":932,"kind":32,"name":"__typename","url":"modules/_types_.html#mint.__type-21.__typename-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":933,"kind":32,"name":"id","url":"modules/_types_.html#mint.__type-21.id-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":934,"kind":32,"name":"transaction","url":"modules/_types_.html#mint.__type-21.transaction-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":935,"kind":32,"name":"timestamp","url":"modules/_types_.html#mint.__type-21.timestamp-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":936,"kind":32,"name":"pair","url":"modules/_types_.html#mint.__type-21.pair-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":937,"kind":32,"name":"to","url":"modules/_types_.html#mint.__type-21.to-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":938,"kind":32,"name":"liquidity","url":"modules/_types_.html#mint.__type-21.liquidity-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":939,"kind":32,"name":"sender","url":"modules/_types_.html#mint.__type-21.sender-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":940,"kind":32,"name":"amount0","url":"modules/_types_.html#mint.__type-21.amount0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":941,"kind":32,"name":"amount1","url":"modules/_types_.html#mint.__type-21.amount1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":942,"kind":32,"name":"logIndex","url":"modules/_types_.html#mint.__type-21.logindex-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":943,"kind":32,"name":"amountUSD","url":"modules/_types_.html#mint.__type-21.amountusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":944,"kind":32,"name":"feeTo","url":"modules/_types_.html#mint.__type-21.feeto-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":945,"kind":32,"name":"feeLiquidity","url":"modules/_types_.html#mint.__type-21.feeliquidity-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint.__type"},{"id":946,"kind":4194304,"name":"Mint_Filter","url":"modules/_types_.html#mint_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":947,"kind":65536,"name":"__type","url":"modules/_types_.html#mint_filter.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Mint_Filter"},{"id":948,"kind":32,"name":"id","url":"modules/_types_.html#mint_filter.__type-22.id-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":949,"kind":32,"name":"id_not","url":"modules/_types_.html#mint_filter.__type-22.id_not-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":950,"kind":32,"name":"id_gt","url":"modules/_types_.html#mint_filter.__type-22.id_gt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":951,"kind":32,"name":"id_lt","url":"modules/_types_.html#mint_filter.__type-22.id_lt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":952,"kind":32,"name":"id_gte","url":"modules/_types_.html#mint_filter.__type-22.id_gte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":953,"kind":32,"name":"id_lte","url":"modules/_types_.html#mint_filter.__type-22.id_lte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":954,"kind":32,"name":"id_in","url":"modules/_types_.html#mint_filter.__type-22.id_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":955,"kind":32,"name":"id_not_in","url":"modules/_types_.html#mint_filter.__type-22.id_not_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":956,"kind":32,"name":"transaction","url":"modules/_types_.html#mint_filter.__type-22.transaction-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":957,"kind":32,"name":"transaction_not","url":"modules/_types_.html#mint_filter.__type-22.transaction_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":958,"kind":32,"name":"transaction_gt","url":"modules/_types_.html#mint_filter.__type-22.transaction_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":959,"kind":32,"name":"transaction_lt","url":"modules/_types_.html#mint_filter.__type-22.transaction_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":960,"kind":32,"name":"transaction_gte","url":"modules/_types_.html#mint_filter.__type-22.transaction_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":961,"kind":32,"name":"transaction_lte","url":"modules/_types_.html#mint_filter.__type-22.transaction_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":962,"kind":32,"name":"transaction_in","url":"modules/_types_.html#mint_filter.__type-22.transaction_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":963,"kind":32,"name":"transaction_not_in","url":"modules/_types_.html#mint_filter.__type-22.transaction_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":964,"kind":32,"name":"transaction_contains","url":"modules/_types_.html#mint_filter.__type-22.transaction_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":965,"kind":32,"name":"transaction_not_contains","url":"modules/_types_.html#mint_filter.__type-22.transaction_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":966,"kind":32,"name":"transaction_starts_with","url":"modules/_types_.html#mint_filter.__type-22.transaction_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":967,"kind":32,"name":"transaction_not_starts_with","url":"modules/_types_.html#mint_filter.__type-22.transaction_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":968,"kind":32,"name":"transaction_ends_with","url":"modules/_types_.html#mint_filter.__type-22.transaction_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":969,"kind":32,"name":"transaction_not_ends_with","url":"modules/_types_.html#mint_filter.__type-22.transaction_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":970,"kind":32,"name":"timestamp","url":"modules/_types_.html#mint_filter.__type-22.timestamp-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":971,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#mint_filter.__type-22.timestamp_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":972,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#mint_filter.__type-22.timestamp_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":973,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#mint_filter.__type-22.timestamp_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":974,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#mint_filter.__type-22.timestamp_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":975,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#mint_filter.__type-22.timestamp_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":976,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#mint_filter.__type-22.timestamp_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":977,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#mint_filter.__type-22.timestamp_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":978,"kind":32,"name":"pair","url":"modules/_types_.html#mint_filter.__type-22.pair-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":979,"kind":32,"name":"pair_not","url":"modules/_types_.html#mint_filter.__type-22.pair_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":980,"kind":32,"name":"pair_gt","url":"modules/_types_.html#mint_filter.__type-22.pair_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":981,"kind":32,"name":"pair_lt","url":"modules/_types_.html#mint_filter.__type-22.pair_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":982,"kind":32,"name":"pair_gte","url":"modules/_types_.html#mint_filter.__type-22.pair_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":983,"kind":32,"name":"pair_lte","url":"modules/_types_.html#mint_filter.__type-22.pair_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":984,"kind":32,"name":"pair_in","url":"modules/_types_.html#mint_filter.__type-22.pair_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":985,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#mint_filter.__type-22.pair_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":986,"kind":32,"name":"pair_contains","url":"modules/_types_.html#mint_filter.__type-22.pair_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":987,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#mint_filter.__type-22.pair_not_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":988,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#mint_filter.__type-22.pair_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":989,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#mint_filter.__type-22.pair_not_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":990,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#mint_filter.__type-22.pair_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":991,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#mint_filter.__type-22.pair_not_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":992,"kind":32,"name":"to","url":"modules/_types_.html#mint_filter.__type-22.to-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":993,"kind":32,"name":"to_not","url":"modules/_types_.html#mint_filter.__type-22.to_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":994,"kind":32,"name":"to_in","url":"modules/_types_.html#mint_filter.__type-22.to_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":995,"kind":32,"name":"to_not_in","url":"modules/_types_.html#mint_filter.__type-22.to_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":996,"kind":32,"name":"to_contains","url":"modules/_types_.html#mint_filter.__type-22.to_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":997,"kind":32,"name":"to_not_contains","url":"modules/_types_.html#mint_filter.__type-22.to_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":998,"kind":32,"name":"liquidity","url":"modules/_types_.html#mint_filter.__type-22.liquidity-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":999,"kind":32,"name":"liquidity_not","url":"modules/_types_.html#mint_filter.__type-22.liquidity_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1000,"kind":32,"name":"liquidity_gt","url":"modules/_types_.html#mint_filter.__type-22.liquidity_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1001,"kind":32,"name":"liquidity_lt","url":"modules/_types_.html#mint_filter.__type-22.liquidity_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1002,"kind":32,"name":"liquidity_gte","url":"modules/_types_.html#mint_filter.__type-22.liquidity_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1003,"kind":32,"name":"liquidity_lte","url":"modules/_types_.html#mint_filter.__type-22.liquidity_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1004,"kind":32,"name":"liquidity_in","url":"modules/_types_.html#mint_filter.__type-22.liquidity_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1005,"kind":32,"name":"liquidity_not_in","url":"modules/_types_.html#mint_filter.__type-22.liquidity_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1006,"kind":32,"name":"sender","url":"modules/_types_.html#mint_filter.__type-22.sender-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1007,"kind":32,"name":"sender_not","url":"modules/_types_.html#mint_filter.__type-22.sender_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1008,"kind":32,"name":"sender_in","url":"modules/_types_.html#mint_filter.__type-22.sender_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1009,"kind":32,"name":"sender_not_in","url":"modules/_types_.html#mint_filter.__type-22.sender_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1010,"kind":32,"name":"sender_contains","url":"modules/_types_.html#mint_filter.__type-22.sender_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1011,"kind":32,"name":"sender_not_contains","url":"modules/_types_.html#mint_filter.__type-22.sender_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1012,"kind":32,"name":"amount0","url":"modules/_types_.html#mint_filter.__type-22.amount0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1013,"kind":32,"name":"amount0_not","url":"modules/_types_.html#mint_filter.__type-22.amount0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1014,"kind":32,"name":"amount0_gt","url":"modules/_types_.html#mint_filter.__type-22.amount0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1015,"kind":32,"name":"amount0_lt","url":"modules/_types_.html#mint_filter.__type-22.amount0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1016,"kind":32,"name":"amount0_gte","url":"modules/_types_.html#mint_filter.__type-22.amount0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1017,"kind":32,"name":"amount0_lte","url":"modules/_types_.html#mint_filter.__type-22.amount0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1018,"kind":32,"name":"amount0_in","url":"modules/_types_.html#mint_filter.__type-22.amount0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1019,"kind":32,"name":"amount0_not_in","url":"modules/_types_.html#mint_filter.__type-22.amount0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1020,"kind":32,"name":"amount1","url":"modules/_types_.html#mint_filter.__type-22.amount1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1021,"kind":32,"name":"amount1_not","url":"modules/_types_.html#mint_filter.__type-22.amount1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1022,"kind":32,"name":"amount1_gt","url":"modules/_types_.html#mint_filter.__type-22.amount1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1023,"kind":32,"name":"amount1_lt","url":"modules/_types_.html#mint_filter.__type-22.amount1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1024,"kind":32,"name":"amount1_gte","url":"modules/_types_.html#mint_filter.__type-22.amount1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1025,"kind":32,"name":"amount1_lte","url":"modules/_types_.html#mint_filter.__type-22.amount1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1026,"kind":32,"name":"amount1_in","url":"modules/_types_.html#mint_filter.__type-22.amount1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1027,"kind":32,"name":"amount1_not_in","url":"modules/_types_.html#mint_filter.__type-22.amount1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1028,"kind":32,"name":"logIndex","url":"modules/_types_.html#mint_filter.__type-22.logindex-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1029,"kind":32,"name":"logIndex_not","url":"modules/_types_.html#mint_filter.__type-22.logindex_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1030,"kind":32,"name":"logIndex_gt","url":"modules/_types_.html#mint_filter.__type-22.logindex_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1031,"kind":32,"name":"logIndex_lt","url":"modules/_types_.html#mint_filter.__type-22.logindex_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1032,"kind":32,"name":"logIndex_gte","url":"modules/_types_.html#mint_filter.__type-22.logindex_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1033,"kind":32,"name":"logIndex_lte","url":"modules/_types_.html#mint_filter.__type-22.logindex_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1034,"kind":32,"name":"logIndex_in","url":"modules/_types_.html#mint_filter.__type-22.logindex_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1035,"kind":32,"name":"logIndex_not_in","url":"modules/_types_.html#mint_filter.__type-22.logindex_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1036,"kind":32,"name":"amountUSD","url":"modules/_types_.html#mint_filter.__type-22.amountusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1037,"kind":32,"name":"amountUSD_not","url":"modules/_types_.html#mint_filter.__type-22.amountusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1038,"kind":32,"name":"amountUSD_gt","url":"modules/_types_.html#mint_filter.__type-22.amountusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1039,"kind":32,"name":"amountUSD_lt","url":"modules/_types_.html#mint_filter.__type-22.amountusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1040,"kind":32,"name":"amountUSD_gte","url":"modules/_types_.html#mint_filter.__type-22.amountusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1041,"kind":32,"name":"amountUSD_lte","url":"modules/_types_.html#mint_filter.__type-22.amountusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1042,"kind":32,"name":"amountUSD_in","url":"modules/_types_.html#mint_filter.__type-22.amountusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1043,"kind":32,"name":"amountUSD_not_in","url":"modules/_types_.html#mint_filter.__type-22.amountusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1044,"kind":32,"name":"feeTo","url":"modules/_types_.html#mint_filter.__type-22.feeto-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1045,"kind":32,"name":"feeTo_not","url":"modules/_types_.html#mint_filter.__type-22.feeto_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1046,"kind":32,"name":"feeTo_in","url":"modules/_types_.html#mint_filter.__type-22.feeto_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1047,"kind":32,"name":"feeTo_not_in","url":"modules/_types_.html#mint_filter.__type-22.feeto_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1048,"kind":32,"name":"feeTo_contains","url":"modules/_types_.html#mint_filter.__type-22.feeto_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1049,"kind":32,"name":"feeTo_not_contains","url":"modules/_types_.html#mint_filter.__type-22.feeto_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1050,"kind":32,"name":"feeLiquidity","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1051,"kind":32,"name":"feeLiquidity_not","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1052,"kind":32,"name":"feeLiquidity_gt","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1053,"kind":32,"name":"feeLiquidity_lt","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1054,"kind":32,"name":"feeLiquidity_gte","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1055,"kind":32,"name":"feeLiquidity_lte","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1056,"kind":32,"name":"feeLiquidity_in","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1057,"kind":32,"name":"feeLiquidity_not_in","url":"modules/_types_.html#mint_filter.__type-22.feeliquidity_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Mint_Filter.__type"},{"id":1058,"kind":4194304,"name":"Pair","url":"modules/_types_.html#pair-8","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1059,"kind":65536,"name":"__type","url":"modules/_types_.html#pair-8.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Pair"},{"id":1060,"kind":32,"name":"__typename","url":"modules/_types_.html#pair-8.__type-23.__typename-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1061,"kind":32,"name":"id","url":"modules/_types_.html#pair-8.__type-23.id-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1062,"kind":32,"name":"factory","url":"modules/_types_.html#pair-8.__type-23.factory-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1063,"kind":32,"name":"name","url":"modules/_types_.html#pair-8.__type-23.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1064,"kind":32,"name":"token0","url":"modules/_types_.html#pair-8.__type-23.token0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1065,"kind":32,"name":"token1","url":"modules/_types_.html#pair-8.__type-23.token1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1066,"kind":32,"name":"reserve0","url":"modules/_types_.html#pair-8.__type-23.reserve0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1067,"kind":32,"name":"reserve1","url":"modules/_types_.html#pair-8.__type-23.reserve1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1068,"kind":32,"name":"totalSupply","url":"modules/_types_.html#pair-8.__type-23.totalsupply","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1069,"kind":32,"name":"reserveETH","url":"modules/_types_.html#pair-8.__type-23.reserveeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1070,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pair-8.__type-23.reserveusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1071,"kind":32,"name":"trackedReserveETH","url":"modules/_types_.html#pair-8.__type-23.trackedreserveeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1072,"kind":32,"name":"token0Price","url":"modules/_types_.html#pair-8.__type-23.token0price","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1073,"kind":32,"name":"token1Price","url":"modules/_types_.html#pair-8.__type-23.token1price","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1074,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pair-8.__type-23.volumetoken0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1075,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pair-8.__type-23.volumetoken1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1076,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pair-8.__type-23.volumeusd-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1077,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#pair-8.__type-23.untrackedvolumeusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1078,"kind":32,"name":"txCount","url":"modules/_types_.html#pair-8.__type-23.txcount-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1079,"kind":32,"name":"liquidityProviderCount","url":"modules/_types_.html#pair-8.__type-23.liquidityprovidercount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1080,"kind":32,"name":"liquidityPositions","url":"modules/_types_.html#pair-8.__type-23.liquiditypositions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1081,"kind":32,"name":"liquidityPositionSnapshots","url":"modules/_types_.html#pair-8.__type-23.liquiditypositionsnapshots","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1082,"kind":32,"name":"dayData","url":"modules/_types_.html#pair-8.__type-23.daydata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1083,"kind":32,"name":"hourData","url":"modules/_types_.html#pair-8.__type-23.hourdata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1084,"kind":32,"name":"mints","url":"modules/_types_.html#pair-8.__type-23.mints","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1085,"kind":32,"name":"burns","url":"modules/_types_.html#pair-8.__type-23.burns","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1086,"kind":32,"name":"swaps","url":"modules/_types_.html#pair-8.__type-23.swaps","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1087,"kind":32,"name":"timestamp","url":"modules/_types_.html#pair-8.__type-23.timestamp-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1088,"kind":32,"name":"block","url":"modules/_types_.html#pair-8.__type-23.block-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair.__type"},{"id":1089,"kind":4194304,"name":"PairLiquidityPositionsArgs","url":"modules/_types_.html#pairliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1090,"kind":65536,"name":"__type","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairLiquidityPositionsArgs"},{"id":1091,"kind":32,"name":"skip","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32.skip-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionsArgs.__type"},{"id":1092,"kind":32,"name":"first","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32.first-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionsArgs.__type"},{"id":1093,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32.orderby-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionsArgs.__type"},{"id":1094,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32.orderdirection-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionsArgs.__type"},{"id":1095,"kind":32,"name":"where","url":"modules/_types_.html#pairliquiditypositionsargs.__type-32.where-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionsArgs.__type"},{"id":1096,"kind":4194304,"name":"PairLiquidityPositionSnapshotsArgs","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1097,"kind":65536,"name":"__type","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairLiquidityPositionSnapshotsArgs"},{"id":1098,"kind":32,"name":"skip","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31.skip-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionSnapshotsArgs.__type"},{"id":1099,"kind":32,"name":"first","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31.first-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionSnapshotsArgs.__type"},{"id":1100,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31.orderby-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionSnapshotsArgs.__type"},{"id":1101,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31.orderdirection-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionSnapshotsArgs.__type"},{"id":1102,"kind":32,"name":"where","url":"modules/_types_.html#pairliquiditypositionsnapshotsargs.__type-31.where-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairLiquidityPositionSnapshotsArgs.__type"},{"id":1103,"kind":4194304,"name":"PairDayDataArgs","url":"modules/_types_.html#pairdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1104,"kind":65536,"name":"__type","url":"modules/_types_.html#pairdaydataargs.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairDayDataArgs"},{"id":1105,"kind":32,"name":"skip","url":"modules/_types_.html#pairdaydataargs.__type-26.skip-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayDataArgs.__type"},{"id":1106,"kind":32,"name":"first","url":"modules/_types_.html#pairdaydataargs.__type-26.first-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayDataArgs.__type"},{"id":1107,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairdaydataargs.__type-26.orderby-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayDataArgs.__type"},{"id":1108,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairdaydataargs.__type-26.orderdirection-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayDataArgs.__type"},{"id":1109,"kind":32,"name":"where","url":"modules/_types_.html#pairdaydataargs.__type-26.where-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayDataArgs.__type"},{"id":1110,"kind":4194304,"name":"PairHourDataArgs","url":"modules/_types_.html#pairhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1111,"kind":65536,"name":"__type","url":"modules/_types_.html#pairhourdataargs.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairHourDataArgs"},{"id":1112,"kind":32,"name":"skip","url":"modules/_types_.html#pairhourdataargs.__type-29.skip-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourDataArgs.__type"},{"id":1113,"kind":32,"name":"first","url":"modules/_types_.html#pairhourdataargs.__type-29.first-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourDataArgs.__type"},{"id":1114,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairhourdataargs.__type-29.orderby-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourDataArgs.__type"},{"id":1115,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairhourdataargs.__type-29.orderdirection-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourDataArgs.__type"},{"id":1116,"kind":32,"name":"where","url":"modules/_types_.html#pairhourdataargs.__type-29.where-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourDataArgs.__type"},{"id":1117,"kind":4194304,"name":"PairMintsArgs","url":"modules/_types_.html#pairmintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1118,"kind":65536,"name":"__type","url":"modules/_types_.html#pairmintsargs.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairMintsArgs"},{"id":1119,"kind":32,"name":"skip","url":"modules/_types_.html#pairmintsargs.__type-33.skip-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairMintsArgs.__type"},{"id":1120,"kind":32,"name":"first","url":"modules/_types_.html#pairmintsargs.__type-33.first-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairMintsArgs.__type"},{"id":1121,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairmintsargs.__type-33.orderby-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairMintsArgs.__type"},{"id":1122,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairmintsargs.__type-33.orderdirection-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairMintsArgs.__type"},{"id":1123,"kind":32,"name":"where","url":"modules/_types_.html#pairmintsargs.__type-33.where-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairMintsArgs.__type"},{"id":1124,"kind":4194304,"name":"PairBurnsArgs","url":"modules/_types_.html#pairburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1125,"kind":65536,"name":"__type","url":"modules/_types_.html#pairburnsargs.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairBurnsArgs"},{"id":1126,"kind":32,"name":"skip","url":"modules/_types_.html#pairburnsargs.__type-24.skip-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairBurnsArgs.__type"},{"id":1127,"kind":32,"name":"first","url":"modules/_types_.html#pairburnsargs.__type-24.first-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairBurnsArgs.__type"},{"id":1128,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairburnsargs.__type-24.orderby-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairBurnsArgs.__type"},{"id":1129,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairburnsargs.__type-24.orderdirection-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairBurnsArgs.__type"},{"id":1130,"kind":32,"name":"where","url":"modules/_types_.html#pairburnsargs.__type-24.where-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairBurnsArgs.__type"},{"id":1131,"kind":4194304,"name":"PairSwapsArgs","url":"modules/_types_.html#pairswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1132,"kind":65536,"name":"__type","url":"modules/_types_.html#pairswapsargs.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairSwapsArgs"},{"id":1133,"kind":32,"name":"skip","url":"modules/_types_.html#pairswapsargs.__type-34.skip-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairSwapsArgs.__type"},{"id":1134,"kind":32,"name":"first","url":"modules/_types_.html#pairswapsargs.__type-34.first-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairSwapsArgs.__type"},{"id":1135,"kind":32,"name":"orderBy","url":"modules/_types_.html#pairswapsargs.__type-34.orderby-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairSwapsArgs.__type"},{"id":1136,"kind":32,"name":"orderDirection","url":"modules/_types_.html#pairswapsargs.__type-34.orderdirection-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairSwapsArgs.__type"},{"id":1137,"kind":32,"name":"where","url":"modules/_types_.html#pairswapsargs.__type-34.where-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairSwapsArgs.__type"},{"id":1138,"kind":4194304,"name":"PairDayData","url":"modules/_types_.html#pairdaydata","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1139,"kind":65536,"name":"__type","url":"modules/_types_.html#pairdaydata.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairDayData"},{"id":1140,"kind":32,"name":"__typename","url":"modules/_types_.html#pairdaydata.__type-25.__typename-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1141,"kind":32,"name":"id","url":"modules/_types_.html#pairdaydata.__type-25.id-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1142,"kind":32,"name":"date","url":"modules/_types_.html#pairdaydata.__type-25.date-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1143,"kind":32,"name":"pair","url":"modules/_types_.html#pairdaydata.__type-25.pair-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1144,"kind":32,"name":"token0","url":"modules/_types_.html#pairdaydata.__type-25.token0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1145,"kind":32,"name":"token1","url":"modules/_types_.html#pairdaydata.__type-25.token1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1146,"kind":32,"name":"reserve0","url":"modules/_types_.html#pairdaydata.__type-25.reserve0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1147,"kind":32,"name":"reserve1","url":"modules/_types_.html#pairdaydata.__type-25.reserve1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1148,"kind":32,"name":"totalSupply","url":"modules/_types_.html#pairdaydata.__type-25.totalsupply-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1149,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pairdaydata.__type-25.reserveusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1150,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pairdaydata.__type-25.volumetoken0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1151,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pairdaydata.__type-25.volumetoken1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1152,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pairdaydata.__type-25.volumeusd-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1153,"kind":32,"name":"txCount","url":"modules/_types_.html#pairdaydata.__type-25.txcount-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData.__type"},{"id":1154,"kind":4194304,"name":"PairDayData_Filter","url":"modules/_types_.html#pairdaydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1155,"kind":65536,"name":"__type","url":"modules/_types_.html#pairdaydata_filter.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairDayData_Filter"},{"id":1156,"kind":32,"name":"id","url":"modules/_types_.html#pairdaydata_filter.__type-27.id-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1157,"kind":32,"name":"id_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_not-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1158,"kind":32,"name":"id_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_gt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1159,"kind":32,"name":"id_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_lt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1160,"kind":32,"name":"id_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_gte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1161,"kind":32,"name":"id_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_lte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1162,"kind":32,"name":"id_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1163,"kind":32,"name":"id_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.id_not_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1164,"kind":32,"name":"date","url":"modules/_types_.html#pairdaydata_filter.__type-27.date-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1165,"kind":32,"name":"date_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1166,"kind":32,"name":"date_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1167,"kind":32,"name":"date_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1168,"kind":32,"name":"date_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1169,"kind":32,"name":"date_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1170,"kind":32,"name":"date_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1171,"kind":32,"name":"date_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.date_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1172,"kind":32,"name":"pair","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1173,"kind":32,"name":"pair_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1174,"kind":32,"name":"pair_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1175,"kind":32,"name":"pair_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1176,"kind":32,"name":"pair_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1177,"kind":32,"name":"pair_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1178,"kind":32,"name":"pair_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1179,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1180,"kind":32,"name":"pair_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_contains-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1181,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_not_contains-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1182,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_starts_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1183,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_not_starts_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1184,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_ends_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1185,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.pair_not_ends_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1186,"kind":32,"name":"token0","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1187,"kind":32,"name":"token0_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1188,"kind":32,"name":"token0_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1189,"kind":32,"name":"token0_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1190,"kind":32,"name":"token0_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1191,"kind":32,"name":"token0_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1192,"kind":32,"name":"token0_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1193,"kind":32,"name":"token0_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1194,"kind":32,"name":"token0_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1195,"kind":32,"name":"token0_not_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1196,"kind":32,"name":"token0_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1197,"kind":32,"name":"token0_not_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1198,"kind":32,"name":"token0_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1199,"kind":32,"name":"token0_not_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token0_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1200,"kind":32,"name":"token1","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1201,"kind":32,"name":"token1_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1202,"kind":32,"name":"token1_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1203,"kind":32,"name":"token1_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1204,"kind":32,"name":"token1_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1205,"kind":32,"name":"token1_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1206,"kind":32,"name":"token1_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1207,"kind":32,"name":"token1_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1208,"kind":32,"name":"token1_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1209,"kind":32,"name":"token1_not_contains","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1210,"kind":32,"name":"token1_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1211,"kind":32,"name":"token1_not_starts_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1212,"kind":32,"name":"token1_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1213,"kind":32,"name":"token1_not_ends_with","url":"modules/_types_.html#pairdaydata_filter.__type-27.token1_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1214,"kind":32,"name":"reserve0","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1215,"kind":32,"name":"reserve0_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1216,"kind":32,"name":"reserve0_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1217,"kind":32,"name":"reserve0_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1218,"kind":32,"name":"reserve0_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1219,"kind":32,"name":"reserve0_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1220,"kind":32,"name":"reserve0_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1221,"kind":32,"name":"reserve0_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1222,"kind":32,"name":"reserve1","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1223,"kind":32,"name":"reserve1_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1224,"kind":32,"name":"reserve1_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1225,"kind":32,"name":"reserve1_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1226,"kind":32,"name":"reserve1_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1227,"kind":32,"name":"reserve1_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1228,"kind":32,"name":"reserve1_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1229,"kind":32,"name":"reserve1_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserve1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1230,"kind":32,"name":"totalSupply","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1231,"kind":32,"name":"totalSupply_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1232,"kind":32,"name":"totalSupply_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1233,"kind":32,"name":"totalSupply_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1234,"kind":32,"name":"totalSupply_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1235,"kind":32,"name":"totalSupply_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1236,"kind":32,"name":"totalSupply_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1237,"kind":32,"name":"totalSupply_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.totalsupply_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1238,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1239,"kind":32,"name":"reserveUSD_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1240,"kind":32,"name":"reserveUSD_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1241,"kind":32,"name":"reserveUSD_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1242,"kind":32,"name":"reserveUSD_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1243,"kind":32,"name":"reserveUSD_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1244,"kind":32,"name":"reserveUSD_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1245,"kind":32,"name":"reserveUSD_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.reserveusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1246,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1247,"kind":32,"name":"volumeToken0_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1248,"kind":32,"name":"volumeToken0_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1249,"kind":32,"name":"volumeToken0_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1250,"kind":32,"name":"volumeToken0_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1251,"kind":32,"name":"volumeToken0_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1252,"kind":32,"name":"volumeToken0_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1253,"kind":32,"name":"volumeToken0_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1254,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1255,"kind":32,"name":"volumeToken1_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1256,"kind":32,"name":"volumeToken1_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1257,"kind":32,"name":"volumeToken1_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1258,"kind":32,"name":"volumeToken1_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1259,"kind":32,"name":"volumeToken1_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1260,"kind":32,"name":"volumeToken1_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1261,"kind":32,"name":"volumeToken1_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumetoken1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1262,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1263,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1264,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1265,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1266,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1267,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1268,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1269,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.volumeusd_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1270,"kind":32,"name":"txCount","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1271,"kind":32,"name":"txCount_not","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1272,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1273,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1274,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1275,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1276,"kind":32,"name":"txCount_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1277,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#pairdaydata_filter.__type-27.txcount_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairDayData_Filter.__type"},{"id":1278,"kind":4194304,"name":"PairHourData","url":"modules/_types_.html#pairhourdata","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1279,"kind":65536,"name":"__type","url":"modules/_types_.html#pairhourdata.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairHourData"},{"id":1280,"kind":32,"name":"__typename","url":"modules/_types_.html#pairhourdata.__type-28.__typename-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1281,"kind":32,"name":"id","url":"modules/_types_.html#pairhourdata.__type-28.id-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1282,"kind":32,"name":"date","url":"modules/_types_.html#pairhourdata.__type-28.date-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1283,"kind":32,"name":"pair","url":"modules/_types_.html#pairhourdata.__type-28.pair-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1284,"kind":32,"name":"reserve0","url":"modules/_types_.html#pairhourdata.__type-28.reserve0-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1285,"kind":32,"name":"reserve1","url":"modules/_types_.html#pairhourdata.__type-28.reserve1-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1286,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pairhourdata.__type-28.reserveusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1287,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pairhourdata.__type-28.volumetoken0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1288,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pairhourdata.__type-28.volumetoken1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1289,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pairhourdata.__type-28.volumeusd-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1290,"kind":32,"name":"txCount","url":"modules/_types_.html#pairhourdata.__type-28.txcount-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData.__type"},{"id":1291,"kind":4194304,"name":"PairHourData_Filter","url":"modules/_types_.html#pairhourdata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1292,"kind":65536,"name":"__type","url":"modules/_types_.html#pairhourdata_filter.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".PairHourData_Filter"},{"id":1293,"kind":32,"name":"id","url":"modules/_types_.html#pairhourdata_filter.__type-30.id-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1294,"kind":32,"name":"id_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_not-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1295,"kind":32,"name":"id_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_gt-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1296,"kind":32,"name":"id_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_lt-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1297,"kind":32,"name":"id_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_gte-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1298,"kind":32,"name":"id_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_lte-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1299,"kind":32,"name":"id_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_in-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1300,"kind":32,"name":"id_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.id_not_in-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1301,"kind":32,"name":"date","url":"modules/_types_.html#pairhourdata_filter.__type-30.date-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1302,"kind":32,"name":"date_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1303,"kind":32,"name":"date_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1304,"kind":32,"name":"date_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1305,"kind":32,"name":"date_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1306,"kind":32,"name":"date_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1307,"kind":32,"name":"date_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1308,"kind":32,"name":"date_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.date_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1309,"kind":32,"name":"pair","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1310,"kind":32,"name":"pair_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1311,"kind":32,"name":"pair_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1312,"kind":32,"name":"pair_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1313,"kind":32,"name":"pair_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1314,"kind":32,"name":"pair_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1315,"kind":32,"name":"pair_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1316,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1317,"kind":32,"name":"pair_contains","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_contains-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1318,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_not_contains-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1319,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_starts_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1320,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_not_starts_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1321,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_ends_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1322,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#pairhourdata_filter.__type-30.pair_not_ends_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1323,"kind":32,"name":"reserve0","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1324,"kind":32,"name":"reserve0_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1325,"kind":32,"name":"reserve0_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1326,"kind":32,"name":"reserve0_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1327,"kind":32,"name":"reserve0_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1328,"kind":32,"name":"reserve0_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1329,"kind":32,"name":"reserve0_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1330,"kind":32,"name":"reserve0_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve0_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1331,"kind":32,"name":"reserve1","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1332,"kind":32,"name":"reserve1_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1333,"kind":32,"name":"reserve1_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1334,"kind":32,"name":"reserve1_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1335,"kind":32,"name":"reserve1_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1336,"kind":32,"name":"reserve1_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1337,"kind":32,"name":"reserve1_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1338,"kind":32,"name":"reserve1_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserve1_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1339,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1340,"kind":32,"name":"reserveUSD_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1341,"kind":32,"name":"reserveUSD_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1342,"kind":32,"name":"reserveUSD_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1343,"kind":32,"name":"reserveUSD_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1344,"kind":32,"name":"reserveUSD_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1345,"kind":32,"name":"reserveUSD_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1346,"kind":32,"name":"reserveUSD_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.reserveusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1347,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1348,"kind":32,"name":"volumeToken0_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1349,"kind":32,"name":"volumeToken0_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1350,"kind":32,"name":"volumeToken0_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1351,"kind":32,"name":"volumeToken0_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1352,"kind":32,"name":"volumeToken0_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1353,"kind":32,"name":"volumeToken0_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1354,"kind":32,"name":"volumeToken0_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1355,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1356,"kind":32,"name":"volumeToken1_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1357,"kind":32,"name":"volumeToken1_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1358,"kind":32,"name":"volumeToken1_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1359,"kind":32,"name":"volumeToken1_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1360,"kind":32,"name":"volumeToken1_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1361,"kind":32,"name":"volumeToken1_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1362,"kind":32,"name":"volumeToken1_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumetoken1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1363,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1364,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1365,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1366,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1367,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1368,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1369,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1370,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.volumeusd_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1371,"kind":32,"name":"txCount","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1372,"kind":32,"name":"txCount_not","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1373,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1374,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1375,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1376,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1377,"kind":32,"name":"txCount_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1378,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#pairhourdata_filter.__type-30.txcount_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".PairHourData_Filter.__type"},{"id":1379,"kind":4194304,"name":"Pair_Filter","url":"modules/_types_.html#pair_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1380,"kind":65536,"name":"__type","url":"modules/_types_.html#pair_filter.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Pair_Filter"},{"id":1381,"kind":32,"name":"id","url":"modules/_types_.html#pair_filter.__type-35.id-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1382,"kind":32,"name":"id_not","url":"modules/_types_.html#pair_filter.__type-35.id_not-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1383,"kind":32,"name":"id_gt","url":"modules/_types_.html#pair_filter.__type-35.id_gt-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1384,"kind":32,"name":"id_lt","url":"modules/_types_.html#pair_filter.__type-35.id_lt-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1385,"kind":32,"name":"id_gte","url":"modules/_types_.html#pair_filter.__type-35.id_gte-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1386,"kind":32,"name":"id_lte","url":"modules/_types_.html#pair_filter.__type-35.id_lte-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1387,"kind":32,"name":"id_in","url":"modules/_types_.html#pair_filter.__type-35.id_in-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1388,"kind":32,"name":"id_not_in","url":"modules/_types_.html#pair_filter.__type-35.id_not_in-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1389,"kind":32,"name":"factory","url":"modules/_types_.html#pair_filter.__type-35.factory-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1390,"kind":32,"name":"factory_not","url":"modules/_types_.html#pair_filter.__type-35.factory_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1391,"kind":32,"name":"factory_gt","url":"modules/_types_.html#pair_filter.__type-35.factory_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1392,"kind":32,"name":"factory_lt","url":"modules/_types_.html#pair_filter.__type-35.factory_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1393,"kind":32,"name":"factory_gte","url":"modules/_types_.html#pair_filter.__type-35.factory_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1394,"kind":32,"name":"factory_lte","url":"modules/_types_.html#pair_filter.__type-35.factory_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1395,"kind":32,"name":"factory_in","url":"modules/_types_.html#pair_filter.__type-35.factory_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1396,"kind":32,"name":"factory_not_in","url":"modules/_types_.html#pair_filter.__type-35.factory_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1397,"kind":32,"name":"factory_contains","url":"modules/_types_.html#pair_filter.__type-35.factory_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1398,"kind":32,"name":"factory_not_contains","url":"modules/_types_.html#pair_filter.__type-35.factory_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1399,"kind":32,"name":"factory_starts_with","url":"modules/_types_.html#pair_filter.__type-35.factory_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1400,"kind":32,"name":"factory_not_starts_with","url":"modules/_types_.html#pair_filter.__type-35.factory_not_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1401,"kind":32,"name":"factory_ends_with","url":"modules/_types_.html#pair_filter.__type-35.factory_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1402,"kind":32,"name":"factory_not_ends_with","url":"modules/_types_.html#pair_filter.__type-35.factory_not_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1403,"kind":32,"name":"name","url":"modules/_types_.html#pair_filter.__type-35.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1404,"kind":32,"name":"name_not","url":"modules/_types_.html#pair_filter.__type-35.name_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1405,"kind":32,"name":"name_gt","url":"modules/_types_.html#pair_filter.__type-35.name_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1406,"kind":32,"name":"name_lt","url":"modules/_types_.html#pair_filter.__type-35.name_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1407,"kind":32,"name":"name_gte","url":"modules/_types_.html#pair_filter.__type-35.name_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1408,"kind":32,"name":"name_lte","url":"modules/_types_.html#pair_filter.__type-35.name_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1409,"kind":32,"name":"name_in","url":"modules/_types_.html#pair_filter.__type-35.name_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1410,"kind":32,"name":"name_not_in","url":"modules/_types_.html#pair_filter.__type-35.name_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1411,"kind":32,"name":"name_contains","url":"modules/_types_.html#pair_filter.__type-35.name_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1412,"kind":32,"name":"name_not_contains","url":"modules/_types_.html#pair_filter.__type-35.name_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1413,"kind":32,"name":"name_starts_with","url":"modules/_types_.html#pair_filter.__type-35.name_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1414,"kind":32,"name":"name_not_starts_with","url":"modules/_types_.html#pair_filter.__type-35.name_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1415,"kind":32,"name":"name_ends_with","url":"modules/_types_.html#pair_filter.__type-35.name_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1416,"kind":32,"name":"name_not_ends_with","url":"modules/_types_.html#pair_filter.__type-35.name_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1417,"kind":32,"name":"token0","url":"modules/_types_.html#pair_filter.__type-35.token0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1418,"kind":32,"name":"token0_not","url":"modules/_types_.html#pair_filter.__type-35.token0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1419,"kind":32,"name":"token0_gt","url":"modules/_types_.html#pair_filter.__type-35.token0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1420,"kind":32,"name":"token0_lt","url":"modules/_types_.html#pair_filter.__type-35.token0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1421,"kind":32,"name":"token0_gte","url":"modules/_types_.html#pair_filter.__type-35.token0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1422,"kind":32,"name":"token0_lte","url":"modules/_types_.html#pair_filter.__type-35.token0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1423,"kind":32,"name":"token0_in","url":"modules/_types_.html#pair_filter.__type-35.token0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1424,"kind":32,"name":"token0_not_in","url":"modules/_types_.html#pair_filter.__type-35.token0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1425,"kind":32,"name":"token0_contains","url":"modules/_types_.html#pair_filter.__type-35.token0_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1426,"kind":32,"name":"token0_not_contains","url":"modules/_types_.html#pair_filter.__type-35.token0_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1427,"kind":32,"name":"token0_starts_with","url":"modules/_types_.html#pair_filter.__type-35.token0_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1428,"kind":32,"name":"token0_not_starts_with","url":"modules/_types_.html#pair_filter.__type-35.token0_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1429,"kind":32,"name":"token0_ends_with","url":"modules/_types_.html#pair_filter.__type-35.token0_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1430,"kind":32,"name":"token0_not_ends_with","url":"modules/_types_.html#pair_filter.__type-35.token0_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1431,"kind":32,"name":"token1","url":"modules/_types_.html#pair_filter.__type-35.token1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1432,"kind":32,"name":"token1_not","url":"modules/_types_.html#pair_filter.__type-35.token1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1433,"kind":32,"name":"token1_gt","url":"modules/_types_.html#pair_filter.__type-35.token1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1434,"kind":32,"name":"token1_lt","url":"modules/_types_.html#pair_filter.__type-35.token1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1435,"kind":32,"name":"token1_gte","url":"modules/_types_.html#pair_filter.__type-35.token1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1436,"kind":32,"name":"token1_lte","url":"modules/_types_.html#pair_filter.__type-35.token1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1437,"kind":32,"name":"token1_in","url":"modules/_types_.html#pair_filter.__type-35.token1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1438,"kind":32,"name":"token1_not_in","url":"modules/_types_.html#pair_filter.__type-35.token1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1439,"kind":32,"name":"token1_contains","url":"modules/_types_.html#pair_filter.__type-35.token1_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1440,"kind":32,"name":"token1_not_contains","url":"modules/_types_.html#pair_filter.__type-35.token1_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1441,"kind":32,"name":"token1_starts_with","url":"modules/_types_.html#pair_filter.__type-35.token1_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1442,"kind":32,"name":"token1_not_starts_with","url":"modules/_types_.html#pair_filter.__type-35.token1_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1443,"kind":32,"name":"token1_ends_with","url":"modules/_types_.html#pair_filter.__type-35.token1_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1444,"kind":32,"name":"token1_not_ends_with","url":"modules/_types_.html#pair_filter.__type-35.token1_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1445,"kind":32,"name":"reserve0","url":"modules/_types_.html#pair_filter.__type-35.reserve0-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1446,"kind":32,"name":"reserve0_not","url":"modules/_types_.html#pair_filter.__type-35.reserve0_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1447,"kind":32,"name":"reserve0_gt","url":"modules/_types_.html#pair_filter.__type-35.reserve0_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1448,"kind":32,"name":"reserve0_lt","url":"modules/_types_.html#pair_filter.__type-35.reserve0_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1449,"kind":32,"name":"reserve0_gte","url":"modules/_types_.html#pair_filter.__type-35.reserve0_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1450,"kind":32,"name":"reserve0_lte","url":"modules/_types_.html#pair_filter.__type-35.reserve0_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1451,"kind":32,"name":"reserve0_in","url":"modules/_types_.html#pair_filter.__type-35.reserve0_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1452,"kind":32,"name":"reserve0_not_in","url":"modules/_types_.html#pair_filter.__type-35.reserve0_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1453,"kind":32,"name":"reserve1","url":"modules/_types_.html#pair_filter.__type-35.reserve1-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1454,"kind":32,"name":"reserve1_not","url":"modules/_types_.html#pair_filter.__type-35.reserve1_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1455,"kind":32,"name":"reserve1_gt","url":"modules/_types_.html#pair_filter.__type-35.reserve1_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1456,"kind":32,"name":"reserve1_lt","url":"modules/_types_.html#pair_filter.__type-35.reserve1_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1457,"kind":32,"name":"reserve1_gte","url":"modules/_types_.html#pair_filter.__type-35.reserve1_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1458,"kind":32,"name":"reserve1_lte","url":"modules/_types_.html#pair_filter.__type-35.reserve1_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1459,"kind":32,"name":"reserve1_in","url":"modules/_types_.html#pair_filter.__type-35.reserve1_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1460,"kind":32,"name":"reserve1_not_in","url":"modules/_types_.html#pair_filter.__type-35.reserve1_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1461,"kind":32,"name":"totalSupply","url":"modules/_types_.html#pair_filter.__type-35.totalsupply-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1462,"kind":32,"name":"totalSupply_not","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1463,"kind":32,"name":"totalSupply_gt","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1464,"kind":32,"name":"totalSupply_lt","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1465,"kind":32,"name":"totalSupply_gte","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1466,"kind":32,"name":"totalSupply_lte","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1467,"kind":32,"name":"totalSupply_in","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1468,"kind":32,"name":"totalSupply_not_in","url":"modules/_types_.html#pair_filter.__type-35.totalsupply_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1469,"kind":32,"name":"reserveETH","url":"modules/_types_.html#pair_filter.__type-35.reserveeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1470,"kind":32,"name":"reserveETH_not","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1471,"kind":32,"name":"reserveETH_gt","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1472,"kind":32,"name":"reserveETH_lt","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1473,"kind":32,"name":"reserveETH_gte","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1474,"kind":32,"name":"reserveETH_lte","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1475,"kind":32,"name":"reserveETH_in","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1476,"kind":32,"name":"reserveETH_not_in","url":"modules/_types_.html#pair_filter.__type-35.reserveeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1477,"kind":32,"name":"reserveUSD","url":"modules/_types_.html#pair_filter.__type-35.reserveusd-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1478,"kind":32,"name":"reserveUSD_not","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1479,"kind":32,"name":"reserveUSD_gt","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1480,"kind":32,"name":"reserveUSD_lt","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1481,"kind":32,"name":"reserveUSD_gte","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1482,"kind":32,"name":"reserveUSD_lte","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1483,"kind":32,"name":"reserveUSD_in","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1484,"kind":32,"name":"reserveUSD_not_in","url":"modules/_types_.html#pair_filter.__type-35.reserveusd_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1485,"kind":32,"name":"trackedReserveETH","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1486,"kind":32,"name":"trackedReserveETH_not","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1487,"kind":32,"name":"trackedReserveETH_gt","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1488,"kind":32,"name":"trackedReserveETH_lt","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1489,"kind":32,"name":"trackedReserveETH_gte","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1490,"kind":32,"name":"trackedReserveETH_lte","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1491,"kind":32,"name":"trackedReserveETH_in","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1492,"kind":32,"name":"trackedReserveETH_not_in","url":"modules/_types_.html#pair_filter.__type-35.trackedreserveeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1493,"kind":32,"name":"token0Price","url":"modules/_types_.html#pair_filter.__type-35.token0price-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1494,"kind":32,"name":"token0Price_not","url":"modules/_types_.html#pair_filter.__type-35.token0price_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1495,"kind":32,"name":"token0Price_gt","url":"modules/_types_.html#pair_filter.__type-35.token0price_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1496,"kind":32,"name":"token0Price_lt","url":"modules/_types_.html#pair_filter.__type-35.token0price_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1497,"kind":32,"name":"token0Price_gte","url":"modules/_types_.html#pair_filter.__type-35.token0price_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1498,"kind":32,"name":"token0Price_lte","url":"modules/_types_.html#pair_filter.__type-35.token0price_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1499,"kind":32,"name":"token0Price_in","url":"modules/_types_.html#pair_filter.__type-35.token0price_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1500,"kind":32,"name":"token0Price_not_in","url":"modules/_types_.html#pair_filter.__type-35.token0price_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1501,"kind":32,"name":"token1Price","url":"modules/_types_.html#pair_filter.__type-35.token1price-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1502,"kind":32,"name":"token1Price_not","url":"modules/_types_.html#pair_filter.__type-35.token1price_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1503,"kind":32,"name":"token1Price_gt","url":"modules/_types_.html#pair_filter.__type-35.token1price_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1504,"kind":32,"name":"token1Price_lt","url":"modules/_types_.html#pair_filter.__type-35.token1price_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1505,"kind":32,"name":"token1Price_gte","url":"modules/_types_.html#pair_filter.__type-35.token1price_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1506,"kind":32,"name":"token1Price_lte","url":"modules/_types_.html#pair_filter.__type-35.token1price_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1507,"kind":32,"name":"token1Price_in","url":"modules/_types_.html#pair_filter.__type-35.token1price_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1508,"kind":32,"name":"token1Price_not_in","url":"modules/_types_.html#pair_filter.__type-35.token1price_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1509,"kind":32,"name":"volumeToken0","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1510,"kind":32,"name":"volumeToken0_not","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1511,"kind":32,"name":"volumeToken0_gt","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1512,"kind":32,"name":"volumeToken0_lt","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1513,"kind":32,"name":"volumeToken0_gte","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1514,"kind":32,"name":"volumeToken0_lte","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1515,"kind":32,"name":"volumeToken0_in","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1516,"kind":32,"name":"volumeToken0_not_in","url":"modules/_types_.html#pair_filter.__type-35.volumetoken0_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1517,"kind":32,"name":"volumeToken1","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1518,"kind":32,"name":"volumeToken1_not","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1519,"kind":32,"name":"volumeToken1_gt","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1520,"kind":32,"name":"volumeToken1_lt","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1521,"kind":32,"name":"volumeToken1_gte","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1522,"kind":32,"name":"volumeToken1_lte","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1523,"kind":32,"name":"volumeToken1_in","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1524,"kind":32,"name":"volumeToken1_not_in","url":"modules/_types_.html#pair_filter.__type-35.volumetoken1_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1525,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#pair_filter.__type-35.volumeusd-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1526,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1527,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1528,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1529,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1530,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1531,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1532,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#pair_filter.__type-35.volumeusd_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1533,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1534,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1535,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1536,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1537,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1538,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1539,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1540,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_types_.html#pair_filter.__type-35.untrackedvolumeusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1541,"kind":32,"name":"txCount","url":"modules/_types_.html#pair_filter.__type-35.txcount-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1542,"kind":32,"name":"txCount_not","url":"modules/_types_.html#pair_filter.__type-35.txcount_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1543,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#pair_filter.__type-35.txcount_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1544,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#pair_filter.__type-35.txcount_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1545,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#pair_filter.__type-35.txcount_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1546,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#pair_filter.__type-35.txcount_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1547,"kind":32,"name":"txCount_in","url":"modules/_types_.html#pair_filter.__type-35.txcount_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1548,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#pair_filter.__type-35.txcount_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1549,"kind":32,"name":"liquidityProviderCount","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1550,"kind":32,"name":"liquidityProviderCount_not","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1551,"kind":32,"name":"liquidityProviderCount_gt","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1552,"kind":32,"name":"liquidityProviderCount_lt","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1553,"kind":32,"name":"liquidityProviderCount_gte","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1554,"kind":32,"name":"liquidityProviderCount_lte","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1555,"kind":32,"name":"liquidityProviderCount_in","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1556,"kind":32,"name":"liquidityProviderCount_not_in","url":"modules/_types_.html#pair_filter.__type-35.liquidityprovidercount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1557,"kind":32,"name":"timestamp","url":"modules/_types_.html#pair_filter.__type-35.timestamp-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1558,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#pair_filter.__type-35.timestamp_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1559,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#pair_filter.__type-35.timestamp_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1560,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#pair_filter.__type-35.timestamp_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1561,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#pair_filter.__type-35.timestamp_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1562,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#pair_filter.__type-35.timestamp_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1563,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#pair_filter.__type-35.timestamp_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1564,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#pair_filter.__type-35.timestamp_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1565,"kind":32,"name":"block","url":"modules/_types_.html#pair_filter.__type-35.block-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1566,"kind":32,"name":"block_not","url":"modules/_types_.html#pair_filter.__type-35.block_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1567,"kind":32,"name":"block_gt","url":"modules/_types_.html#pair_filter.__type-35.block_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1568,"kind":32,"name":"block_lt","url":"modules/_types_.html#pair_filter.__type-35.block_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1569,"kind":32,"name":"block_gte","url":"modules/_types_.html#pair_filter.__type-35.block_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1570,"kind":32,"name":"block_lte","url":"modules/_types_.html#pair_filter.__type-35.block_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1571,"kind":32,"name":"block_in","url":"modules/_types_.html#pair_filter.__type-35.block_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1572,"kind":32,"name":"block_not_in","url":"modules/_types_.html#pair_filter.__type-35.block_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Pair_Filter.__type"},{"id":1573,"kind":4194304,"name":"Query","url":"modules/_types_.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1574,"kind":65536,"name":"__type","url":"modules/_types_.html#query.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Query"},{"id":1575,"kind":32,"name":"__typename","url":"modules/_types_.html#query.__type-36.__typename-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1576,"kind":32,"name":"user","url":"modules/_types_.html#query.__type-36.user-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1577,"kind":32,"name":"users","url":"modules/_types_.html#query.__type-36.users","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1578,"kind":32,"name":"bundle","url":"modules/_types_.html#query.__type-36.bundle-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1579,"kind":32,"name":"bundles","url":"modules/_types_.html#query.__type-36.bundles","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1580,"kind":32,"name":"factory","url":"modules/_types_.html#query.__type-36.factory-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1581,"kind":32,"name":"factories","url":"modules/_types_.html#query.__type-36.factories","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1582,"kind":32,"name":"hourData","url":"modules/_types_.html#query.__type-36.hourdata-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1583,"kind":32,"name":"hourDatas","url":"modules/_types_.html#query.__type-36.hourdatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1584,"kind":32,"name":"dayData","url":"modules/_types_.html#query.__type-36.daydata-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1585,"kind":32,"name":"dayDatas","url":"modules/_types_.html#query.__type-36.daydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1586,"kind":32,"name":"token","url":"modules/_types_.html#query.__type-36.token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1587,"kind":32,"name":"tokens","url":"modules/_types_.html#query.__type-36.tokens-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1588,"kind":32,"name":"tokenHourData","url":"modules/_types_.html#query.__type-36.tokenhourdata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1589,"kind":32,"name":"tokenHourDatas","url":"modules/_types_.html#query.__type-36.tokenhourdatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1590,"kind":32,"name":"tokenDayData","url":"modules/_types_.html#query.__type-36.tokendaydata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1591,"kind":32,"name":"tokenDayDatas","url":"modules/_types_.html#query.__type-36.tokendaydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1592,"kind":32,"name":"pair","url":"modules/_types_.html#query.__type-36.pair-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1593,"kind":32,"name":"pairs","url":"modules/_types_.html#query.__type-36.pairs-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1594,"kind":32,"name":"pairHourData","url":"modules/_types_.html#query.__type-36.pairhourdata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1595,"kind":32,"name":"pairHourDatas","url":"modules/_types_.html#query.__type-36.pairhourdatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1596,"kind":32,"name":"pairDayData","url":"modules/_types_.html#query.__type-36.pairdaydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1597,"kind":32,"name":"pairDayDatas","url":"modules/_types_.html#query.__type-36.pairdaydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1598,"kind":32,"name":"liquidityPosition","url":"modules/_types_.html#query.__type-36.liquidityposition-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1599,"kind":32,"name":"liquidityPositions","url":"modules/_types_.html#query.__type-36.liquiditypositions-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1600,"kind":32,"name":"liquidityPositionSnapshot","url":"modules/_types_.html#query.__type-36.liquiditypositionsnapshot-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1601,"kind":32,"name":"liquidityPositionSnapshots","url":"modules/_types_.html#query.__type-36.liquiditypositionsnapshots-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1602,"kind":32,"name":"transaction","url":"modules/_types_.html#query.__type-36.transaction-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1603,"kind":32,"name":"transactions","url":"modules/_types_.html#query.__type-36.transactions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1604,"kind":32,"name":"mint","url":"modules/_types_.html#query.__type-36.mint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1605,"kind":32,"name":"mints","url":"modules/_types_.html#query.__type-36.mints-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1606,"kind":32,"name":"burn","url":"modules/_types_.html#query.__type-36.burn-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1607,"kind":32,"name":"burns","url":"modules/_types_.html#query.__type-36.burns-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1608,"kind":32,"name":"swap","url":"modules/_types_.html#query.__type-36.swap","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1609,"kind":32,"name":"swaps","url":"modules/_types_.html#query.__type-36.swaps-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1610,"kind":32,"name":"tokenSearch","url":"modules/_types_.html#query.__type-36.tokensearch","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1611,"kind":32,"name":"pairSearch","url":"modules/_types_.html#query.__type-36.pairsearch","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1612,"kind":32,"name":"userSearch","url":"modules/_types_.html#query.__type-36.usersearch","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1613,"kind":32,"name":"_meta","url":"modules/_types_.html#query.__type-36._meta","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query.__type"},{"id":1614,"kind":4194304,"name":"QueryUserArgs","url":"modules/_types_.html#queryuserargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1615,"kind":65536,"name":"__type","url":"modules/_types_.html#queryuserargs.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryUserArgs"},{"id":1616,"kind":32,"name":"id","url":"modules/_types_.html#queryuserargs.__type-71.id-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserArgs.__type"},{"id":1617,"kind":32,"name":"block","url":"modules/_types_.html#queryuserargs.__type-71.block-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserArgs.__type"},{"id":1618,"kind":4194304,"name":"QueryUsersArgs","url":"modules/_types_.html#queryusersargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1619,"kind":65536,"name":"__type","url":"modules/_types_.html#queryusersargs.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryUsersArgs"},{"id":1620,"kind":32,"name":"skip","url":"modules/_types_.html#queryusersargs.__type-73.skip-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1621,"kind":32,"name":"first","url":"modules/_types_.html#queryusersargs.__type-73.first-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1622,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryusersargs.__type-73.orderby-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1623,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryusersargs.__type-73.orderdirection-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1624,"kind":32,"name":"where","url":"modules/_types_.html#queryusersargs.__type-73.where-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1625,"kind":32,"name":"block","url":"modules/_types_.html#queryusersargs.__type-73.block-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUsersArgs.__type"},{"id":1626,"kind":4194304,"name":"QueryBundleArgs","url":"modules/_types_.html#querybundleargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1627,"kind":65536,"name":"__type","url":"modules/_types_.html#querybundleargs.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryBundleArgs"},{"id":1628,"kind":32,"name":"id","url":"modules/_types_.html#querybundleargs.__type-37.id-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundleArgs.__type"},{"id":1629,"kind":32,"name":"block","url":"modules/_types_.html#querybundleargs.__type-37.block-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundleArgs.__type"},{"id":1630,"kind":4194304,"name":"QueryBundlesArgs","url":"modules/_types_.html#querybundlesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1631,"kind":65536,"name":"__type","url":"modules/_types_.html#querybundlesargs.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryBundlesArgs"},{"id":1632,"kind":32,"name":"skip","url":"modules/_types_.html#querybundlesargs.__type-38.skip-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1633,"kind":32,"name":"first","url":"modules/_types_.html#querybundlesargs.__type-38.first-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1634,"kind":32,"name":"orderBy","url":"modules/_types_.html#querybundlesargs.__type-38.orderby-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1635,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querybundlesargs.__type-38.orderdirection-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1636,"kind":32,"name":"where","url":"modules/_types_.html#querybundlesargs.__type-38.where-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1637,"kind":32,"name":"block","url":"modules/_types_.html#querybundlesargs.__type-38.block-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBundlesArgs.__type"},{"id":1638,"kind":4194304,"name":"QueryFactoryArgs","url":"modules/_types_.html#queryfactoryargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1639,"kind":65536,"name":"__type","url":"modules/_types_.html#queryfactoryargs.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryFactoryArgs"},{"id":1640,"kind":32,"name":"id","url":"modules/_types_.html#queryfactoryargs.__type-44.id-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoryArgs.__type"},{"id":1641,"kind":32,"name":"block","url":"modules/_types_.html#queryfactoryargs.__type-44.block-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoryArgs.__type"},{"id":1642,"kind":4194304,"name":"QueryFactoriesArgs","url":"modules/_types_.html#queryfactoriesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1643,"kind":65536,"name":"__type","url":"modules/_types_.html#queryfactoriesargs.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryFactoriesArgs"},{"id":1644,"kind":32,"name":"skip","url":"modules/_types_.html#queryfactoriesargs.__type-43.skip-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1645,"kind":32,"name":"first","url":"modules/_types_.html#queryfactoriesargs.__type-43.first-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1646,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryfactoriesargs.__type-43.orderby-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1647,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryfactoriesargs.__type-43.orderdirection-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1648,"kind":32,"name":"where","url":"modules/_types_.html#queryfactoriesargs.__type-43.where-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1649,"kind":32,"name":"block","url":"modules/_types_.html#queryfactoriesargs.__type-43.block-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryFactoriesArgs.__type"},{"id":1650,"kind":4194304,"name":"QueryHourDataArgs","url":"modules/_types_.html#queryhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1651,"kind":65536,"name":"__type","url":"modules/_types_.html#queryhourdataargs.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryHourDataArgs"},{"id":1652,"kind":32,"name":"id","url":"modules/_types_.html#queryhourdataargs.__type-45.id-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDataArgs.__type"},{"id":1653,"kind":32,"name":"block","url":"modules/_types_.html#queryhourdataargs.__type-45.block-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDataArgs.__type"},{"id":1654,"kind":4194304,"name":"QueryHourDatasArgs","url":"modules/_types_.html#queryhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1655,"kind":65536,"name":"__type","url":"modules/_types_.html#queryhourdatasargs.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryHourDatasArgs"},{"id":1656,"kind":32,"name":"skip","url":"modules/_types_.html#queryhourdatasargs.__type-46.skip-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1657,"kind":32,"name":"first","url":"modules/_types_.html#queryhourdatasargs.__type-46.first-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1658,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryhourdatasargs.__type-46.orderby-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1659,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryhourdatasargs.__type-46.orderdirection-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1660,"kind":32,"name":"where","url":"modules/_types_.html#queryhourdatasargs.__type-46.where-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1661,"kind":32,"name":"block","url":"modules/_types_.html#queryhourdatasargs.__type-46.block-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryHourDatasArgs.__type"},{"id":1662,"kind":4194304,"name":"QueryDayDataArgs","url":"modules/_types_.html#querydaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1663,"kind":65536,"name":"__type","url":"modules/_types_.html#querydaydataargs.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryDayDataArgs"},{"id":1664,"kind":32,"name":"id","url":"modules/_types_.html#querydaydataargs.__type-41.id-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDataArgs.__type"},{"id":1665,"kind":32,"name":"block","url":"modules/_types_.html#querydaydataargs.__type-41.block-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDataArgs.__type"},{"id":1666,"kind":4194304,"name":"QueryDayDatasArgs","url":"modules/_types_.html#querydaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1667,"kind":65536,"name":"__type","url":"modules/_types_.html#querydaydatasargs.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryDayDatasArgs"},{"id":1668,"kind":32,"name":"skip","url":"modules/_types_.html#querydaydatasargs.__type-42.skip-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1669,"kind":32,"name":"first","url":"modules/_types_.html#querydaydatasargs.__type-42.first-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1670,"kind":32,"name":"orderBy","url":"modules/_types_.html#querydaydatasargs.__type-42.orderby-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1671,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querydaydatasargs.__type-42.orderdirection-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1672,"kind":32,"name":"where","url":"modules/_types_.html#querydaydatasargs.__type-42.where-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1673,"kind":32,"name":"block","url":"modules/_types_.html#querydaydatasargs.__type-42.block-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryDayDatasArgs.__type"},{"id":1674,"kind":4194304,"name":"QueryTokenArgs","url":"modules/_types_.html#querytokenargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1675,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokenargs.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenArgs"},{"id":1676,"kind":32,"name":"id","url":"modules/_types_.html#querytokenargs.__type-62.id-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenArgs.__type"},{"id":1677,"kind":32,"name":"block","url":"modules/_types_.html#querytokenargs.__type-62.block-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenArgs.__type"},{"id":1678,"kind":4194304,"name":"QueryTokensArgs","url":"modules/_types_.html#querytokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1679,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokensargs.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokensArgs"},{"id":1680,"kind":32,"name":"skip","url":"modules/_types_.html#querytokensargs.__type-68.skip-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1681,"kind":32,"name":"first","url":"modules/_types_.html#querytokensargs.__type-68.first-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1682,"kind":32,"name":"orderBy","url":"modules/_types_.html#querytokensargs.__type-68.orderby-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1683,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querytokensargs.__type-68.orderdirection-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1684,"kind":32,"name":"where","url":"modules/_types_.html#querytokensargs.__type-68.where-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1685,"kind":32,"name":"block","url":"modules/_types_.html#querytokensargs.__type-68.block-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokensArgs.__type"},{"id":1686,"kind":4194304,"name":"QueryTokenHourDataArgs","url":"modules/_types_.html#querytokenhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1687,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokenhourdataargs.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenHourDataArgs"},{"id":1688,"kind":32,"name":"id","url":"modules/_types_.html#querytokenhourdataargs.__type-65.id-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDataArgs.__type"},{"id":1689,"kind":32,"name":"block","url":"modules/_types_.html#querytokenhourdataargs.__type-65.block-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDataArgs.__type"},{"id":1690,"kind":4194304,"name":"QueryTokenHourDatasArgs","url":"modules/_types_.html#querytokenhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1691,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokenhourdatasargs.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenHourDatasArgs"},{"id":1692,"kind":32,"name":"skip","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.skip-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1693,"kind":32,"name":"first","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.first-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1694,"kind":32,"name":"orderBy","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.orderby-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1695,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.orderdirection-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1696,"kind":32,"name":"where","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.where-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1697,"kind":32,"name":"block","url":"modules/_types_.html#querytokenhourdatasargs.__type-66.block-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenHourDatasArgs.__type"},{"id":1698,"kind":4194304,"name":"QueryTokenDayDataArgs","url":"modules/_types_.html#querytokendaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1699,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokendaydataargs.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenDayDataArgs"},{"id":1700,"kind":32,"name":"id","url":"modules/_types_.html#querytokendaydataargs.__type-63.id-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDataArgs.__type"},{"id":1701,"kind":32,"name":"block","url":"modules/_types_.html#querytokendaydataargs.__type-63.block-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDataArgs.__type"},{"id":1702,"kind":4194304,"name":"QueryTokenDayDatasArgs","url":"modules/_types_.html#querytokendaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1703,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokendaydatasargs.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenDayDatasArgs"},{"id":1704,"kind":32,"name":"skip","url":"modules/_types_.html#querytokendaydatasargs.__type-64.skip-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1705,"kind":32,"name":"first","url":"modules/_types_.html#querytokendaydatasargs.__type-64.first-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1706,"kind":32,"name":"orderBy","url":"modules/_types_.html#querytokendaydatasargs.__type-64.orderby-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1707,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querytokendaydatasargs.__type-64.orderdirection-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1708,"kind":32,"name":"where","url":"modules/_types_.html#querytokendaydatasargs.__type-64.where-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1709,"kind":32,"name":"block","url":"modules/_types_.html#querytokendaydatasargs.__type-64.block-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenDayDatasArgs.__type"},{"id":1710,"kind":4194304,"name":"QueryPairArgs","url":"modules/_types_.html#querypairargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1711,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairargs.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairArgs"},{"id":1712,"kind":32,"name":"id","url":"modules/_types_.html#querypairargs.__type-53.id-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairArgs.__type"},{"id":1713,"kind":32,"name":"block","url":"modules/_types_.html#querypairargs.__type-53.block-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairArgs.__type"},{"id":1714,"kind":4194304,"name":"QueryPairsArgs","url":"modules/_types_.html#querypairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1715,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairsargs.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairsArgs"},{"id":1716,"kind":32,"name":"skip","url":"modules/_types_.html#querypairsargs.__type-59.skip-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1717,"kind":32,"name":"first","url":"modules/_types_.html#querypairsargs.__type-59.first-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1718,"kind":32,"name":"orderBy","url":"modules/_types_.html#querypairsargs.__type-59.orderby-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1719,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querypairsargs.__type-59.orderdirection-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1720,"kind":32,"name":"where","url":"modules/_types_.html#querypairsargs.__type-59.where-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1721,"kind":32,"name":"block","url":"modules/_types_.html#querypairsargs.__type-59.block-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairsArgs.__type"},{"id":1722,"kind":4194304,"name":"QueryPairHourDataArgs","url":"modules/_types_.html#querypairhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1723,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairhourdataargs.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairHourDataArgs"},{"id":1724,"kind":32,"name":"id","url":"modules/_types_.html#querypairhourdataargs.__type-56.id-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDataArgs.__type"},{"id":1725,"kind":32,"name":"block","url":"modules/_types_.html#querypairhourdataargs.__type-56.block-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDataArgs.__type"},{"id":1726,"kind":4194304,"name":"QueryPairHourDatasArgs","url":"modules/_types_.html#querypairhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1727,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairhourdatasargs.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairHourDatasArgs"},{"id":1728,"kind":32,"name":"skip","url":"modules/_types_.html#querypairhourdatasargs.__type-57.skip-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1729,"kind":32,"name":"first","url":"modules/_types_.html#querypairhourdatasargs.__type-57.first-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1730,"kind":32,"name":"orderBy","url":"modules/_types_.html#querypairhourdatasargs.__type-57.orderby-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1731,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querypairhourdatasargs.__type-57.orderdirection-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1732,"kind":32,"name":"where","url":"modules/_types_.html#querypairhourdatasargs.__type-57.where-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1733,"kind":32,"name":"block","url":"modules/_types_.html#querypairhourdatasargs.__type-57.block-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairHourDatasArgs.__type"},{"id":1734,"kind":4194304,"name":"QueryPairDayDataArgs","url":"modules/_types_.html#querypairdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1735,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairdaydataargs.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairDayDataArgs"},{"id":1736,"kind":32,"name":"id","url":"modules/_types_.html#querypairdaydataargs.__type-54.id-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDataArgs.__type"},{"id":1737,"kind":32,"name":"block","url":"modules/_types_.html#querypairdaydataargs.__type-54.block-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDataArgs.__type"},{"id":1738,"kind":4194304,"name":"QueryPairDayDatasArgs","url":"modules/_types_.html#querypairdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1739,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairdaydatasargs.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairDayDatasArgs"},{"id":1740,"kind":32,"name":"skip","url":"modules/_types_.html#querypairdaydatasargs.__type-55.skip-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1741,"kind":32,"name":"first","url":"modules/_types_.html#querypairdaydatasargs.__type-55.first-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1742,"kind":32,"name":"orderBy","url":"modules/_types_.html#querypairdaydatasargs.__type-55.orderby-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1743,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querypairdaydatasargs.__type-55.orderdirection-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1744,"kind":32,"name":"where","url":"modules/_types_.html#querypairdaydatasargs.__type-55.where-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1745,"kind":32,"name":"block","url":"modules/_types_.html#querypairdaydatasargs.__type-55.block-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairDayDatasArgs.__type"},{"id":1746,"kind":4194304,"name":"QueryLiquidityPositionArgs","url":"modules/_types_.html#queryliquiditypositionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1747,"kind":65536,"name":"__type","url":"modules/_types_.html#queryliquiditypositionargs.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryLiquidityPositionArgs"},{"id":1748,"kind":32,"name":"id","url":"modules/_types_.html#queryliquiditypositionargs.__type-47.id-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionArgs.__type"},{"id":1749,"kind":32,"name":"block","url":"modules/_types_.html#queryliquiditypositionargs.__type-47.block-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionArgs.__type"},{"id":1750,"kind":4194304,"name":"QueryLiquidityPositionsArgs","url":"modules/_types_.html#queryliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1751,"kind":65536,"name":"__type","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryLiquidityPositionsArgs"},{"id":1752,"kind":32,"name":"skip","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.skip-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1753,"kind":32,"name":"first","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.first-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1754,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.orderby-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1755,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.orderdirection-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1756,"kind":32,"name":"where","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.where-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1757,"kind":32,"name":"block","url":"modules/_types_.html#queryliquiditypositionsargs.__type-50.block-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionsArgs.__type"},{"id":1758,"kind":4194304,"name":"QueryLiquidityPositionSnapshotArgs","url":"modules/_types_.html#queryliquiditypositionsnapshotargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1759,"kind":65536,"name":"__type","url":"modules/_types_.html#queryliquiditypositionsnapshotargs.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryLiquidityPositionSnapshotArgs"},{"id":1760,"kind":32,"name":"id","url":"modules/_types_.html#queryliquiditypositionsnapshotargs.__type-48.id-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotArgs.__type"},{"id":1761,"kind":32,"name":"block","url":"modules/_types_.html#queryliquiditypositionsnapshotargs.__type-48.block-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotArgs.__type"},{"id":1762,"kind":4194304,"name":"QueryLiquidityPositionSnapshotsArgs","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1763,"kind":65536,"name":"__type","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs"},{"id":1764,"kind":32,"name":"skip","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.skip-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1765,"kind":32,"name":"first","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.first-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1766,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.orderby-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1767,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.orderdirection-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1768,"kind":32,"name":"where","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.where-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1769,"kind":32,"name":"block","url":"modules/_types_.html#queryliquiditypositionsnapshotsargs.__type-49.block-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":1770,"kind":4194304,"name":"QueryTransactionArgs","url":"modules/_types_.html#querytransactionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1771,"kind":65536,"name":"__type","url":"modules/_types_.html#querytransactionargs.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTransactionArgs"},{"id":1772,"kind":32,"name":"id","url":"modules/_types_.html#querytransactionargs.__type-69.id-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionArgs.__type"},{"id":1773,"kind":32,"name":"block","url":"modules/_types_.html#querytransactionargs.__type-69.block-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionArgs.__type"},{"id":1774,"kind":4194304,"name":"QueryTransactionsArgs","url":"modules/_types_.html#querytransactionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1775,"kind":65536,"name":"__type","url":"modules/_types_.html#querytransactionsargs.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTransactionsArgs"},{"id":1776,"kind":32,"name":"skip","url":"modules/_types_.html#querytransactionsargs.__type-70.skip-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1777,"kind":32,"name":"first","url":"modules/_types_.html#querytransactionsargs.__type-70.first-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1778,"kind":32,"name":"orderBy","url":"modules/_types_.html#querytransactionsargs.__type-70.orderby-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1779,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querytransactionsargs.__type-70.orderdirection-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1780,"kind":32,"name":"where","url":"modules/_types_.html#querytransactionsargs.__type-70.where-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1781,"kind":32,"name":"block","url":"modules/_types_.html#querytransactionsargs.__type-70.block-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTransactionsArgs.__type"},{"id":1782,"kind":4194304,"name":"QueryMintArgs","url":"modules/_types_.html#querymintargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1783,"kind":65536,"name":"__type","url":"modules/_types_.html#querymintargs.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryMintArgs"},{"id":1784,"kind":32,"name":"id","url":"modules/_types_.html#querymintargs.__type-51.id-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintArgs.__type"},{"id":1785,"kind":32,"name":"block","url":"modules/_types_.html#querymintargs.__type-51.block-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintArgs.__type"},{"id":1786,"kind":4194304,"name":"QueryMintsArgs","url":"modules/_types_.html#querymintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1787,"kind":65536,"name":"__type","url":"modules/_types_.html#querymintsargs.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryMintsArgs"},{"id":1788,"kind":32,"name":"skip","url":"modules/_types_.html#querymintsargs.__type-52.skip-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1789,"kind":32,"name":"first","url":"modules/_types_.html#querymintsargs.__type-52.first-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1790,"kind":32,"name":"orderBy","url":"modules/_types_.html#querymintsargs.__type-52.orderby-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1791,"kind":32,"name":"orderDirection","url":"modules/_types_.html#querymintsargs.__type-52.orderdirection-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1792,"kind":32,"name":"where","url":"modules/_types_.html#querymintsargs.__type-52.where-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1793,"kind":32,"name":"block","url":"modules/_types_.html#querymintsargs.__type-52.block-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryMintsArgs.__type"},{"id":1794,"kind":4194304,"name":"QueryBurnArgs","url":"modules/_types_.html#queryburnargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1795,"kind":65536,"name":"__type","url":"modules/_types_.html#queryburnargs.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryBurnArgs"},{"id":1796,"kind":32,"name":"id","url":"modules/_types_.html#queryburnargs.__type-39.id-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnArgs.__type"},{"id":1797,"kind":32,"name":"block","url":"modules/_types_.html#queryburnargs.__type-39.block-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnArgs.__type"},{"id":1798,"kind":4194304,"name":"QueryBurnsArgs","url":"modules/_types_.html#queryburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1799,"kind":65536,"name":"__type","url":"modules/_types_.html#queryburnsargs.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryBurnsArgs"},{"id":1800,"kind":32,"name":"skip","url":"modules/_types_.html#queryburnsargs.__type-40.skip-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1801,"kind":32,"name":"first","url":"modules/_types_.html#queryburnsargs.__type-40.first-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1802,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryburnsargs.__type-40.orderby-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1803,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryburnsargs.__type-40.orderdirection-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1804,"kind":32,"name":"where","url":"modules/_types_.html#queryburnsargs.__type-40.where-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1805,"kind":32,"name":"block","url":"modules/_types_.html#queryburnsargs.__type-40.block-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryBurnsArgs.__type"},{"id":1806,"kind":4194304,"name":"QuerySwapArgs","url":"modules/_types_.html#queryswapargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1807,"kind":65536,"name":"__type","url":"modules/_types_.html#queryswapargs.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QuerySwapArgs"},{"id":1808,"kind":32,"name":"id","url":"modules/_types_.html#queryswapargs.__type-60.id-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapArgs.__type"},{"id":1809,"kind":32,"name":"block","url":"modules/_types_.html#queryswapargs.__type-60.block-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapArgs.__type"},{"id":1810,"kind":4194304,"name":"QuerySwapsArgs","url":"modules/_types_.html#queryswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1811,"kind":65536,"name":"__type","url":"modules/_types_.html#queryswapsargs.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QuerySwapsArgs"},{"id":1812,"kind":32,"name":"skip","url":"modules/_types_.html#queryswapsargs.__type-61.skip-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1813,"kind":32,"name":"first","url":"modules/_types_.html#queryswapsargs.__type-61.first-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1814,"kind":32,"name":"orderBy","url":"modules/_types_.html#queryswapsargs.__type-61.orderby-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1815,"kind":32,"name":"orderDirection","url":"modules/_types_.html#queryswapsargs.__type-61.orderdirection-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1816,"kind":32,"name":"where","url":"modules/_types_.html#queryswapsargs.__type-61.where-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1817,"kind":32,"name":"block","url":"modules/_types_.html#queryswapsargs.__type-61.block-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QuerySwapsArgs.__type"},{"id":1818,"kind":4194304,"name":"QueryTokenSearchArgs","url":"modules/_types_.html#querytokensearchargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1819,"kind":65536,"name":"__type","url":"modules/_types_.html#querytokensearchargs.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryTokenSearchArgs"},{"id":1820,"kind":32,"name":"text","url":"modules/_types_.html#querytokensearchargs.__type-67.text-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenSearchArgs.__type"},{"id":1821,"kind":32,"name":"first","url":"modules/_types_.html#querytokensearchargs.__type-67.first-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenSearchArgs.__type"},{"id":1822,"kind":32,"name":"skip","url":"modules/_types_.html#querytokensearchargs.__type-67.skip-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenSearchArgs.__type"},{"id":1823,"kind":32,"name":"block","url":"modules/_types_.html#querytokensearchargs.__type-67.block-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryTokenSearchArgs.__type"},{"id":1824,"kind":4194304,"name":"QueryPairSearchArgs","url":"modules/_types_.html#querypairsearchargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1825,"kind":65536,"name":"__type","url":"modules/_types_.html#querypairsearchargs.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryPairSearchArgs"},{"id":1826,"kind":32,"name":"text","url":"modules/_types_.html#querypairsearchargs.__type-58.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairSearchArgs.__type"},{"id":1827,"kind":32,"name":"first","url":"modules/_types_.html#querypairsearchargs.__type-58.first-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairSearchArgs.__type"},{"id":1828,"kind":32,"name":"skip","url":"modules/_types_.html#querypairsearchargs.__type-58.skip-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairSearchArgs.__type"},{"id":1829,"kind":32,"name":"block","url":"modules/_types_.html#querypairsearchargs.__type-58.block-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryPairSearchArgs.__type"},{"id":1830,"kind":4194304,"name":"QueryUserSearchArgs","url":"modules/_types_.html#queryusersearchargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1831,"kind":65536,"name":"__type","url":"modules/_types_.html#queryusersearchargs.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".QueryUserSearchArgs"},{"id":1832,"kind":32,"name":"text","url":"modules/_types_.html#queryusersearchargs.__type-72.text-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserSearchArgs.__type"},{"id":1833,"kind":32,"name":"first","url":"modules/_types_.html#queryusersearchargs.__type-72.first-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserSearchArgs.__type"},{"id":1834,"kind":32,"name":"skip","url":"modules/_types_.html#queryusersearchargs.__type-72.skip-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserSearchArgs.__type"},{"id":1835,"kind":32,"name":"block","url":"modules/_types_.html#queryusersearchargs.__type-72.block-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".QueryUserSearchArgs.__type"},{"id":1836,"kind":4194304,"name":"Query_MetaArgs","url":"modules/_types_.html#query_metaargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1837,"kind":65536,"name":"__type","url":"modules/_types_.html#query_metaargs.__type-74","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Query_MetaArgs"},{"id":1838,"kind":32,"name":"block","url":"modules/_types_.html#query_metaargs.__type-74.block-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Query_MetaArgs.__type"},{"id":1839,"kind":4194304,"name":"Subscription","url":"modules/_types_.html#subscription","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1840,"kind":65536,"name":"__type","url":"modules/_types_.html#subscription.__type-76","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Subscription"},{"id":1841,"kind":32,"name":"__typename","url":"modules/_types_.html#subscription.__type-76.__typename-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1842,"kind":32,"name":"user","url":"modules/_types_.html#subscription.__type-76.user-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1843,"kind":32,"name":"users","url":"modules/_types_.html#subscription.__type-76.users-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1844,"kind":32,"name":"bundle","url":"modules/_types_.html#subscription.__type-76.bundle-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1845,"kind":32,"name":"bundles","url":"modules/_types_.html#subscription.__type-76.bundles-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1846,"kind":32,"name":"factory","url":"modules/_types_.html#subscription.__type-76.factory-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1847,"kind":32,"name":"factories","url":"modules/_types_.html#subscription.__type-76.factories-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1848,"kind":32,"name":"hourData","url":"modules/_types_.html#subscription.__type-76.hourdata-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1849,"kind":32,"name":"hourDatas","url":"modules/_types_.html#subscription.__type-76.hourdatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1850,"kind":32,"name":"dayData","url":"modules/_types_.html#subscription.__type-76.daydata-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1851,"kind":32,"name":"dayDatas","url":"modules/_types_.html#subscription.__type-76.daydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1852,"kind":32,"name":"token","url":"modules/_types_.html#subscription.__type-76.token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1853,"kind":32,"name":"tokens","url":"modules/_types_.html#subscription.__type-76.tokens-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1854,"kind":32,"name":"tokenHourData","url":"modules/_types_.html#subscription.__type-76.tokenhourdata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1855,"kind":32,"name":"tokenHourDatas","url":"modules/_types_.html#subscription.__type-76.tokenhourdatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1856,"kind":32,"name":"tokenDayData","url":"modules/_types_.html#subscription.__type-76.tokendaydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1857,"kind":32,"name":"tokenDayDatas","url":"modules/_types_.html#subscription.__type-76.tokendaydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1858,"kind":32,"name":"pair","url":"modules/_types_.html#subscription.__type-76.pair-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1859,"kind":32,"name":"pairs","url":"modules/_types_.html#subscription.__type-76.pairs-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1860,"kind":32,"name":"pairHourData","url":"modules/_types_.html#subscription.__type-76.pairhourdata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1861,"kind":32,"name":"pairHourDatas","url":"modules/_types_.html#subscription.__type-76.pairhourdatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1862,"kind":32,"name":"pairDayData","url":"modules/_types_.html#subscription.__type-76.pairdaydata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1863,"kind":32,"name":"pairDayDatas","url":"modules/_types_.html#subscription.__type-76.pairdaydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1864,"kind":32,"name":"liquidityPosition","url":"modules/_types_.html#subscription.__type-76.liquidityposition-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1865,"kind":32,"name":"liquidityPositions","url":"modules/_types_.html#subscription.__type-76.liquiditypositions-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1866,"kind":32,"name":"liquidityPositionSnapshot","url":"modules/_types_.html#subscription.__type-76.liquiditypositionsnapshot-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1867,"kind":32,"name":"liquidityPositionSnapshots","url":"modules/_types_.html#subscription.__type-76.liquiditypositionsnapshots-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1868,"kind":32,"name":"transaction","url":"modules/_types_.html#subscription.__type-76.transaction-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1869,"kind":32,"name":"transactions","url":"modules/_types_.html#subscription.__type-76.transactions-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1870,"kind":32,"name":"mint","url":"modules/_types_.html#subscription.__type-76.mint-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1871,"kind":32,"name":"mints","url":"modules/_types_.html#subscription.__type-76.mints-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1872,"kind":32,"name":"burn","url":"modules/_types_.html#subscription.__type-76.burn-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1873,"kind":32,"name":"burns","url":"modules/_types_.html#subscription.__type-76.burns-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1874,"kind":32,"name":"swap","url":"modules/_types_.html#subscription.__type-76.swap-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1875,"kind":32,"name":"swaps","url":"modules/_types_.html#subscription.__type-76.swaps-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1876,"kind":32,"name":"_meta","url":"modules/_types_.html#subscription.__type-76._meta-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription.__type"},{"id":1877,"kind":4194304,"name":"SubscriptionUserArgs","url":"modules/_types_.html#subscriptionuserargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1878,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionuserargs.__type-109","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionUserArgs"},{"id":1879,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionuserargs.__type-109.id-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUserArgs.__type"},{"id":1880,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionuserargs.__type-109.block-76","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUserArgs.__type"},{"id":1881,"kind":4194304,"name":"SubscriptionUsersArgs","url":"modules/_types_.html#subscriptionusersargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1882,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionusersargs.__type-110","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionUsersArgs"},{"id":1883,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionusersargs.__type-110.skip-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1884,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionusersargs.__type-110.first-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1885,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionusersargs.__type-110.orderby-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1886,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionusersargs.__type-110.orderdirection-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1887,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionusersargs.__type-110.where-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1888,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionusersargs.__type-110.block-77","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionUsersArgs.__type"},{"id":1889,"kind":4194304,"name":"SubscriptionBundleArgs","url":"modules/_types_.html#subscriptionbundleargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1890,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionbundleargs.__type-77","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionBundleArgs"},{"id":1891,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionbundleargs.__type-77.id-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundleArgs.__type"},{"id":1892,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionbundleargs.__type-77.block-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundleArgs.__type"},{"id":1893,"kind":4194304,"name":"SubscriptionBundlesArgs","url":"modules/_types_.html#subscriptionbundlesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1894,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionbundlesargs.__type-78","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionBundlesArgs"},{"id":1895,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.skip-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1896,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.first-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1897,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.orderby-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1898,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.orderdirection-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1899,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.where-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1900,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionbundlesargs.__type-78.block-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBundlesArgs.__type"},{"id":1901,"kind":4194304,"name":"SubscriptionFactoryArgs","url":"modules/_types_.html#subscriptionfactoryargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1902,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionfactoryargs.__type-84","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionFactoryArgs"},{"id":1903,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionfactoryargs.__type-84.id-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoryArgs.__type"},{"id":1904,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionfactoryargs.__type-84.block-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoryArgs.__type"},{"id":1905,"kind":4194304,"name":"SubscriptionFactoriesArgs","url":"modules/_types_.html#subscriptionfactoriesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1906,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionFactoriesArgs"},{"id":1907,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.skip-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1908,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.first-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1909,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.orderby-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1910,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.orderdirection-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1911,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.where-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1912,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionfactoriesargs.__type-83.block-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionFactoriesArgs.__type"},{"id":1913,"kind":4194304,"name":"SubscriptionHourDataArgs","url":"modules/_types_.html#subscriptionhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1914,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionhourdataargs.__type-85","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionHourDataArgs"},{"id":1915,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionhourdataargs.__type-85.id-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDataArgs.__type"},{"id":1916,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionhourdataargs.__type-85.block-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDataArgs.__type"},{"id":1917,"kind":4194304,"name":"SubscriptionHourDatasArgs","url":"modules/_types_.html#subscriptionhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1918,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionHourDatasArgs"},{"id":1919,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.skip-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1920,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.first-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1921,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.orderby-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1922,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.orderdirection-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1923,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.where-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1924,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionhourdatasargs.__type-86.block-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionHourDatasArgs.__type"},{"id":1925,"kind":4194304,"name":"SubscriptionDayDataArgs","url":"modules/_types_.html#subscriptiondaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1926,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiondaydataargs.__type-81","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionDayDataArgs"},{"id":1927,"kind":32,"name":"id","url":"modules/_types_.html#subscriptiondaydataargs.__type-81.id-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDataArgs.__type"},{"id":1928,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiondaydataargs.__type-81.block-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDataArgs.__type"},{"id":1929,"kind":4194304,"name":"SubscriptionDayDatasArgs","url":"modules/_types_.html#subscriptiondaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1930,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionDayDatasArgs"},{"id":1931,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.skip-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1932,"kind":32,"name":"first","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.first-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1933,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.orderby-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1934,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.orderdirection-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1935,"kind":32,"name":"where","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.where-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1936,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiondaydatasargs.__type-82.block-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionDayDatasArgs.__type"},{"id":1937,"kind":4194304,"name":"SubscriptionTokenArgs","url":"modules/_types_.html#subscriptiontokenargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1938,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokenargs.__type-101","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokenArgs"},{"id":1939,"kind":32,"name":"id","url":"modules/_types_.html#subscriptiontokenargs.__type-101.id-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenArgs.__type"},{"id":1940,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokenargs.__type-101.block-68","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenArgs.__type"},{"id":1941,"kind":4194304,"name":"SubscriptionTokensArgs","url":"modules/_types_.html#subscriptiontokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1942,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokensargs.__type-106","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokensArgs"},{"id":1943,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptiontokensargs.__type-106.skip-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1944,"kind":32,"name":"first","url":"modules/_types_.html#subscriptiontokensargs.__type-106.first-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1945,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptiontokensargs.__type-106.orderby-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1946,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptiontokensargs.__type-106.orderdirection-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1947,"kind":32,"name":"where","url":"modules/_types_.html#subscriptiontokensargs.__type-106.where-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1948,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokensargs.__type-106.block-73","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokensArgs.__type"},{"id":1949,"kind":4194304,"name":"SubscriptionTokenHourDataArgs","url":"modules/_types_.html#subscriptiontokenhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1950,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokenhourdataargs.__type-104","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokenHourDataArgs"},{"id":1951,"kind":32,"name":"id","url":"modules/_types_.html#subscriptiontokenhourdataargs.__type-104.id-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDataArgs.__type"},{"id":1952,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokenhourdataargs.__type-104.block-71","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDataArgs.__type"},{"id":1953,"kind":4194304,"name":"SubscriptionTokenHourDatasArgs","url":"modules/_types_.html#subscriptiontokenhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1954,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokenHourDatasArgs"},{"id":1955,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.skip-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1956,"kind":32,"name":"first","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.first-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1957,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.orderby-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1958,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.orderdirection-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1959,"kind":32,"name":"where","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.where-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1960,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokenhourdatasargs.__type-105.block-72","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenHourDatasArgs.__type"},{"id":1961,"kind":4194304,"name":"SubscriptionTokenDayDataArgs","url":"modules/_types_.html#subscriptiontokendaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1962,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokendaydataargs.__type-102","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokenDayDataArgs"},{"id":1963,"kind":32,"name":"id","url":"modules/_types_.html#subscriptiontokendaydataargs.__type-102.id-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDataArgs.__type"},{"id":1964,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokendaydataargs.__type-102.block-69","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDataArgs.__type"},{"id":1965,"kind":4194304,"name":"SubscriptionTokenDayDatasArgs","url":"modules/_types_.html#subscriptiontokendaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1966,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTokenDayDatasArgs"},{"id":1967,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.skip-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1968,"kind":32,"name":"first","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.first-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1969,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.orderby-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1970,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.orderdirection-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1971,"kind":32,"name":"where","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.where-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1972,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontokendaydatasargs.__type-103.block-70","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTokenDayDatasArgs.__type"},{"id":1973,"kind":4194304,"name":"SubscriptionPairArgs","url":"modules/_types_.html#subscriptionpairargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1974,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairargs.__type-93","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairArgs"},{"id":1975,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionpairargs.__type-93.id-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairArgs.__type"},{"id":1976,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairargs.__type-93.block-60","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairArgs.__type"},{"id":1977,"kind":4194304,"name":"SubscriptionPairsArgs","url":"modules/_types_.html#subscriptionpairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1978,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairsargs.__type-98","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairsArgs"},{"id":1979,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionpairsargs.__type-98.skip-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1980,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionpairsargs.__type-98.first-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1981,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionpairsargs.__type-98.orderby-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1982,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionpairsargs.__type-98.orderdirection-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1983,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionpairsargs.__type-98.where-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1984,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairsargs.__type-98.block-65","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairsArgs.__type"},{"id":1985,"kind":4194304,"name":"SubscriptionPairHourDataArgs","url":"modules/_types_.html#subscriptionpairhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1986,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairhourdataargs.__type-96","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairHourDataArgs"},{"id":1987,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionpairhourdataargs.__type-96.id-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDataArgs.__type"},{"id":1988,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairhourdataargs.__type-96.block-63","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDataArgs.__type"},{"id":1989,"kind":4194304,"name":"SubscriptionPairHourDatasArgs","url":"modules/_types_.html#subscriptionpairhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1990,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairHourDatasArgs"},{"id":1991,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.skip-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1992,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.first-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1993,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.orderby-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1994,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.orderdirection-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1995,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.where-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1996,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairhourdatasargs.__type-97.block-64","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairHourDatasArgs.__type"},{"id":1997,"kind":4194304,"name":"SubscriptionPairDayDataArgs","url":"modules/_types_.html#subscriptionpairdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":1998,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairdaydataargs.__type-94","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairDayDataArgs"},{"id":1999,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionpairdaydataargs.__type-94.id-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDataArgs.__type"},{"id":2000,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairdaydataargs.__type-94.block-61","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDataArgs.__type"},{"id":2001,"kind":4194304,"name":"SubscriptionPairDayDatasArgs","url":"modules/_types_.html#subscriptionpairdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2002,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionPairDayDatasArgs"},{"id":2003,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.skip-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2004,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.first-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2005,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.orderby-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2006,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.orderdirection-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2007,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.where-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2008,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionpairdaydatasargs.__type-95.block-62","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionPairDayDatasArgs.__type"},{"id":2009,"kind":4194304,"name":"SubscriptionLiquidityPositionArgs","url":"modules/_types_.html#subscriptionliquiditypositionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2010,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionliquiditypositionargs.__type-87","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionLiquidityPositionArgs"},{"id":2011,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionliquiditypositionargs.__type-87.id-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionArgs.__type"},{"id":2012,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionliquiditypositionargs.__type-87.block-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionArgs.__type"},{"id":2013,"kind":4194304,"name":"SubscriptionLiquidityPositionsArgs","url":"modules/_types_.html#subscriptionliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2014,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionLiquidityPositionsArgs"},{"id":2015,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.skip-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2016,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.first-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2017,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.orderby-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2018,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.orderdirection-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2019,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.where-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2020,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionliquiditypositionsargs.__type-90.block-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionsArgs.__type"},{"id":2021,"kind":4194304,"name":"SubscriptionLiquidityPositionSnapshotArgs","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2022,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotargs.__type-88","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionLiquidityPositionSnapshotArgs"},{"id":2023,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotargs.__type-88.id-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotArgs.__type"},{"id":2024,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotargs.__type-88.block-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotArgs.__type"},{"id":2025,"kind":4194304,"name":"SubscriptionLiquidityPositionSnapshotsArgs","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2026,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs"},{"id":2027,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.skip-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2028,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.first-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2029,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.orderby-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2030,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.orderdirection-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2031,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.where-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2032,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionliquiditypositionsnapshotsargs.__type-89.block-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":2033,"kind":4194304,"name":"SubscriptionTransactionArgs","url":"modules/_types_.html#subscriptiontransactionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2034,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontransactionargs.__type-107","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTransactionArgs"},{"id":2035,"kind":32,"name":"id","url":"modules/_types_.html#subscriptiontransactionargs.__type-107.id-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionArgs.__type"},{"id":2036,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontransactionargs.__type-107.block-74","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionArgs.__type"},{"id":2037,"kind":4194304,"name":"SubscriptionTransactionsArgs","url":"modules/_types_.html#subscriptiontransactionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2038,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionTransactionsArgs"},{"id":2039,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.skip-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2040,"kind":32,"name":"first","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.first-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2041,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.orderby-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2042,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.orderdirection-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2043,"kind":32,"name":"where","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.where-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2044,"kind":32,"name":"block","url":"modules/_types_.html#subscriptiontransactionsargs.__type-108.block-75","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionTransactionsArgs.__type"},{"id":2045,"kind":4194304,"name":"SubscriptionMintArgs","url":"modules/_types_.html#subscriptionmintargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2046,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionmintargs.__type-91","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionMintArgs"},{"id":2047,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionmintargs.__type-91.id-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintArgs.__type"},{"id":2048,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionmintargs.__type-91.block-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintArgs.__type"},{"id":2049,"kind":4194304,"name":"SubscriptionMintsArgs","url":"modules/_types_.html#subscriptionmintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2050,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionmintsargs.__type-92","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionMintsArgs"},{"id":2051,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionmintsargs.__type-92.skip-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2052,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionmintsargs.__type-92.first-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2053,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionmintsargs.__type-92.orderby-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2054,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionmintsargs.__type-92.orderdirection-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2055,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionmintsargs.__type-92.where-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2056,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionmintsargs.__type-92.block-59","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionMintsArgs.__type"},{"id":2057,"kind":4194304,"name":"SubscriptionBurnArgs","url":"modules/_types_.html#subscriptionburnargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2058,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionburnargs.__type-79","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionBurnArgs"},{"id":2059,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionburnargs.__type-79.id-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnArgs.__type"},{"id":2060,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionburnargs.__type-79.block-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnArgs.__type"},{"id":2061,"kind":4194304,"name":"SubscriptionBurnsArgs","url":"modules/_types_.html#subscriptionburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2062,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionburnsargs.__type-80","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionBurnsArgs"},{"id":2063,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionburnsargs.__type-80.skip-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2064,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionburnsargs.__type-80.first-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2065,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionburnsargs.__type-80.orderby-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2066,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionburnsargs.__type-80.orderdirection-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2067,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionburnsargs.__type-80.where-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2068,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionburnsargs.__type-80.block-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionBurnsArgs.__type"},{"id":2069,"kind":4194304,"name":"SubscriptionSwapArgs","url":"modules/_types_.html#subscriptionswapargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2070,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionswapargs.__type-99","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionSwapArgs"},{"id":2071,"kind":32,"name":"id","url":"modules/_types_.html#subscriptionswapargs.__type-99.id-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapArgs.__type"},{"id":2072,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionswapargs.__type-99.block-66","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapArgs.__type"},{"id":2073,"kind":4194304,"name":"SubscriptionSwapsArgs","url":"modules/_types_.html#subscriptionswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2074,"kind":65536,"name":"__type","url":"modules/_types_.html#subscriptionswapsargs.__type-100","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".SubscriptionSwapsArgs"},{"id":2075,"kind":32,"name":"skip","url":"modules/_types_.html#subscriptionswapsargs.__type-100.skip-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2076,"kind":32,"name":"first","url":"modules/_types_.html#subscriptionswapsargs.__type-100.first-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2077,"kind":32,"name":"orderBy","url":"modules/_types_.html#subscriptionswapsargs.__type-100.orderby-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2078,"kind":32,"name":"orderDirection","url":"modules/_types_.html#subscriptionswapsargs.__type-100.orderdirection-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2079,"kind":32,"name":"where","url":"modules/_types_.html#subscriptionswapsargs.__type-100.where-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2080,"kind":32,"name":"block","url":"modules/_types_.html#subscriptionswapsargs.__type-100.block-67","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".SubscriptionSwapsArgs.__type"},{"id":2081,"kind":4194304,"name":"Subscription_MetaArgs","url":"modules/_types_.html#subscription_metaargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2082,"kind":65536,"name":"__type","url":"modules/_types_.html#subscription_metaargs.__type-111","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Subscription_MetaArgs"},{"id":2083,"kind":32,"name":"block","url":"modules/_types_.html#subscription_metaargs.__type-111.block-78","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Subscription_MetaArgs.__type"},{"id":2084,"kind":4194304,"name":"Swap","url":"modules/_types_.html#swap-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2085,"kind":65536,"name":"__type","url":"modules/_types_.html#swap-2.__type-112","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Swap"},{"id":2086,"kind":32,"name":"__typename","url":"modules/_types_.html#swap-2.__type-112.__typename-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2087,"kind":32,"name":"id","url":"modules/_types_.html#swap-2.__type-112.id-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2088,"kind":32,"name":"transaction","url":"modules/_types_.html#swap-2.__type-112.transaction-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2089,"kind":32,"name":"timestamp","url":"modules/_types_.html#swap-2.__type-112.timestamp-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2090,"kind":32,"name":"pair","url":"modules/_types_.html#swap-2.__type-112.pair-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2091,"kind":32,"name":"sender","url":"modules/_types_.html#swap-2.__type-112.sender-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2092,"kind":32,"name":"amount0In","url":"modules/_types_.html#swap-2.__type-112.amount0in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2093,"kind":32,"name":"amount1In","url":"modules/_types_.html#swap-2.__type-112.amount1in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2094,"kind":32,"name":"amount0Out","url":"modules/_types_.html#swap-2.__type-112.amount0out","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2095,"kind":32,"name":"amount1Out","url":"modules/_types_.html#swap-2.__type-112.amount1out","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2096,"kind":32,"name":"to","url":"modules/_types_.html#swap-2.__type-112.to-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2097,"kind":32,"name":"logIndex","url":"modules/_types_.html#swap-2.__type-112.logindex-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2098,"kind":32,"name":"amountUSD","url":"modules/_types_.html#swap-2.__type-112.amountusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap.__type"},{"id":2099,"kind":4194304,"name":"Swap_Filter","url":"modules/_types_.html#swap_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2100,"kind":65536,"name":"__type","url":"modules/_types_.html#swap_filter.__type-113","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Swap_Filter"},{"id":2101,"kind":32,"name":"id","url":"modules/_types_.html#swap_filter.__type-113.id-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2102,"kind":32,"name":"id_not","url":"modules/_types_.html#swap_filter.__type-113.id_not-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2103,"kind":32,"name":"id_gt","url":"modules/_types_.html#swap_filter.__type-113.id_gt-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2104,"kind":32,"name":"id_lt","url":"modules/_types_.html#swap_filter.__type-113.id_lt-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2105,"kind":32,"name":"id_gte","url":"modules/_types_.html#swap_filter.__type-113.id_gte-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2106,"kind":32,"name":"id_lte","url":"modules/_types_.html#swap_filter.__type-113.id_lte-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2107,"kind":32,"name":"id_in","url":"modules/_types_.html#swap_filter.__type-113.id_in-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2108,"kind":32,"name":"id_not_in","url":"modules/_types_.html#swap_filter.__type-113.id_not_in-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2109,"kind":32,"name":"transaction","url":"modules/_types_.html#swap_filter.__type-113.transaction-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2110,"kind":32,"name":"transaction_not","url":"modules/_types_.html#swap_filter.__type-113.transaction_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2111,"kind":32,"name":"transaction_gt","url":"modules/_types_.html#swap_filter.__type-113.transaction_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2112,"kind":32,"name":"transaction_lt","url":"modules/_types_.html#swap_filter.__type-113.transaction_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2113,"kind":32,"name":"transaction_gte","url":"modules/_types_.html#swap_filter.__type-113.transaction_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2114,"kind":32,"name":"transaction_lte","url":"modules/_types_.html#swap_filter.__type-113.transaction_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2115,"kind":32,"name":"transaction_in","url":"modules/_types_.html#swap_filter.__type-113.transaction_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2116,"kind":32,"name":"transaction_not_in","url":"modules/_types_.html#swap_filter.__type-113.transaction_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2117,"kind":32,"name":"transaction_contains","url":"modules/_types_.html#swap_filter.__type-113.transaction_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2118,"kind":32,"name":"transaction_not_contains","url":"modules/_types_.html#swap_filter.__type-113.transaction_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2119,"kind":32,"name":"transaction_starts_with","url":"modules/_types_.html#swap_filter.__type-113.transaction_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2120,"kind":32,"name":"transaction_not_starts_with","url":"modules/_types_.html#swap_filter.__type-113.transaction_not_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2121,"kind":32,"name":"transaction_ends_with","url":"modules/_types_.html#swap_filter.__type-113.transaction_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2122,"kind":32,"name":"transaction_not_ends_with","url":"modules/_types_.html#swap_filter.__type-113.transaction_not_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2123,"kind":32,"name":"timestamp","url":"modules/_types_.html#swap_filter.__type-113.timestamp-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2124,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#swap_filter.__type-113.timestamp_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2125,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#swap_filter.__type-113.timestamp_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2126,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#swap_filter.__type-113.timestamp_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2127,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#swap_filter.__type-113.timestamp_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2128,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#swap_filter.__type-113.timestamp_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2129,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#swap_filter.__type-113.timestamp_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2130,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#swap_filter.__type-113.timestamp_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2131,"kind":32,"name":"pair","url":"modules/_types_.html#swap_filter.__type-113.pair-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2132,"kind":32,"name":"pair_not","url":"modules/_types_.html#swap_filter.__type-113.pair_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2133,"kind":32,"name":"pair_gt","url":"modules/_types_.html#swap_filter.__type-113.pair_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2134,"kind":32,"name":"pair_lt","url":"modules/_types_.html#swap_filter.__type-113.pair_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2135,"kind":32,"name":"pair_gte","url":"modules/_types_.html#swap_filter.__type-113.pair_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2136,"kind":32,"name":"pair_lte","url":"modules/_types_.html#swap_filter.__type-113.pair_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2137,"kind":32,"name":"pair_in","url":"modules/_types_.html#swap_filter.__type-113.pair_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2138,"kind":32,"name":"pair_not_in","url":"modules/_types_.html#swap_filter.__type-113.pair_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2139,"kind":32,"name":"pair_contains","url":"modules/_types_.html#swap_filter.__type-113.pair_contains-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2140,"kind":32,"name":"pair_not_contains","url":"modules/_types_.html#swap_filter.__type-113.pair_not_contains-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2141,"kind":32,"name":"pair_starts_with","url":"modules/_types_.html#swap_filter.__type-113.pair_starts_with-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2142,"kind":32,"name":"pair_not_starts_with","url":"modules/_types_.html#swap_filter.__type-113.pair_not_starts_with-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2143,"kind":32,"name":"pair_ends_with","url":"modules/_types_.html#swap_filter.__type-113.pair_ends_with-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2144,"kind":32,"name":"pair_not_ends_with","url":"modules/_types_.html#swap_filter.__type-113.pair_not_ends_with-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2145,"kind":32,"name":"sender","url":"modules/_types_.html#swap_filter.__type-113.sender-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2146,"kind":32,"name":"sender_not","url":"modules/_types_.html#swap_filter.__type-113.sender_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2147,"kind":32,"name":"sender_in","url":"modules/_types_.html#swap_filter.__type-113.sender_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2148,"kind":32,"name":"sender_not_in","url":"modules/_types_.html#swap_filter.__type-113.sender_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2149,"kind":32,"name":"sender_contains","url":"modules/_types_.html#swap_filter.__type-113.sender_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2150,"kind":32,"name":"sender_not_contains","url":"modules/_types_.html#swap_filter.__type-113.sender_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2151,"kind":32,"name":"amount0In","url":"modules/_types_.html#swap_filter.__type-113.amount0in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2152,"kind":32,"name":"amount0In_not","url":"modules/_types_.html#swap_filter.__type-113.amount0in_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2153,"kind":32,"name":"amount0In_gt","url":"modules/_types_.html#swap_filter.__type-113.amount0in_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2154,"kind":32,"name":"amount0In_lt","url":"modules/_types_.html#swap_filter.__type-113.amount0in_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2155,"kind":32,"name":"amount0In_gte","url":"modules/_types_.html#swap_filter.__type-113.amount0in_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2156,"kind":32,"name":"amount0In_lte","url":"modules/_types_.html#swap_filter.__type-113.amount0in_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2157,"kind":32,"name":"amount0In_in","url":"modules/_types_.html#swap_filter.__type-113.amount0in_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2158,"kind":32,"name":"amount0In_not_in","url":"modules/_types_.html#swap_filter.__type-113.amount0in_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2159,"kind":32,"name":"amount1In","url":"modules/_types_.html#swap_filter.__type-113.amount1in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2160,"kind":32,"name":"amount1In_not","url":"modules/_types_.html#swap_filter.__type-113.amount1in_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2161,"kind":32,"name":"amount1In_gt","url":"modules/_types_.html#swap_filter.__type-113.amount1in_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2162,"kind":32,"name":"amount1In_lt","url":"modules/_types_.html#swap_filter.__type-113.amount1in_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2163,"kind":32,"name":"amount1In_gte","url":"modules/_types_.html#swap_filter.__type-113.amount1in_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2164,"kind":32,"name":"amount1In_lte","url":"modules/_types_.html#swap_filter.__type-113.amount1in_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2165,"kind":32,"name":"amount1In_in","url":"modules/_types_.html#swap_filter.__type-113.amount1in_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2166,"kind":32,"name":"amount1In_not_in","url":"modules/_types_.html#swap_filter.__type-113.amount1in_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2167,"kind":32,"name":"amount0Out","url":"modules/_types_.html#swap_filter.__type-113.amount0out-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2168,"kind":32,"name":"amount0Out_not","url":"modules/_types_.html#swap_filter.__type-113.amount0out_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2169,"kind":32,"name":"amount0Out_gt","url":"modules/_types_.html#swap_filter.__type-113.amount0out_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2170,"kind":32,"name":"amount0Out_lt","url":"modules/_types_.html#swap_filter.__type-113.amount0out_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2171,"kind":32,"name":"amount0Out_gte","url":"modules/_types_.html#swap_filter.__type-113.amount0out_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2172,"kind":32,"name":"amount0Out_lte","url":"modules/_types_.html#swap_filter.__type-113.amount0out_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2173,"kind":32,"name":"amount0Out_in","url":"modules/_types_.html#swap_filter.__type-113.amount0out_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2174,"kind":32,"name":"amount0Out_not_in","url":"modules/_types_.html#swap_filter.__type-113.amount0out_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2175,"kind":32,"name":"amount1Out","url":"modules/_types_.html#swap_filter.__type-113.amount1out-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2176,"kind":32,"name":"amount1Out_not","url":"modules/_types_.html#swap_filter.__type-113.amount1out_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2177,"kind":32,"name":"amount1Out_gt","url":"modules/_types_.html#swap_filter.__type-113.amount1out_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2178,"kind":32,"name":"amount1Out_lt","url":"modules/_types_.html#swap_filter.__type-113.amount1out_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2179,"kind":32,"name":"amount1Out_gte","url":"modules/_types_.html#swap_filter.__type-113.amount1out_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2180,"kind":32,"name":"amount1Out_lte","url":"modules/_types_.html#swap_filter.__type-113.amount1out_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2181,"kind":32,"name":"amount1Out_in","url":"modules/_types_.html#swap_filter.__type-113.amount1out_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2182,"kind":32,"name":"amount1Out_not_in","url":"modules/_types_.html#swap_filter.__type-113.amount1out_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2183,"kind":32,"name":"to","url":"modules/_types_.html#swap_filter.__type-113.to-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2184,"kind":32,"name":"to_not","url":"modules/_types_.html#swap_filter.__type-113.to_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2185,"kind":32,"name":"to_in","url":"modules/_types_.html#swap_filter.__type-113.to_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2186,"kind":32,"name":"to_not_in","url":"modules/_types_.html#swap_filter.__type-113.to_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2187,"kind":32,"name":"to_contains","url":"modules/_types_.html#swap_filter.__type-113.to_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2188,"kind":32,"name":"to_not_contains","url":"modules/_types_.html#swap_filter.__type-113.to_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2189,"kind":32,"name":"logIndex","url":"modules/_types_.html#swap_filter.__type-113.logindex-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2190,"kind":32,"name":"logIndex_not","url":"modules/_types_.html#swap_filter.__type-113.logindex_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2191,"kind":32,"name":"logIndex_gt","url":"modules/_types_.html#swap_filter.__type-113.logindex_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2192,"kind":32,"name":"logIndex_lt","url":"modules/_types_.html#swap_filter.__type-113.logindex_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2193,"kind":32,"name":"logIndex_gte","url":"modules/_types_.html#swap_filter.__type-113.logindex_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2194,"kind":32,"name":"logIndex_lte","url":"modules/_types_.html#swap_filter.__type-113.logindex_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2195,"kind":32,"name":"logIndex_in","url":"modules/_types_.html#swap_filter.__type-113.logindex_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2196,"kind":32,"name":"logIndex_not_in","url":"modules/_types_.html#swap_filter.__type-113.logindex_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2197,"kind":32,"name":"amountUSD","url":"modules/_types_.html#swap_filter.__type-113.amountusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2198,"kind":32,"name":"amountUSD_not","url":"modules/_types_.html#swap_filter.__type-113.amountusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2199,"kind":32,"name":"amountUSD_gt","url":"modules/_types_.html#swap_filter.__type-113.amountusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2200,"kind":32,"name":"amountUSD_lt","url":"modules/_types_.html#swap_filter.__type-113.amountusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2201,"kind":32,"name":"amountUSD_gte","url":"modules/_types_.html#swap_filter.__type-113.amountusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2202,"kind":32,"name":"amountUSD_lte","url":"modules/_types_.html#swap_filter.__type-113.amountusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2203,"kind":32,"name":"amountUSD_in","url":"modules/_types_.html#swap_filter.__type-113.amountusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2204,"kind":32,"name":"amountUSD_not_in","url":"modules/_types_.html#swap_filter.__type-113.amountusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Swap_Filter.__type"},{"id":2205,"kind":4194304,"name":"Token","url":"modules/_types_.html#token-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2206,"kind":65536,"name":"__type","url":"modules/_types_.html#token-2.__type-114","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Token"},{"id":2207,"kind":32,"name":"__typename","url":"modules/_types_.html#token-2.__type-114.__typename-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2208,"kind":32,"name":"id","url":"modules/_types_.html#token-2.__type-114.id-59","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2209,"kind":32,"name":"factory","url":"modules/_types_.html#token-2.__type-114.factory-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2210,"kind":32,"name":"symbol","url":"modules/_types_.html#token-2.__type-114.symbol","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2211,"kind":32,"name":"name","url":"modules/_types_.html#token-2.__type-114.name-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2212,"kind":32,"name":"decimals","url":"modules/_types_.html#token-2.__type-114.decimals","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2213,"kind":32,"name":"totalSupply","url":"modules/_types_.html#token-2.__type-114.totalsupply-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2214,"kind":32,"name":"volume","url":"modules/_types_.html#token-2.__type-114.volume","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2215,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#token-2.__type-114.volumeusd-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2216,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#token-2.__type-114.untrackedvolumeusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2217,"kind":32,"name":"txCount","url":"modules/_types_.html#token-2.__type-114.txcount-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2218,"kind":32,"name":"liquidity","url":"modules/_types_.html#token-2.__type-114.liquidity-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2219,"kind":32,"name":"derivedETH","url":"modules/_types_.html#token-2.__type-114.derivedeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2220,"kind":32,"name":"hourData","url":"modules/_types_.html#token-2.__type-114.hourdata-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2221,"kind":32,"name":"dayData","url":"modules/_types_.html#token-2.__type-114.daydata-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2222,"kind":32,"name":"basePairs","url":"modules/_types_.html#token-2.__type-114.basepairs","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2223,"kind":32,"name":"quotePairs","url":"modules/_types_.html#token-2.__type-114.quotepairs","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2224,"kind":32,"name":"basePairsDayData","url":"modules/_types_.html#token-2.__type-114.basepairsdaydata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2225,"kind":32,"name":"quotePairsDayData","url":"modules/_types_.html#token-2.__type-114.quotepairsdaydata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token.__type"},{"id":2226,"kind":4194304,"name":"TokenHourDataArgs","url":"modules/_types_.html#tokenhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2227,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenhourdataargs.__type-121","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenHourDataArgs"},{"id":2228,"kind":32,"name":"skip","url":"modules/_types_.html#tokenhourdataargs.__type-121.skip-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourDataArgs.__type"},{"id":2229,"kind":32,"name":"first","url":"modules/_types_.html#tokenhourdataargs.__type-121.first-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourDataArgs.__type"},{"id":2230,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokenhourdataargs.__type-121.orderby-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourDataArgs.__type"},{"id":2231,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokenhourdataargs.__type-121.orderdirection-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourDataArgs.__type"},{"id":2232,"kind":32,"name":"where","url":"modules/_types_.html#tokenhourdataargs.__type-121.where-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourDataArgs.__type"},{"id":2233,"kind":4194304,"name":"TokenDayDataArgs","url":"modules/_types_.html#tokendaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2234,"kind":65536,"name":"__type","url":"modules/_types_.html#tokendaydataargs.__type-118","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenDayDataArgs"},{"id":2235,"kind":32,"name":"skip","url":"modules/_types_.html#tokendaydataargs.__type-118.skip-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayDataArgs.__type"},{"id":2236,"kind":32,"name":"first","url":"modules/_types_.html#tokendaydataargs.__type-118.first-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayDataArgs.__type"},{"id":2237,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokendaydataargs.__type-118.orderby-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayDataArgs.__type"},{"id":2238,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokendaydataargs.__type-118.orderdirection-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayDataArgs.__type"},{"id":2239,"kind":32,"name":"where","url":"modules/_types_.html#tokendaydataargs.__type-118.where-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayDataArgs.__type"},{"id":2240,"kind":4194304,"name":"TokenBasePairsArgs","url":"modules/_types_.html#tokenbasepairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2241,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenbasepairsargs.__type-115","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenBasePairsArgs"},{"id":2242,"kind":32,"name":"skip","url":"modules/_types_.html#tokenbasepairsargs.__type-115.skip-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsArgs.__type"},{"id":2243,"kind":32,"name":"first","url":"modules/_types_.html#tokenbasepairsargs.__type-115.first-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsArgs.__type"},{"id":2244,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokenbasepairsargs.__type-115.orderby-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsArgs.__type"},{"id":2245,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokenbasepairsargs.__type-115.orderdirection-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsArgs.__type"},{"id":2246,"kind":32,"name":"where","url":"modules/_types_.html#tokenbasepairsargs.__type-115.where-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsArgs.__type"},{"id":2247,"kind":4194304,"name":"TokenQuotePairsArgs","url":"modules/_types_.html#tokenquotepairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2248,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenquotepairsargs.__type-123","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenQuotePairsArgs"},{"id":2249,"kind":32,"name":"skip","url":"modules/_types_.html#tokenquotepairsargs.__type-123.skip-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsArgs.__type"},{"id":2250,"kind":32,"name":"first","url":"modules/_types_.html#tokenquotepairsargs.__type-123.first-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsArgs.__type"},{"id":2251,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokenquotepairsargs.__type-123.orderby-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsArgs.__type"},{"id":2252,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokenquotepairsargs.__type-123.orderdirection-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsArgs.__type"},{"id":2253,"kind":32,"name":"where","url":"modules/_types_.html#tokenquotepairsargs.__type-123.where-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsArgs.__type"},{"id":2254,"kind":4194304,"name":"TokenBasePairsDayDataArgs","url":"modules/_types_.html#tokenbasepairsdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2255,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenBasePairsDayDataArgs"},{"id":2256,"kind":32,"name":"skip","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116.skip-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsDayDataArgs.__type"},{"id":2257,"kind":32,"name":"first","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116.first-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsDayDataArgs.__type"},{"id":2258,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116.orderby-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsDayDataArgs.__type"},{"id":2259,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116.orderdirection-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsDayDataArgs.__type"},{"id":2260,"kind":32,"name":"where","url":"modules/_types_.html#tokenbasepairsdaydataargs.__type-116.where-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenBasePairsDayDataArgs.__type"},{"id":2261,"kind":4194304,"name":"TokenQuotePairsDayDataArgs","url":"modules/_types_.html#tokenquotepairsdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2262,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenQuotePairsDayDataArgs"},{"id":2263,"kind":32,"name":"skip","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124.skip-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsDayDataArgs.__type"},{"id":2264,"kind":32,"name":"first","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124.first-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsDayDataArgs.__type"},{"id":2265,"kind":32,"name":"orderBy","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124.orderby-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsDayDataArgs.__type"},{"id":2266,"kind":32,"name":"orderDirection","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124.orderdirection-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsDayDataArgs.__type"},{"id":2267,"kind":32,"name":"where","url":"modules/_types_.html#tokenquotepairsdaydataargs.__type-124.where-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenQuotePairsDayDataArgs.__type"},{"id":2268,"kind":4194304,"name":"TokenDayData","url":"modules/_types_.html#tokendaydata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2269,"kind":65536,"name":"__type","url":"modules/_types_.html#tokendaydata-2.__type-117","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenDayData"},{"id":2270,"kind":32,"name":"__typename","url":"modules/_types_.html#tokendaydata-2.__type-117.__typename-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2271,"kind":32,"name":"id","url":"modules/_types_.html#tokendaydata-2.__type-117.id-60","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2272,"kind":32,"name":"date","url":"modules/_types_.html#tokendaydata-2.__type-117.date-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2273,"kind":32,"name":"token","url":"modules/_types_.html#tokendaydata-2.__type-117.token-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2274,"kind":32,"name":"volume","url":"modules/_types_.html#tokendaydata-2.__type-117.volume-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2275,"kind":32,"name":"volumeETH","url":"modules/_types_.html#tokendaydata-2.__type-117.volumeeth-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2276,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#tokendaydata-2.__type-117.volumeusd-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2277,"kind":32,"name":"txCount","url":"modules/_types_.html#tokendaydata-2.__type-117.txcount-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2278,"kind":32,"name":"liquidity","url":"modules/_types_.html#tokendaydata-2.__type-117.liquidity-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2279,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#tokendaydata-2.__type-117.liquidityeth-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2280,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#tokendaydata-2.__type-117.liquidityusd-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2281,"kind":32,"name":"priceUSD","url":"modules/_types_.html#tokendaydata-2.__type-117.priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData.__type"},{"id":2282,"kind":4194304,"name":"TokenDayData_Filter","url":"modules/_types_.html#tokendaydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2283,"kind":65536,"name":"__type","url":"modules/_types_.html#tokendaydata_filter.__type-119","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenDayData_Filter"},{"id":2284,"kind":32,"name":"id","url":"modules/_types_.html#tokendaydata_filter.__type-119.id-61","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2285,"kind":32,"name":"id_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_not-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2286,"kind":32,"name":"id_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_gt-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2287,"kind":32,"name":"id_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_lt-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2288,"kind":32,"name":"id_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_gte-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2289,"kind":32,"name":"id_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_lte-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2290,"kind":32,"name":"id_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_in-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2291,"kind":32,"name":"id_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.id_not_in-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2292,"kind":32,"name":"date","url":"modules/_types_.html#tokendaydata_filter.__type-119.date-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2293,"kind":32,"name":"date_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2294,"kind":32,"name":"date_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2295,"kind":32,"name":"date_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2296,"kind":32,"name":"date_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2297,"kind":32,"name":"date_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2298,"kind":32,"name":"date_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2299,"kind":32,"name":"date_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.date_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2300,"kind":32,"name":"token","url":"modules/_types_.html#tokendaydata_filter.__type-119.token-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2301,"kind":32,"name":"token_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2302,"kind":32,"name":"token_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2303,"kind":32,"name":"token_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2304,"kind":32,"name":"token_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2305,"kind":32,"name":"token_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2306,"kind":32,"name":"token_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2307,"kind":32,"name":"token_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2308,"kind":32,"name":"token_contains","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2309,"kind":32,"name":"token_not_contains","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2310,"kind":32,"name":"token_starts_with","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2311,"kind":32,"name":"token_not_starts_with","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2312,"kind":32,"name":"token_ends_with","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2313,"kind":32,"name":"token_not_ends_with","url":"modules/_types_.html#tokendaydata_filter.__type-119.token_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2314,"kind":32,"name":"volume","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2315,"kind":32,"name":"volume_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2316,"kind":32,"name":"volume_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2317,"kind":32,"name":"volume_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2318,"kind":32,"name":"volume_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2319,"kind":32,"name":"volume_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2320,"kind":32,"name":"volume_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2321,"kind":32,"name":"volume_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volume_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2322,"kind":32,"name":"volumeETH","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2323,"kind":32,"name":"volumeETH_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2324,"kind":32,"name":"volumeETH_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2325,"kind":32,"name":"volumeETH_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2326,"kind":32,"name":"volumeETH_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2327,"kind":32,"name":"volumeETH_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2328,"kind":32,"name":"volumeETH_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2329,"kind":32,"name":"volumeETH_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeeth_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2330,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2331,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2332,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2333,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2334,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2335,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2336,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2337,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.volumeusd_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2338,"kind":32,"name":"txCount","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2339,"kind":32,"name":"txCount_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2340,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2341,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2342,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2343,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2344,"kind":32,"name":"txCount_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2345,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.txcount_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2346,"kind":32,"name":"liquidity","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2347,"kind":32,"name":"liquidity_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2348,"kind":32,"name":"liquidity_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2349,"kind":32,"name":"liquidity_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2350,"kind":32,"name":"liquidity_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2351,"kind":32,"name":"liquidity_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2352,"kind":32,"name":"liquidity_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2353,"kind":32,"name":"liquidity_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidity_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2354,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2355,"kind":32,"name":"liquidityETH_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2356,"kind":32,"name":"liquidityETH_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2357,"kind":32,"name":"liquidityETH_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2358,"kind":32,"name":"liquidityETH_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2359,"kind":32,"name":"liquidityETH_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2360,"kind":32,"name":"liquidityETH_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2361,"kind":32,"name":"liquidityETH_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityeth_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2362,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2363,"kind":32,"name":"liquidityUSD_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2364,"kind":32,"name":"liquidityUSD_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2365,"kind":32,"name":"liquidityUSD_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2366,"kind":32,"name":"liquidityUSD_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2367,"kind":32,"name":"liquidityUSD_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2368,"kind":32,"name":"liquidityUSD_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2369,"kind":32,"name":"liquidityUSD_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.liquidityusd_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2370,"kind":32,"name":"priceUSD","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2371,"kind":32,"name":"priceUSD_not","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2372,"kind":32,"name":"priceUSD_gt","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2373,"kind":32,"name":"priceUSD_lt","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2374,"kind":32,"name":"priceUSD_gte","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2375,"kind":32,"name":"priceUSD_lte","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2376,"kind":32,"name":"priceUSD_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2377,"kind":32,"name":"priceUSD_not_in","url":"modules/_types_.html#tokendaydata_filter.__type-119.priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenDayData_Filter.__type"},{"id":2378,"kind":4194304,"name":"TokenHourData","url":"modules/_types_.html#tokenhourdata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2379,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenhourdata-2.__type-120","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenHourData"},{"id":2380,"kind":32,"name":"__typename","url":"modules/_types_.html#tokenhourdata-2.__type-120.__typename-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2381,"kind":32,"name":"id","url":"modules/_types_.html#tokenhourdata-2.__type-120.id-62","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2382,"kind":32,"name":"date","url":"modules/_types_.html#tokenhourdata-2.__type-120.date-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2383,"kind":32,"name":"token","url":"modules/_types_.html#tokenhourdata-2.__type-120.token-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2384,"kind":32,"name":"volume","url":"modules/_types_.html#tokenhourdata-2.__type-120.volume-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2385,"kind":32,"name":"volumeETH","url":"modules/_types_.html#tokenhourdata-2.__type-120.volumeeth-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2386,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#tokenhourdata-2.__type-120.volumeusd-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2387,"kind":32,"name":"txCount","url":"modules/_types_.html#tokenhourdata-2.__type-120.txcount-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2388,"kind":32,"name":"liquidity","url":"modules/_types_.html#tokenhourdata-2.__type-120.liquidity-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2389,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#tokenhourdata-2.__type-120.liquidityeth-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2390,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#tokenhourdata-2.__type-120.liquidityusd-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2391,"kind":32,"name":"priceUSD","url":"modules/_types_.html#tokenhourdata-2.__type-120.priceusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData.__type"},{"id":2392,"kind":4194304,"name":"TokenHourData_Filter","url":"modules/_types_.html#tokenhourdata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2393,"kind":65536,"name":"__type","url":"modules/_types_.html#tokenhourdata_filter.__type-122","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TokenHourData_Filter"},{"id":2394,"kind":32,"name":"id","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id-63","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2395,"kind":32,"name":"id_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_not-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2396,"kind":32,"name":"id_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_gt-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2397,"kind":32,"name":"id_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_lt-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2398,"kind":32,"name":"id_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_gte-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2399,"kind":32,"name":"id_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_lte-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2400,"kind":32,"name":"id_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_in-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2401,"kind":32,"name":"id_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.id_not_in-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2402,"kind":32,"name":"date","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2403,"kind":32,"name":"date_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2404,"kind":32,"name":"date_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2405,"kind":32,"name":"date_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2406,"kind":32,"name":"date_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2407,"kind":32,"name":"date_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2408,"kind":32,"name":"date_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2409,"kind":32,"name":"date_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.date_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2410,"kind":32,"name":"token","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2411,"kind":32,"name":"token_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2412,"kind":32,"name":"token_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2413,"kind":32,"name":"token_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2414,"kind":32,"name":"token_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2415,"kind":32,"name":"token_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2416,"kind":32,"name":"token_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2417,"kind":32,"name":"token_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2418,"kind":32,"name":"token_contains","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2419,"kind":32,"name":"token_not_contains","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2420,"kind":32,"name":"token_starts_with","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2421,"kind":32,"name":"token_not_starts_with","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2422,"kind":32,"name":"token_ends_with","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2423,"kind":32,"name":"token_not_ends_with","url":"modules/_types_.html#tokenhourdata_filter.__type-122.token_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2424,"kind":32,"name":"volume","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2425,"kind":32,"name":"volume_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2426,"kind":32,"name":"volume_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2427,"kind":32,"name":"volume_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2428,"kind":32,"name":"volume_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2429,"kind":32,"name":"volume_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2430,"kind":32,"name":"volume_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2431,"kind":32,"name":"volume_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volume_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2432,"kind":32,"name":"volumeETH","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2433,"kind":32,"name":"volumeETH_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2434,"kind":32,"name":"volumeETH_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2435,"kind":32,"name":"volumeETH_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2436,"kind":32,"name":"volumeETH_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2437,"kind":32,"name":"volumeETH_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2438,"kind":32,"name":"volumeETH_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2439,"kind":32,"name":"volumeETH_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeeth_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2440,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2441,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_not-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2442,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_gt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2443,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_lt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2444,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_gte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2445,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_lte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2446,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2447,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.volumeusd_not_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2448,"kind":32,"name":"txCount","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2449,"kind":32,"name":"txCount_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_not-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2450,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_gt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2451,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_lt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2452,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_gte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2453,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_lte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2454,"kind":32,"name":"txCount_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2455,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.txcount_not_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2456,"kind":32,"name":"liquidity","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2457,"kind":32,"name":"liquidity_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2458,"kind":32,"name":"liquidity_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2459,"kind":32,"name":"liquidity_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2460,"kind":32,"name":"liquidity_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2461,"kind":32,"name":"liquidity_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2462,"kind":32,"name":"liquidity_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2463,"kind":32,"name":"liquidity_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidity_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2464,"kind":32,"name":"liquidityETH","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2465,"kind":32,"name":"liquidityETH_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2466,"kind":32,"name":"liquidityETH_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2467,"kind":32,"name":"liquidityETH_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2468,"kind":32,"name":"liquidityETH_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2469,"kind":32,"name":"liquidityETH_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2470,"kind":32,"name":"liquidityETH_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2471,"kind":32,"name":"liquidityETH_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityeth_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2472,"kind":32,"name":"liquidityUSD","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2473,"kind":32,"name":"liquidityUSD_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2474,"kind":32,"name":"liquidityUSD_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2475,"kind":32,"name":"liquidityUSD_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2476,"kind":32,"name":"liquidityUSD_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2477,"kind":32,"name":"liquidityUSD_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2478,"kind":32,"name":"liquidityUSD_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2479,"kind":32,"name":"liquidityUSD_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.liquidityusd_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2480,"kind":32,"name":"priceUSD","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2481,"kind":32,"name":"priceUSD_not","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2482,"kind":32,"name":"priceUSD_gt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2483,"kind":32,"name":"priceUSD_lt","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2484,"kind":32,"name":"priceUSD_gte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2485,"kind":32,"name":"priceUSD_lte","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2486,"kind":32,"name":"priceUSD_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2487,"kind":32,"name":"priceUSD_not_in","url":"modules/_types_.html#tokenhourdata_filter.__type-122.priceusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TokenHourData_Filter.__type"},{"id":2488,"kind":4194304,"name":"Token_Filter","url":"modules/_types_.html#token_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2489,"kind":65536,"name":"__type","url":"modules/_types_.html#token_filter.__type-125","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Token_Filter"},{"id":2490,"kind":32,"name":"id","url":"modules/_types_.html#token_filter.__type-125.id-64","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2491,"kind":32,"name":"id_not","url":"modules/_types_.html#token_filter.__type-125.id_not-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2492,"kind":32,"name":"id_gt","url":"modules/_types_.html#token_filter.__type-125.id_gt-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2493,"kind":32,"name":"id_lt","url":"modules/_types_.html#token_filter.__type-125.id_lt-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2494,"kind":32,"name":"id_gte","url":"modules/_types_.html#token_filter.__type-125.id_gte-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2495,"kind":32,"name":"id_lte","url":"modules/_types_.html#token_filter.__type-125.id_lte-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2496,"kind":32,"name":"id_in","url":"modules/_types_.html#token_filter.__type-125.id_in-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2497,"kind":32,"name":"id_not_in","url":"modules/_types_.html#token_filter.__type-125.id_not_in-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2498,"kind":32,"name":"factory","url":"modules/_types_.html#token_filter.__type-125.factory-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2499,"kind":32,"name":"factory_not","url":"modules/_types_.html#token_filter.__type-125.factory_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2500,"kind":32,"name":"factory_gt","url":"modules/_types_.html#token_filter.__type-125.factory_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2501,"kind":32,"name":"factory_lt","url":"modules/_types_.html#token_filter.__type-125.factory_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2502,"kind":32,"name":"factory_gte","url":"modules/_types_.html#token_filter.__type-125.factory_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2503,"kind":32,"name":"factory_lte","url":"modules/_types_.html#token_filter.__type-125.factory_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2504,"kind":32,"name":"factory_in","url":"modules/_types_.html#token_filter.__type-125.factory_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2505,"kind":32,"name":"factory_not_in","url":"modules/_types_.html#token_filter.__type-125.factory_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2506,"kind":32,"name":"factory_contains","url":"modules/_types_.html#token_filter.__type-125.factory_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2507,"kind":32,"name":"factory_not_contains","url":"modules/_types_.html#token_filter.__type-125.factory_not_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2508,"kind":32,"name":"factory_starts_with","url":"modules/_types_.html#token_filter.__type-125.factory_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2509,"kind":32,"name":"factory_not_starts_with","url":"modules/_types_.html#token_filter.__type-125.factory_not_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2510,"kind":32,"name":"factory_ends_with","url":"modules/_types_.html#token_filter.__type-125.factory_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2511,"kind":32,"name":"factory_not_ends_with","url":"modules/_types_.html#token_filter.__type-125.factory_not_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2512,"kind":32,"name":"symbol","url":"modules/_types_.html#token_filter.__type-125.symbol-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2513,"kind":32,"name":"symbol_not","url":"modules/_types_.html#token_filter.__type-125.symbol_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2514,"kind":32,"name":"symbol_gt","url":"modules/_types_.html#token_filter.__type-125.symbol_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2515,"kind":32,"name":"symbol_lt","url":"modules/_types_.html#token_filter.__type-125.symbol_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2516,"kind":32,"name":"symbol_gte","url":"modules/_types_.html#token_filter.__type-125.symbol_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2517,"kind":32,"name":"symbol_lte","url":"modules/_types_.html#token_filter.__type-125.symbol_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2518,"kind":32,"name":"symbol_in","url":"modules/_types_.html#token_filter.__type-125.symbol_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2519,"kind":32,"name":"symbol_not_in","url":"modules/_types_.html#token_filter.__type-125.symbol_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2520,"kind":32,"name":"symbol_contains","url":"modules/_types_.html#token_filter.__type-125.symbol_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2521,"kind":32,"name":"symbol_not_contains","url":"modules/_types_.html#token_filter.__type-125.symbol_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2522,"kind":32,"name":"symbol_starts_with","url":"modules/_types_.html#token_filter.__type-125.symbol_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2523,"kind":32,"name":"symbol_not_starts_with","url":"modules/_types_.html#token_filter.__type-125.symbol_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2524,"kind":32,"name":"symbol_ends_with","url":"modules/_types_.html#token_filter.__type-125.symbol_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2525,"kind":32,"name":"symbol_not_ends_with","url":"modules/_types_.html#token_filter.__type-125.symbol_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2526,"kind":32,"name":"name","url":"modules/_types_.html#token_filter.__type-125.name-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2527,"kind":32,"name":"name_not","url":"modules/_types_.html#token_filter.__type-125.name_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2528,"kind":32,"name":"name_gt","url":"modules/_types_.html#token_filter.__type-125.name_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2529,"kind":32,"name":"name_lt","url":"modules/_types_.html#token_filter.__type-125.name_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2530,"kind":32,"name":"name_gte","url":"modules/_types_.html#token_filter.__type-125.name_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2531,"kind":32,"name":"name_lte","url":"modules/_types_.html#token_filter.__type-125.name_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2532,"kind":32,"name":"name_in","url":"modules/_types_.html#token_filter.__type-125.name_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2533,"kind":32,"name":"name_not_in","url":"modules/_types_.html#token_filter.__type-125.name_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2534,"kind":32,"name":"name_contains","url":"modules/_types_.html#token_filter.__type-125.name_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2535,"kind":32,"name":"name_not_contains","url":"modules/_types_.html#token_filter.__type-125.name_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2536,"kind":32,"name":"name_starts_with","url":"modules/_types_.html#token_filter.__type-125.name_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2537,"kind":32,"name":"name_not_starts_with","url":"modules/_types_.html#token_filter.__type-125.name_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2538,"kind":32,"name":"name_ends_with","url":"modules/_types_.html#token_filter.__type-125.name_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2539,"kind":32,"name":"name_not_ends_with","url":"modules/_types_.html#token_filter.__type-125.name_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2540,"kind":32,"name":"decimals","url":"modules/_types_.html#token_filter.__type-125.decimals-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2541,"kind":32,"name":"decimals_not","url":"modules/_types_.html#token_filter.__type-125.decimals_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2542,"kind":32,"name":"decimals_gt","url":"modules/_types_.html#token_filter.__type-125.decimals_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2543,"kind":32,"name":"decimals_lt","url":"modules/_types_.html#token_filter.__type-125.decimals_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2544,"kind":32,"name":"decimals_gte","url":"modules/_types_.html#token_filter.__type-125.decimals_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2545,"kind":32,"name":"decimals_lte","url":"modules/_types_.html#token_filter.__type-125.decimals_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2546,"kind":32,"name":"decimals_in","url":"modules/_types_.html#token_filter.__type-125.decimals_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2547,"kind":32,"name":"decimals_not_in","url":"modules/_types_.html#token_filter.__type-125.decimals_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2548,"kind":32,"name":"totalSupply","url":"modules/_types_.html#token_filter.__type-125.totalsupply-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2549,"kind":32,"name":"totalSupply_not","url":"modules/_types_.html#token_filter.__type-125.totalsupply_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2550,"kind":32,"name":"totalSupply_gt","url":"modules/_types_.html#token_filter.__type-125.totalsupply_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2551,"kind":32,"name":"totalSupply_lt","url":"modules/_types_.html#token_filter.__type-125.totalsupply_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2552,"kind":32,"name":"totalSupply_gte","url":"modules/_types_.html#token_filter.__type-125.totalsupply_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2553,"kind":32,"name":"totalSupply_lte","url":"modules/_types_.html#token_filter.__type-125.totalsupply_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2554,"kind":32,"name":"totalSupply_in","url":"modules/_types_.html#token_filter.__type-125.totalsupply_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2555,"kind":32,"name":"totalSupply_not_in","url":"modules/_types_.html#token_filter.__type-125.totalsupply_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2556,"kind":32,"name":"volume","url":"modules/_types_.html#token_filter.__type-125.volume-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2557,"kind":32,"name":"volume_not","url":"modules/_types_.html#token_filter.__type-125.volume_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2558,"kind":32,"name":"volume_gt","url":"modules/_types_.html#token_filter.__type-125.volume_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2559,"kind":32,"name":"volume_lt","url":"modules/_types_.html#token_filter.__type-125.volume_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2560,"kind":32,"name":"volume_gte","url":"modules/_types_.html#token_filter.__type-125.volume_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2561,"kind":32,"name":"volume_lte","url":"modules/_types_.html#token_filter.__type-125.volume_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2562,"kind":32,"name":"volume_in","url":"modules/_types_.html#token_filter.__type-125.volume_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2563,"kind":32,"name":"volume_not_in","url":"modules/_types_.html#token_filter.__type-125.volume_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2564,"kind":32,"name":"volumeUSD","url":"modules/_types_.html#token_filter.__type-125.volumeusd-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2565,"kind":32,"name":"volumeUSD_not","url":"modules/_types_.html#token_filter.__type-125.volumeusd_not-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2566,"kind":32,"name":"volumeUSD_gt","url":"modules/_types_.html#token_filter.__type-125.volumeusd_gt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2567,"kind":32,"name":"volumeUSD_lt","url":"modules/_types_.html#token_filter.__type-125.volumeusd_lt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2568,"kind":32,"name":"volumeUSD_gte","url":"modules/_types_.html#token_filter.__type-125.volumeusd_gte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2569,"kind":32,"name":"volumeUSD_lte","url":"modules/_types_.html#token_filter.__type-125.volumeusd_lte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2570,"kind":32,"name":"volumeUSD_in","url":"modules/_types_.html#token_filter.__type-125.volumeusd_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2571,"kind":32,"name":"volumeUSD_not_in","url":"modules/_types_.html#token_filter.__type-125.volumeusd_not_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2572,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2573,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2574,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2575,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2576,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2577,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2578,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2579,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_types_.html#token_filter.__type-125.untrackedvolumeusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2580,"kind":32,"name":"txCount","url":"modules/_types_.html#token_filter.__type-125.txcount-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2581,"kind":32,"name":"txCount_not","url":"modules/_types_.html#token_filter.__type-125.txcount_not-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2582,"kind":32,"name":"txCount_gt","url":"modules/_types_.html#token_filter.__type-125.txcount_gt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2583,"kind":32,"name":"txCount_lt","url":"modules/_types_.html#token_filter.__type-125.txcount_lt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2584,"kind":32,"name":"txCount_gte","url":"modules/_types_.html#token_filter.__type-125.txcount_gte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2585,"kind":32,"name":"txCount_lte","url":"modules/_types_.html#token_filter.__type-125.txcount_lte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2586,"kind":32,"name":"txCount_in","url":"modules/_types_.html#token_filter.__type-125.txcount_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2587,"kind":32,"name":"txCount_not_in","url":"modules/_types_.html#token_filter.__type-125.txcount_not_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2588,"kind":32,"name":"liquidity","url":"modules/_types_.html#token_filter.__type-125.liquidity-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2589,"kind":32,"name":"liquidity_not","url":"modules/_types_.html#token_filter.__type-125.liquidity_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2590,"kind":32,"name":"liquidity_gt","url":"modules/_types_.html#token_filter.__type-125.liquidity_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2591,"kind":32,"name":"liquidity_lt","url":"modules/_types_.html#token_filter.__type-125.liquidity_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2592,"kind":32,"name":"liquidity_gte","url":"modules/_types_.html#token_filter.__type-125.liquidity_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2593,"kind":32,"name":"liquidity_lte","url":"modules/_types_.html#token_filter.__type-125.liquidity_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2594,"kind":32,"name":"liquidity_in","url":"modules/_types_.html#token_filter.__type-125.liquidity_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2595,"kind":32,"name":"liquidity_not_in","url":"modules/_types_.html#token_filter.__type-125.liquidity_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2596,"kind":32,"name":"derivedETH","url":"modules/_types_.html#token_filter.__type-125.derivedeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2597,"kind":32,"name":"derivedETH_not","url":"modules/_types_.html#token_filter.__type-125.derivedeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2598,"kind":32,"name":"derivedETH_gt","url":"modules/_types_.html#token_filter.__type-125.derivedeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2599,"kind":32,"name":"derivedETH_lt","url":"modules/_types_.html#token_filter.__type-125.derivedeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2600,"kind":32,"name":"derivedETH_gte","url":"modules/_types_.html#token_filter.__type-125.derivedeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2601,"kind":32,"name":"derivedETH_lte","url":"modules/_types_.html#token_filter.__type-125.derivedeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2602,"kind":32,"name":"derivedETH_in","url":"modules/_types_.html#token_filter.__type-125.derivedeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2603,"kind":32,"name":"derivedETH_not_in","url":"modules/_types_.html#token_filter.__type-125.derivedeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Token_Filter.__type"},{"id":2604,"kind":4194304,"name":"Transaction","url":"modules/_types_.html#transaction-8","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2605,"kind":65536,"name":"__type","url":"modules/_types_.html#transaction-8.__type-126","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Transaction"},{"id":2606,"kind":32,"name":"__typename","url":"modules/_types_.html#transaction-8.__type-126.__typename-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2607,"kind":32,"name":"id","url":"modules/_types_.html#transaction-8.__type-126.id-65","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2608,"kind":32,"name":"blockNumber","url":"modules/_types_.html#transaction-8.__type-126.blocknumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2609,"kind":32,"name":"timestamp","url":"modules/_types_.html#transaction-8.__type-126.timestamp-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2610,"kind":32,"name":"mints","url":"modules/_types_.html#transaction-8.__type-126.mints-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2611,"kind":32,"name":"burns","url":"modules/_types_.html#transaction-8.__type-126.burns-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2612,"kind":32,"name":"swaps","url":"modules/_types_.html#transaction-8.__type-126.swaps-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction.__type"},{"id":2613,"kind":4194304,"name":"TransactionMintsArgs","url":"modules/_types_.html#transactionmintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2614,"kind":65536,"name":"__type","url":"modules/_types_.html#transactionmintsargs.__type-128","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TransactionMintsArgs"},{"id":2615,"kind":32,"name":"skip","url":"modules/_types_.html#transactionmintsargs.__type-128.skip-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionMintsArgs.__type"},{"id":2616,"kind":32,"name":"first","url":"modules/_types_.html#transactionmintsargs.__type-128.first-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionMintsArgs.__type"},{"id":2617,"kind":32,"name":"orderBy","url":"modules/_types_.html#transactionmintsargs.__type-128.orderby-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionMintsArgs.__type"},{"id":2618,"kind":32,"name":"orderDirection","url":"modules/_types_.html#transactionmintsargs.__type-128.orderdirection-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionMintsArgs.__type"},{"id":2619,"kind":32,"name":"where","url":"modules/_types_.html#transactionmintsargs.__type-128.where-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionMintsArgs.__type"},{"id":2620,"kind":4194304,"name":"TransactionBurnsArgs","url":"modules/_types_.html#transactionburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2621,"kind":65536,"name":"__type","url":"modules/_types_.html#transactionburnsargs.__type-127","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TransactionBurnsArgs"},{"id":2622,"kind":32,"name":"skip","url":"modules/_types_.html#transactionburnsargs.__type-127.skip-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionBurnsArgs.__type"},{"id":2623,"kind":32,"name":"first","url":"modules/_types_.html#transactionburnsargs.__type-127.first-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionBurnsArgs.__type"},{"id":2624,"kind":32,"name":"orderBy","url":"modules/_types_.html#transactionburnsargs.__type-127.orderby-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionBurnsArgs.__type"},{"id":2625,"kind":32,"name":"orderDirection","url":"modules/_types_.html#transactionburnsargs.__type-127.orderdirection-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionBurnsArgs.__type"},{"id":2626,"kind":32,"name":"where","url":"modules/_types_.html#transactionburnsargs.__type-127.where-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionBurnsArgs.__type"},{"id":2627,"kind":4194304,"name":"TransactionSwapsArgs","url":"modules/_types_.html#transactionswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2628,"kind":65536,"name":"__type","url":"modules/_types_.html#transactionswapsargs.__type-129","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".TransactionSwapsArgs"},{"id":2629,"kind":32,"name":"skip","url":"modules/_types_.html#transactionswapsargs.__type-129.skip-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionSwapsArgs.__type"},{"id":2630,"kind":32,"name":"first","url":"modules/_types_.html#transactionswapsargs.__type-129.first-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionSwapsArgs.__type"},{"id":2631,"kind":32,"name":"orderBy","url":"modules/_types_.html#transactionswapsargs.__type-129.orderby-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionSwapsArgs.__type"},{"id":2632,"kind":32,"name":"orderDirection","url":"modules/_types_.html#transactionswapsargs.__type-129.orderdirection-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionSwapsArgs.__type"},{"id":2633,"kind":32,"name":"where","url":"modules/_types_.html#transactionswapsargs.__type-129.where-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".TransactionSwapsArgs.__type"},{"id":2634,"kind":4194304,"name":"Transaction_Filter","url":"modules/_types_.html#transaction_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2635,"kind":65536,"name":"__type","url":"modules/_types_.html#transaction_filter.__type-130","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".Transaction_Filter"},{"id":2636,"kind":32,"name":"id","url":"modules/_types_.html#transaction_filter.__type-130.id-66","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2637,"kind":32,"name":"id_not","url":"modules/_types_.html#transaction_filter.__type-130.id_not-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2638,"kind":32,"name":"id_gt","url":"modules/_types_.html#transaction_filter.__type-130.id_gt-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2639,"kind":32,"name":"id_lt","url":"modules/_types_.html#transaction_filter.__type-130.id_lt-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2640,"kind":32,"name":"id_gte","url":"modules/_types_.html#transaction_filter.__type-130.id_gte-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2641,"kind":32,"name":"id_lte","url":"modules/_types_.html#transaction_filter.__type-130.id_lte-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2642,"kind":32,"name":"id_in","url":"modules/_types_.html#transaction_filter.__type-130.id_in-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2643,"kind":32,"name":"id_not_in","url":"modules/_types_.html#transaction_filter.__type-130.id_not_in-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2644,"kind":32,"name":"blockNumber","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2645,"kind":32,"name":"blockNumber_not","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2646,"kind":32,"name":"blockNumber_gt","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2647,"kind":32,"name":"blockNumber_lt","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2648,"kind":32,"name":"blockNumber_gte","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2649,"kind":32,"name":"blockNumber_lte","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2650,"kind":32,"name":"blockNumber_in","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2651,"kind":32,"name":"blockNumber_not_in","url":"modules/_types_.html#transaction_filter.__type-130.blocknumber_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2652,"kind":32,"name":"timestamp","url":"modules/_types_.html#transaction_filter.__type-130.timestamp-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2653,"kind":32,"name":"timestamp_not","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2654,"kind":32,"name":"timestamp_gt","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2655,"kind":32,"name":"timestamp_lt","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2656,"kind":32,"name":"timestamp_gte","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2657,"kind":32,"name":"timestamp_lte","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2658,"kind":32,"name":"timestamp_in","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2659,"kind":32,"name":"timestamp_not_in","url":"modules/_types_.html#transaction_filter.__type-130.timestamp_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2660,"kind":32,"name":"mints","url":"modules/_types_.html#transaction_filter.__type-130.mints-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2661,"kind":32,"name":"mints_not","url":"modules/_types_.html#transaction_filter.__type-130.mints_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2662,"kind":32,"name":"mints_contains","url":"modules/_types_.html#transaction_filter.__type-130.mints_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2663,"kind":32,"name":"mints_not_contains","url":"modules/_types_.html#transaction_filter.__type-130.mints_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2664,"kind":32,"name":"burns","url":"modules/_types_.html#transaction_filter.__type-130.burns-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2665,"kind":32,"name":"burns_not","url":"modules/_types_.html#transaction_filter.__type-130.burns_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2666,"kind":32,"name":"burns_contains","url":"modules/_types_.html#transaction_filter.__type-130.burns_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2667,"kind":32,"name":"burns_not_contains","url":"modules/_types_.html#transaction_filter.__type-130.burns_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2668,"kind":32,"name":"swaps","url":"modules/_types_.html#transaction_filter.__type-130.swaps-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2669,"kind":32,"name":"swaps_not","url":"modules/_types_.html#transaction_filter.__type-130.swaps_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2670,"kind":32,"name":"swaps_contains","url":"modules/_types_.html#transaction_filter.__type-130.swaps_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2671,"kind":32,"name":"swaps_not_contains","url":"modules/_types_.html#transaction_filter.__type-130.swaps_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".Transaction_Filter.__type"},{"id":2672,"kind":4194304,"name":"User","url":"modules/_types_.html#user-6","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2673,"kind":65536,"name":"__type","url":"modules/_types_.html#user-6.__type-131","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".User"},{"id":2674,"kind":32,"name":"__typename","url":"modules/_types_.html#user-6.__type-131.__typename-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User.__type"},{"id":2675,"kind":32,"name":"id","url":"modules/_types_.html#user-6.__type-131.id-67","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User.__type"},{"id":2676,"kind":32,"name":"liquidityPositions","url":"modules/_types_.html#user-6.__type-131.liquiditypositions-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User.__type"},{"id":2677,"kind":4194304,"name":"UserLiquidityPositionsArgs","url":"modules/_types_.html#userliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2678,"kind":65536,"name":"__type","url":"modules/_types_.html#userliquiditypositionsargs.__type-132","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".UserLiquidityPositionsArgs"},{"id":2679,"kind":32,"name":"skip","url":"modules/_types_.html#userliquiditypositionsargs.__type-132.skip-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".UserLiquidityPositionsArgs.__type"},{"id":2680,"kind":32,"name":"first","url":"modules/_types_.html#userliquiditypositionsargs.__type-132.first-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".UserLiquidityPositionsArgs.__type"},{"id":2681,"kind":32,"name":"orderBy","url":"modules/_types_.html#userliquiditypositionsargs.__type-132.orderby-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".UserLiquidityPositionsArgs.__type"},{"id":2682,"kind":32,"name":"orderDirection","url":"modules/_types_.html#userliquiditypositionsargs.__type-132.orderdirection-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".UserLiquidityPositionsArgs.__type"},{"id":2683,"kind":32,"name":"where","url":"modules/_types_.html#userliquiditypositionsargs.__type-132.where-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".UserLiquidityPositionsArgs.__type"},{"id":2684,"kind":4194304,"name":"User_Filter","url":"modules/_types_.html#user_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2685,"kind":65536,"name":"__type","url":"modules/_types_.html#user_filter.__type-133","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\".User_Filter"},{"id":2686,"kind":32,"name":"id","url":"modules/_types_.html#user_filter.__type-133.id-68","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2687,"kind":32,"name":"id_not","url":"modules/_types_.html#user_filter.__type-133.id_not-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2688,"kind":32,"name":"id_gt","url":"modules/_types_.html#user_filter.__type-133.id_gt-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2689,"kind":32,"name":"id_lt","url":"modules/_types_.html#user_filter.__type-133.id_lt-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2690,"kind":32,"name":"id_gte","url":"modules/_types_.html#user_filter.__type-133.id_gte-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2691,"kind":32,"name":"id_lte","url":"modules/_types_.html#user_filter.__type-133.id_lte-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2692,"kind":32,"name":"id_in","url":"modules/_types_.html#user_filter.__type-133.id_in-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2693,"kind":32,"name":"id_not_in","url":"modules/_types_.html#user_filter.__type-133.id_not_in-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\".User_Filter.__type"},{"id":2694,"kind":4194304,"name":"_Block_","url":"modules/_types_.html#_block_","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2695,"kind":65536,"name":"__type","url":"modules/_types_.html#_block_.__type-134","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\"._Block_"},{"id":2696,"kind":32,"name":"__typename","url":"modules/_types_.html#_block_.__type-134.__typename-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Block_.__type"},{"id":2697,"kind":32,"name":"hash","url":"modules/_types_.html#_block_.__type-134.hash-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Block_.__type"},{"id":2698,"kind":32,"name":"number","url":"modules/_types_.html#_block_.__type-134.number-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Block_.__type"},{"id":2699,"kind":4194304,"name":"_Meta_","url":"modules/_types_.html#_meta_","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"types\""},{"id":2700,"kind":65536,"name":"__type","url":"modules/_types_.html#_meta_.__type-135","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"types\"._Meta_"},{"id":2701,"kind":32,"name":"__typename","url":"modules/_types_.html#_meta_.__type-135.__typename-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Meta_.__type"},{"id":2702,"kind":32,"name":"block","url":"modules/_types_.html#_meta_.__type-135.block-79","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Meta_.__type"},{"id":2703,"kind":32,"name":"deployment","url":"modules/_types_.html#_meta_.__type-135.deployment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Meta_.__type"},{"id":2704,"kind":32,"name":"hasIndexingErrors","url":"modules/_types_.html#_meta_.__type-135.hasindexingerrors","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"types\"._Meta_.__type"},{"id":2705,"kind":1,"name":"\"commands/_meta/index\"","url":"modules/_commands__meta_index_.html","classes":"tsd-kind-module"},{"id":2706,"kind":128,"name":"_meta","url":"classes/_commands__meta_index_._meta.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/_meta/index\""},{"id":2707,"kind":2097152,"name":"flags","url":"classes/_commands__meta_index_._meta.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2708,"kind":32,"name":"help","url":"classes/_commands__meta_index_._meta.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/_meta/index\"._meta.flags"},{"id":2709,"kind":32,"name":"block","url":"classes/_commands__meta_index_._meta.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/_meta/index\"._meta.flags"},{"id":2710,"kind":2048,"name":"run","url":"classes/_commands__meta_index_._meta.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/_meta/index\"._meta"},{"id":2711,"kind":1024,"name":"argv","url":"classes/_commands__meta_index_._meta.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2712,"kind":1024,"name":"config","url":"classes/_commands__meta_index_._meta.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2713,"kind":1024,"name":"_base","url":"classes/_commands__meta_index_._meta.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2714,"kind":1024,"name":"id","url":"classes/_commands__meta_index_._meta.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2715,"kind":1024,"name":"title","url":"classes/_commands__meta_index_._meta.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2716,"kind":1024,"name":"description","url":"classes/_commands__meta_index_._meta.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2717,"kind":1024,"name":"hidden","url":"classes/_commands__meta_index_._meta.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2718,"kind":1024,"name":"usage","url":"classes/_commands__meta_index_._meta.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2719,"kind":1024,"name":"help","url":"classes/_commands__meta_index_._meta.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2720,"kind":1024,"name":"aliases","url":"classes/_commands__meta_index_._meta.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2721,"kind":1024,"name":"strict","url":"classes/_commands__meta_index_._meta.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2722,"kind":1024,"name":"parse","url":"classes/_commands__meta_index_._meta.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2723,"kind":1024,"name":"args","url":"classes/_commands__meta_index_._meta.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2724,"kind":1024,"name":"plugin","url":"classes/_commands__meta_index_._meta.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2725,"kind":1024,"name":"examples","url":"classes/_commands__meta_index_._meta.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2726,"kind":1024,"name":"parserOptions","url":"classes/_commands__meta_index_._meta.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2727,"kind":65536,"name":"__type","url":"classes/_commands__meta_index_._meta.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/_meta/index\"._meta.parserOptions"},{"id":2728,"kind":1024,"name":"run","url":"classes/_commands__meta_index_._meta.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/_meta/index\"._meta"},{"id":2729,"kind":1024,"name":"id","url":"classes/_commands__meta_index_._meta.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2730,"kind":1024,"name":"debug","url":"classes/_commands__meta_index_._meta.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2731,"kind":65536,"name":"__type","url":"classes/_commands__meta_index_._meta.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/_meta/index\"._meta.debug"},{"id":2732,"kind":512,"name":"constructor","url":"classes/_commands__meta_index_._meta.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2733,"kind":262144,"name":"ctor","url":"classes/_commands__meta_index_._meta.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2734,"kind":2048,"name":"_run","url":"classes/_commands__meta_index_._meta.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2735,"kind":2048,"name":"exit","url":"classes/_commands__meta_index_._meta.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2736,"kind":2048,"name":"warn","url":"classes/_commands__meta_index_._meta.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2737,"kind":2048,"name":"error","url":"classes/_commands__meta_index_._meta.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2738,"kind":2048,"name":"log","url":"classes/_commands__meta_index_._meta.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/_meta/index\"._meta"},{"id":2739,"kind":2048,"name":"init","url":"classes/_commands__meta_index_._meta.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2740,"kind":2048,"name":"parse","url":"classes/_commands__meta_index_._meta.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2741,"kind":2048,"name":"catch","url":"classes/_commands__meta_index_._meta.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2742,"kind":2048,"name":"finally","url":"classes/_commands__meta_index_._meta.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2743,"kind":2048,"name":"_help","url":"classes/_commands__meta_index_._meta.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2744,"kind":2048,"name":"_helpOverride","url":"classes/_commands__meta_index_._meta.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2745,"kind":2048,"name":"_version","url":"classes/_commands__meta_index_._meta.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/_meta/index\"._meta"},{"id":2746,"kind":32,"name":"_MetaDocument","url":"modules/_commands__meta_index_.html#_metadocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/_meta/index\""},{"id":2747,"kind":1,"name":"\"commands/bundle/index\"","url":"modules/_commands_bundle_index_.html","classes":"tsd-kind-module"},{"id":2748,"kind":128,"name":"bundle","url":"classes/_commands_bundle_index_.bundle.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/bundle/index\""},{"id":2749,"kind":2097152,"name":"flags","url":"classes/_commands_bundle_index_.bundle.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2750,"kind":32,"name":"help","url":"classes/_commands_bundle_index_.bundle.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundle/index\".bundle.flags"},{"id":2751,"kind":32,"name":"id","url":"classes/_commands_bundle_index_.bundle.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundle/index\".bundle.flags"},{"id":2752,"kind":32,"name":"block","url":"classes/_commands_bundle_index_.bundle.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundle/index\".bundle.flags"},{"id":2753,"kind":2048,"name":"run","url":"classes/_commands_bundle_index_.bundle.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/bundle/index\".bundle"},{"id":2754,"kind":1024,"name":"argv","url":"classes/_commands_bundle_index_.bundle.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2755,"kind":1024,"name":"config","url":"classes/_commands_bundle_index_.bundle.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2756,"kind":1024,"name":"_base","url":"classes/_commands_bundle_index_.bundle.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2757,"kind":1024,"name":"id","url":"classes/_commands_bundle_index_.bundle.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2758,"kind":1024,"name":"title","url":"classes/_commands_bundle_index_.bundle.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2759,"kind":1024,"name":"description","url":"classes/_commands_bundle_index_.bundle.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2760,"kind":1024,"name":"hidden","url":"classes/_commands_bundle_index_.bundle.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2761,"kind":1024,"name":"usage","url":"classes/_commands_bundle_index_.bundle.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2762,"kind":1024,"name":"help","url":"classes/_commands_bundle_index_.bundle.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2763,"kind":1024,"name":"aliases","url":"classes/_commands_bundle_index_.bundle.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2764,"kind":1024,"name":"strict","url":"classes/_commands_bundle_index_.bundle.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2765,"kind":1024,"name":"parse","url":"classes/_commands_bundle_index_.bundle.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2766,"kind":1024,"name":"args","url":"classes/_commands_bundle_index_.bundle.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2767,"kind":1024,"name":"plugin","url":"classes/_commands_bundle_index_.bundle.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2768,"kind":1024,"name":"examples","url":"classes/_commands_bundle_index_.bundle.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2769,"kind":1024,"name":"parserOptions","url":"classes/_commands_bundle_index_.bundle.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2770,"kind":65536,"name":"__type","url":"classes/_commands_bundle_index_.bundle.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/bundle/index\".bundle.parserOptions"},{"id":2771,"kind":1024,"name":"run","url":"classes/_commands_bundle_index_.bundle.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundle/index\".bundle"},{"id":2772,"kind":1024,"name":"id","url":"classes/_commands_bundle_index_.bundle.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2773,"kind":1024,"name":"debug","url":"classes/_commands_bundle_index_.bundle.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2774,"kind":65536,"name":"__type","url":"classes/_commands_bundle_index_.bundle.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/bundle/index\".bundle.debug"},{"id":2775,"kind":512,"name":"constructor","url":"classes/_commands_bundle_index_.bundle.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2776,"kind":262144,"name":"ctor","url":"classes/_commands_bundle_index_.bundle.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2777,"kind":2048,"name":"_run","url":"classes/_commands_bundle_index_.bundle.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2778,"kind":2048,"name":"exit","url":"classes/_commands_bundle_index_.bundle.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2779,"kind":2048,"name":"warn","url":"classes/_commands_bundle_index_.bundle.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2780,"kind":2048,"name":"error","url":"classes/_commands_bundle_index_.bundle.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2781,"kind":2048,"name":"log","url":"classes/_commands_bundle_index_.bundle.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundle/index\".bundle"},{"id":2782,"kind":2048,"name":"init","url":"classes/_commands_bundle_index_.bundle.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2783,"kind":2048,"name":"parse","url":"classes/_commands_bundle_index_.bundle.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2784,"kind":2048,"name":"catch","url":"classes/_commands_bundle_index_.bundle.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2785,"kind":2048,"name":"finally","url":"classes/_commands_bundle_index_.bundle.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2786,"kind":2048,"name":"_help","url":"classes/_commands_bundle_index_.bundle.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2787,"kind":2048,"name":"_helpOverride","url":"classes/_commands_bundle_index_.bundle.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2788,"kind":2048,"name":"_version","url":"classes/_commands_bundle_index_.bundle.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundle/index\".bundle"},{"id":2789,"kind":32,"name":"BundleDocument","url":"modules/_commands_bundle_index_.html#bundledocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/bundle/index\""},{"id":2790,"kind":1,"name":"\"commands/bundles/index\"","url":"modules/_commands_bundles_index_.html","classes":"tsd-kind-module"},{"id":2791,"kind":128,"name":"bundles","url":"classes/_commands_bundles_index_.bundles.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/bundles/index\""},{"id":2792,"kind":2097152,"name":"flags","url":"classes/_commands_bundles_index_.bundles.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2793,"kind":32,"name":"help","url":"classes/_commands_bundles_index_.bundles.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2794,"kind":32,"name":"skip","url":"classes/_commands_bundles_index_.bundles.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2795,"kind":32,"name":"first","url":"classes/_commands_bundles_index_.bundles.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2796,"kind":32,"name":"orderBy","url":"classes/_commands_bundles_index_.bundles.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2797,"kind":32,"name":"orderDirection","url":"classes/_commands_bundles_index_.bundles.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2798,"kind":32,"name":"where","url":"classes/_commands_bundles_index_.bundles.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2799,"kind":32,"name":"block","url":"classes/_commands_bundles_index_.bundles.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/bundles/index\".bundles.flags"},{"id":2800,"kind":2048,"name":"run","url":"classes/_commands_bundles_index_.bundles.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/bundles/index\".bundles"},{"id":2801,"kind":1024,"name":"argv","url":"classes/_commands_bundles_index_.bundles.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2802,"kind":1024,"name":"config","url":"classes/_commands_bundles_index_.bundles.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2803,"kind":1024,"name":"_base","url":"classes/_commands_bundles_index_.bundles.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2804,"kind":1024,"name":"id","url":"classes/_commands_bundles_index_.bundles.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2805,"kind":1024,"name":"title","url":"classes/_commands_bundles_index_.bundles.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2806,"kind":1024,"name":"description","url":"classes/_commands_bundles_index_.bundles.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2807,"kind":1024,"name":"hidden","url":"classes/_commands_bundles_index_.bundles.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2808,"kind":1024,"name":"usage","url":"classes/_commands_bundles_index_.bundles.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2809,"kind":1024,"name":"help","url":"classes/_commands_bundles_index_.bundles.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2810,"kind":1024,"name":"aliases","url":"classes/_commands_bundles_index_.bundles.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2811,"kind":1024,"name":"strict","url":"classes/_commands_bundles_index_.bundles.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2812,"kind":1024,"name":"parse","url":"classes/_commands_bundles_index_.bundles.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2813,"kind":1024,"name":"args","url":"classes/_commands_bundles_index_.bundles.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2814,"kind":1024,"name":"plugin","url":"classes/_commands_bundles_index_.bundles.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2815,"kind":1024,"name":"examples","url":"classes/_commands_bundles_index_.bundles.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2816,"kind":1024,"name":"parserOptions","url":"classes/_commands_bundles_index_.bundles.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2817,"kind":65536,"name":"__type","url":"classes/_commands_bundles_index_.bundles.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/bundles/index\".bundles.parserOptions"},{"id":2818,"kind":1024,"name":"run","url":"classes/_commands_bundles_index_.bundles.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/bundles/index\".bundles"},{"id":2819,"kind":1024,"name":"id","url":"classes/_commands_bundles_index_.bundles.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2820,"kind":1024,"name":"debug","url":"classes/_commands_bundles_index_.bundles.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2821,"kind":65536,"name":"__type","url":"classes/_commands_bundles_index_.bundles.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/bundles/index\".bundles.debug"},{"id":2822,"kind":512,"name":"constructor","url":"classes/_commands_bundles_index_.bundles.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2823,"kind":262144,"name":"ctor","url":"classes/_commands_bundles_index_.bundles.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2824,"kind":2048,"name":"_run","url":"classes/_commands_bundles_index_.bundles.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2825,"kind":2048,"name":"exit","url":"classes/_commands_bundles_index_.bundles.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2826,"kind":2048,"name":"warn","url":"classes/_commands_bundles_index_.bundles.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2827,"kind":2048,"name":"error","url":"classes/_commands_bundles_index_.bundles.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2828,"kind":2048,"name":"log","url":"classes/_commands_bundles_index_.bundles.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/bundles/index\".bundles"},{"id":2829,"kind":2048,"name":"init","url":"classes/_commands_bundles_index_.bundles.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2830,"kind":2048,"name":"parse","url":"classes/_commands_bundles_index_.bundles.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2831,"kind":2048,"name":"catch","url":"classes/_commands_bundles_index_.bundles.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2832,"kind":2048,"name":"finally","url":"classes/_commands_bundles_index_.bundles.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2833,"kind":2048,"name":"_help","url":"classes/_commands_bundles_index_.bundles.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2834,"kind":2048,"name":"_helpOverride","url":"classes/_commands_bundles_index_.bundles.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2835,"kind":2048,"name":"_version","url":"classes/_commands_bundles_index_.bundles.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/bundles/index\".bundles"},{"id":2836,"kind":32,"name":"BundlesDocument","url":"modules/_commands_bundles_index_.html#bundlesdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/bundles/index\""},{"id":2837,"kind":1,"name":"\"commands/burn/index\"","url":"modules/_commands_burn_index_.html","classes":"tsd-kind-module"},{"id":2838,"kind":128,"name":"burn","url":"classes/_commands_burn_index_.burn.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/burn/index\""},{"id":2839,"kind":2097152,"name":"flags","url":"classes/_commands_burn_index_.burn.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2840,"kind":32,"name":"help","url":"classes/_commands_burn_index_.burn.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2841,"kind":32,"name":"skip","url":"classes/_commands_burn_index_.burn.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2842,"kind":32,"name":"first","url":"classes/_commands_burn_index_.burn.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2843,"kind":32,"name":"orderBy","url":"classes/_commands_burn_index_.burn.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2844,"kind":32,"name":"orderDirection","url":"classes/_commands_burn_index_.burn.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2845,"kind":32,"name":"where","url":"classes/_commands_burn_index_.burn.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2846,"kind":32,"name":"skip1","url":"classes/_commands_burn_index_.burn.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2847,"kind":32,"name":"first1","url":"classes/_commands_burn_index_.burn.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2848,"kind":32,"name":"orderBy1","url":"classes/_commands_burn_index_.burn.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2849,"kind":32,"name":"orderDirection1","url":"classes/_commands_burn_index_.burn.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2850,"kind":32,"name":"where1","url":"classes/_commands_burn_index_.burn.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2851,"kind":32,"name":"skip2","url":"classes/_commands_burn_index_.burn.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2852,"kind":32,"name":"first2","url":"classes/_commands_burn_index_.burn.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2853,"kind":32,"name":"orderBy2","url":"classes/_commands_burn_index_.burn.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2854,"kind":32,"name":"orderDirection2","url":"classes/_commands_burn_index_.burn.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2855,"kind":32,"name":"where2","url":"classes/_commands_burn_index_.burn.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2856,"kind":32,"name":"skip3","url":"classes/_commands_burn_index_.burn.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2857,"kind":32,"name":"first3","url":"classes/_commands_burn_index_.burn.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2858,"kind":32,"name":"orderBy3","url":"classes/_commands_burn_index_.burn.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2859,"kind":32,"name":"orderDirection3","url":"classes/_commands_burn_index_.burn.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2860,"kind":32,"name":"where3","url":"classes/_commands_burn_index_.burn.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2861,"kind":32,"name":"skip4","url":"classes/_commands_burn_index_.burn.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2862,"kind":32,"name":"first4","url":"classes/_commands_burn_index_.burn.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2863,"kind":32,"name":"orderBy4","url":"classes/_commands_burn_index_.burn.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2864,"kind":32,"name":"orderDirection4","url":"classes/_commands_burn_index_.burn.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2865,"kind":32,"name":"where4","url":"classes/_commands_burn_index_.burn.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2866,"kind":32,"name":"id","url":"classes/_commands_burn_index_.burn.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2867,"kind":32,"name":"block","url":"classes/_commands_burn_index_.burn.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burn/index\".burn.flags"},{"id":2868,"kind":2048,"name":"run","url":"classes/_commands_burn_index_.burn.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/burn/index\".burn"},{"id":2869,"kind":1024,"name":"argv","url":"classes/_commands_burn_index_.burn.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2870,"kind":1024,"name":"config","url":"classes/_commands_burn_index_.burn.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2871,"kind":1024,"name":"_base","url":"classes/_commands_burn_index_.burn.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2872,"kind":1024,"name":"id","url":"classes/_commands_burn_index_.burn.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2873,"kind":1024,"name":"title","url":"classes/_commands_burn_index_.burn.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2874,"kind":1024,"name":"description","url":"classes/_commands_burn_index_.burn.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2875,"kind":1024,"name":"hidden","url":"classes/_commands_burn_index_.burn.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2876,"kind":1024,"name":"usage","url":"classes/_commands_burn_index_.burn.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2877,"kind":1024,"name":"help","url":"classes/_commands_burn_index_.burn.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2878,"kind":1024,"name":"aliases","url":"classes/_commands_burn_index_.burn.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2879,"kind":1024,"name":"strict","url":"classes/_commands_burn_index_.burn.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2880,"kind":1024,"name":"parse","url":"classes/_commands_burn_index_.burn.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2881,"kind":1024,"name":"args","url":"classes/_commands_burn_index_.burn.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2882,"kind":1024,"name":"plugin","url":"classes/_commands_burn_index_.burn.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2883,"kind":1024,"name":"examples","url":"classes/_commands_burn_index_.burn.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2884,"kind":1024,"name":"parserOptions","url":"classes/_commands_burn_index_.burn.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2885,"kind":65536,"name":"__type","url":"classes/_commands_burn_index_.burn.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/burn/index\".burn.parserOptions"},{"id":2886,"kind":1024,"name":"run","url":"classes/_commands_burn_index_.burn.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burn/index\".burn"},{"id":2887,"kind":1024,"name":"id","url":"classes/_commands_burn_index_.burn.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2888,"kind":1024,"name":"debug","url":"classes/_commands_burn_index_.burn.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2889,"kind":65536,"name":"__type","url":"classes/_commands_burn_index_.burn.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/burn/index\".burn.debug"},{"id":2890,"kind":512,"name":"constructor","url":"classes/_commands_burn_index_.burn.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2891,"kind":262144,"name":"ctor","url":"classes/_commands_burn_index_.burn.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2892,"kind":2048,"name":"_run","url":"classes/_commands_burn_index_.burn.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2893,"kind":2048,"name":"exit","url":"classes/_commands_burn_index_.burn.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2894,"kind":2048,"name":"warn","url":"classes/_commands_burn_index_.burn.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2895,"kind":2048,"name":"error","url":"classes/_commands_burn_index_.burn.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2896,"kind":2048,"name":"log","url":"classes/_commands_burn_index_.burn.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burn/index\".burn"},{"id":2897,"kind":2048,"name":"init","url":"classes/_commands_burn_index_.burn.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2898,"kind":2048,"name":"parse","url":"classes/_commands_burn_index_.burn.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2899,"kind":2048,"name":"catch","url":"classes/_commands_burn_index_.burn.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2900,"kind":2048,"name":"finally","url":"classes/_commands_burn_index_.burn.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2901,"kind":2048,"name":"_help","url":"classes/_commands_burn_index_.burn.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2902,"kind":2048,"name":"_helpOverride","url":"classes/_commands_burn_index_.burn.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2903,"kind":2048,"name":"_version","url":"classes/_commands_burn_index_.burn.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burn/index\".burn"},{"id":2904,"kind":32,"name":"BurnDocument","url":"modules/_commands_burn_index_.html#burndocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/burn/index\""},{"id":2905,"kind":1,"name":"\"commands/burns/index\"","url":"modules/_commands_burns_index_.html","classes":"tsd-kind-module"},{"id":2906,"kind":128,"name":"burns","url":"classes/_commands_burns_index_.burns.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/burns/index\""},{"id":2907,"kind":2097152,"name":"flags","url":"classes/_commands_burns_index_.burns.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2908,"kind":32,"name":"help","url":"classes/_commands_burns_index_.burns.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2909,"kind":32,"name":"skip","url":"classes/_commands_burns_index_.burns.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2910,"kind":32,"name":"first","url":"classes/_commands_burns_index_.burns.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2911,"kind":32,"name":"orderBy","url":"classes/_commands_burns_index_.burns.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2912,"kind":32,"name":"orderDirection","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2913,"kind":32,"name":"where","url":"classes/_commands_burns_index_.burns.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2914,"kind":32,"name":"skip1","url":"classes/_commands_burns_index_.burns.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2915,"kind":32,"name":"first1","url":"classes/_commands_burns_index_.burns.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2916,"kind":32,"name":"orderBy1","url":"classes/_commands_burns_index_.burns.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2917,"kind":32,"name":"orderDirection1","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2918,"kind":32,"name":"where1","url":"classes/_commands_burns_index_.burns.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2919,"kind":32,"name":"skip2","url":"classes/_commands_burns_index_.burns.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2920,"kind":32,"name":"first2","url":"classes/_commands_burns_index_.burns.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2921,"kind":32,"name":"orderBy2","url":"classes/_commands_burns_index_.burns.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2922,"kind":32,"name":"orderDirection2","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2923,"kind":32,"name":"where2","url":"classes/_commands_burns_index_.burns.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2924,"kind":32,"name":"skip3","url":"classes/_commands_burns_index_.burns.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2925,"kind":32,"name":"first3","url":"classes/_commands_burns_index_.burns.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2926,"kind":32,"name":"orderBy3","url":"classes/_commands_burns_index_.burns.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2927,"kind":32,"name":"orderDirection3","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2928,"kind":32,"name":"where3","url":"classes/_commands_burns_index_.burns.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2929,"kind":32,"name":"skip4","url":"classes/_commands_burns_index_.burns.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2930,"kind":32,"name":"first4","url":"classes/_commands_burns_index_.burns.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2931,"kind":32,"name":"orderBy4","url":"classes/_commands_burns_index_.burns.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2932,"kind":32,"name":"orderDirection4","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2933,"kind":32,"name":"where4","url":"classes/_commands_burns_index_.burns.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2934,"kind":32,"name":"skip5","url":"classes/_commands_burns_index_.burns.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2935,"kind":32,"name":"first5","url":"classes/_commands_burns_index_.burns.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2936,"kind":32,"name":"orderBy5","url":"classes/_commands_burns_index_.burns.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2937,"kind":32,"name":"orderDirection5","url":"classes/_commands_burns_index_.burns.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2938,"kind":32,"name":"where5","url":"classes/_commands_burns_index_.burns.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2939,"kind":32,"name":"block","url":"classes/_commands_burns_index_.burns.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/burns/index\".burns.flags"},{"id":2940,"kind":2048,"name":"run","url":"classes/_commands_burns_index_.burns.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/burns/index\".burns"},{"id":2941,"kind":1024,"name":"argv","url":"classes/_commands_burns_index_.burns.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2942,"kind":1024,"name":"config","url":"classes/_commands_burns_index_.burns.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2943,"kind":1024,"name":"_base","url":"classes/_commands_burns_index_.burns.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2944,"kind":1024,"name":"id","url":"classes/_commands_burns_index_.burns.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2945,"kind":1024,"name":"title","url":"classes/_commands_burns_index_.burns.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2946,"kind":1024,"name":"description","url":"classes/_commands_burns_index_.burns.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2947,"kind":1024,"name":"hidden","url":"classes/_commands_burns_index_.burns.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2948,"kind":1024,"name":"usage","url":"classes/_commands_burns_index_.burns.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2949,"kind":1024,"name":"help","url":"classes/_commands_burns_index_.burns.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2950,"kind":1024,"name":"aliases","url":"classes/_commands_burns_index_.burns.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2951,"kind":1024,"name":"strict","url":"classes/_commands_burns_index_.burns.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2952,"kind":1024,"name":"parse","url":"classes/_commands_burns_index_.burns.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2953,"kind":1024,"name":"args","url":"classes/_commands_burns_index_.burns.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2954,"kind":1024,"name":"plugin","url":"classes/_commands_burns_index_.burns.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2955,"kind":1024,"name":"examples","url":"classes/_commands_burns_index_.burns.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2956,"kind":1024,"name":"parserOptions","url":"classes/_commands_burns_index_.burns.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2957,"kind":65536,"name":"__type","url":"classes/_commands_burns_index_.burns.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/burns/index\".burns.parserOptions"},{"id":2958,"kind":1024,"name":"run","url":"classes/_commands_burns_index_.burns.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/burns/index\".burns"},{"id":2959,"kind":1024,"name":"id","url":"classes/_commands_burns_index_.burns.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2960,"kind":1024,"name":"debug","url":"classes/_commands_burns_index_.burns.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2961,"kind":65536,"name":"__type","url":"classes/_commands_burns_index_.burns.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/burns/index\".burns.debug"},{"id":2962,"kind":512,"name":"constructor","url":"classes/_commands_burns_index_.burns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2963,"kind":262144,"name":"ctor","url":"classes/_commands_burns_index_.burns.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2964,"kind":2048,"name":"_run","url":"classes/_commands_burns_index_.burns.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2965,"kind":2048,"name":"exit","url":"classes/_commands_burns_index_.burns.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2966,"kind":2048,"name":"warn","url":"classes/_commands_burns_index_.burns.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2967,"kind":2048,"name":"error","url":"classes/_commands_burns_index_.burns.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2968,"kind":2048,"name":"log","url":"classes/_commands_burns_index_.burns.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/burns/index\".burns"},{"id":2969,"kind":2048,"name":"init","url":"classes/_commands_burns_index_.burns.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2970,"kind":2048,"name":"parse","url":"classes/_commands_burns_index_.burns.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2971,"kind":2048,"name":"catch","url":"classes/_commands_burns_index_.burns.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2972,"kind":2048,"name":"finally","url":"classes/_commands_burns_index_.burns.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2973,"kind":2048,"name":"_help","url":"classes/_commands_burns_index_.burns.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2974,"kind":2048,"name":"_helpOverride","url":"classes/_commands_burns_index_.burns.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2975,"kind":2048,"name":"_version","url":"classes/_commands_burns_index_.burns.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/burns/index\".burns"},{"id":2976,"kind":32,"name":"BurnsDocument","url":"modules/_commands_burns_index_.html#burnsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/burns/index\""},{"id":2977,"kind":1,"name":"\"commands/liquidityPosition/index\"","url":"modules/_commands_liquidityposition_index_.html","classes":"tsd-kind-module"},{"id":2978,"kind":128,"name":"liquidityPosition","url":"classes/_commands_liquidityposition_index_.liquidityposition.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/liquidityPosition/index\""},{"id":2979,"kind":2097152,"name":"flags","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":2980,"kind":32,"name":"help","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2981,"kind":32,"name":"skip","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2982,"kind":32,"name":"first","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2983,"kind":32,"name":"orderBy","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2984,"kind":32,"name":"orderDirection","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2985,"kind":32,"name":"where","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2986,"kind":32,"name":"skip1","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2987,"kind":32,"name":"first1","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2988,"kind":32,"name":"orderBy1","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2989,"kind":32,"name":"orderDirection1","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2990,"kind":32,"name":"where1","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2991,"kind":32,"name":"skip2","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2992,"kind":32,"name":"first2","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2993,"kind":32,"name":"orderBy2","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2994,"kind":32,"name":"orderDirection2","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2995,"kind":32,"name":"where2","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2996,"kind":32,"name":"id","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2997,"kind":32,"name":"block","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPosition/index\".liquidityPosition.flags"},{"id":2998,"kind":2048,"name":"run","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":2999,"kind":1024,"name":"argv","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3000,"kind":1024,"name":"config","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3001,"kind":1024,"name":"_base","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3002,"kind":1024,"name":"id","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3003,"kind":1024,"name":"title","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3004,"kind":1024,"name":"description","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3005,"kind":1024,"name":"hidden","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3006,"kind":1024,"name":"usage","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3007,"kind":1024,"name":"help","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3008,"kind":1024,"name":"aliases","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3009,"kind":1024,"name":"strict","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3010,"kind":1024,"name":"parse","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3011,"kind":1024,"name":"args","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3012,"kind":1024,"name":"plugin","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3013,"kind":1024,"name":"examples","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3014,"kind":1024,"name":"parserOptions","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3015,"kind":65536,"name":"__type","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPosition/index\".liquidityPosition.parserOptions"},{"id":3016,"kind":1024,"name":"run","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3017,"kind":1024,"name":"id","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3018,"kind":1024,"name":"debug","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3019,"kind":65536,"name":"__type","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPosition/index\".liquidityPosition.debug"},{"id":3020,"kind":512,"name":"constructor","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3021,"kind":262144,"name":"ctor","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3022,"kind":2048,"name":"_run","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3023,"kind":2048,"name":"exit","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3024,"kind":2048,"name":"warn","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3025,"kind":2048,"name":"error","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3026,"kind":2048,"name":"log","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3027,"kind":2048,"name":"init","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3028,"kind":2048,"name":"parse","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3029,"kind":2048,"name":"catch","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3030,"kind":2048,"name":"finally","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3031,"kind":2048,"name":"_help","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3032,"kind":2048,"name":"_helpOverride","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3033,"kind":2048,"name":"_version","url":"classes/_commands_liquidityposition_index_.liquidityposition.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPosition/index\".liquidityPosition"},{"id":3034,"kind":32,"name":"LiquidityPositionDocument","url":"modules/_commands_liquidityposition_index_.html#liquiditypositiondocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/liquidityPosition/index\""},{"id":3035,"kind":1,"name":"\"commands/liquidityPositionSnapshot/index\"","url":"modules/_commands_liquiditypositionsnapshot_index_.html","classes":"tsd-kind-module"},{"id":3036,"kind":128,"name":"liquidityPositionSnapshot","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/liquidityPositionSnapshot/index\""},{"id":3037,"kind":2097152,"name":"flags","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3038,"kind":32,"name":"help","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3039,"kind":32,"name":"skip","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3040,"kind":32,"name":"first","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3041,"kind":32,"name":"orderBy","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3042,"kind":32,"name":"orderDirection","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3043,"kind":32,"name":"where","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3044,"kind":32,"name":"skip1","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3045,"kind":32,"name":"first1","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3046,"kind":32,"name":"orderBy1","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3047,"kind":32,"name":"orderDirection1","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3048,"kind":32,"name":"where1","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3049,"kind":32,"name":"skip2","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3050,"kind":32,"name":"first2","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3051,"kind":32,"name":"orderBy2","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3052,"kind":32,"name":"orderDirection2","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3053,"kind":32,"name":"where2","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3054,"kind":32,"name":"id","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3055,"kind":32,"name":"block","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.flags"},{"id":3056,"kind":2048,"name":"run","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3057,"kind":1024,"name":"argv","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3058,"kind":1024,"name":"config","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3059,"kind":1024,"name":"_base","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3060,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3061,"kind":1024,"name":"title","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3062,"kind":1024,"name":"description","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3063,"kind":1024,"name":"hidden","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3064,"kind":1024,"name":"usage","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3065,"kind":1024,"name":"help","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3066,"kind":1024,"name":"aliases","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3067,"kind":1024,"name":"strict","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3068,"kind":1024,"name":"parse","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3069,"kind":1024,"name":"args","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3070,"kind":1024,"name":"plugin","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3071,"kind":1024,"name":"examples","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3072,"kind":1024,"name":"parserOptions","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3073,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.parserOptions"},{"id":3074,"kind":1024,"name":"run","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3075,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3076,"kind":1024,"name":"debug","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3077,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot.debug"},{"id":3078,"kind":512,"name":"constructor","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3079,"kind":262144,"name":"ctor","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3080,"kind":2048,"name":"_run","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3081,"kind":2048,"name":"exit","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3082,"kind":2048,"name":"warn","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3083,"kind":2048,"name":"error","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3084,"kind":2048,"name":"log","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3085,"kind":2048,"name":"init","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3086,"kind":2048,"name":"parse","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3087,"kind":2048,"name":"catch","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3088,"kind":2048,"name":"finally","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3089,"kind":2048,"name":"_help","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3090,"kind":2048,"name":"_helpOverride","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3091,"kind":2048,"name":"_version","url":"classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshot/index\".liquidityPositionSnapshot"},{"id":3092,"kind":32,"name":"LiquidityPositionSnapshotDocument","url":"modules/_commands_liquiditypositionsnapshot_index_.html#liquiditypositionsnapshotdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/liquidityPositionSnapshot/index\""},{"id":3093,"kind":1,"name":"\"commands/liquidityPositionSnapshots/index\"","url":"modules/_commands_liquiditypositionsnapshots_index_.html","classes":"tsd-kind-module"},{"id":3094,"kind":128,"name":"liquidityPositionSnapshots","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/liquidityPositionSnapshots/index\""},{"id":3095,"kind":2097152,"name":"flags","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3096,"kind":32,"name":"help","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3097,"kind":32,"name":"skip","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3098,"kind":32,"name":"first","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3099,"kind":32,"name":"orderBy","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3100,"kind":32,"name":"orderDirection","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3101,"kind":32,"name":"where","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3102,"kind":32,"name":"skip1","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3103,"kind":32,"name":"first1","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3104,"kind":32,"name":"orderBy1","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3105,"kind":32,"name":"orderDirection1","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3106,"kind":32,"name":"where1","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3107,"kind":32,"name":"skip2","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3108,"kind":32,"name":"first2","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3109,"kind":32,"name":"orderBy2","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3110,"kind":32,"name":"orderDirection2","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3111,"kind":32,"name":"where2","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3112,"kind":32,"name":"skip3","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3113,"kind":32,"name":"first3","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3114,"kind":32,"name":"orderBy3","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3115,"kind":32,"name":"orderDirection3","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3116,"kind":32,"name":"where3","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3117,"kind":32,"name":"block","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.flags"},{"id":3118,"kind":2048,"name":"run","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3119,"kind":1024,"name":"argv","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3120,"kind":1024,"name":"config","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3121,"kind":1024,"name":"_base","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3122,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3123,"kind":1024,"name":"title","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3124,"kind":1024,"name":"description","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3125,"kind":1024,"name":"hidden","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3126,"kind":1024,"name":"usage","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3127,"kind":1024,"name":"help","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3128,"kind":1024,"name":"aliases","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3129,"kind":1024,"name":"strict","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3130,"kind":1024,"name":"parse","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3131,"kind":1024,"name":"args","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3132,"kind":1024,"name":"plugin","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3133,"kind":1024,"name":"examples","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3134,"kind":1024,"name":"parserOptions","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3135,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.parserOptions"},{"id":3136,"kind":1024,"name":"run","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3137,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3138,"kind":1024,"name":"debug","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3139,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots.debug"},{"id":3140,"kind":512,"name":"constructor","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3141,"kind":262144,"name":"ctor","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3142,"kind":2048,"name":"_run","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3143,"kind":2048,"name":"exit","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3144,"kind":2048,"name":"warn","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3145,"kind":2048,"name":"error","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3146,"kind":2048,"name":"log","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3147,"kind":2048,"name":"init","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3148,"kind":2048,"name":"parse","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3149,"kind":2048,"name":"catch","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3150,"kind":2048,"name":"finally","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3151,"kind":2048,"name":"_help","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3152,"kind":2048,"name":"_helpOverride","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3153,"kind":2048,"name":"_version","url":"classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositionSnapshots/index\".liquidityPositionSnapshots"},{"id":3154,"kind":32,"name":"LiquidityPositionSnapshotsDocument","url":"modules/_commands_liquiditypositionsnapshots_index_.html#liquiditypositionsnapshotsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/liquidityPositionSnapshots/index\""},{"id":3155,"kind":1,"name":"\"commands/liquidityPositions/index\"","url":"modules/_commands_liquiditypositions_index_.html","classes":"tsd-kind-module"},{"id":3156,"kind":128,"name":"liquidityPositions","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/liquidityPositions/index\""},{"id":3157,"kind":2097152,"name":"flags","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3158,"kind":32,"name":"help","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3159,"kind":32,"name":"skip","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3160,"kind":32,"name":"first","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3161,"kind":32,"name":"orderBy","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3162,"kind":32,"name":"orderDirection","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3163,"kind":32,"name":"where","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3164,"kind":32,"name":"skip1","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3165,"kind":32,"name":"first1","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3166,"kind":32,"name":"orderBy1","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3167,"kind":32,"name":"orderDirection1","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3168,"kind":32,"name":"where1","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3169,"kind":32,"name":"skip2","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3170,"kind":32,"name":"first2","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3171,"kind":32,"name":"orderBy2","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3172,"kind":32,"name":"orderDirection2","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3173,"kind":32,"name":"where2","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3174,"kind":32,"name":"skip3","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3175,"kind":32,"name":"first3","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3176,"kind":32,"name":"orderBy3","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3177,"kind":32,"name":"orderDirection3","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3178,"kind":32,"name":"where3","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3179,"kind":32,"name":"block","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/liquidityPositions/index\".liquidityPositions.flags"},{"id":3180,"kind":2048,"name":"run","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3181,"kind":1024,"name":"argv","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3182,"kind":1024,"name":"config","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3183,"kind":1024,"name":"_base","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3184,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3185,"kind":1024,"name":"title","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3186,"kind":1024,"name":"description","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3187,"kind":1024,"name":"hidden","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3188,"kind":1024,"name":"usage","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3189,"kind":1024,"name":"help","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3190,"kind":1024,"name":"aliases","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3191,"kind":1024,"name":"strict","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3192,"kind":1024,"name":"parse","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3193,"kind":1024,"name":"args","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3194,"kind":1024,"name":"plugin","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3195,"kind":1024,"name":"examples","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3196,"kind":1024,"name":"parserOptions","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3197,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositions/index\".liquidityPositions.parserOptions"},{"id":3198,"kind":1024,"name":"run","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3199,"kind":1024,"name":"id","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3200,"kind":1024,"name":"debug","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3201,"kind":65536,"name":"__type","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/liquidityPositions/index\".liquidityPositions.debug"},{"id":3202,"kind":512,"name":"constructor","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3203,"kind":262144,"name":"ctor","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3204,"kind":2048,"name":"_run","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3205,"kind":2048,"name":"exit","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3206,"kind":2048,"name":"warn","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3207,"kind":2048,"name":"error","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3208,"kind":2048,"name":"log","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3209,"kind":2048,"name":"init","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3210,"kind":2048,"name":"parse","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3211,"kind":2048,"name":"catch","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3212,"kind":2048,"name":"finally","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3213,"kind":2048,"name":"_help","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3214,"kind":2048,"name":"_helpOverride","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3215,"kind":2048,"name":"_version","url":"classes/_commands_liquiditypositions_index_.liquiditypositions.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/liquidityPositions/index\".liquidityPositions"},{"id":3216,"kind":32,"name":"LiquidityPositionsDocument","url":"modules/_commands_liquiditypositions_index_.html#liquiditypositionsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/liquidityPositions/index\""},{"id":3217,"kind":1,"name":"\"commands/mint/index\"","url":"modules/_commands_mint_index_.html","classes":"tsd-kind-module"},{"id":3218,"kind":128,"name":"mint","url":"classes/_commands_mint_index_.mint.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/mint/index\""},{"id":3219,"kind":2097152,"name":"flags","url":"classes/_commands_mint_index_.mint.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3220,"kind":32,"name":"help","url":"classes/_commands_mint_index_.mint.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3221,"kind":32,"name":"skip","url":"classes/_commands_mint_index_.mint.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3222,"kind":32,"name":"first","url":"classes/_commands_mint_index_.mint.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3223,"kind":32,"name":"orderBy","url":"classes/_commands_mint_index_.mint.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3224,"kind":32,"name":"orderDirection","url":"classes/_commands_mint_index_.mint.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3225,"kind":32,"name":"where","url":"classes/_commands_mint_index_.mint.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3226,"kind":32,"name":"skip1","url":"classes/_commands_mint_index_.mint.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3227,"kind":32,"name":"first1","url":"classes/_commands_mint_index_.mint.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3228,"kind":32,"name":"orderBy1","url":"classes/_commands_mint_index_.mint.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3229,"kind":32,"name":"orderDirection1","url":"classes/_commands_mint_index_.mint.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3230,"kind":32,"name":"where1","url":"classes/_commands_mint_index_.mint.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3231,"kind":32,"name":"skip2","url":"classes/_commands_mint_index_.mint.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3232,"kind":32,"name":"first2","url":"classes/_commands_mint_index_.mint.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3233,"kind":32,"name":"orderBy2","url":"classes/_commands_mint_index_.mint.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3234,"kind":32,"name":"orderDirection2","url":"classes/_commands_mint_index_.mint.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3235,"kind":32,"name":"where2","url":"classes/_commands_mint_index_.mint.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3236,"kind":32,"name":"skip3","url":"classes/_commands_mint_index_.mint.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3237,"kind":32,"name":"first3","url":"classes/_commands_mint_index_.mint.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3238,"kind":32,"name":"orderBy3","url":"classes/_commands_mint_index_.mint.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3239,"kind":32,"name":"orderDirection3","url":"classes/_commands_mint_index_.mint.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3240,"kind":32,"name":"where3","url":"classes/_commands_mint_index_.mint.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3241,"kind":32,"name":"skip4","url":"classes/_commands_mint_index_.mint.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3242,"kind":32,"name":"first4","url":"classes/_commands_mint_index_.mint.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3243,"kind":32,"name":"orderBy4","url":"classes/_commands_mint_index_.mint.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3244,"kind":32,"name":"orderDirection4","url":"classes/_commands_mint_index_.mint.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3245,"kind":32,"name":"where4","url":"classes/_commands_mint_index_.mint.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3246,"kind":32,"name":"id","url":"classes/_commands_mint_index_.mint.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3247,"kind":32,"name":"block","url":"classes/_commands_mint_index_.mint.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mint/index\".mint.flags"},{"id":3248,"kind":2048,"name":"run","url":"classes/_commands_mint_index_.mint.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/mint/index\".mint"},{"id":3249,"kind":1024,"name":"argv","url":"classes/_commands_mint_index_.mint.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3250,"kind":1024,"name":"config","url":"classes/_commands_mint_index_.mint.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3251,"kind":1024,"name":"_base","url":"classes/_commands_mint_index_.mint.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3252,"kind":1024,"name":"id","url":"classes/_commands_mint_index_.mint.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3253,"kind":1024,"name":"title","url":"classes/_commands_mint_index_.mint.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3254,"kind":1024,"name":"description","url":"classes/_commands_mint_index_.mint.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3255,"kind":1024,"name":"hidden","url":"classes/_commands_mint_index_.mint.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3256,"kind":1024,"name":"usage","url":"classes/_commands_mint_index_.mint.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3257,"kind":1024,"name":"help","url":"classes/_commands_mint_index_.mint.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3258,"kind":1024,"name":"aliases","url":"classes/_commands_mint_index_.mint.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3259,"kind":1024,"name":"strict","url":"classes/_commands_mint_index_.mint.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3260,"kind":1024,"name":"parse","url":"classes/_commands_mint_index_.mint.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3261,"kind":1024,"name":"args","url":"classes/_commands_mint_index_.mint.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3262,"kind":1024,"name":"plugin","url":"classes/_commands_mint_index_.mint.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3263,"kind":1024,"name":"examples","url":"classes/_commands_mint_index_.mint.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3264,"kind":1024,"name":"parserOptions","url":"classes/_commands_mint_index_.mint.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3265,"kind":65536,"name":"__type","url":"classes/_commands_mint_index_.mint.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/mint/index\".mint.parserOptions"},{"id":3266,"kind":1024,"name":"run","url":"classes/_commands_mint_index_.mint.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mint/index\".mint"},{"id":3267,"kind":1024,"name":"id","url":"classes/_commands_mint_index_.mint.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3268,"kind":1024,"name":"debug","url":"classes/_commands_mint_index_.mint.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3269,"kind":65536,"name":"__type","url":"classes/_commands_mint_index_.mint.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/mint/index\".mint.debug"},{"id":3270,"kind":512,"name":"constructor","url":"classes/_commands_mint_index_.mint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3271,"kind":262144,"name":"ctor","url":"classes/_commands_mint_index_.mint.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3272,"kind":2048,"name":"_run","url":"classes/_commands_mint_index_.mint.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3273,"kind":2048,"name":"exit","url":"classes/_commands_mint_index_.mint.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3274,"kind":2048,"name":"warn","url":"classes/_commands_mint_index_.mint.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3275,"kind":2048,"name":"error","url":"classes/_commands_mint_index_.mint.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3276,"kind":2048,"name":"log","url":"classes/_commands_mint_index_.mint.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mint/index\".mint"},{"id":3277,"kind":2048,"name":"init","url":"classes/_commands_mint_index_.mint.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3278,"kind":2048,"name":"parse","url":"classes/_commands_mint_index_.mint.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3279,"kind":2048,"name":"catch","url":"classes/_commands_mint_index_.mint.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3280,"kind":2048,"name":"finally","url":"classes/_commands_mint_index_.mint.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3281,"kind":2048,"name":"_help","url":"classes/_commands_mint_index_.mint.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3282,"kind":2048,"name":"_helpOverride","url":"classes/_commands_mint_index_.mint.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3283,"kind":2048,"name":"_version","url":"classes/_commands_mint_index_.mint.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mint/index\".mint"},{"id":3284,"kind":32,"name":"MintDocument","url":"modules/_commands_mint_index_.html#mintdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/mint/index\""},{"id":3285,"kind":1,"name":"\"commands/mints/index\"","url":"modules/_commands_mints_index_.html","classes":"tsd-kind-module"},{"id":3286,"kind":128,"name":"mints","url":"classes/_commands_mints_index_.mints.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/mints/index\""},{"id":3287,"kind":2097152,"name":"flags","url":"classes/_commands_mints_index_.mints.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3288,"kind":32,"name":"help","url":"classes/_commands_mints_index_.mints.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3289,"kind":32,"name":"skip","url":"classes/_commands_mints_index_.mints.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3290,"kind":32,"name":"first","url":"classes/_commands_mints_index_.mints.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3291,"kind":32,"name":"orderBy","url":"classes/_commands_mints_index_.mints.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3292,"kind":32,"name":"orderDirection","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3293,"kind":32,"name":"where","url":"classes/_commands_mints_index_.mints.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3294,"kind":32,"name":"skip1","url":"classes/_commands_mints_index_.mints.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3295,"kind":32,"name":"first1","url":"classes/_commands_mints_index_.mints.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3296,"kind":32,"name":"orderBy1","url":"classes/_commands_mints_index_.mints.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3297,"kind":32,"name":"orderDirection1","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3298,"kind":32,"name":"where1","url":"classes/_commands_mints_index_.mints.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3299,"kind":32,"name":"skip2","url":"classes/_commands_mints_index_.mints.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3300,"kind":32,"name":"first2","url":"classes/_commands_mints_index_.mints.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3301,"kind":32,"name":"orderBy2","url":"classes/_commands_mints_index_.mints.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3302,"kind":32,"name":"orderDirection2","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3303,"kind":32,"name":"where2","url":"classes/_commands_mints_index_.mints.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3304,"kind":32,"name":"skip3","url":"classes/_commands_mints_index_.mints.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3305,"kind":32,"name":"first3","url":"classes/_commands_mints_index_.mints.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3306,"kind":32,"name":"orderBy3","url":"classes/_commands_mints_index_.mints.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3307,"kind":32,"name":"orderDirection3","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3308,"kind":32,"name":"where3","url":"classes/_commands_mints_index_.mints.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3309,"kind":32,"name":"skip4","url":"classes/_commands_mints_index_.mints.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3310,"kind":32,"name":"first4","url":"classes/_commands_mints_index_.mints.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3311,"kind":32,"name":"orderBy4","url":"classes/_commands_mints_index_.mints.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3312,"kind":32,"name":"orderDirection4","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3313,"kind":32,"name":"where4","url":"classes/_commands_mints_index_.mints.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3314,"kind":32,"name":"skip5","url":"classes/_commands_mints_index_.mints.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3315,"kind":32,"name":"first5","url":"classes/_commands_mints_index_.mints.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3316,"kind":32,"name":"orderBy5","url":"classes/_commands_mints_index_.mints.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3317,"kind":32,"name":"orderDirection5","url":"classes/_commands_mints_index_.mints.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3318,"kind":32,"name":"where5","url":"classes/_commands_mints_index_.mints.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3319,"kind":32,"name":"block","url":"classes/_commands_mints_index_.mints.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/mints/index\".mints.flags"},{"id":3320,"kind":2048,"name":"run","url":"classes/_commands_mints_index_.mints.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/mints/index\".mints"},{"id":3321,"kind":1024,"name":"argv","url":"classes/_commands_mints_index_.mints.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3322,"kind":1024,"name":"config","url":"classes/_commands_mints_index_.mints.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3323,"kind":1024,"name":"_base","url":"classes/_commands_mints_index_.mints.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3324,"kind":1024,"name":"id","url":"classes/_commands_mints_index_.mints.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3325,"kind":1024,"name":"title","url":"classes/_commands_mints_index_.mints.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3326,"kind":1024,"name":"description","url":"classes/_commands_mints_index_.mints.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3327,"kind":1024,"name":"hidden","url":"classes/_commands_mints_index_.mints.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3328,"kind":1024,"name":"usage","url":"classes/_commands_mints_index_.mints.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3329,"kind":1024,"name":"help","url":"classes/_commands_mints_index_.mints.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3330,"kind":1024,"name":"aliases","url":"classes/_commands_mints_index_.mints.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3331,"kind":1024,"name":"strict","url":"classes/_commands_mints_index_.mints.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3332,"kind":1024,"name":"parse","url":"classes/_commands_mints_index_.mints.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3333,"kind":1024,"name":"args","url":"classes/_commands_mints_index_.mints.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3334,"kind":1024,"name":"plugin","url":"classes/_commands_mints_index_.mints.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3335,"kind":1024,"name":"examples","url":"classes/_commands_mints_index_.mints.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3336,"kind":1024,"name":"parserOptions","url":"classes/_commands_mints_index_.mints.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3337,"kind":65536,"name":"__type","url":"classes/_commands_mints_index_.mints.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/mints/index\".mints.parserOptions"},{"id":3338,"kind":1024,"name":"run","url":"classes/_commands_mints_index_.mints.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/mints/index\".mints"},{"id":3339,"kind":1024,"name":"id","url":"classes/_commands_mints_index_.mints.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3340,"kind":1024,"name":"debug","url":"classes/_commands_mints_index_.mints.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3341,"kind":65536,"name":"__type","url":"classes/_commands_mints_index_.mints.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/mints/index\".mints.debug"},{"id":3342,"kind":512,"name":"constructor","url":"classes/_commands_mints_index_.mints.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3343,"kind":262144,"name":"ctor","url":"classes/_commands_mints_index_.mints.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3344,"kind":2048,"name":"_run","url":"classes/_commands_mints_index_.mints.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3345,"kind":2048,"name":"exit","url":"classes/_commands_mints_index_.mints.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3346,"kind":2048,"name":"warn","url":"classes/_commands_mints_index_.mints.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3347,"kind":2048,"name":"error","url":"classes/_commands_mints_index_.mints.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3348,"kind":2048,"name":"log","url":"classes/_commands_mints_index_.mints.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/mints/index\".mints"},{"id":3349,"kind":2048,"name":"init","url":"classes/_commands_mints_index_.mints.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3350,"kind":2048,"name":"parse","url":"classes/_commands_mints_index_.mints.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3351,"kind":2048,"name":"catch","url":"classes/_commands_mints_index_.mints.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3352,"kind":2048,"name":"finally","url":"classes/_commands_mints_index_.mints.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3353,"kind":2048,"name":"_help","url":"classes/_commands_mints_index_.mints.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3354,"kind":2048,"name":"_helpOverride","url":"classes/_commands_mints_index_.mints.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3355,"kind":2048,"name":"_version","url":"classes/_commands_mints_index_.mints.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/mints/index\".mints"},{"id":3356,"kind":32,"name":"MintsDocument","url":"modules/_commands_mints_index_.html#mintsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/mints/index\""},{"id":3357,"kind":1,"name":"\"commands/pair/index\"","url":"modules/_commands_pair_index_.html","classes":"tsd-kind-module"},{"id":3358,"kind":128,"name":"pair","url":"classes/_commands_pair_index_.pair.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pair/index\""},{"id":3359,"kind":2097152,"name":"flags","url":"classes/_commands_pair_index_.pair.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3360,"kind":32,"name":"help","url":"classes/_commands_pair_index_.pair.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3361,"kind":32,"name":"skip","url":"classes/_commands_pair_index_.pair.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3362,"kind":32,"name":"first","url":"classes/_commands_pair_index_.pair.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3363,"kind":32,"name":"orderBy","url":"classes/_commands_pair_index_.pair.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3364,"kind":32,"name":"orderDirection","url":"classes/_commands_pair_index_.pair.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3365,"kind":32,"name":"where","url":"classes/_commands_pair_index_.pair.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3366,"kind":32,"name":"skip1","url":"classes/_commands_pair_index_.pair.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3367,"kind":32,"name":"first1","url":"classes/_commands_pair_index_.pair.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3368,"kind":32,"name":"orderBy1","url":"classes/_commands_pair_index_.pair.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3369,"kind":32,"name":"orderDirection1","url":"classes/_commands_pair_index_.pair.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3370,"kind":32,"name":"where1","url":"classes/_commands_pair_index_.pair.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3371,"kind":32,"name":"id","url":"classes/_commands_pair_index_.pair.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3372,"kind":32,"name":"block","url":"classes/_commands_pair_index_.pair.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pair/index\".pair.flags"},{"id":3373,"kind":2048,"name":"run","url":"classes/_commands_pair_index_.pair.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pair/index\".pair"},{"id":3374,"kind":1024,"name":"argv","url":"classes/_commands_pair_index_.pair.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3375,"kind":1024,"name":"config","url":"classes/_commands_pair_index_.pair.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3376,"kind":1024,"name":"_base","url":"classes/_commands_pair_index_.pair.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3377,"kind":1024,"name":"id","url":"classes/_commands_pair_index_.pair.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3378,"kind":1024,"name":"title","url":"classes/_commands_pair_index_.pair.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3379,"kind":1024,"name":"description","url":"classes/_commands_pair_index_.pair.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3380,"kind":1024,"name":"hidden","url":"classes/_commands_pair_index_.pair.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3381,"kind":1024,"name":"usage","url":"classes/_commands_pair_index_.pair.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3382,"kind":1024,"name":"help","url":"classes/_commands_pair_index_.pair.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3383,"kind":1024,"name":"aliases","url":"classes/_commands_pair_index_.pair.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3384,"kind":1024,"name":"strict","url":"classes/_commands_pair_index_.pair.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3385,"kind":1024,"name":"parse","url":"classes/_commands_pair_index_.pair.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3386,"kind":1024,"name":"args","url":"classes/_commands_pair_index_.pair.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3387,"kind":1024,"name":"plugin","url":"classes/_commands_pair_index_.pair.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3388,"kind":1024,"name":"examples","url":"classes/_commands_pair_index_.pair.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3389,"kind":1024,"name":"parserOptions","url":"classes/_commands_pair_index_.pair.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3390,"kind":65536,"name":"__type","url":"classes/_commands_pair_index_.pair.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pair/index\".pair.parserOptions"},{"id":3391,"kind":1024,"name":"run","url":"classes/_commands_pair_index_.pair.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pair/index\".pair"},{"id":3392,"kind":1024,"name":"id","url":"classes/_commands_pair_index_.pair.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3393,"kind":1024,"name":"debug","url":"classes/_commands_pair_index_.pair.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3394,"kind":65536,"name":"__type","url":"classes/_commands_pair_index_.pair.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pair/index\".pair.debug"},{"id":3395,"kind":512,"name":"constructor","url":"classes/_commands_pair_index_.pair.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3396,"kind":262144,"name":"ctor","url":"classes/_commands_pair_index_.pair.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3397,"kind":2048,"name":"_run","url":"classes/_commands_pair_index_.pair.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3398,"kind":2048,"name":"exit","url":"classes/_commands_pair_index_.pair.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3399,"kind":2048,"name":"warn","url":"classes/_commands_pair_index_.pair.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3400,"kind":2048,"name":"error","url":"classes/_commands_pair_index_.pair.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3401,"kind":2048,"name":"log","url":"classes/_commands_pair_index_.pair.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pair/index\".pair"},{"id":3402,"kind":2048,"name":"init","url":"classes/_commands_pair_index_.pair.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3403,"kind":2048,"name":"parse","url":"classes/_commands_pair_index_.pair.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3404,"kind":2048,"name":"catch","url":"classes/_commands_pair_index_.pair.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3405,"kind":2048,"name":"finally","url":"classes/_commands_pair_index_.pair.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3406,"kind":2048,"name":"_help","url":"classes/_commands_pair_index_.pair.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3407,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pair_index_.pair.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3408,"kind":2048,"name":"_version","url":"classes/_commands_pair_index_.pair.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pair/index\".pair"},{"id":3409,"kind":32,"name":"PairDocument","url":"modules/_commands_pair_index_.html#pairdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pair/index\""},{"id":3410,"kind":1,"name":"\"commands/pairDayData/index\"","url":"modules/_commands_pairdaydata_index_.html","classes":"tsd-kind-module"},{"id":3411,"kind":128,"name":"pairDayData","url":"classes/_commands_pairdaydata_index_.pairdaydata.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pairDayData/index\""},{"id":3412,"kind":2097152,"name":"flags","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3413,"kind":32,"name":"help","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3414,"kind":32,"name":"skip","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3415,"kind":32,"name":"first","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3416,"kind":32,"name":"orderBy","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3417,"kind":32,"name":"orderDirection","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3418,"kind":32,"name":"where","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3419,"kind":32,"name":"skip1","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3420,"kind":32,"name":"first1","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3421,"kind":32,"name":"orderBy1","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3422,"kind":32,"name":"orderDirection1","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3423,"kind":32,"name":"where1","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3424,"kind":32,"name":"id","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3425,"kind":32,"name":"block","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayData/index\".pairDayData.flags"},{"id":3426,"kind":2048,"name":"run","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3427,"kind":1024,"name":"argv","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3428,"kind":1024,"name":"config","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3429,"kind":1024,"name":"_base","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3430,"kind":1024,"name":"id","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3431,"kind":1024,"name":"title","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3432,"kind":1024,"name":"description","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3433,"kind":1024,"name":"hidden","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3434,"kind":1024,"name":"usage","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3435,"kind":1024,"name":"help","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3436,"kind":1024,"name":"aliases","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3437,"kind":1024,"name":"strict","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3438,"kind":1024,"name":"parse","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3439,"kind":1024,"name":"args","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3440,"kind":1024,"name":"plugin","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3441,"kind":1024,"name":"examples","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3442,"kind":1024,"name":"parserOptions","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3443,"kind":65536,"name":"__type","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairDayData/index\".pairDayData.parserOptions"},{"id":3444,"kind":1024,"name":"run","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3445,"kind":1024,"name":"id","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3446,"kind":1024,"name":"debug","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3447,"kind":65536,"name":"__type","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairDayData/index\".pairDayData.debug"},{"id":3448,"kind":512,"name":"constructor","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3449,"kind":262144,"name":"ctor","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3450,"kind":2048,"name":"_run","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3451,"kind":2048,"name":"exit","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3452,"kind":2048,"name":"warn","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3453,"kind":2048,"name":"error","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3454,"kind":2048,"name":"log","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3455,"kind":2048,"name":"init","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3456,"kind":2048,"name":"parse","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3457,"kind":2048,"name":"catch","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3458,"kind":2048,"name":"finally","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3459,"kind":2048,"name":"_help","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3460,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3461,"kind":2048,"name":"_version","url":"classes/_commands_pairdaydata_index_.pairdaydata.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayData/index\".pairDayData"},{"id":3462,"kind":32,"name":"PairDayDataDocument","url":"modules/_commands_pairdaydata_index_.html#pairdaydatadocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pairDayData/index\""},{"id":3463,"kind":1,"name":"\"commands/pairDayDatas/index\"","url":"modules/_commands_pairdaydatas_index_.html","classes":"tsd-kind-module"},{"id":3464,"kind":128,"name":"pairDayDatas","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pairDayDatas/index\""},{"id":3465,"kind":2097152,"name":"flags","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3466,"kind":32,"name":"help","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3467,"kind":32,"name":"skip","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3468,"kind":32,"name":"first","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3469,"kind":32,"name":"orderBy","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3470,"kind":32,"name":"orderDirection","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3471,"kind":32,"name":"where","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3472,"kind":32,"name":"skip1","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3473,"kind":32,"name":"first1","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3474,"kind":32,"name":"orderBy1","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3475,"kind":32,"name":"orderDirection1","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3476,"kind":32,"name":"where1","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3477,"kind":32,"name":"skip2","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3478,"kind":32,"name":"first2","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3479,"kind":32,"name":"orderBy2","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3480,"kind":32,"name":"orderDirection2","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3481,"kind":32,"name":"where2","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3482,"kind":32,"name":"block","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairDayDatas/index\".pairDayDatas.flags"},{"id":3483,"kind":2048,"name":"run","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3484,"kind":1024,"name":"argv","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3485,"kind":1024,"name":"config","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3486,"kind":1024,"name":"_base","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3487,"kind":1024,"name":"id","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3488,"kind":1024,"name":"title","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3489,"kind":1024,"name":"description","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3490,"kind":1024,"name":"hidden","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3491,"kind":1024,"name":"usage","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3492,"kind":1024,"name":"help","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3493,"kind":1024,"name":"aliases","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3494,"kind":1024,"name":"strict","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3495,"kind":1024,"name":"parse","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3496,"kind":1024,"name":"args","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3497,"kind":1024,"name":"plugin","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3498,"kind":1024,"name":"examples","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3499,"kind":1024,"name":"parserOptions","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3500,"kind":65536,"name":"__type","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairDayDatas/index\".pairDayDatas.parserOptions"},{"id":3501,"kind":1024,"name":"run","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3502,"kind":1024,"name":"id","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3503,"kind":1024,"name":"debug","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3504,"kind":65536,"name":"__type","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairDayDatas/index\".pairDayDatas.debug"},{"id":3505,"kind":512,"name":"constructor","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3506,"kind":262144,"name":"ctor","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3507,"kind":2048,"name":"_run","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3508,"kind":2048,"name":"exit","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3509,"kind":2048,"name":"warn","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3510,"kind":2048,"name":"error","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3511,"kind":2048,"name":"log","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3512,"kind":2048,"name":"init","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3513,"kind":2048,"name":"parse","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3514,"kind":2048,"name":"catch","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3515,"kind":2048,"name":"finally","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3516,"kind":2048,"name":"_help","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3517,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3518,"kind":2048,"name":"_version","url":"classes/_commands_pairdaydatas_index_.pairdaydatas.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairDayDatas/index\".pairDayDatas"},{"id":3519,"kind":32,"name":"PairDayDatasDocument","url":"modules/_commands_pairdaydatas_index_.html#pairdaydatasdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pairDayDatas/index\""},{"id":3520,"kind":1,"name":"\"commands/pairHourData/index\"","url":"modules/_commands_pairhourdata_index_.html","classes":"tsd-kind-module"},{"id":3521,"kind":128,"name":"pairHourData","url":"classes/_commands_pairhourdata_index_.pairhourdata.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pairHourData/index\""},{"id":3522,"kind":2097152,"name":"flags","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3523,"kind":32,"name":"help","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3524,"kind":32,"name":"skip","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3525,"kind":32,"name":"first","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3526,"kind":32,"name":"orderBy","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3527,"kind":32,"name":"orderDirection","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3528,"kind":32,"name":"where","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3529,"kind":32,"name":"skip1","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3530,"kind":32,"name":"first1","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3531,"kind":32,"name":"orderBy1","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3532,"kind":32,"name":"orderDirection1","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3533,"kind":32,"name":"where1","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3534,"kind":32,"name":"id","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3535,"kind":32,"name":"block","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourData/index\".pairHourData.flags"},{"id":3536,"kind":2048,"name":"run","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3537,"kind":1024,"name":"argv","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3538,"kind":1024,"name":"config","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3539,"kind":1024,"name":"_base","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3540,"kind":1024,"name":"id","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3541,"kind":1024,"name":"title","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3542,"kind":1024,"name":"description","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3543,"kind":1024,"name":"hidden","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3544,"kind":1024,"name":"usage","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3545,"kind":1024,"name":"help","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3546,"kind":1024,"name":"aliases","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3547,"kind":1024,"name":"strict","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3548,"kind":1024,"name":"parse","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3549,"kind":1024,"name":"args","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3550,"kind":1024,"name":"plugin","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3551,"kind":1024,"name":"examples","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3552,"kind":1024,"name":"parserOptions","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3553,"kind":65536,"name":"__type","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairHourData/index\".pairHourData.parserOptions"},{"id":3554,"kind":1024,"name":"run","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3555,"kind":1024,"name":"id","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3556,"kind":1024,"name":"debug","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3557,"kind":65536,"name":"__type","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairHourData/index\".pairHourData.debug"},{"id":3558,"kind":512,"name":"constructor","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3559,"kind":262144,"name":"ctor","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3560,"kind":2048,"name":"_run","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3561,"kind":2048,"name":"exit","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3562,"kind":2048,"name":"warn","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3563,"kind":2048,"name":"error","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3564,"kind":2048,"name":"log","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3565,"kind":2048,"name":"init","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3566,"kind":2048,"name":"parse","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3567,"kind":2048,"name":"catch","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3568,"kind":2048,"name":"finally","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3569,"kind":2048,"name":"_help","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3570,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3571,"kind":2048,"name":"_version","url":"classes/_commands_pairhourdata_index_.pairhourdata.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourData/index\".pairHourData"},{"id":3572,"kind":32,"name":"PairHourDataDocument","url":"modules/_commands_pairhourdata_index_.html#pairhourdatadocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pairHourData/index\""},{"id":3573,"kind":1,"name":"\"commands/pairHourDatas/index\"","url":"modules/_commands_pairhourdatas_index_.html","classes":"tsd-kind-module"},{"id":3574,"kind":128,"name":"pairHourDatas","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pairHourDatas/index\""},{"id":3575,"kind":2097152,"name":"flags","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3576,"kind":32,"name":"help","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3577,"kind":32,"name":"skip","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3578,"kind":32,"name":"first","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3579,"kind":32,"name":"orderBy","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3580,"kind":32,"name":"orderDirection","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3581,"kind":32,"name":"where","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3582,"kind":32,"name":"skip1","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3583,"kind":32,"name":"first1","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3584,"kind":32,"name":"orderBy1","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3585,"kind":32,"name":"orderDirection1","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3586,"kind":32,"name":"where1","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3587,"kind":32,"name":"skip2","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3588,"kind":32,"name":"first2","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3589,"kind":32,"name":"orderBy2","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3590,"kind":32,"name":"orderDirection2","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3591,"kind":32,"name":"where2","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3592,"kind":32,"name":"block","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairHourDatas/index\".pairHourDatas.flags"},{"id":3593,"kind":2048,"name":"run","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3594,"kind":1024,"name":"argv","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3595,"kind":1024,"name":"config","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3596,"kind":1024,"name":"_base","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3597,"kind":1024,"name":"id","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3598,"kind":1024,"name":"title","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3599,"kind":1024,"name":"description","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3600,"kind":1024,"name":"hidden","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3601,"kind":1024,"name":"usage","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3602,"kind":1024,"name":"help","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3603,"kind":1024,"name":"aliases","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3604,"kind":1024,"name":"strict","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3605,"kind":1024,"name":"parse","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3606,"kind":1024,"name":"args","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3607,"kind":1024,"name":"plugin","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3608,"kind":1024,"name":"examples","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3609,"kind":1024,"name":"parserOptions","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3610,"kind":65536,"name":"__type","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairHourDatas/index\".pairHourDatas.parserOptions"},{"id":3611,"kind":1024,"name":"run","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3612,"kind":1024,"name":"id","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3613,"kind":1024,"name":"debug","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3614,"kind":65536,"name":"__type","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairHourDatas/index\".pairHourDatas.debug"},{"id":3615,"kind":512,"name":"constructor","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3616,"kind":262144,"name":"ctor","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3617,"kind":2048,"name":"_run","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3618,"kind":2048,"name":"exit","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3619,"kind":2048,"name":"warn","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3620,"kind":2048,"name":"error","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3621,"kind":2048,"name":"log","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3622,"kind":2048,"name":"init","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3623,"kind":2048,"name":"parse","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3624,"kind":2048,"name":"catch","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3625,"kind":2048,"name":"finally","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3626,"kind":2048,"name":"_help","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3627,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3628,"kind":2048,"name":"_version","url":"classes/_commands_pairhourdatas_index_.pairhourdatas.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairHourDatas/index\".pairHourDatas"},{"id":3629,"kind":32,"name":"PairHourDatasDocument","url":"modules/_commands_pairhourdatas_index_.html#pairhourdatasdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pairHourDatas/index\""},{"id":3630,"kind":1,"name":"\"commands/pairs/index\"","url":"modules/_commands_pairs_index_.html","classes":"tsd-kind-module"},{"id":3631,"kind":128,"name":"pairs","url":"classes/_commands_pairs_index_.pairs.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/pairs/index\""},{"id":3632,"kind":2097152,"name":"flags","url":"classes/_commands_pairs_index_.pairs.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3633,"kind":32,"name":"help","url":"classes/_commands_pairs_index_.pairs.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3634,"kind":32,"name":"skip","url":"classes/_commands_pairs_index_.pairs.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3635,"kind":32,"name":"first","url":"classes/_commands_pairs_index_.pairs.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3636,"kind":32,"name":"orderBy","url":"classes/_commands_pairs_index_.pairs.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3637,"kind":32,"name":"orderDirection","url":"classes/_commands_pairs_index_.pairs.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3638,"kind":32,"name":"where","url":"classes/_commands_pairs_index_.pairs.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3639,"kind":32,"name":"skip1","url":"classes/_commands_pairs_index_.pairs.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3640,"kind":32,"name":"first1","url":"classes/_commands_pairs_index_.pairs.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3641,"kind":32,"name":"orderBy1","url":"classes/_commands_pairs_index_.pairs.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3642,"kind":32,"name":"orderDirection1","url":"classes/_commands_pairs_index_.pairs.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3643,"kind":32,"name":"where1","url":"classes/_commands_pairs_index_.pairs.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3644,"kind":32,"name":"skip2","url":"classes/_commands_pairs_index_.pairs.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3645,"kind":32,"name":"first2","url":"classes/_commands_pairs_index_.pairs.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3646,"kind":32,"name":"orderBy2","url":"classes/_commands_pairs_index_.pairs.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3647,"kind":32,"name":"orderDirection2","url":"classes/_commands_pairs_index_.pairs.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3648,"kind":32,"name":"where2","url":"classes/_commands_pairs_index_.pairs.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3649,"kind":32,"name":"block","url":"classes/_commands_pairs_index_.pairs.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/pairs/index\".pairs.flags"},{"id":3650,"kind":2048,"name":"run","url":"classes/_commands_pairs_index_.pairs.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/pairs/index\".pairs"},{"id":3651,"kind":1024,"name":"argv","url":"classes/_commands_pairs_index_.pairs.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3652,"kind":1024,"name":"config","url":"classes/_commands_pairs_index_.pairs.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3653,"kind":1024,"name":"_base","url":"classes/_commands_pairs_index_.pairs.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3654,"kind":1024,"name":"id","url":"classes/_commands_pairs_index_.pairs.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3655,"kind":1024,"name":"title","url":"classes/_commands_pairs_index_.pairs.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3656,"kind":1024,"name":"description","url":"classes/_commands_pairs_index_.pairs.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3657,"kind":1024,"name":"hidden","url":"classes/_commands_pairs_index_.pairs.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3658,"kind":1024,"name":"usage","url":"classes/_commands_pairs_index_.pairs.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3659,"kind":1024,"name":"help","url":"classes/_commands_pairs_index_.pairs.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3660,"kind":1024,"name":"aliases","url":"classes/_commands_pairs_index_.pairs.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3661,"kind":1024,"name":"strict","url":"classes/_commands_pairs_index_.pairs.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3662,"kind":1024,"name":"parse","url":"classes/_commands_pairs_index_.pairs.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3663,"kind":1024,"name":"args","url":"classes/_commands_pairs_index_.pairs.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3664,"kind":1024,"name":"plugin","url":"classes/_commands_pairs_index_.pairs.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3665,"kind":1024,"name":"examples","url":"classes/_commands_pairs_index_.pairs.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3666,"kind":1024,"name":"parserOptions","url":"classes/_commands_pairs_index_.pairs.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3667,"kind":65536,"name":"__type","url":"classes/_commands_pairs_index_.pairs.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairs/index\".pairs.parserOptions"},{"id":3668,"kind":1024,"name":"run","url":"classes/_commands_pairs_index_.pairs.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/pairs/index\".pairs"},{"id":3669,"kind":1024,"name":"id","url":"classes/_commands_pairs_index_.pairs.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3670,"kind":1024,"name":"debug","url":"classes/_commands_pairs_index_.pairs.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3671,"kind":65536,"name":"__type","url":"classes/_commands_pairs_index_.pairs.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/pairs/index\".pairs.debug"},{"id":3672,"kind":512,"name":"constructor","url":"classes/_commands_pairs_index_.pairs.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3673,"kind":262144,"name":"ctor","url":"classes/_commands_pairs_index_.pairs.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3674,"kind":2048,"name":"_run","url":"classes/_commands_pairs_index_.pairs.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3675,"kind":2048,"name":"exit","url":"classes/_commands_pairs_index_.pairs.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3676,"kind":2048,"name":"warn","url":"classes/_commands_pairs_index_.pairs.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3677,"kind":2048,"name":"error","url":"classes/_commands_pairs_index_.pairs.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3678,"kind":2048,"name":"log","url":"classes/_commands_pairs_index_.pairs.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/pairs/index\".pairs"},{"id":3679,"kind":2048,"name":"init","url":"classes/_commands_pairs_index_.pairs.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3680,"kind":2048,"name":"parse","url":"classes/_commands_pairs_index_.pairs.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3681,"kind":2048,"name":"catch","url":"classes/_commands_pairs_index_.pairs.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3682,"kind":2048,"name":"finally","url":"classes/_commands_pairs_index_.pairs.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3683,"kind":2048,"name":"_help","url":"classes/_commands_pairs_index_.pairs.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3684,"kind":2048,"name":"_helpOverride","url":"classes/_commands_pairs_index_.pairs.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3685,"kind":2048,"name":"_version","url":"classes/_commands_pairs_index_.pairs.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/pairs/index\".pairs"},{"id":3686,"kind":32,"name":"PairsDocument","url":"modules/_commands_pairs_index_.html#pairsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/pairs/index\""},{"id":3687,"kind":1,"name":"\"commands/sushiswapDayData/index\"","url":"modules/_commands_sushiswapdaydata_index_.html","classes":"tsd-kind-module"},{"id":3688,"kind":128,"name":"sushiswapDayData","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/sushiswapDayData/index\""},{"id":3689,"kind":2097152,"name":"flags","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3690,"kind":32,"name":"help","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3691,"kind":32,"name":"skip","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3692,"kind":32,"name":"first","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3693,"kind":32,"name":"orderBy","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3694,"kind":32,"name":"orderDirection","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3695,"kind":32,"name":"where","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3696,"kind":32,"name":"skip1","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3697,"kind":32,"name":"first1","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3698,"kind":32,"name":"orderBy1","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3699,"kind":32,"name":"orderDirection1","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3700,"kind":32,"name":"where1","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3701,"kind":32,"name":"skip2","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3702,"kind":32,"name":"first2","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3703,"kind":32,"name":"orderBy2","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3704,"kind":32,"name":"orderDirection2","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3705,"kind":32,"name":"where2","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3706,"kind":32,"name":"skip3","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3707,"kind":32,"name":"first3","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3708,"kind":32,"name":"orderBy3","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3709,"kind":32,"name":"orderDirection3","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3710,"kind":32,"name":"where3","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3711,"kind":32,"name":"skip4","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3712,"kind":32,"name":"first4","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3713,"kind":32,"name":"orderBy4","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3714,"kind":32,"name":"orderDirection4","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3715,"kind":32,"name":"where4","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3716,"kind":32,"name":"id","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3717,"kind":32,"name":"block","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.flags"},{"id":3718,"kind":2048,"name":"run","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3719,"kind":1024,"name":"argv","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3720,"kind":1024,"name":"config","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3721,"kind":1024,"name":"_base","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3722,"kind":1024,"name":"id","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3723,"kind":1024,"name":"title","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3724,"kind":1024,"name":"description","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3725,"kind":1024,"name":"hidden","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3726,"kind":1024,"name":"usage","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3727,"kind":1024,"name":"help","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3728,"kind":1024,"name":"aliases","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3729,"kind":1024,"name":"strict","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3730,"kind":1024,"name":"parse","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3731,"kind":1024,"name":"args","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3732,"kind":1024,"name":"plugin","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3733,"kind":1024,"name":"examples","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3734,"kind":1024,"name":"parserOptions","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3735,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.parserOptions"},{"id":3736,"kind":1024,"name":"run","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3737,"kind":1024,"name":"id","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3738,"kind":1024,"name":"debug","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3739,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData.debug"},{"id":3740,"kind":512,"name":"constructor","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3741,"kind":262144,"name":"ctor","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3742,"kind":2048,"name":"_run","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3743,"kind":2048,"name":"exit","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3744,"kind":2048,"name":"warn","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3745,"kind":2048,"name":"error","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3746,"kind":2048,"name":"log","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3747,"kind":2048,"name":"init","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3748,"kind":2048,"name":"parse","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3749,"kind":2048,"name":"catch","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3750,"kind":2048,"name":"finally","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3751,"kind":2048,"name":"_help","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3752,"kind":2048,"name":"_helpOverride","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3753,"kind":2048,"name":"_version","url":"classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayData/index\".sushiswapDayData"},{"id":3754,"kind":32,"name":"SushiswapDayDataDocument","url":"modules/_commands_sushiswapdaydata_index_.html#sushiswapdaydatadocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/sushiswapDayData/index\""},{"id":3755,"kind":1,"name":"\"commands/sushiswapDayDatas/index\"","url":"modules/_commands_sushiswapdaydatas_index_.html","classes":"tsd-kind-module"},{"id":3756,"kind":128,"name":"sushiswapDayDatas","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/sushiswapDayDatas/index\""},{"id":3757,"kind":2097152,"name":"flags","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3758,"kind":32,"name":"help","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3759,"kind":32,"name":"skip","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3760,"kind":32,"name":"first","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3761,"kind":32,"name":"orderBy","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3762,"kind":32,"name":"orderDirection","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3763,"kind":32,"name":"where","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3764,"kind":32,"name":"skip1","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3765,"kind":32,"name":"first1","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3766,"kind":32,"name":"orderBy1","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3767,"kind":32,"name":"orderDirection1","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3768,"kind":32,"name":"where1","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3769,"kind":32,"name":"skip2","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3770,"kind":32,"name":"first2","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3771,"kind":32,"name":"orderBy2","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3772,"kind":32,"name":"orderDirection2","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3773,"kind":32,"name":"where2","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3774,"kind":32,"name":"skip3","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3775,"kind":32,"name":"first3","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3776,"kind":32,"name":"orderBy3","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3777,"kind":32,"name":"orderDirection3","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3778,"kind":32,"name":"where3","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3779,"kind":32,"name":"skip4","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3780,"kind":32,"name":"first4","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3781,"kind":32,"name":"orderBy4","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3782,"kind":32,"name":"orderDirection4","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3783,"kind":32,"name":"where4","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3784,"kind":32,"name":"skip5","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3785,"kind":32,"name":"first5","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3786,"kind":32,"name":"orderBy5","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3787,"kind":32,"name":"orderDirection5","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3788,"kind":32,"name":"where5","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3789,"kind":32,"name":"block","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.flags"},{"id":3790,"kind":2048,"name":"run","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3791,"kind":1024,"name":"argv","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3792,"kind":1024,"name":"config","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3793,"kind":1024,"name":"_base","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3794,"kind":1024,"name":"id","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3795,"kind":1024,"name":"title","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3796,"kind":1024,"name":"description","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3797,"kind":1024,"name":"hidden","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3798,"kind":1024,"name":"usage","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3799,"kind":1024,"name":"help","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3800,"kind":1024,"name":"aliases","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3801,"kind":1024,"name":"strict","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3802,"kind":1024,"name":"parse","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3803,"kind":1024,"name":"args","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3804,"kind":1024,"name":"plugin","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3805,"kind":1024,"name":"examples","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3806,"kind":1024,"name":"parserOptions","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3807,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.parserOptions"},{"id":3808,"kind":1024,"name":"run","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3809,"kind":1024,"name":"id","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3810,"kind":1024,"name":"debug","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3811,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas.debug"},{"id":3812,"kind":512,"name":"constructor","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3813,"kind":262144,"name":"ctor","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3814,"kind":2048,"name":"_run","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3815,"kind":2048,"name":"exit","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3816,"kind":2048,"name":"warn","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3817,"kind":2048,"name":"error","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3818,"kind":2048,"name":"log","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3819,"kind":2048,"name":"init","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3820,"kind":2048,"name":"parse","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3821,"kind":2048,"name":"catch","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3822,"kind":2048,"name":"finally","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3823,"kind":2048,"name":"_help","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3824,"kind":2048,"name":"_helpOverride","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3825,"kind":2048,"name":"_version","url":"classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapDayDatas/index\".sushiswapDayDatas"},{"id":3826,"kind":32,"name":"SushiswapDayDatasDocument","url":"modules/_commands_sushiswapdaydatas_index_.html#sushiswapdaydatasdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/sushiswapDayDatas/index\""},{"id":3827,"kind":1,"name":"\"commands/sushiswapFactories/index\"","url":"modules/_commands_sushiswapfactories_index_.html","classes":"tsd-kind-module"},{"id":3828,"kind":128,"name":"sushiswapFactories","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/sushiswapFactories/index\""},{"id":3829,"kind":2097152,"name":"flags","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3830,"kind":32,"name":"help","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3831,"kind":32,"name":"skip","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3832,"kind":32,"name":"first","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3833,"kind":32,"name":"orderBy","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3834,"kind":32,"name":"orderDirection","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3835,"kind":32,"name":"where","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3836,"kind":32,"name":"skip1","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3837,"kind":32,"name":"first1","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3838,"kind":32,"name":"orderBy1","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3839,"kind":32,"name":"orderDirection1","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3840,"kind":32,"name":"where1","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3841,"kind":32,"name":"skip2","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3842,"kind":32,"name":"first2","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3843,"kind":32,"name":"orderBy2","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3844,"kind":32,"name":"orderDirection2","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3845,"kind":32,"name":"where2","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3846,"kind":32,"name":"skip3","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3847,"kind":32,"name":"first3","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3848,"kind":32,"name":"orderBy3","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3849,"kind":32,"name":"orderDirection3","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3850,"kind":32,"name":"where3","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3851,"kind":32,"name":"skip4","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3852,"kind":32,"name":"first4","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3853,"kind":32,"name":"orderBy4","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3854,"kind":32,"name":"orderDirection4","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3855,"kind":32,"name":"where4","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3856,"kind":32,"name":"skip5","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3857,"kind":32,"name":"first5","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3858,"kind":32,"name":"orderBy5","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3859,"kind":32,"name":"orderDirection5","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3860,"kind":32,"name":"where5","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3861,"kind":32,"name":"block","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.flags"},{"id":3862,"kind":2048,"name":"run","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3863,"kind":1024,"name":"argv","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3864,"kind":1024,"name":"config","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3865,"kind":1024,"name":"_base","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3866,"kind":1024,"name":"id","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3867,"kind":1024,"name":"title","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3868,"kind":1024,"name":"description","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3869,"kind":1024,"name":"hidden","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3870,"kind":1024,"name":"usage","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3871,"kind":1024,"name":"help","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3872,"kind":1024,"name":"aliases","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3873,"kind":1024,"name":"strict","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3874,"kind":1024,"name":"parse","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3875,"kind":1024,"name":"args","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3876,"kind":1024,"name":"plugin","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3877,"kind":1024,"name":"examples","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3878,"kind":1024,"name":"parserOptions","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3879,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.parserOptions"},{"id":3880,"kind":1024,"name":"run","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3881,"kind":1024,"name":"id","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3882,"kind":1024,"name":"debug","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3883,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories.debug"},{"id":3884,"kind":512,"name":"constructor","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3885,"kind":262144,"name":"ctor","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3886,"kind":2048,"name":"_run","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3887,"kind":2048,"name":"exit","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3888,"kind":2048,"name":"warn","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3889,"kind":2048,"name":"error","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3890,"kind":2048,"name":"log","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3891,"kind":2048,"name":"init","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3892,"kind":2048,"name":"parse","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3893,"kind":2048,"name":"catch","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3894,"kind":2048,"name":"finally","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3895,"kind":2048,"name":"_help","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3896,"kind":2048,"name":"_helpOverride","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3897,"kind":2048,"name":"_version","url":"classes/_commands_sushiswapfactories_index_.sushiswapfactories.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactories/index\".sushiswapFactories"},{"id":3898,"kind":32,"name":"SushiswapFactoriesDocument","url":"modules/_commands_sushiswapfactories_index_.html#sushiswapfactoriesdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/sushiswapFactories/index\""},{"id":3899,"kind":1,"name":"\"commands/sushiswapFactory/index\"","url":"modules/_commands_sushiswapfactory_index_.html","classes":"tsd-kind-module"},{"id":3900,"kind":128,"name":"sushiswapFactory","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/sushiswapFactory/index\""},{"id":3901,"kind":2097152,"name":"flags","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3902,"kind":32,"name":"help","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3903,"kind":32,"name":"skip","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3904,"kind":32,"name":"first","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3905,"kind":32,"name":"orderBy","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3906,"kind":32,"name":"orderDirection","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3907,"kind":32,"name":"where","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3908,"kind":32,"name":"skip1","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3909,"kind":32,"name":"first1","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3910,"kind":32,"name":"orderBy1","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3911,"kind":32,"name":"orderDirection1","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3912,"kind":32,"name":"where1","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3913,"kind":32,"name":"skip2","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3914,"kind":32,"name":"first2","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3915,"kind":32,"name":"orderBy2","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3916,"kind":32,"name":"orderDirection2","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3917,"kind":32,"name":"where2","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3918,"kind":32,"name":"skip3","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3919,"kind":32,"name":"first3","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3920,"kind":32,"name":"orderBy3","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3921,"kind":32,"name":"orderDirection3","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3922,"kind":32,"name":"where3","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3923,"kind":32,"name":"skip4","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3924,"kind":32,"name":"first4","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3925,"kind":32,"name":"orderBy4","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3926,"kind":32,"name":"orderDirection4","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3927,"kind":32,"name":"where4","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3928,"kind":32,"name":"id","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3929,"kind":32,"name":"block","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.flags"},{"id":3930,"kind":2048,"name":"run","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3931,"kind":1024,"name":"argv","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3932,"kind":1024,"name":"config","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3933,"kind":1024,"name":"_base","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3934,"kind":1024,"name":"id","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3935,"kind":1024,"name":"title","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3936,"kind":1024,"name":"description","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3937,"kind":1024,"name":"hidden","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3938,"kind":1024,"name":"usage","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3939,"kind":1024,"name":"help","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3940,"kind":1024,"name":"aliases","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3941,"kind":1024,"name":"strict","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3942,"kind":1024,"name":"parse","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3943,"kind":1024,"name":"args","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3944,"kind":1024,"name":"plugin","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3945,"kind":1024,"name":"examples","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3946,"kind":1024,"name":"parserOptions","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3947,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.parserOptions"},{"id":3948,"kind":1024,"name":"run","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3949,"kind":1024,"name":"id","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3950,"kind":1024,"name":"debug","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3951,"kind":65536,"name":"__type","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory.debug"},{"id":3952,"kind":512,"name":"constructor","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3953,"kind":262144,"name":"ctor","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3954,"kind":2048,"name":"_run","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3955,"kind":2048,"name":"exit","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3956,"kind":2048,"name":"warn","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3957,"kind":2048,"name":"error","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3958,"kind":2048,"name":"log","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3959,"kind":2048,"name":"init","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3960,"kind":2048,"name":"parse","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3961,"kind":2048,"name":"catch","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3962,"kind":2048,"name":"finally","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3963,"kind":2048,"name":"_help","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3964,"kind":2048,"name":"_helpOverride","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3965,"kind":2048,"name":"_version","url":"classes/_commands_sushiswapfactory_index_.sushiswapfactory.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/sushiswapFactory/index\".sushiswapFactory"},{"id":3966,"kind":32,"name":"SushiswapFactoryDocument","url":"modules/_commands_sushiswapfactory_index_.html#sushiswapfactorydocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/sushiswapFactory/index\""},{"id":3967,"kind":1,"name":"\"commands/swap/index\"","url":"modules/_commands_swap_index_.html","classes":"tsd-kind-module"},{"id":3968,"kind":128,"name":"swap","url":"classes/_commands_swap_index_.swap.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/swap/index\""},{"id":3969,"kind":2097152,"name":"flags","url":"classes/_commands_swap_index_.swap.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":3970,"kind":32,"name":"help","url":"classes/_commands_swap_index_.swap.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3971,"kind":32,"name":"skip","url":"classes/_commands_swap_index_.swap.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3972,"kind":32,"name":"first","url":"classes/_commands_swap_index_.swap.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3973,"kind":32,"name":"orderBy","url":"classes/_commands_swap_index_.swap.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3974,"kind":32,"name":"orderDirection","url":"classes/_commands_swap_index_.swap.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3975,"kind":32,"name":"where","url":"classes/_commands_swap_index_.swap.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3976,"kind":32,"name":"skip1","url":"classes/_commands_swap_index_.swap.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3977,"kind":32,"name":"first1","url":"classes/_commands_swap_index_.swap.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3978,"kind":32,"name":"orderBy1","url":"classes/_commands_swap_index_.swap.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3979,"kind":32,"name":"orderDirection1","url":"classes/_commands_swap_index_.swap.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3980,"kind":32,"name":"where1","url":"classes/_commands_swap_index_.swap.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3981,"kind":32,"name":"skip2","url":"classes/_commands_swap_index_.swap.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3982,"kind":32,"name":"first2","url":"classes/_commands_swap_index_.swap.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3983,"kind":32,"name":"orderBy2","url":"classes/_commands_swap_index_.swap.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3984,"kind":32,"name":"orderDirection2","url":"classes/_commands_swap_index_.swap.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3985,"kind":32,"name":"where2","url":"classes/_commands_swap_index_.swap.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3986,"kind":32,"name":"skip3","url":"classes/_commands_swap_index_.swap.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3987,"kind":32,"name":"first3","url":"classes/_commands_swap_index_.swap.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3988,"kind":32,"name":"orderBy3","url":"classes/_commands_swap_index_.swap.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3989,"kind":32,"name":"orderDirection3","url":"classes/_commands_swap_index_.swap.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3990,"kind":32,"name":"where3","url":"classes/_commands_swap_index_.swap.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3991,"kind":32,"name":"skip4","url":"classes/_commands_swap_index_.swap.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3992,"kind":32,"name":"first4","url":"classes/_commands_swap_index_.swap.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3993,"kind":32,"name":"orderBy4","url":"classes/_commands_swap_index_.swap.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3994,"kind":32,"name":"orderDirection4","url":"classes/_commands_swap_index_.swap.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3995,"kind":32,"name":"where4","url":"classes/_commands_swap_index_.swap.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3996,"kind":32,"name":"id","url":"classes/_commands_swap_index_.swap.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3997,"kind":32,"name":"block","url":"classes/_commands_swap_index_.swap.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swap/index\".swap.flags"},{"id":3998,"kind":2048,"name":"run","url":"classes/_commands_swap_index_.swap.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/swap/index\".swap"},{"id":3999,"kind":1024,"name":"argv","url":"classes/_commands_swap_index_.swap.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4000,"kind":1024,"name":"config","url":"classes/_commands_swap_index_.swap.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4001,"kind":1024,"name":"_base","url":"classes/_commands_swap_index_.swap.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4002,"kind":1024,"name":"id","url":"classes/_commands_swap_index_.swap.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4003,"kind":1024,"name":"title","url":"classes/_commands_swap_index_.swap.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4004,"kind":1024,"name":"description","url":"classes/_commands_swap_index_.swap.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4005,"kind":1024,"name":"hidden","url":"classes/_commands_swap_index_.swap.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4006,"kind":1024,"name":"usage","url":"classes/_commands_swap_index_.swap.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4007,"kind":1024,"name":"help","url":"classes/_commands_swap_index_.swap.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4008,"kind":1024,"name":"aliases","url":"classes/_commands_swap_index_.swap.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4009,"kind":1024,"name":"strict","url":"classes/_commands_swap_index_.swap.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4010,"kind":1024,"name":"parse","url":"classes/_commands_swap_index_.swap.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4011,"kind":1024,"name":"args","url":"classes/_commands_swap_index_.swap.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4012,"kind":1024,"name":"plugin","url":"classes/_commands_swap_index_.swap.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4013,"kind":1024,"name":"examples","url":"classes/_commands_swap_index_.swap.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4014,"kind":1024,"name":"parserOptions","url":"classes/_commands_swap_index_.swap.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4015,"kind":65536,"name":"__type","url":"classes/_commands_swap_index_.swap.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/swap/index\".swap.parserOptions"},{"id":4016,"kind":1024,"name":"run","url":"classes/_commands_swap_index_.swap.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swap/index\".swap"},{"id":4017,"kind":1024,"name":"id","url":"classes/_commands_swap_index_.swap.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4018,"kind":1024,"name":"debug","url":"classes/_commands_swap_index_.swap.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4019,"kind":65536,"name":"__type","url":"classes/_commands_swap_index_.swap.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/swap/index\".swap.debug"},{"id":4020,"kind":512,"name":"constructor","url":"classes/_commands_swap_index_.swap.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4021,"kind":262144,"name":"ctor","url":"classes/_commands_swap_index_.swap.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4022,"kind":2048,"name":"_run","url":"classes/_commands_swap_index_.swap.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4023,"kind":2048,"name":"exit","url":"classes/_commands_swap_index_.swap.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4024,"kind":2048,"name":"warn","url":"classes/_commands_swap_index_.swap.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4025,"kind":2048,"name":"error","url":"classes/_commands_swap_index_.swap.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4026,"kind":2048,"name":"log","url":"classes/_commands_swap_index_.swap.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swap/index\".swap"},{"id":4027,"kind":2048,"name":"init","url":"classes/_commands_swap_index_.swap.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4028,"kind":2048,"name":"parse","url":"classes/_commands_swap_index_.swap.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4029,"kind":2048,"name":"catch","url":"classes/_commands_swap_index_.swap.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4030,"kind":2048,"name":"finally","url":"classes/_commands_swap_index_.swap.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4031,"kind":2048,"name":"_help","url":"classes/_commands_swap_index_.swap.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4032,"kind":2048,"name":"_helpOverride","url":"classes/_commands_swap_index_.swap.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4033,"kind":2048,"name":"_version","url":"classes/_commands_swap_index_.swap.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swap/index\".swap"},{"id":4034,"kind":32,"name":"SwapDocument","url":"modules/_commands_swap_index_.html#swapdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/swap/index\""},{"id":4035,"kind":1,"name":"\"commands/swaps/index\"","url":"modules/_commands_swaps_index_.html","classes":"tsd-kind-module"},{"id":4036,"kind":128,"name":"swaps","url":"classes/_commands_swaps_index_.swaps.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/swaps/index\""},{"id":4037,"kind":2097152,"name":"flags","url":"classes/_commands_swaps_index_.swaps.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4038,"kind":32,"name":"help","url":"classes/_commands_swaps_index_.swaps.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4039,"kind":32,"name":"skip","url":"classes/_commands_swaps_index_.swaps.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4040,"kind":32,"name":"first","url":"classes/_commands_swaps_index_.swaps.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4041,"kind":32,"name":"orderBy","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4042,"kind":32,"name":"orderDirection","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4043,"kind":32,"name":"where","url":"classes/_commands_swaps_index_.swaps.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4044,"kind":32,"name":"skip1","url":"classes/_commands_swaps_index_.swaps.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4045,"kind":32,"name":"first1","url":"classes/_commands_swaps_index_.swaps.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4046,"kind":32,"name":"orderBy1","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4047,"kind":32,"name":"orderDirection1","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4048,"kind":32,"name":"where1","url":"classes/_commands_swaps_index_.swaps.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4049,"kind":32,"name":"skip2","url":"classes/_commands_swaps_index_.swaps.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4050,"kind":32,"name":"first2","url":"classes/_commands_swaps_index_.swaps.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4051,"kind":32,"name":"orderBy2","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4052,"kind":32,"name":"orderDirection2","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4053,"kind":32,"name":"where2","url":"classes/_commands_swaps_index_.swaps.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4054,"kind":32,"name":"skip3","url":"classes/_commands_swaps_index_.swaps.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4055,"kind":32,"name":"first3","url":"classes/_commands_swaps_index_.swaps.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4056,"kind":32,"name":"orderBy3","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4057,"kind":32,"name":"orderDirection3","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4058,"kind":32,"name":"where3","url":"classes/_commands_swaps_index_.swaps.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4059,"kind":32,"name":"skip4","url":"classes/_commands_swaps_index_.swaps.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4060,"kind":32,"name":"first4","url":"classes/_commands_swaps_index_.swaps.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4061,"kind":32,"name":"orderBy4","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4062,"kind":32,"name":"orderDirection4","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4063,"kind":32,"name":"where4","url":"classes/_commands_swaps_index_.swaps.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4064,"kind":32,"name":"skip5","url":"classes/_commands_swaps_index_.swaps.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4065,"kind":32,"name":"first5","url":"classes/_commands_swaps_index_.swaps.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4066,"kind":32,"name":"orderBy5","url":"classes/_commands_swaps_index_.swaps.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4067,"kind":32,"name":"orderDirection5","url":"classes/_commands_swaps_index_.swaps.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4068,"kind":32,"name":"where5","url":"classes/_commands_swaps_index_.swaps.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4069,"kind":32,"name":"block","url":"classes/_commands_swaps_index_.swaps.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/swaps/index\".swaps.flags"},{"id":4070,"kind":2048,"name":"run","url":"classes/_commands_swaps_index_.swaps.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/swaps/index\".swaps"},{"id":4071,"kind":1024,"name":"argv","url":"classes/_commands_swaps_index_.swaps.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4072,"kind":1024,"name":"config","url":"classes/_commands_swaps_index_.swaps.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4073,"kind":1024,"name":"_base","url":"classes/_commands_swaps_index_.swaps.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4074,"kind":1024,"name":"id","url":"classes/_commands_swaps_index_.swaps.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4075,"kind":1024,"name":"title","url":"classes/_commands_swaps_index_.swaps.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4076,"kind":1024,"name":"description","url":"classes/_commands_swaps_index_.swaps.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4077,"kind":1024,"name":"hidden","url":"classes/_commands_swaps_index_.swaps.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4078,"kind":1024,"name":"usage","url":"classes/_commands_swaps_index_.swaps.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4079,"kind":1024,"name":"help","url":"classes/_commands_swaps_index_.swaps.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4080,"kind":1024,"name":"aliases","url":"classes/_commands_swaps_index_.swaps.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4081,"kind":1024,"name":"strict","url":"classes/_commands_swaps_index_.swaps.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4082,"kind":1024,"name":"parse","url":"classes/_commands_swaps_index_.swaps.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4083,"kind":1024,"name":"args","url":"classes/_commands_swaps_index_.swaps.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4084,"kind":1024,"name":"plugin","url":"classes/_commands_swaps_index_.swaps.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4085,"kind":1024,"name":"examples","url":"classes/_commands_swaps_index_.swaps.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4086,"kind":1024,"name":"parserOptions","url":"classes/_commands_swaps_index_.swaps.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4087,"kind":65536,"name":"__type","url":"classes/_commands_swaps_index_.swaps.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/swaps/index\".swaps.parserOptions"},{"id":4088,"kind":1024,"name":"run","url":"classes/_commands_swaps_index_.swaps.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/swaps/index\".swaps"},{"id":4089,"kind":1024,"name":"id","url":"classes/_commands_swaps_index_.swaps.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4090,"kind":1024,"name":"debug","url":"classes/_commands_swaps_index_.swaps.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4091,"kind":65536,"name":"__type","url":"classes/_commands_swaps_index_.swaps.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/swaps/index\".swaps.debug"},{"id":4092,"kind":512,"name":"constructor","url":"classes/_commands_swaps_index_.swaps.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4093,"kind":262144,"name":"ctor","url":"classes/_commands_swaps_index_.swaps.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4094,"kind":2048,"name":"_run","url":"classes/_commands_swaps_index_.swaps.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4095,"kind":2048,"name":"exit","url":"classes/_commands_swaps_index_.swaps.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4096,"kind":2048,"name":"warn","url":"classes/_commands_swaps_index_.swaps.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4097,"kind":2048,"name":"error","url":"classes/_commands_swaps_index_.swaps.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4098,"kind":2048,"name":"log","url":"classes/_commands_swaps_index_.swaps.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/swaps/index\".swaps"},{"id":4099,"kind":2048,"name":"init","url":"classes/_commands_swaps_index_.swaps.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4100,"kind":2048,"name":"parse","url":"classes/_commands_swaps_index_.swaps.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4101,"kind":2048,"name":"catch","url":"classes/_commands_swaps_index_.swaps.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4102,"kind":2048,"name":"finally","url":"classes/_commands_swaps_index_.swaps.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4103,"kind":2048,"name":"_help","url":"classes/_commands_swaps_index_.swaps.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4104,"kind":2048,"name":"_helpOverride","url":"classes/_commands_swaps_index_.swaps.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4105,"kind":2048,"name":"_version","url":"classes/_commands_swaps_index_.swaps.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/swaps/index\".swaps"},{"id":4106,"kind":32,"name":"SwapsDocument","url":"modules/_commands_swaps_index_.html#swapsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/swaps/index\""},{"id":4107,"kind":1,"name":"\"commands/token/index\"","url":"modules/_commands_token_index_.html","classes":"tsd-kind-module"},{"id":4108,"kind":128,"name":"token","url":"classes/_commands_token_index_.token.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/token/index\""},{"id":4109,"kind":2097152,"name":"flags","url":"classes/_commands_token_index_.token.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4110,"kind":32,"name":"help","url":"classes/_commands_token_index_.token.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4111,"kind":32,"name":"skip","url":"classes/_commands_token_index_.token.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4112,"kind":32,"name":"first","url":"classes/_commands_token_index_.token.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4113,"kind":32,"name":"orderBy","url":"classes/_commands_token_index_.token.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4114,"kind":32,"name":"orderDirection","url":"classes/_commands_token_index_.token.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4115,"kind":32,"name":"where","url":"classes/_commands_token_index_.token.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4116,"kind":32,"name":"skip1","url":"classes/_commands_token_index_.token.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4117,"kind":32,"name":"first1","url":"classes/_commands_token_index_.token.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4118,"kind":32,"name":"orderBy1","url":"classes/_commands_token_index_.token.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4119,"kind":32,"name":"orderDirection1","url":"classes/_commands_token_index_.token.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4120,"kind":32,"name":"where1","url":"classes/_commands_token_index_.token.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4121,"kind":32,"name":"skip2","url":"classes/_commands_token_index_.token.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4122,"kind":32,"name":"first2","url":"classes/_commands_token_index_.token.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4123,"kind":32,"name":"orderBy2","url":"classes/_commands_token_index_.token.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4124,"kind":32,"name":"orderDirection2","url":"classes/_commands_token_index_.token.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4125,"kind":32,"name":"where2","url":"classes/_commands_token_index_.token.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4126,"kind":32,"name":"id","url":"classes/_commands_token_index_.token.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4127,"kind":32,"name":"block","url":"classes/_commands_token_index_.token.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/token/index\".token.flags"},{"id":4128,"kind":2048,"name":"run","url":"classes/_commands_token_index_.token.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/token/index\".token"},{"id":4129,"kind":1024,"name":"argv","url":"classes/_commands_token_index_.token.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4130,"kind":1024,"name":"config","url":"classes/_commands_token_index_.token.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4131,"kind":1024,"name":"_base","url":"classes/_commands_token_index_.token.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4132,"kind":1024,"name":"id","url":"classes/_commands_token_index_.token.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4133,"kind":1024,"name":"title","url":"classes/_commands_token_index_.token.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4134,"kind":1024,"name":"description","url":"classes/_commands_token_index_.token.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4135,"kind":1024,"name":"hidden","url":"classes/_commands_token_index_.token.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4136,"kind":1024,"name":"usage","url":"classes/_commands_token_index_.token.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4137,"kind":1024,"name":"help","url":"classes/_commands_token_index_.token.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4138,"kind":1024,"name":"aliases","url":"classes/_commands_token_index_.token.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4139,"kind":1024,"name":"strict","url":"classes/_commands_token_index_.token.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4140,"kind":1024,"name":"parse","url":"classes/_commands_token_index_.token.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4141,"kind":1024,"name":"args","url":"classes/_commands_token_index_.token.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4142,"kind":1024,"name":"plugin","url":"classes/_commands_token_index_.token.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4143,"kind":1024,"name":"examples","url":"classes/_commands_token_index_.token.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4144,"kind":1024,"name":"parserOptions","url":"classes/_commands_token_index_.token.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4145,"kind":65536,"name":"__type","url":"classes/_commands_token_index_.token.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/token/index\".token.parserOptions"},{"id":4146,"kind":1024,"name":"run","url":"classes/_commands_token_index_.token.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/token/index\".token"},{"id":4147,"kind":1024,"name":"id","url":"classes/_commands_token_index_.token.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4148,"kind":1024,"name":"debug","url":"classes/_commands_token_index_.token.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4149,"kind":65536,"name":"__type","url":"classes/_commands_token_index_.token.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/token/index\".token.debug"},{"id":4150,"kind":512,"name":"constructor","url":"classes/_commands_token_index_.token.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4151,"kind":262144,"name":"ctor","url":"classes/_commands_token_index_.token.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4152,"kind":2048,"name":"_run","url":"classes/_commands_token_index_.token.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4153,"kind":2048,"name":"exit","url":"classes/_commands_token_index_.token.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4154,"kind":2048,"name":"warn","url":"classes/_commands_token_index_.token.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4155,"kind":2048,"name":"error","url":"classes/_commands_token_index_.token.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4156,"kind":2048,"name":"log","url":"classes/_commands_token_index_.token.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/token/index\".token"},{"id":4157,"kind":2048,"name":"init","url":"classes/_commands_token_index_.token.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4158,"kind":2048,"name":"parse","url":"classes/_commands_token_index_.token.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4159,"kind":2048,"name":"catch","url":"classes/_commands_token_index_.token.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4160,"kind":2048,"name":"finally","url":"classes/_commands_token_index_.token.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4161,"kind":2048,"name":"_help","url":"classes/_commands_token_index_.token.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4162,"kind":2048,"name":"_helpOverride","url":"classes/_commands_token_index_.token.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4163,"kind":2048,"name":"_version","url":"classes/_commands_token_index_.token.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/token/index\".token"},{"id":4164,"kind":32,"name":"TokenDocument","url":"modules/_commands_token_index_.html#tokendocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/token/index\""},{"id":4165,"kind":1,"name":"\"commands/tokenDayData/index\"","url":"modules/_commands_tokendaydata_index_.html","classes":"tsd-kind-module"},{"id":4166,"kind":128,"name":"tokenDayData","url":"classes/_commands_tokendaydata_index_.tokendaydata.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/tokenDayData/index\""},{"id":4167,"kind":2097152,"name":"flags","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4168,"kind":32,"name":"help","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4169,"kind":32,"name":"skip","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4170,"kind":32,"name":"first","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4171,"kind":32,"name":"orderBy","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4172,"kind":32,"name":"orderDirection","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4173,"kind":32,"name":"where","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4174,"kind":32,"name":"skip1","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4175,"kind":32,"name":"first1","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4176,"kind":32,"name":"orderBy1","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4177,"kind":32,"name":"orderDirection1","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4178,"kind":32,"name":"where1","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4179,"kind":32,"name":"skip2","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4180,"kind":32,"name":"first2","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4181,"kind":32,"name":"orderBy2","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4182,"kind":32,"name":"orderDirection2","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4183,"kind":32,"name":"where2","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4184,"kind":32,"name":"skip3","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4185,"kind":32,"name":"first3","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4186,"kind":32,"name":"orderBy3","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4187,"kind":32,"name":"orderDirection3","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4188,"kind":32,"name":"where3","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4189,"kind":32,"name":"id","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4190,"kind":32,"name":"block","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayData/index\".tokenDayData.flags"},{"id":4191,"kind":2048,"name":"run","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4192,"kind":1024,"name":"argv","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4193,"kind":1024,"name":"config","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4194,"kind":1024,"name":"_base","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4195,"kind":1024,"name":"id","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4196,"kind":1024,"name":"title","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4197,"kind":1024,"name":"description","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4198,"kind":1024,"name":"hidden","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4199,"kind":1024,"name":"usage","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4200,"kind":1024,"name":"help","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4201,"kind":1024,"name":"aliases","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4202,"kind":1024,"name":"strict","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4203,"kind":1024,"name":"parse","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4204,"kind":1024,"name":"args","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4205,"kind":1024,"name":"plugin","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4206,"kind":1024,"name":"examples","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4207,"kind":1024,"name":"parserOptions","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4208,"kind":65536,"name":"__type","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokenDayData/index\".tokenDayData.parserOptions"},{"id":4209,"kind":1024,"name":"run","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4210,"kind":1024,"name":"id","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4211,"kind":1024,"name":"debug","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4212,"kind":65536,"name":"__type","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokenDayData/index\".tokenDayData.debug"},{"id":4213,"kind":512,"name":"constructor","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4214,"kind":262144,"name":"ctor","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4215,"kind":2048,"name":"_run","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4216,"kind":2048,"name":"exit","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4217,"kind":2048,"name":"warn","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4218,"kind":2048,"name":"error","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4219,"kind":2048,"name":"log","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4220,"kind":2048,"name":"init","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4221,"kind":2048,"name":"parse","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4222,"kind":2048,"name":"catch","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4223,"kind":2048,"name":"finally","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4224,"kind":2048,"name":"_help","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4225,"kind":2048,"name":"_helpOverride","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4226,"kind":2048,"name":"_version","url":"classes/_commands_tokendaydata_index_.tokendaydata.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayData/index\".tokenDayData"},{"id":4227,"kind":32,"name":"TokenDayDataDocument","url":"modules/_commands_tokendaydata_index_.html#tokendaydatadocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/tokenDayData/index\""},{"id":4228,"kind":1,"name":"\"commands/tokenDayDatas/index\"","url":"modules/_commands_tokendaydatas_index_.html","classes":"tsd-kind-module"},{"id":4229,"kind":128,"name":"tokenDayDatas","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/tokenDayDatas/index\""},{"id":4230,"kind":2097152,"name":"flags","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4231,"kind":32,"name":"help","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4232,"kind":32,"name":"skip","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4233,"kind":32,"name":"first","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4234,"kind":32,"name":"orderBy","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4235,"kind":32,"name":"orderDirection","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4236,"kind":32,"name":"where","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4237,"kind":32,"name":"skip1","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4238,"kind":32,"name":"first1","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4239,"kind":32,"name":"orderBy1","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4240,"kind":32,"name":"orderDirection1","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4241,"kind":32,"name":"where1","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4242,"kind":32,"name":"skip2","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4243,"kind":32,"name":"first2","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4244,"kind":32,"name":"orderBy2","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4245,"kind":32,"name":"orderDirection2","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4246,"kind":32,"name":"where2","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4247,"kind":32,"name":"skip3","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4248,"kind":32,"name":"first3","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4249,"kind":32,"name":"orderBy3","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4250,"kind":32,"name":"orderDirection3","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4251,"kind":32,"name":"where3","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4252,"kind":32,"name":"skip4","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4253,"kind":32,"name":"first4","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4254,"kind":32,"name":"orderBy4","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4255,"kind":32,"name":"orderDirection4","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4256,"kind":32,"name":"where4","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4257,"kind":32,"name":"block","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.flags"},{"id":4258,"kind":2048,"name":"run","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4259,"kind":1024,"name":"argv","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4260,"kind":1024,"name":"config","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4261,"kind":1024,"name":"_base","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4262,"kind":1024,"name":"id","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4263,"kind":1024,"name":"title","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4264,"kind":1024,"name":"description","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4265,"kind":1024,"name":"hidden","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4266,"kind":1024,"name":"usage","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4267,"kind":1024,"name":"help","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4268,"kind":1024,"name":"aliases","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4269,"kind":1024,"name":"strict","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4270,"kind":1024,"name":"parse","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4271,"kind":1024,"name":"args","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4272,"kind":1024,"name":"plugin","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4273,"kind":1024,"name":"examples","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4274,"kind":1024,"name":"parserOptions","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4275,"kind":65536,"name":"__type","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.parserOptions"},{"id":4276,"kind":1024,"name":"run","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4277,"kind":1024,"name":"id","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4278,"kind":1024,"name":"debug","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4279,"kind":65536,"name":"__type","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas.debug"},{"id":4280,"kind":512,"name":"constructor","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4281,"kind":262144,"name":"ctor","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4282,"kind":2048,"name":"_run","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4283,"kind":2048,"name":"exit","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4284,"kind":2048,"name":"warn","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4285,"kind":2048,"name":"error","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4286,"kind":2048,"name":"log","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4287,"kind":2048,"name":"init","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4288,"kind":2048,"name":"parse","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4289,"kind":2048,"name":"catch","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4290,"kind":2048,"name":"finally","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4291,"kind":2048,"name":"_help","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4292,"kind":2048,"name":"_helpOverride","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4293,"kind":2048,"name":"_version","url":"classes/_commands_tokendaydatas_index_.tokendaydatas.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokenDayDatas/index\".tokenDayDatas"},{"id":4294,"kind":32,"name":"TokenDayDatasDocument","url":"modules/_commands_tokendaydatas_index_.html#tokendaydatasdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/tokenDayDatas/index\""},{"id":4295,"kind":1,"name":"\"commands/tokens/index\"","url":"modules/_commands_tokens_index_.html","classes":"tsd-kind-module"},{"id":4296,"kind":128,"name":"tokens","url":"classes/_commands_tokens_index_.tokens.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/tokens/index\""},{"id":4297,"kind":2097152,"name":"flags","url":"classes/_commands_tokens_index_.tokens.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4298,"kind":32,"name":"help","url":"classes/_commands_tokens_index_.tokens.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4299,"kind":32,"name":"skip","url":"classes/_commands_tokens_index_.tokens.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4300,"kind":32,"name":"first","url":"classes/_commands_tokens_index_.tokens.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4301,"kind":32,"name":"orderBy","url":"classes/_commands_tokens_index_.tokens.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4302,"kind":32,"name":"orderDirection","url":"classes/_commands_tokens_index_.tokens.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4303,"kind":32,"name":"where","url":"classes/_commands_tokens_index_.tokens.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4304,"kind":32,"name":"skip1","url":"classes/_commands_tokens_index_.tokens.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4305,"kind":32,"name":"first1","url":"classes/_commands_tokens_index_.tokens.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4306,"kind":32,"name":"orderBy1","url":"classes/_commands_tokens_index_.tokens.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4307,"kind":32,"name":"orderDirection1","url":"classes/_commands_tokens_index_.tokens.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4308,"kind":32,"name":"where1","url":"classes/_commands_tokens_index_.tokens.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4309,"kind":32,"name":"skip2","url":"classes/_commands_tokens_index_.tokens.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4310,"kind":32,"name":"first2","url":"classes/_commands_tokens_index_.tokens.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4311,"kind":32,"name":"orderBy2","url":"classes/_commands_tokens_index_.tokens.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4312,"kind":32,"name":"orderDirection2","url":"classes/_commands_tokens_index_.tokens.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4313,"kind":32,"name":"where2","url":"classes/_commands_tokens_index_.tokens.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4314,"kind":32,"name":"skip3","url":"classes/_commands_tokens_index_.tokens.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4315,"kind":32,"name":"first3","url":"classes/_commands_tokens_index_.tokens.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4316,"kind":32,"name":"orderBy3","url":"classes/_commands_tokens_index_.tokens.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4317,"kind":32,"name":"orderDirection3","url":"classes/_commands_tokens_index_.tokens.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4318,"kind":32,"name":"where3","url":"classes/_commands_tokens_index_.tokens.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4319,"kind":32,"name":"block","url":"classes/_commands_tokens_index_.tokens.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/tokens/index\".tokens.flags"},{"id":4320,"kind":2048,"name":"run","url":"classes/_commands_tokens_index_.tokens.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/tokens/index\".tokens"},{"id":4321,"kind":1024,"name":"argv","url":"classes/_commands_tokens_index_.tokens.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4322,"kind":1024,"name":"config","url":"classes/_commands_tokens_index_.tokens.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4323,"kind":1024,"name":"_base","url":"classes/_commands_tokens_index_.tokens.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4324,"kind":1024,"name":"id","url":"classes/_commands_tokens_index_.tokens.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4325,"kind":1024,"name":"title","url":"classes/_commands_tokens_index_.tokens.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4326,"kind":1024,"name":"description","url":"classes/_commands_tokens_index_.tokens.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4327,"kind":1024,"name":"hidden","url":"classes/_commands_tokens_index_.tokens.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4328,"kind":1024,"name":"usage","url":"classes/_commands_tokens_index_.tokens.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4329,"kind":1024,"name":"help","url":"classes/_commands_tokens_index_.tokens.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4330,"kind":1024,"name":"aliases","url":"classes/_commands_tokens_index_.tokens.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4331,"kind":1024,"name":"strict","url":"classes/_commands_tokens_index_.tokens.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4332,"kind":1024,"name":"parse","url":"classes/_commands_tokens_index_.tokens.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4333,"kind":1024,"name":"args","url":"classes/_commands_tokens_index_.tokens.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4334,"kind":1024,"name":"plugin","url":"classes/_commands_tokens_index_.tokens.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4335,"kind":1024,"name":"examples","url":"classes/_commands_tokens_index_.tokens.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4336,"kind":1024,"name":"parserOptions","url":"classes/_commands_tokens_index_.tokens.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4337,"kind":65536,"name":"__type","url":"classes/_commands_tokens_index_.tokens.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokens/index\".tokens.parserOptions"},{"id":4338,"kind":1024,"name":"run","url":"classes/_commands_tokens_index_.tokens.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/tokens/index\".tokens"},{"id":4339,"kind":1024,"name":"id","url":"classes/_commands_tokens_index_.tokens.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4340,"kind":1024,"name":"debug","url":"classes/_commands_tokens_index_.tokens.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4341,"kind":65536,"name":"__type","url":"classes/_commands_tokens_index_.tokens.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/tokens/index\".tokens.debug"},{"id":4342,"kind":512,"name":"constructor","url":"classes/_commands_tokens_index_.tokens.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4343,"kind":262144,"name":"ctor","url":"classes/_commands_tokens_index_.tokens.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4344,"kind":2048,"name":"_run","url":"classes/_commands_tokens_index_.tokens.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4345,"kind":2048,"name":"exit","url":"classes/_commands_tokens_index_.tokens.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4346,"kind":2048,"name":"warn","url":"classes/_commands_tokens_index_.tokens.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4347,"kind":2048,"name":"error","url":"classes/_commands_tokens_index_.tokens.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4348,"kind":2048,"name":"log","url":"classes/_commands_tokens_index_.tokens.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/tokens/index\".tokens"},{"id":4349,"kind":2048,"name":"init","url":"classes/_commands_tokens_index_.tokens.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4350,"kind":2048,"name":"parse","url":"classes/_commands_tokens_index_.tokens.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4351,"kind":2048,"name":"catch","url":"classes/_commands_tokens_index_.tokens.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4352,"kind":2048,"name":"finally","url":"classes/_commands_tokens_index_.tokens.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4353,"kind":2048,"name":"_help","url":"classes/_commands_tokens_index_.tokens.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4354,"kind":2048,"name":"_helpOverride","url":"classes/_commands_tokens_index_.tokens.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4355,"kind":2048,"name":"_version","url":"classes/_commands_tokens_index_.tokens.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/tokens/index\".tokens"},{"id":4356,"kind":32,"name":"TokensDocument","url":"modules/_commands_tokens_index_.html#tokensdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/tokens/index\""},{"id":4357,"kind":1,"name":"\"commands/transaction/index\"","url":"modules/_commands_transaction_index_.html","classes":"tsd-kind-module"},{"id":4358,"kind":128,"name":"transaction","url":"classes/_commands_transaction_index_.transaction.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/transaction/index\""},{"id":4359,"kind":2097152,"name":"flags","url":"classes/_commands_transaction_index_.transaction.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4360,"kind":32,"name":"help","url":"classes/_commands_transaction_index_.transaction.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4361,"kind":32,"name":"skip","url":"classes/_commands_transaction_index_.transaction.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4362,"kind":32,"name":"first","url":"classes/_commands_transaction_index_.transaction.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4363,"kind":32,"name":"orderBy","url":"classes/_commands_transaction_index_.transaction.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4364,"kind":32,"name":"orderDirection","url":"classes/_commands_transaction_index_.transaction.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4365,"kind":32,"name":"where","url":"classes/_commands_transaction_index_.transaction.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4366,"kind":32,"name":"skip1","url":"classes/_commands_transaction_index_.transaction.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4367,"kind":32,"name":"first1","url":"classes/_commands_transaction_index_.transaction.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4368,"kind":32,"name":"orderBy1","url":"classes/_commands_transaction_index_.transaction.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4369,"kind":32,"name":"orderDirection1","url":"classes/_commands_transaction_index_.transaction.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4370,"kind":32,"name":"where1","url":"classes/_commands_transaction_index_.transaction.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4371,"kind":32,"name":"skip2","url":"classes/_commands_transaction_index_.transaction.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4372,"kind":32,"name":"first2","url":"classes/_commands_transaction_index_.transaction.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4373,"kind":32,"name":"orderBy2","url":"classes/_commands_transaction_index_.transaction.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4374,"kind":32,"name":"orderDirection2","url":"classes/_commands_transaction_index_.transaction.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4375,"kind":32,"name":"where2","url":"classes/_commands_transaction_index_.transaction.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4376,"kind":32,"name":"skip3","url":"classes/_commands_transaction_index_.transaction.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4377,"kind":32,"name":"first3","url":"classes/_commands_transaction_index_.transaction.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4378,"kind":32,"name":"orderBy3","url":"classes/_commands_transaction_index_.transaction.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4379,"kind":32,"name":"orderDirection3","url":"classes/_commands_transaction_index_.transaction.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4380,"kind":32,"name":"where3","url":"classes/_commands_transaction_index_.transaction.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4381,"kind":32,"name":"skip4","url":"classes/_commands_transaction_index_.transaction.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4382,"kind":32,"name":"first4","url":"classes/_commands_transaction_index_.transaction.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4383,"kind":32,"name":"orderBy4","url":"classes/_commands_transaction_index_.transaction.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4384,"kind":32,"name":"orderDirection4","url":"classes/_commands_transaction_index_.transaction.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4385,"kind":32,"name":"where4","url":"classes/_commands_transaction_index_.transaction.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4386,"kind":32,"name":"id","url":"classes/_commands_transaction_index_.transaction.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4387,"kind":32,"name":"block","url":"classes/_commands_transaction_index_.transaction.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transaction/index\".transaction.flags"},{"id":4388,"kind":2048,"name":"run","url":"classes/_commands_transaction_index_.transaction.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/transaction/index\".transaction"},{"id":4389,"kind":1024,"name":"argv","url":"classes/_commands_transaction_index_.transaction.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4390,"kind":1024,"name":"config","url":"classes/_commands_transaction_index_.transaction.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4391,"kind":1024,"name":"_base","url":"classes/_commands_transaction_index_.transaction.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4392,"kind":1024,"name":"id","url":"classes/_commands_transaction_index_.transaction.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4393,"kind":1024,"name":"title","url":"classes/_commands_transaction_index_.transaction.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4394,"kind":1024,"name":"description","url":"classes/_commands_transaction_index_.transaction.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4395,"kind":1024,"name":"hidden","url":"classes/_commands_transaction_index_.transaction.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4396,"kind":1024,"name":"usage","url":"classes/_commands_transaction_index_.transaction.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4397,"kind":1024,"name":"help","url":"classes/_commands_transaction_index_.transaction.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4398,"kind":1024,"name":"aliases","url":"classes/_commands_transaction_index_.transaction.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4399,"kind":1024,"name":"strict","url":"classes/_commands_transaction_index_.transaction.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4400,"kind":1024,"name":"parse","url":"classes/_commands_transaction_index_.transaction.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4401,"kind":1024,"name":"args","url":"classes/_commands_transaction_index_.transaction.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4402,"kind":1024,"name":"plugin","url":"classes/_commands_transaction_index_.transaction.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4403,"kind":1024,"name":"examples","url":"classes/_commands_transaction_index_.transaction.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4404,"kind":1024,"name":"parserOptions","url":"classes/_commands_transaction_index_.transaction.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4405,"kind":65536,"name":"__type","url":"classes/_commands_transaction_index_.transaction.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/transaction/index\".transaction.parserOptions"},{"id":4406,"kind":1024,"name":"run","url":"classes/_commands_transaction_index_.transaction.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transaction/index\".transaction"},{"id":4407,"kind":1024,"name":"id","url":"classes/_commands_transaction_index_.transaction.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4408,"kind":1024,"name":"debug","url":"classes/_commands_transaction_index_.transaction.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4409,"kind":65536,"name":"__type","url":"classes/_commands_transaction_index_.transaction.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/transaction/index\".transaction.debug"},{"id":4410,"kind":512,"name":"constructor","url":"classes/_commands_transaction_index_.transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4411,"kind":262144,"name":"ctor","url":"classes/_commands_transaction_index_.transaction.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4412,"kind":2048,"name":"_run","url":"classes/_commands_transaction_index_.transaction.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4413,"kind":2048,"name":"exit","url":"classes/_commands_transaction_index_.transaction.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4414,"kind":2048,"name":"warn","url":"classes/_commands_transaction_index_.transaction.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4415,"kind":2048,"name":"error","url":"classes/_commands_transaction_index_.transaction.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4416,"kind":2048,"name":"log","url":"classes/_commands_transaction_index_.transaction.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transaction/index\".transaction"},{"id":4417,"kind":2048,"name":"init","url":"classes/_commands_transaction_index_.transaction.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4418,"kind":2048,"name":"parse","url":"classes/_commands_transaction_index_.transaction.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4419,"kind":2048,"name":"catch","url":"classes/_commands_transaction_index_.transaction.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4420,"kind":2048,"name":"finally","url":"classes/_commands_transaction_index_.transaction.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4421,"kind":2048,"name":"_help","url":"classes/_commands_transaction_index_.transaction.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4422,"kind":2048,"name":"_helpOverride","url":"classes/_commands_transaction_index_.transaction.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4423,"kind":2048,"name":"_version","url":"classes/_commands_transaction_index_.transaction.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transaction/index\".transaction"},{"id":4424,"kind":32,"name":"TransactionDocument","url":"modules/_commands_transaction_index_.html#transactiondocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/transaction/index\""},{"id":4425,"kind":1,"name":"\"commands/transactions/index\"","url":"modules/_commands_transactions_index_.html","classes":"tsd-kind-module"},{"id":4426,"kind":128,"name":"transactions","url":"classes/_commands_transactions_index_.transactions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/transactions/index\""},{"id":4427,"kind":2097152,"name":"flags","url":"classes/_commands_transactions_index_.transactions.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4428,"kind":32,"name":"help","url":"classes/_commands_transactions_index_.transactions.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4429,"kind":32,"name":"skip","url":"classes/_commands_transactions_index_.transactions.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4430,"kind":32,"name":"first","url":"classes/_commands_transactions_index_.transactions.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4431,"kind":32,"name":"orderBy","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4432,"kind":32,"name":"orderDirection","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4433,"kind":32,"name":"where","url":"classes/_commands_transactions_index_.transactions.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4434,"kind":32,"name":"skip1","url":"classes/_commands_transactions_index_.transactions.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4435,"kind":32,"name":"first1","url":"classes/_commands_transactions_index_.transactions.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4436,"kind":32,"name":"orderBy1","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4437,"kind":32,"name":"orderDirection1","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4438,"kind":32,"name":"where1","url":"classes/_commands_transactions_index_.transactions.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4439,"kind":32,"name":"skip2","url":"classes/_commands_transactions_index_.transactions.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4440,"kind":32,"name":"first2","url":"classes/_commands_transactions_index_.transactions.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4441,"kind":32,"name":"orderBy2","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4442,"kind":32,"name":"orderDirection2","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4443,"kind":32,"name":"where2","url":"classes/_commands_transactions_index_.transactions.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4444,"kind":32,"name":"skip3","url":"classes/_commands_transactions_index_.transactions.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4445,"kind":32,"name":"first3","url":"classes/_commands_transactions_index_.transactions.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4446,"kind":32,"name":"orderBy3","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4447,"kind":32,"name":"orderDirection3","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4448,"kind":32,"name":"where3","url":"classes/_commands_transactions_index_.transactions.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4449,"kind":32,"name":"skip4","url":"classes/_commands_transactions_index_.transactions.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4450,"kind":32,"name":"first4","url":"classes/_commands_transactions_index_.transactions.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4451,"kind":32,"name":"orderBy4","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4452,"kind":32,"name":"orderDirection4","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4453,"kind":32,"name":"where4","url":"classes/_commands_transactions_index_.transactions.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4454,"kind":32,"name":"skip5","url":"classes/_commands_transactions_index_.transactions.html#flags.skip5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4455,"kind":32,"name":"first5","url":"classes/_commands_transactions_index_.transactions.html#flags.first5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4456,"kind":32,"name":"orderBy5","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4457,"kind":32,"name":"orderDirection5","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4458,"kind":32,"name":"where5","url":"classes/_commands_transactions_index_.transactions.html#flags.where5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4459,"kind":32,"name":"skip6","url":"classes/_commands_transactions_index_.transactions.html#flags.skip6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4460,"kind":32,"name":"first6","url":"classes/_commands_transactions_index_.transactions.html#flags.first6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4461,"kind":32,"name":"orderBy6","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4462,"kind":32,"name":"orderDirection6","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4463,"kind":32,"name":"where6","url":"classes/_commands_transactions_index_.transactions.html#flags.where6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4464,"kind":32,"name":"skip7","url":"classes/_commands_transactions_index_.transactions.html#flags.skip7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4465,"kind":32,"name":"first7","url":"classes/_commands_transactions_index_.transactions.html#flags.first7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4466,"kind":32,"name":"orderBy7","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4467,"kind":32,"name":"orderDirection7","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4468,"kind":32,"name":"where7","url":"classes/_commands_transactions_index_.transactions.html#flags.where7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4469,"kind":32,"name":"skip8","url":"classes/_commands_transactions_index_.transactions.html#flags.skip8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4470,"kind":32,"name":"first8","url":"classes/_commands_transactions_index_.transactions.html#flags.first8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4471,"kind":32,"name":"orderBy8","url":"classes/_commands_transactions_index_.transactions.html#flags.orderby8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4472,"kind":32,"name":"orderDirection8","url":"classes/_commands_transactions_index_.transactions.html#flags.orderdirection8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4473,"kind":32,"name":"where8","url":"classes/_commands_transactions_index_.transactions.html#flags.where8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4474,"kind":32,"name":"block","url":"classes/_commands_transactions_index_.transactions.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/transactions/index\".transactions.flags"},{"id":4475,"kind":2048,"name":"run","url":"classes/_commands_transactions_index_.transactions.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/transactions/index\".transactions"},{"id":4476,"kind":1024,"name":"argv","url":"classes/_commands_transactions_index_.transactions.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4477,"kind":1024,"name":"config","url":"classes/_commands_transactions_index_.transactions.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4478,"kind":1024,"name":"_base","url":"classes/_commands_transactions_index_.transactions.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4479,"kind":1024,"name":"id","url":"classes/_commands_transactions_index_.transactions.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4480,"kind":1024,"name":"title","url":"classes/_commands_transactions_index_.transactions.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4481,"kind":1024,"name":"description","url":"classes/_commands_transactions_index_.transactions.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4482,"kind":1024,"name":"hidden","url":"classes/_commands_transactions_index_.transactions.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4483,"kind":1024,"name":"usage","url":"classes/_commands_transactions_index_.transactions.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4484,"kind":1024,"name":"help","url":"classes/_commands_transactions_index_.transactions.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4485,"kind":1024,"name":"aliases","url":"classes/_commands_transactions_index_.transactions.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4486,"kind":1024,"name":"strict","url":"classes/_commands_transactions_index_.transactions.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4487,"kind":1024,"name":"parse","url":"classes/_commands_transactions_index_.transactions.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4488,"kind":1024,"name":"args","url":"classes/_commands_transactions_index_.transactions.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4489,"kind":1024,"name":"plugin","url":"classes/_commands_transactions_index_.transactions.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4490,"kind":1024,"name":"examples","url":"classes/_commands_transactions_index_.transactions.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4491,"kind":1024,"name":"parserOptions","url":"classes/_commands_transactions_index_.transactions.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4492,"kind":65536,"name":"__type","url":"classes/_commands_transactions_index_.transactions.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/transactions/index\".transactions.parserOptions"},{"id":4493,"kind":1024,"name":"run","url":"classes/_commands_transactions_index_.transactions.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/transactions/index\".transactions"},{"id":4494,"kind":1024,"name":"id","url":"classes/_commands_transactions_index_.transactions.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4495,"kind":1024,"name":"debug","url":"classes/_commands_transactions_index_.transactions.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4496,"kind":65536,"name":"__type","url":"classes/_commands_transactions_index_.transactions.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/transactions/index\".transactions.debug"},{"id":4497,"kind":512,"name":"constructor","url":"classes/_commands_transactions_index_.transactions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4498,"kind":262144,"name":"ctor","url":"classes/_commands_transactions_index_.transactions.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4499,"kind":2048,"name":"_run","url":"classes/_commands_transactions_index_.transactions.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4500,"kind":2048,"name":"exit","url":"classes/_commands_transactions_index_.transactions.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4501,"kind":2048,"name":"warn","url":"classes/_commands_transactions_index_.transactions.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4502,"kind":2048,"name":"error","url":"classes/_commands_transactions_index_.transactions.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4503,"kind":2048,"name":"log","url":"classes/_commands_transactions_index_.transactions.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/transactions/index\".transactions"},{"id":4504,"kind":2048,"name":"init","url":"classes/_commands_transactions_index_.transactions.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4505,"kind":2048,"name":"parse","url":"classes/_commands_transactions_index_.transactions.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4506,"kind":2048,"name":"catch","url":"classes/_commands_transactions_index_.transactions.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4507,"kind":2048,"name":"finally","url":"classes/_commands_transactions_index_.transactions.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4508,"kind":2048,"name":"_help","url":"classes/_commands_transactions_index_.transactions.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4509,"kind":2048,"name":"_helpOverride","url":"classes/_commands_transactions_index_.transactions.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4510,"kind":2048,"name":"_version","url":"classes/_commands_transactions_index_.transactions.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/transactions/index\".transactions"},{"id":4511,"kind":32,"name":"TransactionsDocument","url":"modules/_commands_transactions_index_.html#transactionsdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/transactions/index\""},{"id":4512,"kind":1,"name":"\"commands/user/index\"","url":"modules/_commands_user_index_.html","classes":"tsd-kind-module"},{"id":4513,"kind":128,"name":"user","url":"classes/_commands_user_index_.user.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/user/index\""},{"id":4514,"kind":2097152,"name":"flags","url":"classes/_commands_user_index_.user.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4515,"kind":32,"name":"help","url":"classes/_commands_user_index_.user.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4516,"kind":32,"name":"skip","url":"classes/_commands_user_index_.user.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4517,"kind":32,"name":"first","url":"classes/_commands_user_index_.user.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4518,"kind":32,"name":"orderBy","url":"classes/_commands_user_index_.user.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4519,"kind":32,"name":"orderDirection","url":"classes/_commands_user_index_.user.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4520,"kind":32,"name":"where","url":"classes/_commands_user_index_.user.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4521,"kind":32,"name":"skip1","url":"classes/_commands_user_index_.user.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4522,"kind":32,"name":"first1","url":"classes/_commands_user_index_.user.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4523,"kind":32,"name":"orderBy1","url":"classes/_commands_user_index_.user.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4524,"kind":32,"name":"orderDirection1","url":"classes/_commands_user_index_.user.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4525,"kind":32,"name":"where1","url":"classes/_commands_user_index_.user.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4526,"kind":32,"name":"skip2","url":"classes/_commands_user_index_.user.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4527,"kind":32,"name":"first2","url":"classes/_commands_user_index_.user.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4528,"kind":32,"name":"orderBy2","url":"classes/_commands_user_index_.user.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4529,"kind":32,"name":"orderDirection2","url":"classes/_commands_user_index_.user.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4530,"kind":32,"name":"where2","url":"classes/_commands_user_index_.user.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4531,"kind":32,"name":"id","url":"classes/_commands_user_index_.user.html#flags.id-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4532,"kind":32,"name":"block","url":"classes/_commands_user_index_.user.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/user/index\".user.flags"},{"id":4533,"kind":2048,"name":"run","url":"classes/_commands_user_index_.user.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/user/index\".user"},{"id":4534,"kind":1024,"name":"argv","url":"classes/_commands_user_index_.user.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4535,"kind":1024,"name":"config","url":"classes/_commands_user_index_.user.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4536,"kind":1024,"name":"_base","url":"classes/_commands_user_index_.user.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4537,"kind":1024,"name":"id","url":"classes/_commands_user_index_.user.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4538,"kind":1024,"name":"title","url":"classes/_commands_user_index_.user.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4539,"kind":1024,"name":"description","url":"classes/_commands_user_index_.user.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4540,"kind":1024,"name":"hidden","url":"classes/_commands_user_index_.user.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4541,"kind":1024,"name":"usage","url":"classes/_commands_user_index_.user.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4542,"kind":1024,"name":"help","url":"classes/_commands_user_index_.user.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4543,"kind":1024,"name":"aliases","url":"classes/_commands_user_index_.user.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4544,"kind":1024,"name":"strict","url":"classes/_commands_user_index_.user.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4545,"kind":1024,"name":"parse","url":"classes/_commands_user_index_.user.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4546,"kind":1024,"name":"args","url":"classes/_commands_user_index_.user.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4547,"kind":1024,"name":"plugin","url":"classes/_commands_user_index_.user.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4548,"kind":1024,"name":"examples","url":"classes/_commands_user_index_.user.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4549,"kind":1024,"name":"parserOptions","url":"classes/_commands_user_index_.user.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4550,"kind":65536,"name":"__type","url":"classes/_commands_user_index_.user.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/user/index\".user.parserOptions"},{"id":4551,"kind":1024,"name":"run","url":"classes/_commands_user_index_.user.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/user/index\".user"},{"id":4552,"kind":1024,"name":"id","url":"classes/_commands_user_index_.user.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4553,"kind":1024,"name":"debug","url":"classes/_commands_user_index_.user.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4554,"kind":65536,"name":"__type","url":"classes/_commands_user_index_.user.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/user/index\".user.debug"},{"id":4555,"kind":512,"name":"constructor","url":"classes/_commands_user_index_.user.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4556,"kind":262144,"name":"ctor","url":"classes/_commands_user_index_.user.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4557,"kind":2048,"name":"_run","url":"classes/_commands_user_index_.user.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4558,"kind":2048,"name":"exit","url":"classes/_commands_user_index_.user.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4559,"kind":2048,"name":"warn","url":"classes/_commands_user_index_.user.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4560,"kind":2048,"name":"error","url":"classes/_commands_user_index_.user.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4561,"kind":2048,"name":"log","url":"classes/_commands_user_index_.user.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/user/index\".user"},{"id":4562,"kind":2048,"name":"init","url":"classes/_commands_user_index_.user.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4563,"kind":2048,"name":"parse","url":"classes/_commands_user_index_.user.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4564,"kind":2048,"name":"catch","url":"classes/_commands_user_index_.user.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4565,"kind":2048,"name":"finally","url":"classes/_commands_user_index_.user.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4566,"kind":2048,"name":"_help","url":"classes/_commands_user_index_.user.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4567,"kind":2048,"name":"_helpOverride","url":"classes/_commands_user_index_.user.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4568,"kind":2048,"name":"_version","url":"classes/_commands_user_index_.user.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/user/index\".user"},{"id":4569,"kind":32,"name":"UserDocument","url":"modules/_commands_user_index_.html#userdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/user/index\""},{"id":4570,"kind":1,"name":"\"commands/users/index\"","url":"modules/_commands_users_index_.html","classes":"tsd-kind-module"},{"id":4571,"kind":128,"name":"users","url":"classes/_commands_users_index_.users.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"\"commands/users/index\""},{"id":4572,"kind":2097152,"name":"flags","url":"classes/_commands_users_index_.users.html#flags","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4573,"kind":32,"name":"help","url":"classes/_commands_users_index_.users.html#flags.help-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4574,"kind":32,"name":"skip","url":"classes/_commands_users_index_.users.html#flags.skip","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4575,"kind":32,"name":"first","url":"classes/_commands_users_index_.users.html#flags.first","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4576,"kind":32,"name":"orderBy","url":"classes/_commands_users_index_.users.html#flags.orderby","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4577,"kind":32,"name":"orderDirection","url":"classes/_commands_users_index_.users.html#flags.orderdirection","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4578,"kind":32,"name":"where","url":"classes/_commands_users_index_.users.html#flags.where","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4579,"kind":32,"name":"skip1","url":"classes/_commands_users_index_.users.html#flags.skip1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4580,"kind":32,"name":"first1","url":"classes/_commands_users_index_.users.html#flags.first1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4581,"kind":32,"name":"orderBy1","url":"classes/_commands_users_index_.users.html#flags.orderby1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4582,"kind":32,"name":"orderDirection1","url":"classes/_commands_users_index_.users.html#flags.orderdirection1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4583,"kind":32,"name":"where1","url":"classes/_commands_users_index_.users.html#flags.where1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4584,"kind":32,"name":"skip2","url":"classes/_commands_users_index_.users.html#flags.skip2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4585,"kind":32,"name":"first2","url":"classes/_commands_users_index_.users.html#flags.first2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4586,"kind":32,"name":"orderBy2","url":"classes/_commands_users_index_.users.html#flags.orderby2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4587,"kind":32,"name":"orderDirection2","url":"classes/_commands_users_index_.users.html#flags.orderdirection2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4588,"kind":32,"name":"where2","url":"classes/_commands_users_index_.users.html#flags.where2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4589,"kind":32,"name":"skip3","url":"classes/_commands_users_index_.users.html#flags.skip3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4590,"kind":32,"name":"first3","url":"classes/_commands_users_index_.users.html#flags.first3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4591,"kind":32,"name":"orderBy3","url":"classes/_commands_users_index_.users.html#flags.orderby3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4592,"kind":32,"name":"orderDirection3","url":"classes/_commands_users_index_.users.html#flags.orderdirection3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4593,"kind":32,"name":"where3","url":"classes/_commands_users_index_.users.html#flags.where3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4594,"kind":32,"name":"skip4","url":"classes/_commands_users_index_.users.html#flags.skip4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4595,"kind":32,"name":"first4","url":"classes/_commands_users_index_.users.html#flags.first4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4596,"kind":32,"name":"orderBy4","url":"classes/_commands_users_index_.users.html#flags.orderby4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4597,"kind":32,"name":"orderDirection4","url":"classes/_commands_users_index_.users.html#flags.orderdirection4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4598,"kind":32,"name":"where4","url":"classes/_commands_users_index_.users.html#flags.where4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4599,"kind":32,"name":"block","url":"classes/_commands_users_index_.users.html#flags.block","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"\"commands/users/index\".users.flags"},{"id":4600,"kind":2048,"name":"run","url":"classes/_commands_users_index_.users.html#run-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"\"commands/users/index\".users"},{"id":4601,"kind":1024,"name":"argv","url":"classes/_commands_users_index_.users.html#argv","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4602,"kind":1024,"name":"config","url":"classes/_commands_users_index_.users.html#config","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4603,"kind":1024,"name":"_base","url":"classes/_commands_users_index_.users.html#_base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4604,"kind":1024,"name":"id","url":"classes/_commands_users_index_.users.html#id-1","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4605,"kind":1024,"name":"title","url":"classes/_commands_users_index_.users.html#title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4606,"kind":1024,"name":"description","url":"classes/_commands_users_index_.users.html#description","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4607,"kind":1024,"name":"hidden","url":"classes/_commands_users_index_.users.html#hidden","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4608,"kind":1024,"name":"usage","url":"classes/_commands_users_index_.users.html#usage","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4609,"kind":1024,"name":"help","url":"classes/_commands_users_index_.users.html#help","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4610,"kind":1024,"name":"aliases","url":"classes/_commands_users_index_.users.html#aliases","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4611,"kind":1024,"name":"strict","url":"classes/_commands_users_index_.users.html#strict","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4612,"kind":1024,"name":"parse","url":"classes/_commands_users_index_.users.html#parse","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4613,"kind":1024,"name":"args","url":"classes/_commands_users_index_.users.html#args","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4614,"kind":1024,"name":"plugin","url":"classes/_commands_users_index_.users.html#plugin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4615,"kind":1024,"name":"examples","url":"classes/_commands_users_index_.users.html#examples","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4616,"kind":1024,"name":"parserOptions","url":"classes/_commands_users_index_.users.html#parseroptions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4617,"kind":65536,"name":"__type","url":"classes/_commands_users_index_.users.html#parseroptions.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/users/index\".users.parserOptions"},{"id":4618,"kind":1024,"name":"run","url":"classes/_commands_users_index_.users.html#run","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"\"commands/users/index\".users"},{"id":4619,"kind":1024,"name":"id","url":"classes/_commands_users_index_.users.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4620,"kind":1024,"name":"debug","url":"classes/_commands_users_index_.users.html#debug","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4621,"kind":65536,"name":"__type","url":"classes/_commands_users_index_.users.html#debug.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"\"commands/users/index\".users.debug"},{"id":4622,"kind":512,"name":"constructor","url":"classes/_commands_users_index_.users.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4623,"kind":262144,"name":"ctor","url":"classes/_commands_users_index_.users.html#ctor","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4624,"kind":2048,"name":"_run","url":"classes/_commands_users_index_.users.html#_run","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4625,"kind":2048,"name":"exit","url":"classes/_commands_users_index_.users.html#exit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4626,"kind":2048,"name":"warn","url":"classes/_commands_users_index_.users.html#warn","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4627,"kind":2048,"name":"error","url":"classes/_commands_users_index_.users.html#error","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4628,"kind":2048,"name":"log","url":"classes/_commands_users_index_.users.html#log","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"\"commands/users/index\".users"},{"id":4629,"kind":2048,"name":"init","url":"classes/_commands_users_index_.users.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4630,"kind":2048,"name":"parse","url":"classes/_commands_users_index_.users.html#parse-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4631,"kind":2048,"name":"catch","url":"classes/_commands_users_index_.users.html#catch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4632,"kind":2048,"name":"finally","url":"classes/_commands_users_index_.users.html#finally","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4633,"kind":2048,"name":"_help","url":"classes/_commands_users_index_.users.html#_help","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4634,"kind":2048,"name":"_helpOverride","url":"classes/_commands_users_index_.users.html#_helpoverride","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4635,"kind":2048,"name":"_version","url":"classes/_commands_users_index_.users.html#_version","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-protected","parent":"\"commands/users/index\".users"},{"id":4636,"kind":32,"name":"UsersDocument","url":"modules/_commands_users_index_.html#usersdocument","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"\"commands/users/index\""},{"id":4637,"kind":1,"name":"\"generated/graphql\"","url":"modules/_generated_graphql_.html","classes":"tsd-kind-module"},{"id":4638,"kind":4,"name":"Bundle_OrderBy","url":"enums/_generated_graphql_.bundle_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4639,"kind":16,"name":"Id","url":"enums/_generated_graphql_.bundle_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Bundle_OrderBy"},{"id":4640,"kind":16,"name":"EthPrice","url":"enums/_generated_graphql_.bundle_orderby.html#ethprice","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Bundle_OrderBy"},{"id":4641,"kind":4,"name":"Burn_OrderBy","url":"enums/_generated_graphql_.burn_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4642,"kind":16,"name":"Id","url":"enums/_generated_graphql_.burn_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4643,"kind":16,"name":"Transaction","url":"enums/_generated_graphql_.burn_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4644,"kind":16,"name":"Timestamp","url":"enums/_generated_graphql_.burn_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4645,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.burn_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4646,"kind":16,"name":"Liquidity","url":"enums/_generated_graphql_.burn_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4647,"kind":16,"name":"Sender","url":"enums/_generated_graphql_.burn_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4648,"kind":16,"name":"Amount0","url":"enums/_generated_graphql_.burn_orderby.html#amount0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4649,"kind":16,"name":"Amount1","url":"enums/_generated_graphql_.burn_orderby.html#amount1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4650,"kind":16,"name":"To","url":"enums/_generated_graphql_.burn_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4651,"kind":16,"name":"LogIndex","url":"enums/_generated_graphql_.burn_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4652,"kind":16,"name":"AmountUsd","url":"enums/_generated_graphql_.burn_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4653,"kind":16,"name":"NeedsComplete","url":"enums/_generated_graphql_.burn_orderby.html#needscomplete","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4654,"kind":16,"name":"FeeTo","url":"enums/_generated_graphql_.burn_orderby.html#feeto","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4655,"kind":16,"name":"FeeLiquidity","url":"enums/_generated_graphql_.burn_orderby.html#feeliquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Burn_OrderBy"},{"id":4656,"kind":4,"name":"LiquidityPositionSnapshot_OrderBy","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4657,"kind":16,"name":"Id","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4658,"kind":16,"name":"LiquidityPosition","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#liquidityposition","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4659,"kind":16,"name":"Timestamp","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4660,"kind":16,"name":"Block","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#block","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4661,"kind":16,"name":"User","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#user","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4662,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4663,"kind":16,"name":"Token0PriceUsd","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#token0priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4664,"kind":16,"name":"Token1PriceUsd","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#token1priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4665,"kind":16,"name":"Reserve0","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4666,"kind":16,"name":"Reserve1","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4667,"kind":16,"name":"ReserveUsd","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4668,"kind":16,"name":"LiquidityTokenTotalSupply","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#liquiditytokentotalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4669,"kind":16,"name":"LiquidityTokenBalance","url":"enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html#liquiditytokenbalance","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPositionSnapshot_OrderBy"},{"id":4670,"kind":4,"name":"LiquidityPosition_OrderBy","url":"enums/_generated_graphql_.liquidityposition_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4671,"kind":16,"name":"Id","url":"enums/_generated_graphql_.liquidityposition_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPosition_OrderBy"},{"id":4672,"kind":16,"name":"User","url":"enums/_generated_graphql_.liquidityposition_orderby.html#user","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPosition_OrderBy"},{"id":4673,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.liquidityposition_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPosition_OrderBy"},{"id":4674,"kind":16,"name":"LiquidityTokenBalance","url":"enums/_generated_graphql_.liquidityposition_orderby.html#liquiditytokenbalance","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".LiquidityPosition_OrderBy"},{"id":4675,"kind":4,"name":"Mint_OrderBy","url":"enums/_generated_graphql_.mint_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4676,"kind":16,"name":"Id","url":"enums/_generated_graphql_.mint_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4677,"kind":16,"name":"Transaction","url":"enums/_generated_graphql_.mint_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4678,"kind":16,"name":"Timestamp","url":"enums/_generated_graphql_.mint_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4679,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.mint_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4680,"kind":16,"name":"To","url":"enums/_generated_graphql_.mint_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4681,"kind":16,"name":"Liquidity","url":"enums/_generated_graphql_.mint_orderby.html#liquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4682,"kind":16,"name":"Sender","url":"enums/_generated_graphql_.mint_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4683,"kind":16,"name":"Amount0","url":"enums/_generated_graphql_.mint_orderby.html#amount0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4684,"kind":16,"name":"Amount1","url":"enums/_generated_graphql_.mint_orderby.html#amount1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4685,"kind":16,"name":"LogIndex","url":"enums/_generated_graphql_.mint_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4686,"kind":16,"name":"AmountUsd","url":"enums/_generated_graphql_.mint_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4687,"kind":16,"name":"FeeTo","url":"enums/_generated_graphql_.mint_orderby.html#feeto","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4688,"kind":16,"name":"FeeLiquidity","url":"enums/_generated_graphql_.mint_orderby.html#feeliquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Mint_OrderBy"},{"id":4689,"kind":4,"name":"OrderDirection","url":"enums/_generated_graphql_.orderdirection.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4690,"kind":16,"name":"Asc","url":"enums/_generated_graphql_.orderdirection.html#asc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".OrderDirection"},{"id":4691,"kind":16,"name":"Desc","url":"enums/_generated_graphql_.orderdirection.html#desc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".OrderDirection"},{"id":4692,"kind":4,"name":"PairDayData_OrderBy","url":"enums/_generated_graphql_.pairdaydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4693,"kind":16,"name":"Id","url":"enums/_generated_graphql_.pairdaydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4694,"kind":16,"name":"Date","url":"enums/_generated_graphql_.pairdaydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4695,"kind":16,"name":"PairAddress","url":"enums/_generated_graphql_.pairdaydata_orderby.html#pairaddress","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4696,"kind":16,"name":"Token0","url":"enums/_generated_graphql_.pairdaydata_orderby.html#token0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4697,"kind":16,"name":"Token1","url":"enums/_generated_graphql_.pairdaydata_orderby.html#token1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4698,"kind":16,"name":"Reserve0","url":"enums/_generated_graphql_.pairdaydata_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4699,"kind":16,"name":"Reserve1","url":"enums/_generated_graphql_.pairdaydata_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4700,"kind":16,"name":"TotalSupply","url":"enums/_generated_graphql_.pairdaydata_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4701,"kind":16,"name":"ReserveUsd","url":"enums/_generated_graphql_.pairdaydata_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4702,"kind":16,"name":"DailyVolumeToken0","url":"enums/_generated_graphql_.pairdaydata_orderby.html#dailyvolumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4703,"kind":16,"name":"DailyVolumeToken1","url":"enums/_generated_graphql_.pairdaydata_orderby.html#dailyvolumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4704,"kind":16,"name":"DailyVolumeUsd","url":"enums/_generated_graphql_.pairdaydata_orderby.html#dailyvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4705,"kind":16,"name":"DailyTxns","url":"enums/_generated_graphql_.pairdaydata_orderby.html#dailytxns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairDayData_OrderBy"},{"id":4706,"kind":4,"name":"PairHourData_OrderBy","url":"enums/_generated_graphql_.pairhourdata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4707,"kind":16,"name":"Id","url":"enums/_generated_graphql_.pairhourdata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4708,"kind":16,"name":"HourStartUnix","url":"enums/_generated_graphql_.pairhourdata_orderby.html#hourstartunix","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4709,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.pairhourdata_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4710,"kind":16,"name":"Reserve0","url":"enums/_generated_graphql_.pairhourdata_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4711,"kind":16,"name":"Reserve1","url":"enums/_generated_graphql_.pairhourdata_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4712,"kind":16,"name":"ReserveUsd","url":"enums/_generated_graphql_.pairhourdata_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4713,"kind":16,"name":"HourlyVolumeToken0","url":"enums/_generated_graphql_.pairhourdata_orderby.html#hourlyvolumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4714,"kind":16,"name":"HourlyVolumeToken1","url":"enums/_generated_graphql_.pairhourdata_orderby.html#hourlyvolumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4715,"kind":16,"name":"HourlyVolumeUsd","url":"enums/_generated_graphql_.pairhourdata_orderby.html#hourlyvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4716,"kind":16,"name":"HourlyTxns","url":"enums/_generated_graphql_.pairhourdata_orderby.html#hourlytxns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".PairHourData_OrderBy"},{"id":4717,"kind":4,"name":"Pair_OrderBy","url":"enums/_generated_graphql_.pair_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4718,"kind":16,"name":"Id","url":"enums/_generated_graphql_.pair_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4719,"kind":16,"name":"Token0","url":"enums/_generated_graphql_.pair_orderby.html#token0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4720,"kind":16,"name":"Token1","url":"enums/_generated_graphql_.pair_orderby.html#token1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4721,"kind":16,"name":"Reserve0","url":"enums/_generated_graphql_.pair_orderby.html#reserve0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4722,"kind":16,"name":"Reserve1","url":"enums/_generated_graphql_.pair_orderby.html#reserve1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4723,"kind":16,"name":"TotalSupply","url":"enums/_generated_graphql_.pair_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4724,"kind":16,"name":"ReserveEth","url":"enums/_generated_graphql_.pair_orderby.html#reserveeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4725,"kind":16,"name":"ReserveUsd","url":"enums/_generated_graphql_.pair_orderby.html#reserveusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4726,"kind":16,"name":"TrackedReserveEth","url":"enums/_generated_graphql_.pair_orderby.html#trackedreserveeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4727,"kind":16,"name":"Token0Price","url":"enums/_generated_graphql_.pair_orderby.html#token0price","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4728,"kind":16,"name":"Token1Price","url":"enums/_generated_graphql_.pair_orderby.html#token1price","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4729,"kind":16,"name":"VolumeToken0","url":"enums/_generated_graphql_.pair_orderby.html#volumetoken0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4730,"kind":16,"name":"VolumeToken1","url":"enums/_generated_graphql_.pair_orderby.html#volumetoken1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4731,"kind":16,"name":"VolumeUsd","url":"enums/_generated_graphql_.pair_orderby.html#volumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4732,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_generated_graphql_.pair_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4733,"kind":16,"name":"TxCount","url":"enums/_generated_graphql_.pair_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4734,"kind":16,"name":"CreatedAtTimestamp","url":"enums/_generated_graphql_.pair_orderby.html#createdattimestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4735,"kind":16,"name":"CreatedAtBlockNumber","url":"enums/_generated_graphql_.pair_orderby.html#createdatblocknumber","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4736,"kind":16,"name":"LiquidityProviderCount","url":"enums/_generated_graphql_.pair_orderby.html#liquidityprovidercount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Pair_OrderBy"},{"id":4737,"kind":4,"name":"Swap_OrderBy","url":"enums/_generated_graphql_.swap_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4738,"kind":16,"name":"Id","url":"enums/_generated_graphql_.swap_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4739,"kind":16,"name":"Transaction","url":"enums/_generated_graphql_.swap_orderby.html#transaction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4740,"kind":16,"name":"Timestamp","url":"enums/_generated_graphql_.swap_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4741,"kind":16,"name":"Pair","url":"enums/_generated_graphql_.swap_orderby.html#pair","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4742,"kind":16,"name":"Sender","url":"enums/_generated_graphql_.swap_orderby.html#sender","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4743,"kind":16,"name":"Amount0In","url":"enums/_generated_graphql_.swap_orderby.html#amount0in","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4744,"kind":16,"name":"Amount1In","url":"enums/_generated_graphql_.swap_orderby.html#amount1in","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4745,"kind":16,"name":"Amount0Out","url":"enums/_generated_graphql_.swap_orderby.html#amount0out","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4746,"kind":16,"name":"Amount1Out","url":"enums/_generated_graphql_.swap_orderby.html#amount1out","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4747,"kind":16,"name":"To","url":"enums/_generated_graphql_.swap_orderby.html#to","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4748,"kind":16,"name":"LogIndex","url":"enums/_generated_graphql_.swap_orderby.html#logindex","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4749,"kind":16,"name":"AmountUsd","url":"enums/_generated_graphql_.swap_orderby.html#amountusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Swap_OrderBy"},{"id":4750,"kind":4,"name":"TokenDayData_OrderBy","url":"enums/_generated_graphql_.tokendaydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4751,"kind":16,"name":"Id","url":"enums/_generated_graphql_.tokendaydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4752,"kind":16,"name":"Date","url":"enums/_generated_graphql_.tokendaydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4753,"kind":16,"name":"Token","url":"enums/_generated_graphql_.tokendaydata_orderby.html#token","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4754,"kind":16,"name":"DailyVolumeToken","url":"enums/_generated_graphql_.tokendaydata_orderby.html#dailyvolumetoken","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4755,"kind":16,"name":"DailyVolumeEth","url":"enums/_generated_graphql_.tokendaydata_orderby.html#dailyvolumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4756,"kind":16,"name":"DailyVolumeUsd","url":"enums/_generated_graphql_.tokendaydata_orderby.html#dailyvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4757,"kind":16,"name":"DailyTxns","url":"enums/_generated_graphql_.tokendaydata_orderby.html#dailytxns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4758,"kind":16,"name":"TotalLiquidityToken","url":"enums/_generated_graphql_.tokendaydata_orderby.html#totalliquiditytoken","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4759,"kind":16,"name":"TotalLiquidityEth","url":"enums/_generated_graphql_.tokendaydata_orderby.html#totalliquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4760,"kind":16,"name":"TotalLiquidityUsd","url":"enums/_generated_graphql_.tokendaydata_orderby.html#totalliquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4761,"kind":16,"name":"PriceUsd","url":"enums/_generated_graphql_.tokendaydata_orderby.html#priceusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4762,"kind":16,"name":"MaxStored","url":"enums/_generated_graphql_.tokendaydata_orderby.html#maxstored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4763,"kind":16,"name":"MostLiquidPairs","url":"enums/_generated_graphql_.tokendaydata_orderby.html#mostliquidpairs","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".TokenDayData_OrderBy"},{"id":4764,"kind":4,"name":"Token_OrderBy","url":"enums/_generated_graphql_.token_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4765,"kind":16,"name":"Id","url":"enums/_generated_graphql_.token_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4766,"kind":16,"name":"Symbol","url":"enums/_generated_graphql_.token_orderby.html#symbol","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4767,"kind":16,"name":"Name","url":"enums/_generated_graphql_.token_orderby.html#name","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4768,"kind":16,"name":"Decimals","url":"enums/_generated_graphql_.token_orderby.html#decimals","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4769,"kind":16,"name":"TotalSupply","url":"enums/_generated_graphql_.token_orderby.html#totalsupply","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4770,"kind":16,"name":"TradeVolume","url":"enums/_generated_graphql_.token_orderby.html#tradevolume","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4771,"kind":16,"name":"TradeVolumeUsd","url":"enums/_generated_graphql_.token_orderby.html#tradevolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4772,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_generated_graphql_.token_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4773,"kind":16,"name":"TxCount","url":"enums/_generated_graphql_.token_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4774,"kind":16,"name":"TotalLiquidity","url":"enums/_generated_graphql_.token_orderby.html#totalliquidity","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4775,"kind":16,"name":"DerivedEth","url":"enums/_generated_graphql_.token_orderby.html#derivedeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4776,"kind":16,"name":"MostLiquidPairs","url":"enums/_generated_graphql_.token_orderby.html#mostliquidpairs","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Token_OrderBy"},{"id":4777,"kind":4,"name":"Transaction_OrderBy","url":"enums/_generated_graphql_.transaction_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4778,"kind":16,"name":"Id","url":"enums/_generated_graphql_.transaction_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4779,"kind":16,"name":"BlockNumber","url":"enums/_generated_graphql_.transaction_orderby.html#blocknumber","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4780,"kind":16,"name":"Timestamp","url":"enums/_generated_graphql_.transaction_orderby.html#timestamp","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4781,"kind":16,"name":"Mints","url":"enums/_generated_graphql_.transaction_orderby.html#mints","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4782,"kind":16,"name":"Burns","url":"enums/_generated_graphql_.transaction_orderby.html#burns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4783,"kind":16,"name":"Swaps","url":"enums/_generated_graphql_.transaction_orderby.html#swaps","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".Transaction_OrderBy"},{"id":4784,"kind":4,"name":"SushiswapDayData_OrderBy","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4785,"kind":16,"name":"Id","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4786,"kind":16,"name":"Date","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#date","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4787,"kind":16,"name":"DailyVolumeEth","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#dailyvolumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4788,"kind":16,"name":"DailyVolumeUsd","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#dailyvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4789,"kind":16,"name":"DailyVolumeUntracked","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#dailyvolumeuntracked","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4790,"kind":16,"name":"TotalVolumeEth","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#totalvolumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4791,"kind":16,"name":"TotalLiquidityEth","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#totalliquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4792,"kind":16,"name":"TotalVolumeUsd","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#totalvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4793,"kind":16,"name":"TotalLiquidityUsd","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#totalliquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4794,"kind":16,"name":"MaxStored","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#maxstored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4795,"kind":16,"name":"MostLiquidTokens","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#mostliquidtokens","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4796,"kind":16,"name":"TxCount","url":"enums/_generated_graphql_.sushiswapdaydata_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapDayData_OrderBy"},{"id":4797,"kind":4,"name":"SushiswapFactory_OrderBy","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4798,"kind":16,"name":"Id","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4799,"kind":16,"name":"PairCount","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#paircount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4800,"kind":16,"name":"TotalVolumeUsd","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#totalvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4801,"kind":16,"name":"TotalVolumeEth","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#totalvolumeeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4802,"kind":16,"name":"UntrackedVolumeUsd","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#untrackedvolumeusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4803,"kind":16,"name":"TotalLiquidityUsd","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#totalliquidityusd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4804,"kind":16,"name":"TotalLiquidityEth","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#totalliquidityeth","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4805,"kind":16,"name":"TxCount","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#txcount","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4806,"kind":16,"name":"MostLiquidTokens","url":"enums/_generated_graphql_.sushiswapfactory_orderby.html#mostliquidtokens","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".SushiswapFactory_OrderBy"},{"id":4807,"kind":4,"name":"User_OrderBy","url":"enums/_generated_graphql_.user_orderby.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4808,"kind":16,"name":"Id","url":"enums/_generated_graphql_.user_orderby.html#id","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".User_OrderBy"},{"id":4809,"kind":16,"name":"LiquidityPositions","url":"enums/_generated_graphql_.user_orderby.html#liquiditypositions","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".User_OrderBy"},{"id":4810,"kind":16,"name":"UsdSwapped","url":"enums/_generated_graphql_.user_orderby.html#usdswapped","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\".User_OrderBy"},{"id":4811,"kind":4,"name":"_SubgraphErrorPolicy_","url":"enums/_generated_graphql_._subgrapherrorpolicy_.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4812,"kind":16,"name":"Allow","url":"enums/_generated_graphql_._subgrapherrorpolicy_.html#allow","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\"._SubgraphErrorPolicy_"},{"id":4813,"kind":16,"name":"Deny","url":"enums/_generated_graphql_._subgrapherrorpolicy_.html#deny","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"\"generated/graphql\"._SubgraphErrorPolicy_"},{"id":4814,"kind":4194304,"name":"Maybe","url":"modules/_generated_graphql_.html#maybe","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"generated/graphql\""},{"id":4815,"kind":4194304,"name":"Exact","url":"modules/_generated_graphql_.html#exact","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"generated/graphql\""},{"id":4816,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#exact.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Exact"},{"id":4817,"kind":4194304,"name":"MakeOptional","url":"modules/_generated_graphql_.html#makeoptional","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"generated/graphql\""},{"id":4818,"kind":4194304,"name":"MakeMaybe","url":"modules/_generated_graphql_.html#makemaybe","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"\"generated/graphql\""},{"id":4819,"kind":4194304,"name":"Scalars","url":"modules/_generated_graphql_.html#scalars","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4820,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#scalars.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Scalars"},{"id":4821,"kind":32,"name":"ID","url":"modules/_generated_graphql_.html#scalars.__type-50.id-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4822,"kind":32,"name":"String","url":"modules/_generated_graphql_.html#scalars.__type-50.string","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4823,"kind":32,"name":"Boolean","url":"modules/_generated_graphql_.html#scalars.__type-50.boolean","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4824,"kind":32,"name":"Int","url":"modules/_generated_graphql_.html#scalars.__type-50.int","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4825,"kind":32,"name":"Float","url":"modules/_generated_graphql_.html#scalars.__type-50.float","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4826,"kind":32,"name":"BigDecimal","url":"modules/_generated_graphql_.html#scalars.__type-50.bigdecimal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4827,"kind":32,"name":"BigInt","url":"modules/_generated_graphql_.html#scalars.__type-50.bigint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4828,"kind":32,"name":"Bytes","url":"modules/_generated_graphql_.html#scalars.__type-50.bytes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Scalars.__type"},{"id":4829,"kind":4194304,"name":"Block_Height","url":"modules/_generated_graphql_.html#block_height","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4830,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#block_height.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Block_Height"},{"id":4831,"kind":32,"name":"hash","url":"modules/_generated_graphql_.html#block_height.__type.hash","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Block_Height.__type"},{"id":4832,"kind":32,"name":"number","url":"modules/_generated_graphql_.html#block_height.__type.number","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Block_Height.__type"},{"id":4833,"kind":4194304,"name":"Bundle","url":"modules/_generated_graphql_.html#bundle","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4834,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#bundle.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Bundle"},{"id":4835,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#bundle.__type-1.__typename","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle.__type"},{"id":4836,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#bundle.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle.__type"},{"id":4837,"kind":32,"name":"ethPrice","url":"modules/_generated_graphql_.html#bundle.__type-1.ethprice","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle.__type"},{"id":4838,"kind":4194304,"name":"Bundle_Filter","url":"modules/_generated_graphql_.html#bundle_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4839,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#bundle_filter.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Bundle_Filter"},{"id":4840,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4841,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4842,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4843,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4844,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4845,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4846,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4847,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.id_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4848,"kind":32,"name":"ethPrice","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4849,"kind":32,"name":"ethPrice_not","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4850,"kind":32,"name":"ethPrice_gt","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4851,"kind":32,"name":"ethPrice_lt","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4852,"kind":32,"name":"ethPrice_gte","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4853,"kind":32,"name":"ethPrice_lte","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4854,"kind":32,"name":"ethPrice_in","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4855,"kind":32,"name":"ethPrice_not_in","url":"modules/_generated_graphql_.html#bundle_filter.__type-2.ethprice_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Bundle_Filter.__type"},{"id":4856,"kind":4194304,"name":"Burn","url":"modules/_generated_graphql_.html#burn","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4857,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#burn.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Burn"},{"id":4858,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#burn.__type-3.__typename-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4859,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#burn.__type-3.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4860,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#burn.__type-3.transaction","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4861,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#burn.__type-3.timestamp","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4862,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#burn.__type-3.pair","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4863,"kind":32,"name":"liquidity","url":"modules/_generated_graphql_.html#burn.__type-3.liquidity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4864,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#burn.__type-3.sender","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4865,"kind":32,"name":"amount0","url":"modules/_generated_graphql_.html#burn.__type-3.amount0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4866,"kind":32,"name":"amount1","url":"modules/_generated_graphql_.html#burn.__type-3.amount1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4867,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#burn.__type-3.to","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4868,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#burn.__type-3.logindex","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4869,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#burn.__type-3.amountusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4870,"kind":32,"name":"needsComplete","url":"modules/_generated_graphql_.html#burn.__type-3.needscomplete","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4871,"kind":32,"name":"feeTo","url":"modules/_generated_graphql_.html#burn.__type-3.feeto","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4872,"kind":32,"name":"feeLiquidity","url":"modules/_generated_graphql_.html#burn.__type-3.feeliquidity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn.__type"},{"id":4873,"kind":4194304,"name":"Burn_Filter","url":"modules/_generated_graphql_.html#burn_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4874,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#burn_filter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Burn_Filter"},{"id":4875,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4876,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4877,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4878,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4879,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4880,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4881,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4882,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.id_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4883,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4884,"kind":32,"name":"transaction_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4885,"kind":32,"name":"transaction_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4886,"kind":32,"name":"transaction_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4887,"kind":32,"name":"transaction_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4888,"kind":32,"name":"transaction_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4889,"kind":32,"name":"transaction_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4890,"kind":32,"name":"transaction_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4891,"kind":32,"name":"transaction_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4892,"kind":32,"name":"transaction_not_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4893,"kind":32,"name":"transaction_starts_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4894,"kind":32,"name":"transaction_not_starts_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4895,"kind":32,"name":"transaction_ends_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4896,"kind":32,"name":"transaction_not_ends_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.transaction_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4897,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4898,"kind":32,"name":"timestamp_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4899,"kind":32,"name":"timestamp_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4900,"kind":32,"name":"timestamp_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4901,"kind":32,"name":"timestamp_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4902,"kind":32,"name":"timestamp_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4903,"kind":32,"name":"timestamp_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4904,"kind":32,"name":"timestamp_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.timestamp_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4905,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4906,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4907,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4908,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4909,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4910,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4911,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4912,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4913,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4914,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4915,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4916,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4917,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4918,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#burn_filter.__type-4.pair_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4919,"kind":32,"name":"liquidity","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4920,"kind":32,"name":"liquidity_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4921,"kind":32,"name":"liquidity_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4922,"kind":32,"name":"liquidity_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4923,"kind":32,"name":"liquidity_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4924,"kind":32,"name":"liquidity_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4925,"kind":32,"name":"liquidity_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4926,"kind":32,"name":"liquidity_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.liquidity_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4927,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4928,"kind":32,"name":"sender_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4929,"kind":32,"name":"sender_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4930,"kind":32,"name":"sender_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4931,"kind":32,"name":"sender_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4932,"kind":32,"name":"sender_not_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.sender_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4933,"kind":32,"name":"amount0","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4934,"kind":32,"name":"amount0_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4935,"kind":32,"name":"amount0_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4936,"kind":32,"name":"amount0_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4937,"kind":32,"name":"amount0_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4938,"kind":32,"name":"amount0_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4939,"kind":32,"name":"amount0_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4940,"kind":32,"name":"amount0_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4941,"kind":32,"name":"amount1","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4942,"kind":32,"name":"amount1_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4943,"kind":32,"name":"amount1_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4944,"kind":32,"name":"amount1_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4945,"kind":32,"name":"amount1_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4946,"kind":32,"name":"amount1_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4947,"kind":32,"name":"amount1_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4948,"kind":32,"name":"amount1_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amount1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4949,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4950,"kind":32,"name":"to_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4951,"kind":32,"name":"to_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4952,"kind":32,"name":"to_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4953,"kind":32,"name":"to_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4954,"kind":32,"name":"to_not_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.to_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4955,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4956,"kind":32,"name":"logIndex_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4957,"kind":32,"name":"logIndex_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4958,"kind":32,"name":"logIndex_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4959,"kind":32,"name":"logIndex_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4960,"kind":32,"name":"logIndex_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4961,"kind":32,"name":"logIndex_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4962,"kind":32,"name":"logIndex_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.logindex_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4963,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4964,"kind":32,"name":"amountUSD_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4965,"kind":32,"name":"amountUSD_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4966,"kind":32,"name":"amountUSD_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4967,"kind":32,"name":"amountUSD_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4968,"kind":32,"name":"amountUSD_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4969,"kind":32,"name":"amountUSD_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4970,"kind":32,"name":"amountUSD_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.amountusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4971,"kind":32,"name":"needsComplete","url":"modules/_generated_graphql_.html#burn_filter.__type-4.needscomplete-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4972,"kind":32,"name":"needsComplete_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.needscomplete_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4973,"kind":32,"name":"needsComplete_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.needscomplete_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4974,"kind":32,"name":"needsComplete_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.needscomplete_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4975,"kind":32,"name":"feeTo","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4976,"kind":32,"name":"feeTo_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4977,"kind":32,"name":"feeTo_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4978,"kind":32,"name":"feeTo_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4979,"kind":32,"name":"feeTo_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4980,"kind":32,"name":"feeTo_not_contains","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeto_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4981,"kind":32,"name":"feeLiquidity","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4982,"kind":32,"name":"feeLiquidity_not","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4983,"kind":32,"name":"feeLiquidity_gt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4984,"kind":32,"name":"feeLiquidity_lt","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4985,"kind":32,"name":"feeLiquidity_gte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4986,"kind":32,"name":"feeLiquidity_lte","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4987,"kind":32,"name":"feeLiquidity_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4988,"kind":32,"name":"feeLiquidity_not_in","url":"modules/_generated_graphql_.html#burn_filter.__type-4.feeliquidity_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Burn_Filter.__type"},{"id":4989,"kind":4194304,"name":"LiquidityPosition","url":"modules/_generated_graphql_.html#liquidityposition","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4990,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#liquidityposition.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".LiquidityPosition"},{"id":4991,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#liquidityposition.__type-6.__typename-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition.__type"},{"id":4992,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#liquidityposition.__type-6.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition.__type"},{"id":4993,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#liquidityposition.__type-6.user","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition.__type"},{"id":4994,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#liquidityposition.__type-6.pair-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition.__type"},{"id":4995,"kind":32,"name":"liquidityTokenBalance","url":"modules/_generated_graphql_.html#liquidityposition.__type-6.liquiditytokenbalance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition.__type"},{"id":4996,"kind":4194304,"name":"LiquidityPositionSnapshot","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":4997,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".LiquidityPositionSnapshot"},{"id":4998,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.__typename-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":4999,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5000,"kind":32,"name":"liquidityPosition","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.liquidityposition-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5001,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.timestamp-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5002,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.block","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5003,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.user-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5004,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.pair-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5005,"kind":32,"name":"token0PriceUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.token0priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5006,"kind":32,"name":"token1PriceUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.token1priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5007,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.reserve0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5008,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.reserve1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5009,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.reserveusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5010,"kind":32,"name":"liquidityTokenTotalSupply","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.liquiditytokentotalsupply","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5011,"kind":32,"name":"liquidityTokenBalance","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot.__type-7.liquiditytokenbalance-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot.__type"},{"id":5012,"kind":4194304,"name":"LiquidityPositionSnapshot_Filter","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5013,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter"},{"id":5014,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5015,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5016,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5017,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5018,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5019,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5020,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5021,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.id_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5022,"kind":32,"name":"liquidityPosition","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5023,"kind":32,"name":"liquidityPosition_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5024,"kind":32,"name":"liquidityPosition_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5025,"kind":32,"name":"liquidityPosition_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5026,"kind":32,"name":"liquidityPosition_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5027,"kind":32,"name":"liquidityPosition_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5028,"kind":32,"name":"liquidityPosition_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5029,"kind":32,"name":"liquidityPosition_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5030,"kind":32,"name":"liquidityPosition_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5031,"kind":32,"name":"liquidityPosition_not_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5032,"kind":32,"name":"liquidityPosition_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5033,"kind":32,"name":"liquidityPosition_not_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5034,"kind":32,"name":"liquidityPosition_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5035,"kind":32,"name":"liquidityPosition_not_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquidityposition_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5036,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5037,"kind":32,"name":"timestamp_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5038,"kind":32,"name":"timestamp_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5039,"kind":32,"name":"timestamp_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5040,"kind":32,"name":"timestamp_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5041,"kind":32,"name":"timestamp_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5042,"kind":32,"name":"timestamp_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5043,"kind":32,"name":"timestamp_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.timestamp_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5044,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5045,"kind":32,"name":"block_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5046,"kind":32,"name":"block_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5047,"kind":32,"name":"block_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5048,"kind":32,"name":"block_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5049,"kind":32,"name":"block_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5050,"kind":32,"name":"block_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5051,"kind":32,"name":"block_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.block_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5052,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5053,"kind":32,"name":"user_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5054,"kind":32,"name":"user_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5055,"kind":32,"name":"user_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5056,"kind":32,"name":"user_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5057,"kind":32,"name":"user_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5058,"kind":32,"name":"user_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5059,"kind":32,"name":"user_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5060,"kind":32,"name":"user_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5061,"kind":32,"name":"user_not_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5062,"kind":32,"name":"user_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5063,"kind":32,"name":"user_not_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5064,"kind":32,"name":"user_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5065,"kind":32,"name":"user_not_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.user_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5066,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5067,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5068,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5069,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5070,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5071,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5072,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5073,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5074,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5075,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5076,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5077,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5078,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5079,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.pair_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5080,"kind":32,"name":"token0PriceUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5081,"kind":32,"name":"token0PriceUSD_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5082,"kind":32,"name":"token0PriceUSD_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5083,"kind":32,"name":"token0PriceUSD_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5084,"kind":32,"name":"token0PriceUSD_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5085,"kind":32,"name":"token0PriceUSD_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5086,"kind":32,"name":"token0PriceUSD_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5087,"kind":32,"name":"token0PriceUSD_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token0priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5088,"kind":32,"name":"token1PriceUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5089,"kind":32,"name":"token1PriceUSD_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5090,"kind":32,"name":"token1PriceUSD_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5091,"kind":32,"name":"token1PriceUSD_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5092,"kind":32,"name":"token1PriceUSD_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5093,"kind":32,"name":"token1PriceUSD_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5094,"kind":32,"name":"token1PriceUSD_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5095,"kind":32,"name":"token1PriceUSD_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.token1priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5096,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5097,"kind":32,"name":"reserve0_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5098,"kind":32,"name":"reserve0_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5099,"kind":32,"name":"reserve0_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5100,"kind":32,"name":"reserve0_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5101,"kind":32,"name":"reserve0_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5102,"kind":32,"name":"reserve0_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5103,"kind":32,"name":"reserve0_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5104,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5105,"kind":32,"name":"reserve1_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5106,"kind":32,"name":"reserve1_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5107,"kind":32,"name":"reserve1_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5108,"kind":32,"name":"reserve1_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5109,"kind":32,"name":"reserve1_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5110,"kind":32,"name":"reserve1_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5111,"kind":32,"name":"reserve1_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserve1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5112,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5113,"kind":32,"name":"reserveUSD_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5114,"kind":32,"name":"reserveUSD_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5115,"kind":32,"name":"reserveUSD_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5116,"kind":32,"name":"reserveUSD_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5117,"kind":32,"name":"reserveUSD_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5118,"kind":32,"name":"reserveUSD_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5119,"kind":32,"name":"reserveUSD_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.reserveusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5120,"kind":32,"name":"liquidityTokenTotalSupply","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5121,"kind":32,"name":"liquidityTokenTotalSupply_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5122,"kind":32,"name":"liquidityTokenTotalSupply_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5123,"kind":32,"name":"liquidityTokenTotalSupply_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5124,"kind":32,"name":"liquidityTokenTotalSupply_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5125,"kind":32,"name":"liquidityTokenTotalSupply_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5126,"kind":32,"name":"liquidityTokenTotalSupply_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5127,"kind":32,"name":"liquidityTokenTotalSupply_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokentotalsupply_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5128,"kind":32,"name":"liquidityTokenBalance","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5129,"kind":32,"name":"liquidityTokenBalance_not","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5130,"kind":32,"name":"liquidityTokenBalance_gt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5131,"kind":32,"name":"liquidityTokenBalance_lt","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5132,"kind":32,"name":"liquidityTokenBalance_gte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5133,"kind":32,"name":"liquidityTokenBalance_lte","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5134,"kind":32,"name":"liquidityTokenBalance_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5135,"kind":32,"name":"liquidityTokenBalance_not_in","url":"modules/_generated_graphql_.html#liquiditypositionsnapshot_filter.__type-8.liquiditytokenbalance_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPositionSnapshot_Filter.__type"},{"id":5136,"kind":4194304,"name":"LiquidityPosition_Filter","url":"modules/_generated_graphql_.html#liquidityposition_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5137,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".LiquidityPosition_Filter"},{"id":5138,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5139,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5140,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5141,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5142,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5143,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5144,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5145,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.id_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5146,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5147,"kind":32,"name":"user_not","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5148,"kind":32,"name":"user_gt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5149,"kind":32,"name":"user_lt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5150,"kind":32,"name":"user_gte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5151,"kind":32,"name":"user_lte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5152,"kind":32,"name":"user_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5153,"kind":32,"name":"user_not_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5154,"kind":32,"name":"user_contains","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5155,"kind":32,"name":"user_not_contains","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5156,"kind":32,"name":"user_starts_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5157,"kind":32,"name":"user_not_starts_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5158,"kind":32,"name":"user_ends_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5159,"kind":32,"name":"user_not_ends_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.user_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5160,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5161,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5162,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5163,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5164,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5165,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5166,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5167,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5168,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5169,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5170,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5171,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_not_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5172,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5173,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.pair_not_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5174,"kind":32,"name":"liquidityTokenBalance","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5175,"kind":32,"name":"liquidityTokenBalance_not","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5176,"kind":32,"name":"liquidityTokenBalance_gt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5177,"kind":32,"name":"liquidityTokenBalance_lt","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5178,"kind":32,"name":"liquidityTokenBalance_gte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5179,"kind":32,"name":"liquidityTokenBalance_lte","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5180,"kind":32,"name":"liquidityTokenBalance_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5181,"kind":32,"name":"liquidityTokenBalance_not_in","url":"modules/_generated_graphql_.html#liquidityposition_filter.__type-9.liquiditytokenbalance_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".LiquidityPosition_Filter.__type"},{"id":5182,"kind":4194304,"name":"Mint","url":"modules/_generated_graphql_.html#mint","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5183,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#mint.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Mint"},{"id":5184,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#mint.__type-10.__typename-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5185,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#mint.__type-10.id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5186,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#mint.__type-10.transaction-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5187,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#mint.__type-10.timestamp-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5188,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#mint.__type-10.pair-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5189,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#mint.__type-10.to-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5190,"kind":32,"name":"liquidity","url":"modules/_generated_graphql_.html#mint.__type-10.liquidity-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5191,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#mint.__type-10.sender-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5192,"kind":32,"name":"amount0","url":"modules/_generated_graphql_.html#mint.__type-10.amount0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5193,"kind":32,"name":"amount1","url":"modules/_generated_graphql_.html#mint.__type-10.amount1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5194,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#mint.__type-10.logindex-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5195,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#mint.__type-10.amountusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5196,"kind":32,"name":"feeTo","url":"modules/_generated_graphql_.html#mint.__type-10.feeto-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5197,"kind":32,"name":"feeLiquidity","url":"modules/_generated_graphql_.html#mint.__type-10.feeliquidity-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint.__type"},{"id":5198,"kind":4194304,"name":"Mint_Filter","url":"modules/_generated_graphql_.html#mint_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5199,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#mint_filter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Mint_Filter"},{"id":5200,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5201,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5202,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5203,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5204,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5205,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5206,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5207,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.id_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5208,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5209,"kind":32,"name":"transaction_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5210,"kind":32,"name":"transaction_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5211,"kind":32,"name":"transaction_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5212,"kind":32,"name":"transaction_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5213,"kind":32,"name":"transaction_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5214,"kind":32,"name":"transaction_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5215,"kind":32,"name":"transaction_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5216,"kind":32,"name":"transaction_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5217,"kind":32,"name":"transaction_not_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5218,"kind":32,"name":"transaction_starts_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5219,"kind":32,"name":"transaction_not_starts_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5220,"kind":32,"name":"transaction_ends_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5221,"kind":32,"name":"transaction_not_ends_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.transaction_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5222,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5223,"kind":32,"name":"timestamp_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5224,"kind":32,"name":"timestamp_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5225,"kind":32,"name":"timestamp_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5226,"kind":32,"name":"timestamp_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5227,"kind":32,"name":"timestamp_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5228,"kind":32,"name":"timestamp_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5229,"kind":32,"name":"timestamp_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.timestamp_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5230,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5231,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5232,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5233,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5234,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5235,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5236,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5237,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5238,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5239,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_not_contains-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5240,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5241,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_not_starts_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5242,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5243,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#mint_filter.__type-11.pair_not_ends_with-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5244,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5245,"kind":32,"name":"to_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5246,"kind":32,"name":"to_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5247,"kind":32,"name":"to_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5248,"kind":32,"name":"to_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5249,"kind":32,"name":"to_not_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.to_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5250,"kind":32,"name":"liquidity","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5251,"kind":32,"name":"liquidity_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5252,"kind":32,"name":"liquidity_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5253,"kind":32,"name":"liquidity_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5254,"kind":32,"name":"liquidity_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5255,"kind":32,"name":"liquidity_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5256,"kind":32,"name":"liquidity_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5257,"kind":32,"name":"liquidity_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.liquidity_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5258,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5259,"kind":32,"name":"sender_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5260,"kind":32,"name":"sender_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5261,"kind":32,"name":"sender_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5262,"kind":32,"name":"sender_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5263,"kind":32,"name":"sender_not_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.sender_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5264,"kind":32,"name":"amount0","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5265,"kind":32,"name":"amount0_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5266,"kind":32,"name":"amount0_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5267,"kind":32,"name":"amount0_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5268,"kind":32,"name":"amount0_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5269,"kind":32,"name":"amount0_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5270,"kind":32,"name":"amount0_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5271,"kind":32,"name":"amount0_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5272,"kind":32,"name":"amount1","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5273,"kind":32,"name":"amount1_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5274,"kind":32,"name":"amount1_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5275,"kind":32,"name":"amount1_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5276,"kind":32,"name":"amount1_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5277,"kind":32,"name":"amount1_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5278,"kind":32,"name":"amount1_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5279,"kind":32,"name":"amount1_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amount1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5280,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5281,"kind":32,"name":"logIndex_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5282,"kind":32,"name":"logIndex_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5283,"kind":32,"name":"logIndex_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5284,"kind":32,"name":"logIndex_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5285,"kind":32,"name":"logIndex_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5286,"kind":32,"name":"logIndex_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5287,"kind":32,"name":"logIndex_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.logindex_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5288,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5289,"kind":32,"name":"amountUSD_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5290,"kind":32,"name":"amountUSD_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5291,"kind":32,"name":"amountUSD_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5292,"kind":32,"name":"amountUSD_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5293,"kind":32,"name":"amountUSD_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5294,"kind":32,"name":"amountUSD_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5295,"kind":32,"name":"amountUSD_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.amountusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5296,"kind":32,"name":"feeTo","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5297,"kind":32,"name":"feeTo_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5298,"kind":32,"name":"feeTo_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5299,"kind":32,"name":"feeTo_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5300,"kind":32,"name":"feeTo_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5301,"kind":32,"name":"feeTo_not_contains","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeto_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5302,"kind":32,"name":"feeLiquidity","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5303,"kind":32,"name":"feeLiquidity_not","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5304,"kind":32,"name":"feeLiquidity_gt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5305,"kind":32,"name":"feeLiquidity_lt","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5306,"kind":32,"name":"feeLiquidity_gte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5307,"kind":32,"name":"feeLiquidity_lte","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5308,"kind":32,"name":"feeLiquidity_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5309,"kind":32,"name":"feeLiquidity_not_in","url":"modules/_generated_graphql_.html#mint_filter.__type-11.feeliquidity_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Mint_Filter.__type"},{"id":5310,"kind":4194304,"name":"Pair","url":"modules/_generated_graphql_.html#pair-8","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5311,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pair-8.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Pair"},{"id":5312,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#pair-8.__type-12.__typename-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5313,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pair-8.__type-12.id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5314,"kind":32,"name":"token0","url":"modules/_generated_graphql_.html#pair-8.__type-12.token0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5315,"kind":32,"name":"token1","url":"modules/_generated_graphql_.html#pair-8.__type-12.token1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5316,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pair-8.__type-12.reserve0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5317,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pair-8.__type-12.reserve1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5318,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#pair-8.__type-12.totalsupply","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5319,"kind":32,"name":"reserveETH","url":"modules/_generated_graphql_.html#pair-8.__type-12.reserveeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5320,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pair-8.__type-12.reserveusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5321,"kind":32,"name":"trackedReserveETH","url":"modules/_generated_graphql_.html#pair-8.__type-12.trackedreserveeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5322,"kind":32,"name":"token0Price","url":"modules/_generated_graphql_.html#pair-8.__type-12.token0price","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5323,"kind":32,"name":"token1Price","url":"modules/_generated_graphql_.html#pair-8.__type-12.token1price","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5324,"kind":32,"name":"volumeToken0","url":"modules/_generated_graphql_.html#pair-8.__type-12.volumetoken0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5325,"kind":32,"name":"volumeToken1","url":"modules/_generated_graphql_.html#pair-8.__type-12.volumetoken1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5326,"kind":32,"name":"volumeUSD","url":"modules/_generated_graphql_.html#pair-8.__type-12.volumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5327,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#pair-8.__type-12.untrackedvolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5328,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#pair-8.__type-12.txcount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5329,"kind":32,"name":"createdAtTimestamp","url":"modules/_generated_graphql_.html#pair-8.__type-12.createdattimestamp","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5330,"kind":32,"name":"createdAtBlockNumber","url":"modules/_generated_graphql_.html#pair-8.__type-12.createdatblocknumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5331,"kind":32,"name":"liquidityProviderCount","url":"modules/_generated_graphql_.html#pair-8.__type-12.liquidityprovidercount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair.__type"},{"id":5332,"kind":4194304,"name":"PairDayData","url":"modules/_generated_graphql_.html#pairdaydata","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5333,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pairdaydata.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".PairDayData"},{"id":5334,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.__typename-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5335,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.id-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5336,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.date","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5337,"kind":32,"name":"pairAddress","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.pairaddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5338,"kind":32,"name":"token0","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.token0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5339,"kind":32,"name":"token1","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.token1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5340,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.reserve0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5341,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.reserve1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5342,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.totalsupply-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5343,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.reserveusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5344,"kind":32,"name":"dailyVolumeToken0","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.dailyvolumetoken0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5345,"kind":32,"name":"dailyVolumeToken1","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.dailyvolumetoken1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5346,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.dailyvolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5347,"kind":32,"name":"dailyTxns","url":"modules/_generated_graphql_.html#pairdaydata.__type-13.dailytxns","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData.__type"},{"id":5348,"kind":4194304,"name":"PairDayData_Filter","url":"modules/_generated_graphql_.html#pairdaydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5349,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".PairDayData_Filter"},{"id":5350,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5351,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5352,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5353,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5354,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5355,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5356,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5357,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.id_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5358,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5359,"kind":32,"name":"date_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5360,"kind":32,"name":"date_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5361,"kind":32,"name":"date_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5362,"kind":32,"name":"date_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5363,"kind":32,"name":"date_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5364,"kind":32,"name":"date_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5365,"kind":32,"name":"date_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.date_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5366,"kind":32,"name":"pairAddress","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5367,"kind":32,"name":"pairAddress_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5368,"kind":32,"name":"pairAddress_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5369,"kind":32,"name":"pairAddress_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5370,"kind":32,"name":"pairAddress_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5371,"kind":32,"name":"pairAddress_not_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.pairaddress_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5372,"kind":32,"name":"token0","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5373,"kind":32,"name":"token0_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5374,"kind":32,"name":"token0_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5375,"kind":32,"name":"token0_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5376,"kind":32,"name":"token0_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5377,"kind":32,"name":"token0_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5378,"kind":32,"name":"token0_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5379,"kind":32,"name":"token0_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5380,"kind":32,"name":"token0_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5381,"kind":32,"name":"token0_not_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5382,"kind":32,"name":"token0_starts_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5383,"kind":32,"name":"token0_not_starts_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5384,"kind":32,"name":"token0_ends_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5385,"kind":32,"name":"token0_not_ends_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token0_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5386,"kind":32,"name":"token1","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5387,"kind":32,"name":"token1_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5388,"kind":32,"name":"token1_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5389,"kind":32,"name":"token1_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5390,"kind":32,"name":"token1_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5391,"kind":32,"name":"token1_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5392,"kind":32,"name":"token1_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5393,"kind":32,"name":"token1_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5394,"kind":32,"name":"token1_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5395,"kind":32,"name":"token1_not_contains","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5396,"kind":32,"name":"token1_starts_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5397,"kind":32,"name":"token1_not_starts_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5398,"kind":32,"name":"token1_ends_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5399,"kind":32,"name":"token1_not_ends_with","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.token1_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5400,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5401,"kind":32,"name":"reserve0_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5402,"kind":32,"name":"reserve0_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5403,"kind":32,"name":"reserve0_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5404,"kind":32,"name":"reserve0_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5405,"kind":32,"name":"reserve0_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5406,"kind":32,"name":"reserve0_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5407,"kind":32,"name":"reserve0_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5408,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5409,"kind":32,"name":"reserve1_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5410,"kind":32,"name":"reserve1_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5411,"kind":32,"name":"reserve1_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5412,"kind":32,"name":"reserve1_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5413,"kind":32,"name":"reserve1_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5414,"kind":32,"name":"reserve1_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5415,"kind":32,"name":"reserve1_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserve1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5416,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5417,"kind":32,"name":"totalSupply_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5418,"kind":32,"name":"totalSupply_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5419,"kind":32,"name":"totalSupply_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5420,"kind":32,"name":"totalSupply_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5421,"kind":32,"name":"totalSupply_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5422,"kind":32,"name":"totalSupply_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5423,"kind":32,"name":"totalSupply_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.totalsupply_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5424,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5425,"kind":32,"name":"reserveUSD_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5426,"kind":32,"name":"reserveUSD_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5427,"kind":32,"name":"reserveUSD_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5428,"kind":32,"name":"reserveUSD_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5429,"kind":32,"name":"reserveUSD_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5430,"kind":32,"name":"reserveUSD_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5431,"kind":32,"name":"reserveUSD_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.reserveusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5432,"kind":32,"name":"dailyVolumeToken0","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5433,"kind":32,"name":"dailyVolumeToken0_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5434,"kind":32,"name":"dailyVolumeToken0_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5435,"kind":32,"name":"dailyVolumeToken0_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5436,"kind":32,"name":"dailyVolumeToken0_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5437,"kind":32,"name":"dailyVolumeToken0_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5438,"kind":32,"name":"dailyVolumeToken0_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5439,"kind":32,"name":"dailyVolumeToken0_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5440,"kind":32,"name":"dailyVolumeToken1","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5441,"kind":32,"name":"dailyVolumeToken1_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5442,"kind":32,"name":"dailyVolumeToken1_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5443,"kind":32,"name":"dailyVolumeToken1_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5444,"kind":32,"name":"dailyVolumeToken1_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5445,"kind":32,"name":"dailyVolumeToken1_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5446,"kind":32,"name":"dailyVolumeToken1_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5447,"kind":32,"name":"dailyVolumeToken1_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumetoken1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5448,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5449,"kind":32,"name":"dailyVolumeUSD_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5450,"kind":32,"name":"dailyVolumeUSD_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5451,"kind":32,"name":"dailyVolumeUSD_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5452,"kind":32,"name":"dailyVolumeUSD_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5453,"kind":32,"name":"dailyVolumeUSD_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5454,"kind":32,"name":"dailyVolumeUSD_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5455,"kind":32,"name":"dailyVolumeUSD_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailyvolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5456,"kind":32,"name":"dailyTxns","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5457,"kind":32,"name":"dailyTxns_not","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5458,"kind":32,"name":"dailyTxns_gt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5459,"kind":32,"name":"dailyTxns_lt","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5460,"kind":32,"name":"dailyTxns_gte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5461,"kind":32,"name":"dailyTxns_lte","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5462,"kind":32,"name":"dailyTxns_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5463,"kind":32,"name":"dailyTxns_not_in","url":"modules/_generated_graphql_.html#pairdaydata_filter.__type-14.dailytxns_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairDayData_Filter.__type"},{"id":5464,"kind":4194304,"name":"PairHourData","url":"modules/_generated_graphql_.html#pairhourdata","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5465,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pairhourdata.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".PairHourData"},{"id":5466,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.__typename-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5467,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.id-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5468,"kind":32,"name":"hourStartUnix","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.hourstartunix","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5469,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.pair-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5470,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.reserve0-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5471,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.reserve1-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5472,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.reserveusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5473,"kind":32,"name":"hourlyVolumeToken0","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.hourlyvolumetoken0","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5474,"kind":32,"name":"hourlyVolumeToken1","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.hourlyvolumetoken1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5475,"kind":32,"name":"hourlyVolumeUSD","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.hourlyvolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5476,"kind":32,"name":"hourlyTxns","url":"modules/_generated_graphql_.html#pairhourdata.__type-15.hourlytxns","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData.__type"},{"id":5477,"kind":4194304,"name":"PairHourData_Filter","url":"modules/_generated_graphql_.html#pairhourdata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5478,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".PairHourData_Filter"},{"id":5479,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5480,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_not-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5481,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_gt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5482,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_lt-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5483,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_gte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5484,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_lte-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5485,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5486,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.id_not_in-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5487,"kind":32,"name":"hourStartUnix","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5488,"kind":32,"name":"hourStartUnix_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5489,"kind":32,"name":"hourStartUnix_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5490,"kind":32,"name":"hourStartUnix_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5491,"kind":32,"name":"hourStartUnix_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5492,"kind":32,"name":"hourStartUnix_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5493,"kind":32,"name":"hourStartUnix_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5494,"kind":32,"name":"hourStartUnix_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourstartunix_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5495,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5496,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5497,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5498,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5499,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5500,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5501,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5502,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5503,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_contains-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5504,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_not_contains-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5505,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_starts_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5506,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_not_starts_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5507,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_ends_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5508,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.pair_not_ends_with-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5509,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5510,"kind":32,"name":"reserve0_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5511,"kind":32,"name":"reserve0_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5512,"kind":32,"name":"reserve0_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5513,"kind":32,"name":"reserve0_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5514,"kind":32,"name":"reserve0_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5515,"kind":32,"name":"reserve0_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5516,"kind":32,"name":"reserve0_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve0_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5517,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5518,"kind":32,"name":"reserve1_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5519,"kind":32,"name":"reserve1_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5520,"kind":32,"name":"reserve1_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5521,"kind":32,"name":"reserve1_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5522,"kind":32,"name":"reserve1_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5523,"kind":32,"name":"reserve1_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5524,"kind":32,"name":"reserve1_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserve1_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5525,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5526,"kind":32,"name":"reserveUSD_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5527,"kind":32,"name":"reserveUSD_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5528,"kind":32,"name":"reserveUSD_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5529,"kind":32,"name":"reserveUSD_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5530,"kind":32,"name":"reserveUSD_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5531,"kind":32,"name":"reserveUSD_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5532,"kind":32,"name":"reserveUSD_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.reserveusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5533,"kind":32,"name":"hourlyVolumeToken0","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5534,"kind":32,"name":"hourlyVolumeToken0_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5535,"kind":32,"name":"hourlyVolumeToken0_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5536,"kind":32,"name":"hourlyVolumeToken0_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5537,"kind":32,"name":"hourlyVolumeToken0_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5538,"kind":32,"name":"hourlyVolumeToken0_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5539,"kind":32,"name":"hourlyVolumeToken0_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5540,"kind":32,"name":"hourlyVolumeToken0_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5541,"kind":32,"name":"hourlyVolumeToken1","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5542,"kind":32,"name":"hourlyVolumeToken1_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5543,"kind":32,"name":"hourlyVolumeToken1_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5544,"kind":32,"name":"hourlyVolumeToken1_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5545,"kind":32,"name":"hourlyVolumeToken1_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5546,"kind":32,"name":"hourlyVolumeToken1_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5547,"kind":32,"name":"hourlyVolumeToken1_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5548,"kind":32,"name":"hourlyVolumeToken1_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumetoken1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5549,"kind":32,"name":"hourlyVolumeUSD","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5550,"kind":32,"name":"hourlyVolumeUSD_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5551,"kind":32,"name":"hourlyVolumeUSD_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5552,"kind":32,"name":"hourlyVolumeUSD_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5553,"kind":32,"name":"hourlyVolumeUSD_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5554,"kind":32,"name":"hourlyVolumeUSD_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5555,"kind":32,"name":"hourlyVolumeUSD_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5556,"kind":32,"name":"hourlyVolumeUSD_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlyvolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5557,"kind":32,"name":"hourlyTxns","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5558,"kind":32,"name":"hourlyTxns_not","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5559,"kind":32,"name":"hourlyTxns_gt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5560,"kind":32,"name":"hourlyTxns_lt","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5561,"kind":32,"name":"hourlyTxns_gte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5562,"kind":32,"name":"hourlyTxns_lte","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5563,"kind":32,"name":"hourlyTxns_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5564,"kind":32,"name":"hourlyTxns_not_in","url":"modules/_generated_graphql_.html#pairhourdata_filter.__type-16.hourlytxns_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".PairHourData_Filter.__type"},{"id":5565,"kind":4194304,"name":"Pair_Filter","url":"modules/_generated_graphql_.html#pair_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5566,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#pair_filter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Pair_Filter"},{"id":5567,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5568,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_not-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5569,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_gt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5570,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_lt-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5571,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_gte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5572,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_lte-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5573,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5574,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.id_not_in-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5575,"kind":32,"name":"token0","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5576,"kind":32,"name":"token0_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5577,"kind":32,"name":"token0_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5578,"kind":32,"name":"token0_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5579,"kind":32,"name":"token0_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5580,"kind":32,"name":"token0_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5581,"kind":32,"name":"token0_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5582,"kind":32,"name":"token0_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5583,"kind":32,"name":"token0_contains","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5584,"kind":32,"name":"token0_not_contains","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5585,"kind":32,"name":"token0_starts_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5586,"kind":32,"name":"token0_not_starts_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5587,"kind":32,"name":"token0_ends_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5588,"kind":32,"name":"token0_not_ends_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5589,"kind":32,"name":"token1","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5590,"kind":32,"name":"token1_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5591,"kind":32,"name":"token1_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5592,"kind":32,"name":"token1_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5593,"kind":32,"name":"token1_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5594,"kind":32,"name":"token1_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5595,"kind":32,"name":"token1_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5596,"kind":32,"name":"token1_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5597,"kind":32,"name":"token1_contains","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5598,"kind":32,"name":"token1_not_contains","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5599,"kind":32,"name":"token1_starts_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5600,"kind":32,"name":"token1_not_starts_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_not_starts_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5601,"kind":32,"name":"token1_ends_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5602,"kind":32,"name":"token1_not_ends_with","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1_not_ends_with-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5603,"kind":32,"name":"reserve0","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5604,"kind":32,"name":"reserve0_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5605,"kind":32,"name":"reserve0_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5606,"kind":32,"name":"reserve0_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5607,"kind":32,"name":"reserve0_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5608,"kind":32,"name":"reserve0_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5609,"kind":32,"name":"reserve0_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5610,"kind":32,"name":"reserve0_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve0_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5611,"kind":32,"name":"reserve1","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5612,"kind":32,"name":"reserve1_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5613,"kind":32,"name":"reserve1_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5614,"kind":32,"name":"reserve1_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5615,"kind":32,"name":"reserve1_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5616,"kind":32,"name":"reserve1_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5617,"kind":32,"name":"reserve1_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5618,"kind":32,"name":"reserve1_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserve1_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5619,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5620,"kind":32,"name":"totalSupply_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5621,"kind":32,"name":"totalSupply_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5622,"kind":32,"name":"totalSupply_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5623,"kind":32,"name":"totalSupply_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5624,"kind":32,"name":"totalSupply_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5625,"kind":32,"name":"totalSupply_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5626,"kind":32,"name":"totalSupply_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.totalsupply_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5627,"kind":32,"name":"reserveETH","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5628,"kind":32,"name":"reserveETH_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5629,"kind":32,"name":"reserveETH_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5630,"kind":32,"name":"reserveETH_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5631,"kind":32,"name":"reserveETH_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5632,"kind":32,"name":"reserveETH_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5633,"kind":32,"name":"reserveETH_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5634,"kind":32,"name":"reserveETH_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5635,"kind":32,"name":"reserveUSD","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5636,"kind":32,"name":"reserveUSD_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5637,"kind":32,"name":"reserveUSD_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5638,"kind":32,"name":"reserveUSD_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5639,"kind":32,"name":"reserveUSD_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5640,"kind":32,"name":"reserveUSD_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5641,"kind":32,"name":"reserveUSD_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5642,"kind":32,"name":"reserveUSD_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.reserveusd_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5643,"kind":32,"name":"trackedReserveETH","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5644,"kind":32,"name":"trackedReserveETH_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5645,"kind":32,"name":"trackedReserveETH_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5646,"kind":32,"name":"trackedReserveETH_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5647,"kind":32,"name":"trackedReserveETH_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5648,"kind":32,"name":"trackedReserveETH_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5649,"kind":32,"name":"trackedReserveETH_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5650,"kind":32,"name":"trackedReserveETH_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.trackedreserveeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5651,"kind":32,"name":"token0Price","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5652,"kind":32,"name":"token0Price_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5653,"kind":32,"name":"token0Price_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5654,"kind":32,"name":"token0Price_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5655,"kind":32,"name":"token0Price_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5656,"kind":32,"name":"token0Price_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5657,"kind":32,"name":"token0Price_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5658,"kind":32,"name":"token0Price_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token0price_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5659,"kind":32,"name":"token1Price","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5660,"kind":32,"name":"token1Price_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5661,"kind":32,"name":"token1Price_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5662,"kind":32,"name":"token1Price_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5663,"kind":32,"name":"token1Price_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5664,"kind":32,"name":"token1Price_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5665,"kind":32,"name":"token1Price_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5666,"kind":32,"name":"token1Price_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.token1price_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5667,"kind":32,"name":"volumeToken0","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5668,"kind":32,"name":"volumeToken0_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5669,"kind":32,"name":"volumeToken0_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5670,"kind":32,"name":"volumeToken0_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5671,"kind":32,"name":"volumeToken0_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5672,"kind":32,"name":"volumeToken0_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5673,"kind":32,"name":"volumeToken0_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5674,"kind":32,"name":"volumeToken0_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken0_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5675,"kind":32,"name":"volumeToken1","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5676,"kind":32,"name":"volumeToken1_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5677,"kind":32,"name":"volumeToken1_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5678,"kind":32,"name":"volumeToken1_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5679,"kind":32,"name":"volumeToken1_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5680,"kind":32,"name":"volumeToken1_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5681,"kind":32,"name":"volumeToken1_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5682,"kind":32,"name":"volumeToken1_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumetoken1_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5683,"kind":32,"name":"volumeUSD","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5684,"kind":32,"name":"volumeUSD_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5685,"kind":32,"name":"volumeUSD_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5686,"kind":32,"name":"volumeUSD_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5687,"kind":32,"name":"volumeUSD_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5688,"kind":32,"name":"volumeUSD_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5689,"kind":32,"name":"volumeUSD_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5690,"kind":32,"name":"volumeUSD_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.volumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5691,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5692,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5693,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5694,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5695,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5696,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5697,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5698,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.untrackedvolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5699,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5700,"kind":32,"name":"txCount_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5701,"kind":32,"name":"txCount_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5702,"kind":32,"name":"txCount_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5703,"kind":32,"name":"txCount_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5704,"kind":32,"name":"txCount_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5705,"kind":32,"name":"txCount_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5706,"kind":32,"name":"txCount_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.txcount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5707,"kind":32,"name":"createdAtTimestamp","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5708,"kind":32,"name":"createdAtTimestamp_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5709,"kind":32,"name":"createdAtTimestamp_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5710,"kind":32,"name":"createdAtTimestamp_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5711,"kind":32,"name":"createdAtTimestamp_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5712,"kind":32,"name":"createdAtTimestamp_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5713,"kind":32,"name":"createdAtTimestamp_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5714,"kind":32,"name":"createdAtTimestamp_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdattimestamp_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5715,"kind":32,"name":"createdAtBlockNumber","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5716,"kind":32,"name":"createdAtBlockNumber_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5717,"kind":32,"name":"createdAtBlockNumber_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5718,"kind":32,"name":"createdAtBlockNumber_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5719,"kind":32,"name":"createdAtBlockNumber_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5720,"kind":32,"name":"createdAtBlockNumber_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5721,"kind":32,"name":"createdAtBlockNumber_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5722,"kind":32,"name":"createdAtBlockNumber_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.createdatblocknumber_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5723,"kind":32,"name":"liquidityProviderCount","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5724,"kind":32,"name":"liquidityProviderCount_not","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5725,"kind":32,"name":"liquidityProviderCount_gt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5726,"kind":32,"name":"liquidityProviderCount_lt","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5727,"kind":32,"name":"liquidityProviderCount_gte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5728,"kind":32,"name":"liquidityProviderCount_lte","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5729,"kind":32,"name":"liquidityProviderCount_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5730,"kind":32,"name":"liquidityProviderCount_not_in","url":"modules/_generated_graphql_.html#pair_filter.__type-17.liquidityprovidercount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Pair_Filter.__type"},{"id":5731,"kind":4194304,"name":"Query","url":"modules/_generated_graphql_.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5732,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#query.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Query"},{"id":5733,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#query.__type-18.__typename-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5734,"kind":32,"name":"sushiswapFactory","url":"modules/_generated_graphql_.html#query.__type-18.sushiswapfactory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5735,"kind":32,"name":"sushiswapFactories","url":"modules/_generated_graphql_.html#query.__type-18.sushiswapfactories","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5736,"kind":32,"name":"token","url":"modules/_generated_graphql_.html#query.__type-18.token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5737,"kind":32,"name":"tokens","url":"modules/_generated_graphql_.html#query.__type-18.tokens","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5738,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#query.__type-18.pair-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5739,"kind":32,"name":"pairs","url":"modules/_generated_graphql_.html#query.__type-18.pairs","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5740,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#query.__type-18.user-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5741,"kind":32,"name":"users","url":"modules/_generated_graphql_.html#query.__type-18.users","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5742,"kind":32,"name":"liquidityPosition","url":"modules/_generated_graphql_.html#query.__type-18.liquidityposition-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5743,"kind":32,"name":"liquidityPositions","url":"modules/_generated_graphql_.html#query.__type-18.liquiditypositions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5744,"kind":32,"name":"liquidityPositionSnapshot","url":"modules/_generated_graphql_.html#query.__type-18.liquiditypositionsnapshot-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5745,"kind":32,"name":"liquidityPositionSnapshots","url":"modules/_generated_graphql_.html#query.__type-18.liquiditypositionsnapshots","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5746,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#query.__type-18.transaction-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5747,"kind":32,"name":"transactions","url":"modules/_generated_graphql_.html#query.__type-18.transactions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5748,"kind":32,"name":"mint","url":"modules/_generated_graphql_.html#query.__type-18.mint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5749,"kind":32,"name":"mints","url":"modules/_generated_graphql_.html#query.__type-18.mints","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5750,"kind":32,"name":"burn","url":"modules/_generated_graphql_.html#query.__type-18.burn-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5751,"kind":32,"name":"burns","url":"modules/_generated_graphql_.html#query.__type-18.burns","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5752,"kind":32,"name":"swap","url":"modules/_generated_graphql_.html#query.__type-18.swap","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5753,"kind":32,"name":"swaps","url":"modules/_generated_graphql_.html#query.__type-18.swaps","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5754,"kind":32,"name":"bundle","url":"modules/_generated_graphql_.html#query.__type-18.bundle-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5755,"kind":32,"name":"bundles","url":"modules/_generated_graphql_.html#query.__type-18.bundles","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5756,"kind":32,"name":"sushiswapDayData","url":"modules/_generated_graphql_.html#query.__type-18.sushiswapdaydata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5757,"kind":32,"name":"sushiswapDayDatas","url":"modules/_generated_graphql_.html#query.__type-18.sushiswapdaydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5758,"kind":32,"name":"pairHourData","url":"modules/_generated_graphql_.html#query.__type-18.pairhourdata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5759,"kind":32,"name":"pairHourDatas","url":"modules/_generated_graphql_.html#query.__type-18.pairhourdatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5760,"kind":32,"name":"pairDayData","url":"modules/_generated_graphql_.html#query.__type-18.pairdaydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5761,"kind":32,"name":"pairDayDatas","url":"modules/_generated_graphql_.html#query.__type-18.pairdaydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5762,"kind":32,"name":"tokenDayData","url":"modules/_generated_graphql_.html#query.__type-18.tokendaydata","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5763,"kind":32,"name":"tokenDayDatas","url":"modules/_generated_graphql_.html#query.__type-18.tokendaydatas","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5764,"kind":32,"name":"_meta","url":"modules/_generated_graphql_.html#query.__type-18._meta","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query.__type"},{"id":5765,"kind":4194304,"name":"QuerySushiswapFactoryArgs","url":"modules/_generated_graphql_.html#querysushiswapfactoryargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5766,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querysushiswapfactoryargs.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySushiswapFactoryArgs"},{"id":5767,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querysushiswapfactoryargs.__type-38.id-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoryArgs.__type"},{"id":5768,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querysushiswapfactoryargs.__type-38.block-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoryArgs.__type"},{"id":5769,"kind":4194304,"name":"QuerySushiswapFactoriesArgs","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5770,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs"},{"id":5771,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.skip-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5772,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.first-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5773,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.orderby-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5774,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.orderdirection-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5775,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.where-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5776,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querysushiswapfactoriesargs.__type-37.block-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapFactoriesArgs.__type"},{"id":5777,"kind":4194304,"name":"QueryTokenArgs","url":"modules/_generated_graphql_.html#querytokenargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5778,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytokenargs.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTokenArgs"},{"id":5779,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querytokenargs.__type-41.id-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenArgs.__type"},{"id":5780,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytokenargs.__type-41.block-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenArgs.__type"},{"id":5781,"kind":4194304,"name":"QueryTokensArgs","url":"modules/_generated_graphql_.html#querytokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5782,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytokensargs.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTokensArgs"},{"id":5783,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.skip-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5784,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.first-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5785,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.orderby-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5786,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.orderdirection-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5787,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.where-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5788,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytokensargs.__type-44.block-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokensArgs.__type"},{"id":5789,"kind":4194304,"name":"QueryPairArgs","url":"modules/_generated_graphql_.html#querypairargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5790,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairargs.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairArgs"},{"id":5791,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querypairargs.__type-29.id-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairArgs.__type"},{"id":5792,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairargs.__type-29.block-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairArgs.__type"},{"id":5793,"kind":4194304,"name":"QueryPairsArgs","url":"modules/_generated_graphql_.html#querypairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5794,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairsargs.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairsArgs"},{"id":5795,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.skip-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5796,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.first-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5797,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.orderby-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5798,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.orderdirection-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5799,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.where-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5800,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairsargs.__type-34.block-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairsArgs.__type"},{"id":5801,"kind":4194304,"name":"QueryUserArgs","url":"modules/_generated_graphql_.html#queryuserargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5802,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryuserargs.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryUserArgs"},{"id":5803,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#queryuserargs.__type-47.id-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUserArgs.__type"},{"id":5804,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryuserargs.__type-47.block-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUserArgs.__type"},{"id":5805,"kind":4194304,"name":"QueryUsersArgs","url":"modules/_generated_graphql_.html#queryusersargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5806,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryusersargs.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryUsersArgs"},{"id":5807,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.skip-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5808,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.first-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5809,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.orderby-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5810,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.orderdirection-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5811,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.where-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5812,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryusersargs.__type-48.block-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryUsersArgs.__type"},{"id":5813,"kind":4194304,"name":"QueryLiquidityPositionArgs","url":"modules/_generated_graphql_.html#queryliquiditypositionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5814,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryliquiditypositionargs.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryLiquidityPositionArgs"},{"id":5815,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#queryliquiditypositionargs.__type-23.id-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionArgs.__type"},{"id":5816,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryliquiditypositionargs.__type-23.block-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionArgs.__type"},{"id":5817,"kind":4194304,"name":"QueryLiquidityPositionsArgs","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5818,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs"},{"id":5819,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.skip-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5820,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.first-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5821,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.orderby-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5822,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.orderdirection-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5823,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.where-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5824,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryliquiditypositionsargs.__type-26.block-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionsArgs.__type"},{"id":5825,"kind":4194304,"name":"QueryLiquidityPositionSnapshotArgs","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5826,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotargs.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotArgs"},{"id":5827,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotargs.__type-24.id-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotArgs.__type"},{"id":5828,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotargs.__type-24.block-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotArgs.__type"},{"id":5829,"kind":4194304,"name":"QueryLiquidityPositionSnapshotsArgs","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5830,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs"},{"id":5831,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.skip-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5832,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.first-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5833,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.orderby-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5834,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.orderdirection-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5835,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.where-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5836,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryliquiditypositionsnapshotsargs.__type-25.block-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryLiquidityPositionSnapshotsArgs.__type"},{"id":5837,"kind":4194304,"name":"QueryTransactionArgs","url":"modules/_generated_graphql_.html#querytransactionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5838,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytransactionargs.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTransactionArgs"},{"id":5839,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querytransactionargs.__type-45.id-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionArgs.__type"},{"id":5840,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytransactionargs.__type-45.block-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionArgs.__type"},{"id":5841,"kind":4194304,"name":"QueryTransactionsArgs","url":"modules/_generated_graphql_.html#querytransactionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5842,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTransactionsArgs"},{"id":5843,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.skip-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5844,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.first-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5845,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.orderby-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5846,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.orderdirection-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5847,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.where-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5848,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytransactionsargs.__type-46.block-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTransactionsArgs.__type"},{"id":5849,"kind":4194304,"name":"QueryMintArgs","url":"modules/_generated_graphql_.html#querymintargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5850,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querymintargs.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryMintArgs"},{"id":5851,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querymintargs.__type-27.id-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintArgs.__type"},{"id":5852,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querymintargs.__type-27.block-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintArgs.__type"},{"id":5853,"kind":4194304,"name":"QueryMintsArgs","url":"modules/_generated_graphql_.html#querymintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5854,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querymintsargs.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryMintsArgs"},{"id":5855,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.skip-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5856,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.first-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5857,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.orderby-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5858,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.orderdirection-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5859,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.where-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5860,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querymintsargs.__type-28.block-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryMintsArgs.__type"},{"id":5861,"kind":4194304,"name":"QueryBurnArgs","url":"modules/_generated_graphql_.html#queryburnargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5862,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryburnargs.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryBurnArgs"},{"id":5863,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#queryburnargs.__type-21.id-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnArgs.__type"},{"id":5864,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryburnargs.__type-21.block-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnArgs.__type"},{"id":5865,"kind":4194304,"name":"QueryBurnsArgs","url":"modules/_generated_graphql_.html#queryburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5866,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryBurnsArgs"},{"id":5867,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.skip-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5868,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.first-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5869,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.orderby-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5870,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.orderdirection-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5871,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.where-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5872,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryburnsargs.__type-22.block-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBurnsArgs.__type"},{"id":5873,"kind":4194304,"name":"QuerySwapArgs","url":"modules/_generated_graphql_.html#queryswapargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5874,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryswapargs.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySwapArgs"},{"id":5875,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#queryswapargs.__type-39.id-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapArgs.__type"},{"id":5876,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryswapargs.__type-39.block-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapArgs.__type"},{"id":5877,"kind":4194304,"name":"QuerySwapsArgs","url":"modules/_generated_graphql_.html#queryswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5878,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySwapsArgs"},{"id":5879,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.skip-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5880,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.first-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5881,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.orderby-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5882,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.orderdirection-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5883,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.where-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5884,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#queryswapsargs.__type-40.block-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySwapsArgs.__type"},{"id":5885,"kind":4194304,"name":"QueryBundleArgs","url":"modules/_generated_graphql_.html#querybundleargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5886,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querybundleargs.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryBundleArgs"},{"id":5887,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querybundleargs.__type-19.id-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundleArgs.__type"},{"id":5888,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querybundleargs.__type-19.block-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundleArgs.__type"},{"id":5889,"kind":4194304,"name":"QueryBundlesArgs","url":"modules/_generated_graphql_.html#querybundlesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5890,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryBundlesArgs"},{"id":5891,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.skip","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5892,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.first","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5893,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.orderby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5894,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.orderdirection-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5895,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.where","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5896,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querybundlesargs.__type-20.block-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryBundlesArgs.__type"},{"id":5897,"kind":4194304,"name":"QuerySushiswapDayDataArgs","url":"modules/_generated_graphql_.html#querysushiswapdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5898,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querysushiswapdaydataargs.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySushiswapDayDataArgs"},{"id":5899,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querysushiswapdaydataargs.__type-35.id-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDataArgs.__type"},{"id":5900,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querysushiswapdaydataargs.__type-35.block-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDataArgs.__type"},{"id":5901,"kind":4194304,"name":"QuerySushiswapDayDatasArgs","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5902,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs"},{"id":5903,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.skip-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5904,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.first-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5905,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.orderby-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5906,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.orderdirection-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5907,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.where-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5908,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querysushiswapdaydatasargs.__type-36.block-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QuerySushiswapDayDatasArgs.__type"},{"id":5909,"kind":4194304,"name":"QueryPairHourDataArgs","url":"modules/_generated_graphql_.html#querypairhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5910,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairhourdataargs.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairHourDataArgs"},{"id":5911,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querypairhourdataargs.__type-32.id-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDataArgs.__type"},{"id":5912,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairhourdataargs.__type-32.block-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDataArgs.__type"},{"id":5913,"kind":4194304,"name":"QueryPairHourDatasArgs","url":"modules/_generated_graphql_.html#querypairhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5914,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairHourDatasArgs"},{"id":5915,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.skip-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5916,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.first-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5917,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.orderby-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5918,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.orderdirection-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5919,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.where-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5920,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairhourdatasargs.__type-33.block-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairHourDatasArgs.__type"},{"id":5921,"kind":4194304,"name":"QueryPairDayDataArgs","url":"modules/_generated_graphql_.html#querypairdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5922,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairdaydataargs.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairDayDataArgs"},{"id":5923,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querypairdaydataargs.__type-30.id-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDataArgs.__type"},{"id":5924,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairdaydataargs.__type-30.block-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDataArgs.__type"},{"id":5925,"kind":4194304,"name":"QueryPairDayDatasArgs","url":"modules/_generated_graphql_.html#querypairdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5926,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryPairDayDatasArgs"},{"id":5927,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.skip-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5928,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.first-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5929,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.orderby-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5930,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.orderdirection-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5931,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.where-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5932,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querypairdaydatasargs.__type-31.block-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryPairDayDatasArgs.__type"},{"id":5933,"kind":4194304,"name":"QueryTokenDayDataArgs","url":"modules/_generated_graphql_.html#querytokendaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5934,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytokendaydataargs.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTokenDayDataArgs"},{"id":5935,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#querytokendaydataargs.__type-42.id-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDataArgs.__type"},{"id":5936,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytokendaydataargs.__type-42.block-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDataArgs.__type"},{"id":5937,"kind":4194304,"name":"QueryTokenDayDatasArgs","url":"modules/_generated_graphql_.html#querytokendaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5938,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".QueryTokenDayDatasArgs"},{"id":5939,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.skip-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5940,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.first-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5941,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.orderby-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5942,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.orderdirection-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5943,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.where-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5944,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#querytokendaydatasargs.__type-43.block-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".QueryTokenDayDatasArgs.__type"},{"id":5945,"kind":4194304,"name":"Query_MetaArgs","url":"modules/_generated_graphql_.html#query_metaargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5946,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#query_metaargs.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Query_MetaArgs"},{"id":5947,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#query_metaargs.__type-49.block-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Query_MetaArgs.__type"},{"id":5948,"kind":4194304,"name":"Subscription","url":"modules/_generated_graphql_.html#subscription","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5949,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscription.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Subscription"},{"id":5950,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#subscription.__type-51.__typename-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5951,"kind":32,"name":"sushiswapFactory","url":"modules/_generated_graphql_.html#subscription.__type-51.sushiswapfactory-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5952,"kind":32,"name":"sushiswapFactories","url":"modules/_generated_graphql_.html#subscription.__type-51.sushiswapfactories-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5953,"kind":32,"name":"token","url":"modules/_generated_graphql_.html#subscription.__type-51.token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5954,"kind":32,"name":"tokens","url":"modules/_generated_graphql_.html#subscription.__type-51.tokens-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5955,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#subscription.__type-51.pair-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5956,"kind":32,"name":"pairs","url":"modules/_generated_graphql_.html#subscription.__type-51.pairs-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5957,"kind":32,"name":"user","url":"modules/_generated_graphql_.html#subscription.__type-51.user-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5958,"kind":32,"name":"users","url":"modules/_generated_graphql_.html#subscription.__type-51.users-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5959,"kind":32,"name":"liquidityPosition","url":"modules/_generated_graphql_.html#subscription.__type-51.liquidityposition-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5960,"kind":32,"name":"liquidityPositions","url":"modules/_generated_graphql_.html#subscription.__type-51.liquiditypositions-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5961,"kind":32,"name":"liquidityPositionSnapshot","url":"modules/_generated_graphql_.html#subscription.__type-51.liquiditypositionsnapshot-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5962,"kind":32,"name":"liquidityPositionSnapshots","url":"modules/_generated_graphql_.html#subscription.__type-51.liquiditypositionsnapshots-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5963,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#subscription.__type-51.transaction-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5964,"kind":32,"name":"transactions","url":"modules/_generated_graphql_.html#subscription.__type-51.transactions-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5965,"kind":32,"name":"mint","url":"modules/_generated_graphql_.html#subscription.__type-51.mint-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5966,"kind":32,"name":"mints","url":"modules/_generated_graphql_.html#subscription.__type-51.mints-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5967,"kind":32,"name":"burn","url":"modules/_generated_graphql_.html#subscription.__type-51.burn-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5968,"kind":32,"name":"burns","url":"modules/_generated_graphql_.html#subscription.__type-51.burns-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5969,"kind":32,"name":"swap","url":"modules/_generated_graphql_.html#subscription.__type-51.swap-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5970,"kind":32,"name":"swaps","url":"modules/_generated_graphql_.html#subscription.__type-51.swaps-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5971,"kind":32,"name":"bundle","url":"modules/_generated_graphql_.html#subscription.__type-51.bundle-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5972,"kind":32,"name":"bundles","url":"modules/_generated_graphql_.html#subscription.__type-51.bundles-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5973,"kind":32,"name":"sushiswapDayData","url":"modules/_generated_graphql_.html#subscription.__type-51.sushiswapdaydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5974,"kind":32,"name":"sushiswapDayDatas","url":"modules/_generated_graphql_.html#subscription.__type-51.sushiswapdaydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5975,"kind":32,"name":"pairHourData","url":"modules/_generated_graphql_.html#subscription.__type-51.pairhourdata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5976,"kind":32,"name":"pairHourDatas","url":"modules/_generated_graphql_.html#subscription.__type-51.pairhourdatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5977,"kind":32,"name":"pairDayData","url":"modules/_generated_graphql_.html#subscription.__type-51.pairdaydata-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5978,"kind":32,"name":"pairDayDatas","url":"modules/_generated_graphql_.html#subscription.__type-51.pairdaydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5979,"kind":32,"name":"tokenDayData","url":"modules/_generated_graphql_.html#subscription.__type-51.tokendaydata-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5980,"kind":32,"name":"tokenDayDatas","url":"modules/_generated_graphql_.html#subscription.__type-51.tokendaydatas-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5981,"kind":32,"name":"_meta","url":"modules/_generated_graphql_.html#subscription.__type-51._meta-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription.__type"},{"id":5982,"kind":4194304,"name":"SubscriptionSushiswapFactoryArgs","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoryargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5983,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoryargs.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSushiswapFactoryArgs"},{"id":5984,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoryargs.__type-71.id-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoryArgs.__type"},{"id":5985,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoryargs.__type-71.block-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoryArgs.__type"},{"id":5986,"kind":4194304,"name":"SubscriptionSushiswapFactoriesArgs","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5987,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs"},{"id":5988,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.skip-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5989,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.first-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5990,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.orderby-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5991,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.orderdirection-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5992,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.where-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5993,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionsushiswapfactoriesargs.__type-70.block-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapFactoriesArgs.__type"},{"id":5994,"kind":4194304,"name":"SubscriptionTokenArgs","url":"modules/_generated_graphql_.html#subscriptiontokenargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5995,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontokenargs.__type-74","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTokenArgs"},{"id":5996,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptiontokenargs.__type-74.id-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenArgs.__type"},{"id":5997,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontokenargs.__type-74.block-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenArgs.__type"},{"id":5998,"kind":4194304,"name":"SubscriptionTokensArgs","url":"modules/_generated_graphql_.html#subscriptiontokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":5999,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTokensArgs"},{"id":6000,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.skip-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6001,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.first-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6002,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.orderby-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6003,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.orderdirection-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6004,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.where-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6005,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontokensargs.__type-77.block-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokensArgs.__type"},{"id":6006,"kind":4194304,"name":"SubscriptionPairArgs","url":"modules/_generated_graphql_.html#subscriptionpairargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6007,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairargs.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairArgs"},{"id":6008,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionpairargs.__type-62.id-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairArgs.__type"},{"id":6009,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairargs.__type-62.block-43","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairArgs.__type"},{"id":6010,"kind":4194304,"name":"SubscriptionPairsArgs","url":"modules/_generated_graphql_.html#subscriptionpairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6011,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairsArgs"},{"id":6012,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.skip-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6013,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.first-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6014,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.orderby-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6015,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.orderdirection-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6016,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.where-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6017,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairsargs.__type-67.block-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairsArgs.__type"},{"id":6018,"kind":4194304,"name":"SubscriptionUserArgs","url":"modules/_generated_graphql_.html#subscriptionuserargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6019,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionuserargs.__type-80","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionUserArgs"},{"id":6020,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionuserargs.__type-80.id-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUserArgs.__type"},{"id":6021,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionuserargs.__type-80.block-61","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUserArgs.__type"},{"id":6022,"kind":4194304,"name":"SubscriptionUsersArgs","url":"modules/_generated_graphql_.html#subscriptionusersargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6023,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionUsersArgs"},{"id":6024,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.skip-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6025,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.first-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6026,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.orderby-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6027,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.orderdirection-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6028,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.where-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6029,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionusersargs.__type-81.block-62","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionUsersArgs.__type"},{"id":6030,"kind":4194304,"name":"SubscriptionLiquidityPositionArgs","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6031,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionargs.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionLiquidityPositionArgs"},{"id":6032,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionargs.__type-56.id-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionArgs.__type"},{"id":6033,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionargs.__type-56.block-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionArgs.__type"},{"id":6034,"kind":4194304,"name":"SubscriptionLiquidityPositionsArgs","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6035,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs"},{"id":6036,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.skip-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6037,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.first-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6038,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.orderby-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6039,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.orderdirection-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6040,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.where-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6041,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsargs.__type-59.block-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionsArgs.__type"},{"id":6042,"kind":4194304,"name":"SubscriptionLiquidityPositionSnapshotArgs","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6043,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotargs.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotArgs"},{"id":6044,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotargs.__type-57.id-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotArgs.__type"},{"id":6045,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotargs.__type-57.block-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotArgs.__type"},{"id":6046,"kind":4194304,"name":"SubscriptionLiquidityPositionSnapshotsArgs","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6047,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs"},{"id":6048,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.skip-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6049,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.first-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6050,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.orderby-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6051,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.orderdirection-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6052,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.where-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6053,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionliquiditypositionsnapshotsargs.__type-58.block-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionLiquidityPositionSnapshotsArgs.__type"},{"id":6054,"kind":4194304,"name":"SubscriptionTransactionArgs","url":"modules/_generated_graphql_.html#subscriptiontransactionargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6055,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontransactionargs.__type-78","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTransactionArgs"},{"id":6056,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptiontransactionargs.__type-78.id-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionArgs.__type"},{"id":6057,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontransactionargs.__type-78.block-59","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionArgs.__type"},{"id":6058,"kind":4194304,"name":"SubscriptionTransactionsArgs","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6059,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTransactionsArgs"},{"id":6060,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.skip-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6061,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.first-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6062,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.orderby-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6063,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.orderdirection-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6064,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.where-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6065,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontransactionsargs.__type-79.block-60","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTransactionsArgs.__type"},{"id":6066,"kind":4194304,"name":"SubscriptionMintArgs","url":"modules/_generated_graphql_.html#subscriptionmintargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6067,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionmintargs.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionMintArgs"},{"id":6068,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionmintargs.__type-60.id-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintArgs.__type"},{"id":6069,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionmintargs.__type-60.block-41","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintArgs.__type"},{"id":6070,"kind":4194304,"name":"SubscriptionMintsArgs","url":"modules/_generated_graphql_.html#subscriptionmintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6071,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionMintsArgs"},{"id":6072,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.skip-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6073,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.first-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6074,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.orderby-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6075,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.orderdirection-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6076,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.where-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6077,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionmintsargs.__type-61.block-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionMintsArgs.__type"},{"id":6078,"kind":4194304,"name":"SubscriptionBurnArgs","url":"modules/_generated_graphql_.html#subscriptionburnargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6079,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionburnargs.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionBurnArgs"},{"id":6080,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionburnargs.__type-54.id-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnArgs.__type"},{"id":6081,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionburnargs.__type-54.block-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnArgs.__type"},{"id":6082,"kind":4194304,"name":"SubscriptionBurnsArgs","url":"modules/_generated_graphql_.html#subscriptionburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6083,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionBurnsArgs"},{"id":6084,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.skip-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6085,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.first-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6086,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.orderby-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6087,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.orderdirection-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6088,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.where-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6089,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionburnsargs.__type-55.block-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBurnsArgs.__type"},{"id":6090,"kind":4194304,"name":"SubscriptionSwapArgs","url":"modules/_generated_graphql_.html#subscriptionswapargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6091,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionswapargs.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSwapArgs"},{"id":6092,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionswapargs.__type-72.id-42","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapArgs.__type"},{"id":6093,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionswapargs.__type-72.block-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapArgs.__type"},{"id":6094,"kind":4194304,"name":"SubscriptionSwapsArgs","url":"modules/_generated_graphql_.html#subscriptionswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6095,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSwapsArgs"},{"id":6096,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.skip-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6097,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.first-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6098,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.orderby-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6099,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.orderdirection-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6100,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.where-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6101,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionswapsargs.__type-73.block-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSwapsArgs.__type"},{"id":6102,"kind":4194304,"name":"SubscriptionBundleArgs","url":"modules/_generated_graphql_.html#subscriptionbundleargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6103,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionbundleargs.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionBundleArgs"},{"id":6104,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionbundleargs.__type-52.id-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundleArgs.__type"},{"id":6105,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionbundleargs.__type-52.block-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundleArgs.__type"},{"id":6106,"kind":4194304,"name":"SubscriptionBundlesArgs","url":"modules/_generated_graphql_.html#subscriptionbundlesargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6107,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionBundlesArgs"},{"id":6108,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.skip-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6109,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.first-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6110,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.orderby-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6111,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.orderdirection-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6112,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.where-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6113,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionbundlesargs.__type-53.block-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionBundlesArgs.__type"},{"id":6114,"kind":4194304,"name":"SubscriptionSushiswapDayDataArgs","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6115,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydataargs.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSushiswapDayDataArgs"},{"id":6116,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydataargs.__type-68.id-40","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDataArgs.__type"},{"id":6117,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydataargs.__type-68.block-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDataArgs.__type"},{"id":6118,"kind":4194304,"name":"SubscriptionSushiswapDayDatasArgs","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6119,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs"},{"id":6120,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.skip-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6121,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.first-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6122,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.orderby-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6123,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.orderdirection-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6124,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.where-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6125,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionsushiswapdaydatasargs.__type-69.block-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionSushiswapDayDatasArgs.__type"},{"id":6126,"kind":4194304,"name":"SubscriptionPairHourDataArgs","url":"modules/_generated_graphql_.html#subscriptionpairhourdataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6127,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairhourdataargs.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairHourDataArgs"},{"id":6128,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionpairhourdataargs.__type-65.id-39","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDataArgs.__type"},{"id":6129,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairhourdataargs.__type-65.block-46","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDataArgs.__type"},{"id":6130,"kind":4194304,"name":"SubscriptionPairHourDatasArgs","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6131,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs"},{"id":6132,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.skip-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6133,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.first-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6134,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.orderby-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6135,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.orderdirection-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6136,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.where-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6137,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairhourdatasargs.__type-66.block-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairHourDatasArgs.__type"},{"id":6138,"kind":4194304,"name":"SubscriptionPairDayDataArgs","url":"modules/_generated_graphql_.html#subscriptionpairdaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6139,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairdaydataargs.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairDayDataArgs"},{"id":6140,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptionpairdaydataargs.__type-63.id-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDataArgs.__type"},{"id":6141,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairdaydataargs.__type-63.block-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDataArgs.__type"},{"id":6142,"kind":4194304,"name":"SubscriptionPairDayDatasArgs","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6143,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs"},{"id":6144,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.skip-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6145,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.first-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6146,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.orderby-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6147,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.orderdirection-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6148,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.where-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6149,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptionpairdaydatasargs.__type-64.block-45","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionPairDayDatasArgs.__type"},{"id":6150,"kind":4194304,"name":"SubscriptionTokenDayDataArgs","url":"modules/_generated_graphql_.html#subscriptiontokendaydataargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6151,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontokendaydataargs.__type-75","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTokenDayDataArgs"},{"id":6152,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#subscriptiontokendaydataargs.__type-75.id-44","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDataArgs.__type"},{"id":6153,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontokendaydataargs.__type-75.block-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDataArgs.__type"},{"id":6154,"kind":4194304,"name":"SubscriptionTokenDayDatasArgs","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6155,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs"},{"id":6156,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.skip-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6157,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.first-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6158,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.orderby-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6159,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.orderdirection-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6160,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.where-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6161,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscriptiontokendaydatasargs.__type-76.block-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SubscriptionTokenDayDatasArgs.__type"},{"id":6162,"kind":4194304,"name":"Subscription_MetaArgs","url":"modules/_generated_graphql_.html#subscription_metaargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6163,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#subscription_metaargs.__type-82","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Subscription_MetaArgs"},{"id":6164,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#subscription_metaargs.__type-82.block-63","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Subscription_MetaArgs.__type"},{"id":6165,"kind":4194304,"name":"Swap","url":"modules/_generated_graphql_.html#swap-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6166,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#swap-2.__type-89","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Swap"},{"id":6167,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#swap-2.__type-89.__typename-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6168,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#swap-2.__type-89.id-51","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6169,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#swap-2.__type-89.transaction-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6170,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#swap-2.__type-89.timestamp-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6171,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#swap-2.__type-89.pair-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6172,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#swap-2.__type-89.sender-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6173,"kind":32,"name":"amount0In","url":"modules/_generated_graphql_.html#swap-2.__type-89.amount0in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6174,"kind":32,"name":"amount1In","url":"modules/_generated_graphql_.html#swap-2.__type-89.amount1in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6175,"kind":32,"name":"amount0Out","url":"modules/_generated_graphql_.html#swap-2.__type-89.amount0out","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6176,"kind":32,"name":"amount1Out","url":"modules/_generated_graphql_.html#swap-2.__type-89.amount1out","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6177,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#swap-2.__type-89.to-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6178,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#swap-2.__type-89.logindex-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6179,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#swap-2.__type-89.amountusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap.__type"},{"id":6180,"kind":4194304,"name":"Swap_Filter","url":"modules/_generated_graphql_.html#swap_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6181,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#swap_filter.__type-90","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Swap_Filter"},{"id":6182,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id-52","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6183,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_not-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6184,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_gt-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6185,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_lt-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6186,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_gte-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6187,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_lte-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6188,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_in-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6189,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.id_not_in-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6190,"kind":32,"name":"transaction","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6191,"kind":32,"name":"transaction_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6192,"kind":32,"name":"transaction_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6193,"kind":32,"name":"transaction_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6194,"kind":32,"name":"transaction_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6195,"kind":32,"name":"transaction_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6196,"kind":32,"name":"transaction_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6197,"kind":32,"name":"transaction_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6198,"kind":32,"name":"transaction_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6199,"kind":32,"name":"transaction_not_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6200,"kind":32,"name":"transaction_starts_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6201,"kind":32,"name":"transaction_not_starts_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_not_starts_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6202,"kind":32,"name":"transaction_ends_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6203,"kind":32,"name":"transaction_not_ends_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.transaction_not_ends_with-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6204,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6205,"kind":32,"name":"timestamp_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6206,"kind":32,"name":"timestamp_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6207,"kind":32,"name":"timestamp_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6208,"kind":32,"name":"timestamp_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6209,"kind":32,"name":"timestamp_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6210,"kind":32,"name":"timestamp_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6211,"kind":32,"name":"timestamp_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.timestamp_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6212,"kind":32,"name":"pair","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6213,"kind":32,"name":"pair_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_not-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6214,"kind":32,"name":"pair_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_gt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6215,"kind":32,"name":"pair_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_lt-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6216,"kind":32,"name":"pair_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_gte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6217,"kind":32,"name":"pair_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_lte-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6218,"kind":32,"name":"pair_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6219,"kind":32,"name":"pair_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_not_in-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6220,"kind":32,"name":"pair_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_contains-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6221,"kind":32,"name":"pair_not_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_not_contains-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6222,"kind":32,"name":"pair_starts_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_starts_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6223,"kind":32,"name":"pair_not_starts_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_not_starts_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6224,"kind":32,"name":"pair_ends_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_ends_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6225,"kind":32,"name":"pair_not_ends_with","url":"modules/_generated_graphql_.html#swap_filter.__type-90.pair_not_ends_with-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6226,"kind":32,"name":"sender","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6227,"kind":32,"name":"sender_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6228,"kind":32,"name":"sender_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6229,"kind":32,"name":"sender_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6230,"kind":32,"name":"sender_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6231,"kind":32,"name":"sender_not_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.sender_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6232,"kind":32,"name":"amount0In","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6233,"kind":32,"name":"amount0In_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6234,"kind":32,"name":"amount0In_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6235,"kind":32,"name":"amount0In_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6236,"kind":32,"name":"amount0In_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6237,"kind":32,"name":"amount0In_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6238,"kind":32,"name":"amount0In_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6239,"kind":32,"name":"amount0In_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0in_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6240,"kind":32,"name":"amount1In","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6241,"kind":32,"name":"amount1In_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6242,"kind":32,"name":"amount1In_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6243,"kind":32,"name":"amount1In_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6244,"kind":32,"name":"amount1In_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6245,"kind":32,"name":"amount1In_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6246,"kind":32,"name":"amount1In_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6247,"kind":32,"name":"amount1In_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1in_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6248,"kind":32,"name":"amount0Out","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6249,"kind":32,"name":"amount0Out_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6250,"kind":32,"name":"amount0Out_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6251,"kind":32,"name":"amount0Out_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6252,"kind":32,"name":"amount0Out_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6253,"kind":32,"name":"amount0Out_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6254,"kind":32,"name":"amount0Out_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6255,"kind":32,"name":"amount0Out_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount0out_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6256,"kind":32,"name":"amount1Out","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6257,"kind":32,"name":"amount1Out_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6258,"kind":32,"name":"amount1Out_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6259,"kind":32,"name":"amount1Out_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6260,"kind":32,"name":"amount1Out_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6261,"kind":32,"name":"amount1Out_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6262,"kind":32,"name":"amount1Out_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6263,"kind":32,"name":"amount1Out_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amount1out_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6264,"kind":32,"name":"to","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6265,"kind":32,"name":"to_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6266,"kind":32,"name":"to_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6267,"kind":32,"name":"to_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6268,"kind":32,"name":"to_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6269,"kind":32,"name":"to_not_contains","url":"modules/_generated_graphql_.html#swap_filter.__type-90.to_not_contains-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6270,"kind":32,"name":"logIndex","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6271,"kind":32,"name":"logIndex_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6272,"kind":32,"name":"logIndex_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6273,"kind":32,"name":"logIndex_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6274,"kind":32,"name":"logIndex_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6275,"kind":32,"name":"logIndex_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6276,"kind":32,"name":"logIndex_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6277,"kind":32,"name":"logIndex_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.logindex_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6278,"kind":32,"name":"amountUSD","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6279,"kind":32,"name":"amountUSD_not","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6280,"kind":32,"name":"amountUSD_gt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6281,"kind":32,"name":"amountUSD_lt","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6282,"kind":32,"name":"amountUSD_gte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6283,"kind":32,"name":"amountUSD_lte","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6284,"kind":32,"name":"amountUSD_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6285,"kind":32,"name":"amountUSD_not_in","url":"modules/_generated_graphql_.html#swap_filter.__type-90.amountusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Swap_Filter.__type"},{"id":6286,"kind":4194304,"name":"Token","url":"modules/_generated_graphql_.html#token-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6287,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#token-2.__type-91","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Token"},{"id":6288,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#token-2.__type-91.__typename-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6289,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#token-2.__type-91.id-53","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6290,"kind":32,"name":"symbol","url":"modules/_generated_graphql_.html#token-2.__type-91.symbol","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6291,"kind":32,"name":"name","url":"modules/_generated_graphql_.html#token-2.__type-91.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6292,"kind":32,"name":"decimals","url":"modules/_generated_graphql_.html#token-2.__type-91.decimals","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6293,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#token-2.__type-91.totalsupply-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6294,"kind":32,"name":"tradeVolume","url":"modules/_generated_graphql_.html#token-2.__type-91.tradevolume","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6295,"kind":32,"name":"tradeVolumeUSD","url":"modules/_generated_graphql_.html#token-2.__type-91.tradevolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6296,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#token-2.__type-91.untrackedvolumeusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6297,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#token-2.__type-91.txcount-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6298,"kind":32,"name":"totalLiquidity","url":"modules/_generated_graphql_.html#token-2.__type-91.totalliquidity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6299,"kind":32,"name":"derivedETH","url":"modules/_generated_graphql_.html#token-2.__type-91.derivedeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6300,"kind":32,"name":"mostLiquidPairs","url":"modules/_generated_graphql_.html#token-2.__type-91.mostliquidpairs","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token.__type"},{"id":6301,"kind":4194304,"name":"TokenMostLiquidPairsArgs","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6302,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs"},{"id":6303,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95.skip-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs.__type"},{"id":6304,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95.first-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs.__type"},{"id":6305,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95.orderby-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs.__type"},{"id":6306,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95.orderdirection-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs.__type"},{"id":6307,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#tokenmostliquidpairsargs.__type-95.where-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenMostLiquidPairsArgs.__type"},{"id":6308,"kind":4194304,"name":"TokenDayData","url":"modules/_generated_graphql_.html#tokendaydata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6309,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TokenDayData"},{"id":6310,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.__typename-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6311,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.id-54","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6312,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.date-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6313,"kind":32,"name":"token","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.token-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6314,"kind":32,"name":"dailyVolumeToken","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.dailyvolumetoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6315,"kind":32,"name":"dailyVolumeETH","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.dailyvolumeeth-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6316,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.dailyvolumeusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6317,"kind":32,"name":"dailyTxns","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.dailytxns-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6318,"kind":32,"name":"totalLiquidityToken","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.totalliquiditytoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6319,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.totalliquidityeth-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6320,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.totalliquidityusd-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6321,"kind":32,"name":"priceUSD","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.priceusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6322,"kind":32,"name":"maxStored","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.maxstored-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6323,"kind":32,"name":"mostLiquidPairs","url":"modules/_generated_graphql_.html#tokendaydata-2.__type-92.mostliquidpairs-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData.__type"},{"id":6324,"kind":4194304,"name":"TokenDayDataMostLiquidPairsArgs","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6325,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs"},{"id":6326,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93.skip-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs.__type"},{"id":6327,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93.first-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs.__type"},{"id":6328,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93.orderby-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs.__type"},{"id":6329,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93.orderdirection-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs.__type"},{"id":6330,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#tokendaydatamostliquidpairsargs.__type-93.where-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayDataMostLiquidPairsArgs.__type"},{"id":6331,"kind":4194304,"name":"TokenDayData_Filter","url":"modules/_generated_graphql_.html#tokendaydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6332,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TokenDayData_Filter"},{"id":6333,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id-55","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6334,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_not-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6335,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_gt-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6336,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_lt-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6337,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_gte-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6338,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_lte-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6339,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_in-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6340,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.id_not_in-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6341,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6342,"kind":32,"name":"date_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6343,"kind":32,"name":"date_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6344,"kind":32,"name":"date_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6345,"kind":32,"name":"date_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6346,"kind":32,"name":"date_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6347,"kind":32,"name":"date_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6348,"kind":32,"name":"date_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.date_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6349,"kind":32,"name":"token","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6350,"kind":32,"name":"token_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6351,"kind":32,"name":"token_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6352,"kind":32,"name":"token_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6353,"kind":32,"name":"token_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6354,"kind":32,"name":"token_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6355,"kind":32,"name":"token_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6356,"kind":32,"name":"token_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6357,"kind":32,"name":"token_contains","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6358,"kind":32,"name":"token_not_contains","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6359,"kind":32,"name":"token_starts_with","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6360,"kind":32,"name":"token_not_starts_with","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6361,"kind":32,"name":"token_ends_with","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6362,"kind":32,"name":"token_not_ends_with","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.token_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6363,"kind":32,"name":"dailyVolumeToken","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6364,"kind":32,"name":"dailyVolumeToken_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6365,"kind":32,"name":"dailyVolumeToken_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6366,"kind":32,"name":"dailyVolumeToken_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6367,"kind":32,"name":"dailyVolumeToken_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6368,"kind":32,"name":"dailyVolumeToken_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6369,"kind":32,"name":"dailyVolumeToken_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6370,"kind":32,"name":"dailyVolumeToken_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumetoken_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6371,"kind":32,"name":"dailyVolumeETH","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6372,"kind":32,"name":"dailyVolumeETH_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6373,"kind":32,"name":"dailyVolumeETH_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6374,"kind":32,"name":"dailyVolumeETH_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6375,"kind":32,"name":"dailyVolumeETH_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6376,"kind":32,"name":"dailyVolumeETH_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6377,"kind":32,"name":"dailyVolumeETH_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6378,"kind":32,"name":"dailyVolumeETH_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeeth_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6379,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6380,"kind":32,"name":"dailyVolumeUSD_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6381,"kind":32,"name":"dailyVolumeUSD_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6382,"kind":32,"name":"dailyVolumeUSD_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6383,"kind":32,"name":"dailyVolumeUSD_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6384,"kind":32,"name":"dailyVolumeUSD_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6385,"kind":32,"name":"dailyVolumeUSD_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6386,"kind":32,"name":"dailyVolumeUSD_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailyvolumeusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6387,"kind":32,"name":"dailyTxns","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6388,"kind":32,"name":"dailyTxns_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6389,"kind":32,"name":"dailyTxns_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6390,"kind":32,"name":"dailyTxns_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6391,"kind":32,"name":"dailyTxns_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6392,"kind":32,"name":"dailyTxns_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6393,"kind":32,"name":"dailyTxns_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6394,"kind":32,"name":"dailyTxns_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.dailytxns_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6395,"kind":32,"name":"totalLiquidityToken","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6396,"kind":32,"name":"totalLiquidityToken_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6397,"kind":32,"name":"totalLiquidityToken_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6398,"kind":32,"name":"totalLiquidityToken_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6399,"kind":32,"name":"totalLiquidityToken_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6400,"kind":32,"name":"totalLiquidityToken_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6401,"kind":32,"name":"totalLiquidityToken_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6402,"kind":32,"name":"totalLiquidityToken_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquiditytoken_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6403,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6404,"kind":32,"name":"totalLiquidityETH_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6405,"kind":32,"name":"totalLiquidityETH_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6406,"kind":32,"name":"totalLiquidityETH_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6407,"kind":32,"name":"totalLiquidityETH_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6408,"kind":32,"name":"totalLiquidityETH_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6409,"kind":32,"name":"totalLiquidityETH_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6410,"kind":32,"name":"totalLiquidityETH_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityeth_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6411,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6412,"kind":32,"name":"totalLiquidityUSD_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6413,"kind":32,"name":"totalLiquidityUSD_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6414,"kind":32,"name":"totalLiquidityUSD_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6415,"kind":32,"name":"totalLiquidityUSD_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6416,"kind":32,"name":"totalLiquidityUSD_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6417,"kind":32,"name":"totalLiquidityUSD_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6418,"kind":32,"name":"totalLiquidityUSD_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.totalliquidityusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6419,"kind":32,"name":"priceUSD","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6420,"kind":32,"name":"priceUSD_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6421,"kind":32,"name":"priceUSD_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6422,"kind":32,"name":"priceUSD_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6423,"kind":32,"name":"priceUSD_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6424,"kind":32,"name":"priceUSD_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6425,"kind":32,"name":"priceUSD_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6426,"kind":32,"name":"priceUSD_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.priceusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6427,"kind":32,"name":"maxStored","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6428,"kind":32,"name":"maxStored_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6429,"kind":32,"name":"maxStored_gt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6430,"kind":32,"name":"maxStored_lt","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6431,"kind":32,"name":"maxStored_gte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6432,"kind":32,"name":"maxStored_lte","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6433,"kind":32,"name":"maxStored_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6434,"kind":32,"name":"maxStored_not_in","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.maxstored_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6435,"kind":32,"name":"mostLiquidPairs","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.mostliquidpairs-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6436,"kind":32,"name":"mostLiquidPairs_not","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.mostliquidpairs_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6437,"kind":32,"name":"mostLiquidPairs_contains","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.mostliquidpairs_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6438,"kind":32,"name":"mostLiquidPairs_not_contains","url":"modules/_generated_graphql_.html#tokendaydata_filter.__type-94.mostliquidpairs_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TokenDayData_Filter.__type"},{"id":6439,"kind":4194304,"name":"Token_Filter","url":"modules/_generated_graphql_.html#token_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6440,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#token_filter.__type-96","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Token_Filter"},{"id":6441,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#token_filter.__type-96.id-56","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6442,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_not-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6443,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_gt-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6444,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_lt-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6445,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_gte-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6446,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_lte-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6447,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_in-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6448,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.id_not_in-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6449,"kind":32,"name":"symbol","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6450,"kind":32,"name":"symbol_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6451,"kind":32,"name":"symbol_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6452,"kind":32,"name":"symbol_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6453,"kind":32,"name":"symbol_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6454,"kind":32,"name":"symbol_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6455,"kind":32,"name":"symbol_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6456,"kind":32,"name":"symbol_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6457,"kind":32,"name":"symbol_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6458,"kind":32,"name":"symbol_not_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6459,"kind":32,"name":"symbol_starts_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6460,"kind":32,"name":"symbol_not_starts_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6461,"kind":32,"name":"symbol_ends_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6462,"kind":32,"name":"symbol_not_ends_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.symbol_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6463,"kind":32,"name":"name","url":"modules/_generated_graphql_.html#token_filter.__type-96.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6464,"kind":32,"name":"name_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6465,"kind":32,"name":"name_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6466,"kind":32,"name":"name_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6467,"kind":32,"name":"name_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6468,"kind":32,"name":"name_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6469,"kind":32,"name":"name_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6470,"kind":32,"name":"name_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6471,"kind":32,"name":"name_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6472,"kind":32,"name":"name_not_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6473,"kind":32,"name":"name_starts_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6474,"kind":32,"name":"name_not_starts_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_not_starts_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6475,"kind":32,"name":"name_ends_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6476,"kind":32,"name":"name_not_ends_with","url":"modules/_generated_graphql_.html#token_filter.__type-96.name_not_ends_with","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6477,"kind":32,"name":"decimals","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6478,"kind":32,"name":"decimals_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6479,"kind":32,"name":"decimals_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6480,"kind":32,"name":"decimals_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6481,"kind":32,"name":"decimals_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6482,"kind":32,"name":"decimals_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6483,"kind":32,"name":"decimals_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6484,"kind":32,"name":"decimals_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.decimals_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6485,"kind":32,"name":"totalSupply","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6486,"kind":32,"name":"totalSupply_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6487,"kind":32,"name":"totalSupply_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6488,"kind":32,"name":"totalSupply_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6489,"kind":32,"name":"totalSupply_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6490,"kind":32,"name":"totalSupply_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6491,"kind":32,"name":"totalSupply_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6492,"kind":32,"name":"totalSupply_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalsupply_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6493,"kind":32,"name":"tradeVolume","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6494,"kind":32,"name":"tradeVolume_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6495,"kind":32,"name":"tradeVolume_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6496,"kind":32,"name":"tradeVolume_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6497,"kind":32,"name":"tradeVolume_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6498,"kind":32,"name":"tradeVolume_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6499,"kind":32,"name":"tradeVolume_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6500,"kind":32,"name":"tradeVolume_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolume_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6501,"kind":32,"name":"tradeVolumeUSD","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6502,"kind":32,"name":"tradeVolumeUSD_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6503,"kind":32,"name":"tradeVolumeUSD_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6504,"kind":32,"name":"tradeVolumeUSD_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6505,"kind":32,"name":"tradeVolumeUSD_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6506,"kind":32,"name":"tradeVolumeUSD_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6507,"kind":32,"name":"tradeVolumeUSD_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6508,"kind":32,"name":"tradeVolumeUSD_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.tradevolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6509,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6510,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6511,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6512,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6513,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6514,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6515,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6516,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.untrackedvolumeusd_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6517,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6518,"kind":32,"name":"txCount_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_not-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6519,"kind":32,"name":"txCount_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_gt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6520,"kind":32,"name":"txCount_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_lt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6521,"kind":32,"name":"txCount_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_gte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6522,"kind":32,"name":"txCount_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_lte-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6523,"kind":32,"name":"txCount_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6524,"kind":32,"name":"txCount_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.txcount_not_in-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6525,"kind":32,"name":"totalLiquidity","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6526,"kind":32,"name":"totalLiquidity_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6527,"kind":32,"name":"totalLiquidity_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6528,"kind":32,"name":"totalLiquidity_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6529,"kind":32,"name":"totalLiquidity_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6530,"kind":32,"name":"totalLiquidity_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6531,"kind":32,"name":"totalLiquidity_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6532,"kind":32,"name":"totalLiquidity_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.totalliquidity_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6533,"kind":32,"name":"derivedETH","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6534,"kind":32,"name":"derivedETH_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6535,"kind":32,"name":"derivedETH_gt","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6536,"kind":32,"name":"derivedETH_lt","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6537,"kind":32,"name":"derivedETH_gte","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6538,"kind":32,"name":"derivedETH_lte","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6539,"kind":32,"name":"derivedETH_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6540,"kind":32,"name":"derivedETH_not_in","url":"modules/_generated_graphql_.html#token_filter.__type-96.derivedeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6541,"kind":32,"name":"mostLiquidPairs","url":"modules/_generated_graphql_.html#token_filter.__type-96.mostliquidpairs-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6542,"kind":32,"name":"mostLiquidPairs_not","url":"modules/_generated_graphql_.html#token_filter.__type-96.mostliquidpairs_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6543,"kind":32,"name":"mostLiquidPairs_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.mostliquidpairs_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6544,"kind":32,"name":"mostLiquidPairs_not_contains","url":"modules/_generated_graphql_.html#token_filter.__type-96.mostliquidpairs_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Token_Filter.__type"},{"id":6545,"kind":4194304,"name":"Transaction","url":"modules/_generated_graphql_.html#transaction-8","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6546,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#transaction-8.__type-97","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Transaction"},{"id":6547,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#transaction-8.__type-97.__typename-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6548,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#transaction-8.__type-97.id-57","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6549,"kind":32,"name":"blockNumber","url":"modules/_generated_graphql_.html#transaction-8.__type-97.blocknumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6550,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#transaction-8.__type-97.timestamp-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6551,"kind":32,"name":"mints","url":"modules/_generated_graphql_.html#transaction-8.__type-97.mints-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6552,"kind":32,"name":"burns","url":"modules/_generated_graphql_.html#transaction-8.__type-97.burns-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6553,"kind":32,"name":"swaps","url":"modules/_generated_graphql_.html#transaction-8.__type-97.swaps-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction.__type"},{"id":6554,"kind":4194304,"name":"TransactionMintsArgs","url":"modules/_generated_graphql_.html#transactionmintsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6555,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TransactionMintsArgs"},{"id":6556,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99.skip-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionMintsArgs.__type"},{"id":6557,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99.first-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionMintsArgs.__type"},{"id":6558,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99.orderby-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionMintsArgs.__type"},{"id":6559,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99.orderdirection-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionMintsArgs.__type"},{"id":6560,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#transactionmintsargs.__type-99.where-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionMintsArgs.__type"},{"id":6561,"kind":4194304,"name":"TransactionBurnsArgs","url":"modules/_generated_graphql_.html#transactionburnsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6562,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TransactionBurnsArgs"},{"id":6563,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98.skip-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionBurnsArgs.__type"},{"id":6564,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98.first-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionBurnsArgs.__type"},{"id":6565,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98.orderby-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionBurnsArgs.__type"},{"id":6566,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98.orderdirection-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionBurnsArgs.__type"},{"id":6567,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#transactionburnsargs.__type-98.where-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionBurnsArgs.__type"},{"id":6568,"kind":4194304,"name":"TransactionSwapsArgs","url":"modules/_generated_graphql_.html#transactionswapsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6569,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".TransactionSwapsArgs"},{"id":6570,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100.skip-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionSwapsArgs.__type"},{"id":6571,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100.first-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionSwapsArgs.__type"},{"id":6572,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100.orderby-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionSwapsArgs.__type"},{"id":6573,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100.orderdirection-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionSwapsArgs.__type"},{"id":6574,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#transactionswapsargs.__type-100.where-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".TransactionSwapsArgs.__type"},{"id":6575,"kind":4194304,"name":"Transaction_Filter","url":"modules/_generated_graphql_.html#transaction_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6576,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#transaction_filter.__type-101","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".Transaction_Filter"},{"id":6577,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id-58","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6578,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_not-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6579,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_gt-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6580,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_lt-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6581,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_gte-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6582,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_lte-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6583,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_in-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6584,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.id_not_in-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6585,"kind":32,"name":"blockNumber","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6586,"kind":32,"name":"blockNumber_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6587,"kind":32,"name":"blockNumber_gt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6588,"kind":32,"name":"blockNumber_lt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6589,"kind":32,"name":"blockNumber_gte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6590,"kind":32,"name":"blockNumber_lte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6591,"kind":32,"name":"blockNumber_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6592,"kind":32,"name":"blockNumber_not_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.blocknumber_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6593,"kind":32,"name":"timestamp","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6594,"kind":32,"name":"timestamp_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_not-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6595,"kind":32,"name":"timestamp_gt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_gt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6596,"kind":32,"name":"timestamp_lt","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_lt-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6597,"kind":32,"name":"timestamp_gte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_gte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6598,"kind":32,"name":"timestamp_lte","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_lte-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6599,"kind":32,"name":"timestamp_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6600,"kind":32,"name":"timestamp_not_in","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.timestamp_not_in-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6601,"kind":32,"name":"mints","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.mints-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6602,"kind":32,"name":"mints_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.mints_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6603,"kind":32,"name":"mints_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.mints_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6604,"kind":32,"name":"mints_not_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.mints_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6605,"kind":32,"name":"burns","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.burns-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6606,"kind":32,"name":"burns_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.burns_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6607,"kind":32,"name":"burns_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.burns_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6608,"kind":32,"name":"burns_not_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.burns_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6609,"kind":32,"name":"swaps","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.swaps-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6610,"kind":32,"name":"swaps_not","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.swaps_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6611,"kind":32,"name":"swaps_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.swaps_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6612,"kind":32,"name":"swaps_not_contains","url":"modules/_generated_graphql_.html#transaction_filter.__type-101.swaps_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".Transaction_Filter.__type"},{"id":6613,"kind":4194304,"name":"SushiswapDayData","url":"modules/_generated_graphql_.html#sushiswapdaydata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6614,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapDayData"},{"id":6615,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.__typename-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6616,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.id-47","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6617,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.date-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6618,"kind":32,"name":"dailyVolumeETH","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.dailyvolumeeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6619,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.dailyvolumeusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6620,"kind":32,"name":"dailyVolumeUntracked","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.dailyvolumeuntracked","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6621,"kind":32,"name":"totalVolumeETH","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.totalvolumeeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6622,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.totalliquidityeth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6623,"kind":32,"name":"totalVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.totalvolumeusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6624,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.totalliquidityusd","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6625,"kind":32,"name":"maxStored","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.maxstored","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6626,"kind":32,"name":"mostLiquidTokens","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.mostliquidtokens","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6627,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#sushiswapdaydata-2.__type-83.txcount-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData.__type"},{"id":6628,"kind":4194304,"name":"SushiswapDayDataMostLiquidTokensArgs","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6629,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs"},{"id":6630,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84.skip-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs.__type"},{"id":6631,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84.first-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs.__type"},{"id":6632,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84.orderby-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs.__type"},{"id":6633,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84.orderdirection-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs.__type"},{"id":6634,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#sushiswapdaydatamostliquidtokensargs.__type-84.where-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayDataMostLiquidTokensArgs.__type"},{"id":6635,"kind":4194304,"name":"SushiswapDayData_Filter","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6636,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapDayData_Filter"},{"id":6637,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id-48","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6638,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_not-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6639,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_gt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6640,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_lt-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6641,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_gte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6642,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_lte-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6643,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6644,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.id_not_in-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6645,"kind":32,"name":"date","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6646,"kind":32,"name":"date_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6647,"kind":32,"name":"date_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6648,"kind":32,"name":"date_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6649,"kind":32,"name":"date_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6650,"kind":32,"name":"date_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6651,"kind":32,"name":"date_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6652,"kind":32,"name":"date_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.date_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6653,"kind":32,"name":"dailyVolumeETH","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6654,"kind":32,"name":"dailyVolumeETH_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6655,"kind":32,"name":"dailyVolumeETH_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6656,"kind":32,"name":"dailyVolumeETH_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6657,"kind":32,"name":"dailyVolumeETH_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6658,"kind":32,"name":"dailyVolumeETH_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6659,"kind":32,"name":"dailyVolumeETH_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6660,"kind":32,"name":"dailyVolumeETH_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6661,"kind":32,"name":"dailyVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6662,"kind":32,"name":"dailyVolumeUSD_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6663,"kind":32,"name":"dailyVolumeUSD_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6664,"kind":32,"name":"dailyVolumeUSD_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6665,"kind":32,"name":"dailyVolumeUSD_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6666,"kind":32,"name":"dailyVolumeUSD_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6667,"kind":32,"name":"dailyVolumeUSD_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6668,"kind":32,"name":"dailyVolumeUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6669,"kind":32,"name":"dailyVolumeUntracked","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6670,"kind":32,"name":"dailyVolumeUntracked_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6671,"kind":32,"name":"dailyVolumeUntracked_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6672,"kind":32,"name":"dailyVolumeUntracked_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6673,"kind":32,"name":"dailyVolumeUntracked_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6674,"kind":32,"name":"dailyVolumeUntracked_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6675,"kind":32,"name":"dailyVolumeUntracked_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6676,"kind":32,"name":"dailyVolumeUntracked_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.dailyvolumeuntracked_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6677,"kind":32,"name":"totalVolumeETH","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6678,"kind":32,"name":"totalVolumeETH_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6679,"kind":32,"name":"totalVolumeETH_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6680,"kind":32,"name":"totalVolumeETH_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6681,"kind":32,"name":"totalVolumeETH_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6682,"kind":32,"name":"totalVolumeETH_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6683,"kind":32,"name":"totalVolumeETH_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6684,"kind":32,"name":"totalVolumeETH_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6685,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6686,"kind":32,"name":"totalLiquidityETH_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6687,"kind":32,"name":"totalLiquidityETH_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6688,"kind":32,"name":"totalLiquidityETH_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6689,"kind":32,"name":"totalLiquidityETH_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6690,"kind":32,"name":"totalLiquidityETH_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6691,"kind":32,"name":"totalLiquidityETH_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6692,"kind":32,"name":"totalLiquidityETH_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityeth_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6693,"kind":32,"name":"totalVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6694,"kind":32,"name":"totalVolumeUSD_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6695,"kind":32,"name":"totalVolumeUSD_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6696,"kind":32,"name":"totalVolumeUSD_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6697,"kind":32,"name":"totalVolumeUSD_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6698,"kind":32,"name":"totalVolumeUSD_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6699,"kind":32,"name":"totalVolumeUSD_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6700,"kind":32,"name":"totalVolumeUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalvolumeusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6701,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6702,"kind":32,"name":"totalLiquidityUSD_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6703,"kind":32,"name":"totalLiquidityUSD_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6704,"kind":32,"name":"totalLiquidityUSD_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6705,"kind":32,"name":"totalLiquidityUSD_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6706,"kind":32,"name":"totalLiquidityUSD_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6707,"kind":32,"name":"totalLiquidityUSD_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6708,"kind":32,"name":"totalLiquidityUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.totalliquidityusd_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6709,"kind":32,"name":"maxStored","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6710,"kind":32,"name":"maxStored_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6711,"kind":32,"name":"maxStored_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6712,"kind":32,"name":"maxStored_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6713,"kind":32,"name":"maxStored_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6714,"kind":32,"name":"maxStored_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6715,"kind":32,"name":"maxStored_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6716,"kind":32,"name":"maxStored_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.maxstored_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6717,"kind":32,"name":"mostLiquidTokens","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.mostliquidtokens-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6718,"kind":32,"name":"mostLiquidTokens_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.mostliquidtokens_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6719,"kind":32,"name":"mostLiquidTokens_contains","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.mostliquidtokens_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6720,"kind":32,"name":"mostLiquidTokens_not_contains","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.mostliquidtokens_not_contains","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6721,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6722,"kind":32,"name":"txCount_not","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6723,"kind":32,"name":"txCount_gt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6724,"kind":32,"name":"txCount_lt","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6725,"kind":32,"name":"txCount_gte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6726,"kind":32,"name":"txCount_lte","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6727,"kind":32,"name":"txCount_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6728,"kind":32,"name":"txCount_not_in","url":"modules/_generated_graphql_.html#sushiswapdaydata_filter.__type-85.txcount_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapDayData_Filter.__type"},{"id":6729,"kind":4194304,"name":"SushiswapFactory","url":"modules/_generated_graphql_.html#sushiswapfactory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6730,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapFactory"},{"id":6731,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.__typename-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6732,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.id-49","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6733,"kind":32,"name":"pairCount","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.paircount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6734,"kind":32,"name":"totalVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.totalvolumeusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6735,"kind":32,"name":"totalVolumeETH","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.totalvolumeeth-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6736,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.untrackedvolumeusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6737,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.totalliquidityusd-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6738,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.totalliquidityeth-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6739,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.txcount-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6740,"kind":32,"name":"mostLiquidTokens","url":"modules/_generated_graphql_.html#sushiswapfactory-2.__type-86.mostliquidtokens-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory.__type"},{"id":6741,"kind":4194304,"name":"SushiswapFactoryMostLiquidTokensArgs","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6742,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs"},{"id":6743,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87.skip-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs.__type"},{"id":6744,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87.first-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs.__type"},{"id":6745,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87.orderby-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs.__type"},{"id":6746,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87.orderdirection-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs.__type"},{"id":6747,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#sushiswapfactorymostliquidtokensargs.__type-87.where-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactoryMostLiquidTokensArgs.__type"},{"id":6748,"kind":4194304,"name":"SushiswapFactory_Filter","url":"modules/_generated_graphql_.html#sushiswapfactory_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6749,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".SushiswapFactory_Filter"},{"id":6750,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id-50","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6751,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_not-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6752,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_gt-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6753,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_lt-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6754,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_gte-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6755,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_lte-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6756,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_in-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6757,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.id_not_in-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6758,"kind":32,"name":"pairCount","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6759,"kind":32,"name":"pairCount_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6760,"kind":32,"name":"pairCount_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6761,"kind":32,"name":"pairCount_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6762,"kind":32,"name":"pairCount_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6763,"kind":32,"name":"pairCount_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6764,"kind":32,"name":"pairCount_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6765,"kind":32,"name":"pairCount_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.paircount_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6766,"kind":32,"name":"totalVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6767,"kind":32,"name":"totalVolumeUSD_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6768,"kind":32,"name":"totalVolumeUSD_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6769,"kind":32,"name":"totalVolumeUSD_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6770,"kind":32,"name":"totalVolumeUSD_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6771,"kind":32,"name":"totalVolumeUSD_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6772,"kind":32,"name":"totalVolumeUSD_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6773,"kind":32,"name":"totalVolumeUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6774,"kind":32,"name":"totalVolumeETH","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6775,"kind":32,"name":"totalVolumeETH_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6776,"kind":32,"name":"totalVolumeETH_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6777,"kind":32,"name":"totalVolumeETH_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6778,"kind":32,"name":"totalVolumeETH_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6779,"kind":32,"name":"totalVolumeETH_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6780,"kind":32,"name":"totalVolumeETH_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6781,"kind":32,"name":"totalVolumeETH_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalvolumeeth_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6782,"kind":32,"name":"untrackedVolumeUSD","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6783,"kind":32,"name":"untrackedVolumeUSD_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6784,"kind":32,"name":"untrackedVolumeUSD_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6785,"kind":32,"name":"untrackedVolumeUSD_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6786,"kind":32,"name":"untrackedVolumeUSD_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6787,"kind":32,"name":"untrackedVolumeUSD_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6788,"kind":32,"name":"untrackedVolumeUSD_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6789,"kind":32,"name":"untrackedVolumeUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.untrackedvolumeusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6790,"kind":32,"name":"totalLiquidityUSD","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6791,"kind":32,"name":"totalLiquidityUSD_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6792,"kind":32,"name":"totalLiquidityUSD_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6793,"kind":32,"name":"totalLiquidityUSD_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6794,"kind":32,"name":"totalLiquidityUSD_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6795,"kind":32,"name":"totalLiquidityUSD_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6796,"kind":32,"name":"totalLiquidityUSD_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6797,"kind":32,"name":"totalLiquidityUSD_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityusd_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6798,"kind":32,"name":"totalLiquidityETH","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6799,"kind":32,"name":"totalLiquidityETH_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6800,"kind":32,"name":"totalLiquidityETH_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_gt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6801,"kind":32,"name":"totalLiquidityETH_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_lt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6802,"kind":32,"name":"totalLiquidityETH_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_gte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6803,"kind":32,"name":"totalLiquidityETH_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_lte-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6804,"kind":32,"name":"totalLiquidityETH_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6805,"kind":32,"name":"totalLiquidityETH_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.totalliquidityeth_not_in-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6806,"kind":32,"name":"txCount","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6807,"kind":32,"name":"txCount_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_not-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6808,"kind":32,"name":"txCount_gt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_gt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6809,"kind":32,"name":"txCount_lt","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_lt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6810,"kind":32,"name":"txCount_gte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_gte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6811,"kind":32,"name":"txCount_lte","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_lte-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6812,"kind":32,"name":"txCount_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6813,"kind":32,"name":"txCount_not_in","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.txcount_not_in-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6814,"kind":32,"name":"mostLiquidTokens","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.mostliquidtokens-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6815,"kind":32,"name":"mostLiquidTokens_not","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.mostliquidtokens_not-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6816,"kind":32,"name":"mostLiquidTokens_contains","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.mostliquidtokens_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6817,"kind":32,"name":"mostLiquidTokens_not_contains","url":"modules/_generated_graphql_.html#sushiswapfactory_filter.__type-88.mostliquidtokens_not_contains-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".SushiswapFactory_Filter.__type"},{"id":6818,"kind":4194304,"name":"User","url":"modules/_generated_graphql_.html#user-6","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6819,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#user-6.__type-102","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".User"},{"id":6820,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#user-6.__type-102.__typename-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User.__type"},{"id":6821,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#user-6.__type-102.id-59","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User.__type"},{"id":6822,"kind":32,"name":"liquidityPositions","url":"modules/_generated_graphql_.html#user-6.__type-102.liquiditypositions-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User.__type"},{"id":6823,"kind":32,"name":"usdSwapped","url":"modules/_generated_graphql_.html#user-6.__type-102.usdswapped","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User.__type"},{"id":6824,"kind":4194304,"name":"UserLiquidityPositionsArgs","url":"modules/_generated_graphql_.html#userliquiditypositionsargs","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6825,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".UserLiquidityPositionsArgs"},{"id":6826,"kind":32,"name":"skip","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103.skip-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".UserLiquidityPositionsArgs.__type"},{"id":6827,"kind":32,"name":"first","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103.first-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".UserLiquidityPositionsArgs.__type"},{"id":6828,"kind":32,"name":"orderBy","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103.orderby-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".UserLiquidityPositionsArgs.__type"},{"id":6829,"kind":32,"name":"orderDirection","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103.orderdirection-38","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".UserLiquidityPositionsArgs.__type"},{"id":6830,"kind":32,"name":"where","url":"modules/_generated_graphql_.html#userliquiditypositionsargs.__type-103.where-37","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".UserLiquidityPositionsArgs.__type"},{"id":6831,"kind":4194304,"name":"User_Filter","url":"modules/_generated_graphql_.html#user_filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6832,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#user_filter.__type-104","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\".User_Filter"},{"id":6833,"kind":32,"name":"id","url":"modules/_generated_graphql_.html#user_filter.__type-104.id-60","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6834,"kind":32,"name":"id_not","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_not-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6835,"kind":32,"name":"id_gt","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_gt-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6836,"kind":32,"name":"id_lt","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_lt-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6837,"kind":32,"name":"id_gte","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_gte-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6838,"kind":32,"name":"id_lte","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_lte-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6839,"kind":32,"name":"id_in","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_in-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6840,"kind":32,"name":"id_not_in","url":"modules/_generated_graphql_.html#user_filter.__type-104.id_not_in-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6841,"kind":32,"name":"usdSwapped","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6842,"kind":32,"name":"usdSwapped_not","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_not","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6843,"kind":32,"name":"usdSwapped_gt","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_gt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6844,"kind":32,"name":"usdSwapped_lt","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_lt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6845,"kind":32,"name":"usdSwapped_gte","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_gte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6846,"kind":32,"name":"usdSwapped_lte","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_lte","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6847,"kind":32,"name":"usdSwapped_in","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6848,"kind":32,"name":"usdSwapped_not_in","url":"modules/_generated_graphql_.html#user_filter.__type-104.usdswapped_not_in","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\".User_Filter.__type"},{"id":6849,"kind":4194304,"name":"_Block_","url":"modules/_generated_graphql_.html#_block_","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6850,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#_block_.__type-105","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\"._Block_"},{"id":6851,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#_block_.__type-105.__typename-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Block_.__type"},{"id":6852,"kind":32,"name":"hash","url":"modules/_generated_graphql_.html#_block_.__type-105.hash-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Block_.__type"},{"id":6853,"kind":32,"name":"number","url":"modules/_generated_graphql_.html#_block_.__type-105.number-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Block_.__type"},{"id":6854,"kind":4194304,"name":"_Meta_","url":"modules/_generated_graphql_.html#_meta_","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"\"generated/graphql\""},{"id":6855,"kind":65536,"name":"__type","url":"modules/_generated_graphql_.html#_meta_.__type-106","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"\"generated/graphql\"._Meta_"},{"id":6856,"kind":32,"name":"__typename","url":"modules/_generated_graphql_.html#_meta_.__type-106.__typename-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Meta_.__type"},{"id":6857,"kind":32,"name":"block","url":"modules/_generated_graphql_.html#_meta_.__type-106.block-64","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Meta_.__type"},{"id":6858,"kind":32,"name":"deployment","url":"modules/_generated_graphql_.html#_meta_.__type-106.deployment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Meta_.__type"},{"id":6859,"kind":32,"name":"hasIndexingErrors","url":"modules/_generated_graphql_.html#_meta_.__type-106.hasindexingerrors","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"\"generated/graphql\"._Meta_.__type"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,71.289]],["parent/0",[]],["name/1",[1,84.281]],["parent/1",[0,7.114]],["name/2",[2,84.281]],["parent/2",[3,7.565]],["name/3",[4,75.808]],["parent/3",[3,7.565]],["name/4",[5,84.281]],["parent/4",[3,7.565]],["name/5",[6,84.281]],["parent/5",[0,7.114]],["name/6",[0,71.289]],["parent/6",[0,7.114]],["name/7",[7,79.173]],["parent/7",[]],["name/8",[8,46.826]],["parent/8",[7,7.901]],["name/9",[9,37.616]],["parent/9",[]],["name/10",[10,79.173]],["parent/10",[9,3.754]],["name/11",[11,33.551]],["parent/11",[12,7.901]],["name/12",[13,69.618]],["parent/12",[12,7.901]],["name/13",[14,79.173]],["parent/13",[9,3.754]],["name/14",[11,33.551]],["parent/14",[15,6.147]],["name/15",[16,55.949]],["parent/15",[15,6.147]],["name/16",[17,52.363]],["parent/16",[15,6.147]],["name/17",[18,49.942]],["parent/17",[15,6.147]],["name/18",[19,57.656]],["parent/18",[15,6.147]],["name/19",[20,59.158]],["parent/19",[15,6.147]],["name/20",[21,63.079]],["parent/20",[15,6.147]],["name/21",[22,63.079]],["parent/21",[15,6.147]],["name/22",[23,59.158]],["parent/22",[15,6.147]],["name/23",[24,59.158]],["parent/23",[15,6.147]],["name/24",[25,59.158]],["parent/24",[15,6.147]],["name/25",[26,75.808]],["parent/25",[15,6.147]],["name/26",[27,63.079]],["parent/26",[15,6.147]],["name/27",[28,63.079]],["parent/27",[15,6.147]],["name/28",[29,84.281]],["parent/28",[9,3.754]],["name/29",[11,33.551]],["parent/29",[30,6.569]],["name/30",[31,55.194]],["parent/30",[30,6.569]],["name/31",[32,60.928]],["parent/31",[30,6.569]],["name/32",[33,60.928]],["parent/32",[30,6.569]],["name/33",[34,54.159]],["parent/33",[30,6.569]],["name/34",[35,69.618]],["parent/34",[30,6.569]],["name/35",[36,60.928]],["parent/35",[30,6.569]],["name/36",[37,60.928]],["parent/36",[30,6.569]],["name/37",[38,51.573]],["parent/37",[30,6.569]],["name/38",[39,84.281]],["parent/38",[9,3.754]],["name/39",[11,33.551]],["parent/39",[40,6.147]],["name/40",[41,69.618]],["parent/40",[40,6.147]],["name/41",[34,54.159]],["parent/41",[40,6.147]],["name/42",[33,60.928]],["parent/42",[40,6.147]],["name/43",[42,59.158]],["parent/43",[40,6.147]],["name/44",[37,60.928]],["parent/44",[40,6.147]],["name/45",[36,60.928]],["parent/45",[40,6.147]],["name/46",[38,51.573]],["parent/46",[40,6.147]],["name/47",[43,75.808]],["parent/47",[40,6.147]],["name/48",[44,75.808]],["parent/48",[40,6.147]],["name/49",[45,68.187]],["parent/49",[40,6.147]],["name/50",[46,68.187]],["parent/50",[40,6.147]],["name/51",[47,65.823]],["parent/51",[40,6.147]],["name/52",[48,65.823]],["parent/52",[40,6.147]],["name/53",[49,84.281]],["parent/53",[9,3.754]],["name/54",[11,33.551]],["parent/54",[50,6.569]],["name/55",[31,55.194]],["parent/55",[50,6.569]],["name/56",[32,60.928]],["parent/56",[50,6.569]],["name/57",[33,60.928]],["parent/57",[50,6.569]],["name/58",[34,54.159]],["parent/58",[50,6.569]],["name/59",[35,69.618]],["parent/59",[50,6.569]],["name/60",[36,60.928]],["parent/60",[50,6.569]],["name/61",[37,60.928]],["parent/61",[50,6.569]],["name/62",[38,51.573]],["parent/62",[50,6.569]],["name/63",[51,79.173]],["parent/63",[9,3.754]],["name/64",[11,33.551]],["parent/64",[52,6.218]],["name/65",[53,62.309]],["parent/65",[52,6.218]],["name/66",[17,52.363]],["parent/66",[52,6.218]],["name/67",[54,36.379]],["parent/67",[52,6.218]],["name/68",[55,58.632]],["parent/68",[52,6.218]],["name/69",[18,49.942]],["parent/69",[52,6.218]],["name/70",[56,69.618]],["parent/70",[52,6.218]],["name/71",[57,69.618]],["parent/71",[52,6.218]],["name/72",[58,56.349]],["parent/72",[52,6.218]],["name/73",[59,56.349]],["parent/73",[52,6.218]],["name/74",[60,56.349]],["parent/74",[52,6.218]],["name/75",[61,69.618]],["parent/75",[52,6.218]],["name/76",[62,63.079]],["parent/76",[52,6.218]],["name/77",[63,79.173]],["parent/77",[9,3.754]],["name/78",[11,33.551]],["parent/78",[64,6.804]],["name/79",[55,58.632]],["parent/79",[64,6.804]],["name/80",[18,49.942]],["parent/80",[64,6.804]],["name/81",[62,63.079]],["parent/81",[64,6.804]],["name/82",[65,79.173]],["parent/82",[64,6.804]],["name/83",[54,36.379]],["parent/83",[64,6.804]],["name/84",[17,52.363]],["parent/84",[64,6.804]],["name/85",[66,79.173]],["parent/85",[9,3.754]],["name/86",[11,33.551]],["parent/86",[67,6.218]],["name/87",[16,55.949]],["parent/87",[67,6.218]],["name/88",[17,52.363]],["parent/88",[67,6.218]],["name/89",[18,49.942]],["parent/89",[67,6.218]],["name/90",[23,59.158]],["parent/90",[67,6.218]],["name/91",[19,57.656]],["parent/91",[67,6.218]],["name/92",[20,59.158]],["parent/92",[67,6.218]],["name/93",[21,63.079]],["parent/93",[67,6.218]],["name/94",[22,63.079]],["parent/94",[67,6.218]],["name/95",[24,59.158]],["parent/95",[67,6.218]],["name/96",[25,59.158]],["parent/96",[67,6.218]],["name/97",[27,63.079]],["parent/97",[67,6.218]],["name/98",[28,63.079]],["parent/98",[67,6.218]],["name/99",[68,40.013]],["parent/99",[9,3.754]],["name/100",[69,79.173]],["parent/100",[70,7.901]],["name/101",[71,79.173]],["parent/101",[70,7.901]],["name/102",[72,79.173]],["parent/102",[9,3.754]],["name/103",[11,33.551]],["parent/103",[73,6.218]],["name/104",[31,55.194]],["parent/104",[73,6.218]],["name/105",[18,49.942]],["parent/105",[73,6.218]],["name/106",[74,63.079]],["parent/106",[73,6.218]],["name/107",[75,63.079]],["parent/107",[73,6.218]],["name/108",[58,56.349]],["parent/108",[73,6.218]],["name/109",[59,56.349]],["parent/109",[73,6.218]],["name/110",[76,59.158]],["parent/110",[73,6.218]],["name/111",[60,56.349]],["parent/111",[73,6.218]],["name/112",[77,63.079]],["parent/112",[73,6.218]],["name/113",[78,63.079]],["parent/113",[73,6.218]],["name/114",[34,54.159]],["parent/114",[73,6.218]],["name/115",[38,51.573]],["parent/115",[73,6.218]],["name/116",[79,79.173]],["parent/116",[9,3.754]],["name/117",[11,33.551]],["parent/117",[80,6.469]],["name/118",[31,55.194]],["parent/118",[80,6.469]],["name/119",[18,49.942]],["parent/119",[80,6.469]],["name/120",[58,56.349]],["parent/120",[80,6.469]],["name/121",[59,56.349]],["parent/121",[80,6.469]],["name/122",[60,56.349]],["parent/122",[80,6.469]],["name/123",[77,63.079]],["parent/123",[80,6.469]],["name/124",[78,63.079]],["parent/124",[80,6.469]],["name/125",[34,54.159]],["parent/125",[80,6.469]],["name/126",[38,51.573]],["parent/126",[80,6.469]],["name/127",[81,79.173]],["parent/127",[9,3.754]],["name/128",[11,33.551]],["parent/128",[82,5.472]],["name/129",[32,60.928]],["parent/129",[82,5.472]],["name/130",[83,65.823]],["parent/130",[82,5.472]],["name/131",[74,63.079]],["parent/131",[82,5.472]],["name/132",[75,63.079]],["parent/132",[82,5.472]],["name/133",[58,56.349]],["parent/133",[82,5.472]],["name/134",[59,56.349]],["parent/134",[82,5.472]],["name/135",[76,59.158]],["parent/135",[82,5.472]],["name/136",[84,69.618]],["parent/136",[82,5.472]],["name/137",[60,56.349]],["parent/137",[82,5.472]],["name/138",[85,69.618]],["parent/138",[82,5.472]],["name/139",[86,69.618]],["parent/139",[82,5.472]],["name/140",[87,69.618]],["parent/140",[82,5.472]],["name/141",[77,63.079]],["parent/141",[82,5.472]],["name/142",[78,63.079]],["parent/142",[82,5.472]],["name/143",[34,54.159]],["parent/143",[82,5.472]],["name/144",[42,59.158]],["parent/144",[82,5.472]],["name/145",[38,51.573]],["parent/145",[82,5.472]],["name/146",[88,69.618]],["parent/146",[82,5.472]],["name/147",[89,63.913]],["parent/147",[82,5.472]],["name/148",[90,68.187]],["parent/148",[82,5.472]],["name/149",[48,65.823]],["parent/149",[82,5.472]],["name/150",[47,65.823]],["parent/150",[82,5.472]],["name/151",[91,62.309]],["parent/151",[82,5.472]],["name/152",[92,62.309]],["parent/152",[82,5.472]],["name/153",[93,62.309]],["parent/153",[82,5.472]],["name/154",[17,52.363]],["parent/154",[82,5.472]],["name/155",[54,36.379]],["parent/155",[82,5.472]],["name/156",[94,79.173]],["parent/156",[9,3.754]],["name/157",[11,33.551]],["parent/157",[95,6.295]],["name/158",[16,55.949]],["parent/158",[95,6.295]],["name/159",[17,52.363]],["parent/159",[95,6.295]],["name/160",[18,49.942]],["parent/160",[95,6.295]],["name/161",[20,59.158]],["parent/161",[95,6.295]],["name/162",[96,69.618]],["parent/162",[95,6.295]],["name/163",[97,69.618]],["parent/163",[95,6.295]],["name/164",[98,69.618]],["parent/164",[95,6.295]],["name/165",[99,69.618]],["parent/165",[95,6.295]],["name/166",[23,59.158]],["parent/166",[95,6.295]],["name/167",[24,59.158]],["parent/167",[95,6.295]],["name/168",[25,59.158]],["parent/168",[95,6.295]],["name/169",[100,79.173]],["parent/169",[9,3.754]],["name/170",[11,33.551]],["parent/170",[101,6.378]],["name/171",[31,55.194]],["parent/171",[101,6.378]],["name/172",[102,60.302]],["parent/172",[101,6.378]],["name/173",[103,65.823]],["parent/173",[101,6.378]],["name/174",[33,60.928]],["parent/174",[101,6.378]],["name/175",[34,54.159]],["parent/175",[101,6.378]],["name/176",[38,51.573]],["parent/176",[101,6.378]],["name/177",[19,57.656]],["parent/177",[101,6.378]],["name/178",[36,60.928]],["parent/178",[101,6.378]],["name/179",[37,60.928]],["parent/179",[101,6.378]],["name/180",[104,65.823]],["parent/180",[101,6.378]],["name/181",[105,84.281]],["parent/181",[9,3.754]],["name/182",[11,33.551]],["parent/182",[106,6.378]],["name/183",[31,55.194]],["parent/183",[106,6.378]],["name/184",[102,60.302]],["parent/184",[106,6.378]],["name/185",[103,65.823]],["parent/185",[106,6.378]],["name/186",[33,60.928]],["parent/186",[106,6.378]],["name/187",[34,54.159]],["parent/187",[106,6.378]],["name/188",[38,51.573]],["parent/188",[106,6.378]],["name/189",[19,57.656]],["parent/189",[106,6.378]],["name/190",[36,60.928]],["parent/190",[106,6.378]],["name/191",[37,60.928]],["parent/191",[106,6.378]],["name/192",[104,65.823]],["parent/192",[106,6.378]],["name/193",[107,79.173]],["parent/193",[9,3.754]],["name/194",[11,33.551]],["parent/194",[108,5.903]],["name/195",[32,60.928]],["parent/195",[108,5.903]],["name/196",[109,69.618]],["parent/196",[108,5.903]],["name/197",[83,65.823]],["parent/197",[108,5.903]],["name/198",[110,69.618]],["parent/198",[108,5.903]],["name/199",[76,59.158]],["parent/199",[108,5.903]],["name/200",[103,65.823]],["parent/200",[108,5.903]],["name/201",[34,54.159]],["parent/201",[108,5.903]],["name/202",[42,59.158]],["parent/202",[108,5.903]],["name/203",[38,51.573]],["parent/203",[108,5.903]],["name/204",[19,57.656]],["parent/204",[108,5.903]],["name/205",[111,69.618]],["parent/205",[108,5.903]],["name/206",[47,65.823]],["parent/206",[108,5.903]],["name/207",[48,65.823]],["parent/207",[108,5.903]],["name/208",[112,79.173]],["parent/208",[108,5.903]],["name/209",[113,79.173]],["parent/209",[108,5.903]],["name/210",[114,79.173]],["parent/210",[108,5.903]],["name/211",[115,79.173]],["parent/211",[108,5.903]],["name/212",[116,79.173]],["parent/212",[9,3.754]],["name/213",[11,33.551]],["parent/213",[117,6.947]],["name/214",[118,69.618]],["parent/214",[117,6.947]],["name/215",[17,52.363]],["parent/215",[117,6.947]],["name/216",[91,62.309]],["parent/216",[117,6.947]],["name/217",[92,62.309]],["parent/217",[117,6.947]],["name/218",[93,62.309]],["parent/218",[117,6.947]],["name/219",[119,79.173]],["parent/219",[9,3.754]],["name/220",[11,33.551]],["parent/220",[120,7.901]],["name/221",[89,63.913]],["parent/221",[120,7.901]],["name/222",[121,79.173]],["parent/222",[9,3.754]],["name/223",[122,79.173]],["parent/223",[123,7.901]],["name/224",[124,79.173]],["parent/224",[123,7.901]],["name/225",[125,79.173]],["parent/225",[9,3.754]],["name/226",[126,79.173]],["parent/226",[9,3.754]],["name/227",[127,31.117]],["parent/227",[128,8.41]],["name/228",[129,79.173]],["parent/228",[9,3.754]],["name/229",[130,79.173]],["parent/229",[9,3.754]],["name/230",[131,79.173]],["parent/230",[9,3.754]],["name/231",[127,31.117]],["parent/231",[132,8.41]],["name/232",[11,33.551]],["parent/232",[133,6.68]],["name/233",[134,79.173]],["parent/233",[133,6.68]],["name/234",[135,79.173]],["parent/234",[133,6.68]],["name/235",[136,79.173]],["parent/235",[133,6.68]],["name/236",[137,79.173]],["parent/236",[133,6.68]],["name/237",[138,79.173]],["parent/237",[133,6.68]],["name/238",[139,79.173]],["parent/238",[133,6.68]],["name/239",[140,79.173]],["parent/239",[133,6.68]],["name/240",[141,79.173]],["parent/240",[9,3.754]],["name/241",[127,31.117]],["parent/241",[142,8.41]],["name/242",[143,73.295]],["parent/242",[144,7.901]],["name/243",[145,73.295]],["parent/243",[144,7.901]],["name/244",[146,68.187]],["parent/244",[9,3.754]],["name/245",[127,31.117]],["parent/245",[147,8.41]],["name/246",[148,51.323]],["parent/246",[149,7.565]],["name/247",[11,33.551]],["parent/247",[149,7.565]],["name/248",[13,69.618]],["parent/248",[149,7.565]],["name/249",[150,79.173]],["parent/249",[9,3.754]],["name/250",[127,31.117]],["parent/250",[151,8.41]],["name/251",[11,33.551]],["parent/251",[152,6.018]],["name/252",[153,53.524]],["parent/252",[152,6.018]],["name/253",[154,53.524]],["parent/253",[152,6.018]],["name/254",[155,53.524]],["parent/254",[152,6.018]],["name/255",[156,53.524]],["parent/255",[152,6.018]],["name/256",[157,53.524]],["parent/256",[152,6.018]],["name/257",[158,53.524]],["parent/257",[152,6.018]],["name/258",[159,53.524]],["parent/258",[152,6.018]],["name/259",[13,69.618]],["parent/259",[152,6.018]],["name/260",[160,79.173]],["parent/260",[152,6.018]],["name/261",[161,79.173]],["parent/261",[152,6.018]],["name/262",[162,79.173]],["parent/262",[152,6.018]],["name/263",[163,79.173]],["parent/263",[152,6.018]],["name/264",[164,79.173]],["parent/264",[152,6.018]],["name/265",[165,79.173]],["parent/265",[152,6.018]],["name/266",[166,79.173]],["parent/266",[152,6.018]],["name/267",[167,68.187]],["parent/267",[9,3.754]],["name/268",[127,31.117]],["parent/268",[168,8.41]],["name/269",[148,51.323]],["parent/269",[169,6.08]],["name/270",[11,33.551]],["parent/270",[169,6.08]],["name/271",[16,55.949]],["parent/271",[169,6.08]],["name/272",[17,52.363]],["parent/272",[169,6.08]],["name/273",[18,49.942]],["parent/273",[169,6.08]],["name/274",[19,57.656]],["parent/274",[169,6.08]],["name/275",[20,59.158]],["parent/275",[169,6.08]],["name/276",[21,63.079]],["parent/276",[169,6.08]],["name/277",[22,63.079]],["parent/277",[169,6.08]],["name/278",[23,59.158]],["parent/278",[169,6.08]],["name/279",[24,59.158]],["parent/279",[169,6.08]],["name/280",[25,59.158]],["parent/280",[169,6.08]],["name/281",[26,75.808]],["parent/281",[169,6.08]],["name/282",[27,63.079]],["parent/282",[169,6.08]],["name/283",[28,63.079]],["parent/283",[169,6.08]],["name/284",[170,79.173]],["parent/284",[9,3.754]],["name/285",[127,31.117]],["parent/285",[171,8.41]],["name/286",[11,33.551]],["parent/286",[172,4.084]],["name/287",[153,53.524]],["parent/287",[172,4.084]],["name/288",[154,53.524]],["parent/288",[172,4.084]],["name/289",[155,53.524]],["parent/289",[172,4.084]],["name/290",[156,53.524]],["parent/290",[172,4.084]],["name/291",[157,53.524]],["parent/291",[172,4.084]],["name/292",[158,53.524]],["parent/292",[172,4.084]],["name/293",[159,53.524]],["parent/293",[172,4.084]],["name/294",[16,55.949]],["parent/294",[172,4.084]],["name/295",[173,69.618]],["parent/295",[172,4.084]],["name/296",[174,69.618]],["parent/296",[172,4.084]],["name/297",[175,69.618]],["parent/297",[172,4.084]],["name/298",[176,69.618]],["parent/298",[172,4.084]],["name/299",[177,69.618]],["parent/299",[172,4.084]],["name/300",[178,69.618]],["parent/300",[172,4.084]],["name/301",[179,69.618]],["parent/301",[172,4.084]],["name/302",[180,69.618]],["parent/302",[172,4.084]],["name/303",[181,69.618]],["parent/303",[172,4.084]],["name/304",[182,69.618]],["parent/304",[172,4.084]],["name/305",[183,69.618]],["parent/305",[172,4.084]],["name/306",[184,69.618]],["parent/306",[172,4.084]],["name/307",[185,69.618]],["parent/307",[172,4.084]],["name/308",[17,52.363]],["parent/308",[172,4.084]],["name/309",[186,63.079]],["parent/309",[172,4.084]],["name/310",[187,63.079]],["parent/310",[172,4.084]],["name/311",[188,63.079]],["parent/311",[172,4.084]],["name/312",[189,63.079]],["parent/312",[172,4.084]],["name/313",[190,63.079]],["parent/313",[172,4.084]],["name/314",[191,63.079]],["parent/314",[172,4.084]],["name/315",[192,63.079]],["parent/315",[172,4.084]],["name/316",[18,49.942]],["parent/316",[172,4.084]],["name/317",[193,62.309]],["parent/317",[172,4.084]],["name/318",[194,62.309]],["parent/318",[172,4.084]],["name/319",[195,62.309]],["parent/319",[172,4.084]],["name/320",[196,62.309]],["parent/320",[172,4.084]],["name/321",[197,62.309]],["parent/321",[172,4.084]],["name/322",[198,62.309]],["parent/322",[172,4.084]],["name/323",[199,62.309]],["parent/323",[172,4.084]],["name/324",[200,62.309]],["parent/324",[172,4.084]],["name/325",[201,62.309]],["parent/325",[172,4.084]],["name/326",[202,62.309]],["parent/326",[172,4.084]],["name/327",[203,62.309]],["parent/327",[172,4.084]],["name/328",[204,62.309]],["parent/328",[172,4.084]],["name/329",[205,62.309]],["parent/329",[172,4.084]],["name/330",[19,57.656]],["parent/330",[172,4.084]],["name/331",[206,68.187]],["parent/331",[172,4.084]],["name/332",[207,68.187]],["parent/332",[172,4.084]],["name/333",[208,68.187]],["parent/333",[172,4.084]],["name/334",[209,68.187]],["parent/334",[172,4.084]],["name/335",[210,68.187]],["parent/335",[172,4.084]],["name/336",[211,68.187]],["parent/336",[172,4.084]],["name/337",[212,68.187]],["parent/337",[172,4.084]],["name/338",[20,59.158]],["parent/338",[172,4.084]],["name/339",[213,69.618]],["parent/339",[172,4.084]],["name/340",[214,69.618]],["parent/340",[172,4.084]],["name/341",[215,69.618]],["parent/341",[172,4.084]],["name/342",[216,69.618]],["parent/342",[172,4.084]],["name/343",[217,69.618]],["parent/343",[172,4.084]],["name/344",[21,63.079]],["parent/344",[172,4.084]],["name/345",[218,73.295]],["parent/345",[172,4.084]],["name/346",[219,73.295]],["parent/346",[172,4.084]],["name/347",[220,73.295]],["parent/347",[172,4.084]],["name/348",[221,73.295]],["parent/348",[172,4.084]],["name/349",[222,73.295]],["parent/349",[172,4.084]],["name/350",[223,73.295]],["parent/350",[172,4.084]],["name/351",[224,73.295]],["parent/351",[172,4.084]],["name/352",[22,63.079]],["parent/352",[172,4.084]],["name/353",[225,73.295]],["parent/353",[172,4.084]],["name/354",[226,73.295]],["parent/354",[172,4.084]],["name/355",[227,73.295]],["parent/355",[172,4.084]],["name/356",[228,73.295]],["parent/356",[172,4.084]],["name/357",[229,73.295]],["parent/357",[172,4.084]],["name/358",[230,73.295]],["parent/358",[172,4.084]],["name/359",[231,73.295]],["parent/359",[172,4.084]],["name/360",[23,59.158]],["parent/360",[172,4.084]],["name/361",[232,69.618]],["parent/361",[172,4.084]],["name/362",[233,69.618]],["parent/362",[172,4.084]],["name/363",[234,69.618]],["parent/363",[172,4.084]],["name/364",[235,69.618]],["parent/364",[172,4.084]],["name/365",[236,69.618]],["parent/365",[172,4.084]],["name/366",[24,59.158]],["parent/366",[172,4.084]],["name/367",[237,69.618]],["parent/367",[172,4.084]],["name/368",[238,69.618]],["parent/368",[172,4.084]],["name/369",[239,69.618]],["parent/369",[172,4.084]],["name/370",[240,69.618]],["parent/370",[172,4.084]],["name/371",[241,69.618]],["parent/371",[172,4.084]],["name/372",[242,69.618]],["parent/372",[172,4.084]],["name/373",[243,69.618]],["parent/373",[172,4.084]],["name/374",[25,59.158]],["parent/374",[172,4.084]],["name/375",[244,69.618]],["parent/375",[172,4.084]],["name/376",[245,69.618]],["parent/376",[172,4.084]],["name/377",[246,69.618]],["parent/377",[172,4.084]],["name/378",[247,69.618]],["parent/378",[172,4.084]],["name/379",[248,69.618]],["parent/379",[172,4.084]],["name/380",[249,69.618]],["parent/380",[172,4.084]],["name/381",[250,69.618]],["parent/381",[172,4.084]],["name/382",[26,75.808]],["parent/382",[172,4.084]],["name/383",[251,84.281]],["parent/383",[172,4.084]],["name/384",[252,84.281]],["parent/384",[172,4.084]],["name/385",[253,84.281]],["parent/385",[172,4.084]],["name/386",[27,63.079]],["parent/386",[172,4.084]],["name/387",[254,73.295]],["parent/387",[172,4.084]],["name/388",[255,73.295]],["parent/388",[172,4.084]],["name/389",[256,73.295]],["parent/389",[172,4.084]],["name/390",[257,73.295]],["parent/390",[172,4.084]],["name/391",[258,73.295]],["parent/391",[172,4.084]],["name/392",[28,63.079]],["parent/392",[172,4.084]],["name/393",[259,73.295]],["parent/393",[172,4.084]],["name/394",[260,73.295]],["parent/394",[172,4.084]],["name/395",[261,73.295]],["parent/395",[172,4.084]],["name/396",[262,73.295]],["parent/396",[172,4.084]],["name/397",[263,73.295]],["parent/397",[172,4.084]],["name/398",[264,73.295]],["parent/398",[172,4.084]],["name/399",[265,73.295]],["parent/399",[172,4.084]],["name/400",[48,65.823]],["parent/400",[9,3.754]],["name/401",[127,31.117]],["parent/401",[266,8.41]],["name/402",[148,51.323]],["parent/402",[267,6.469]],["name/403",[11,33.551]],["parent/403",[267,6.469]],["name/404",[31,55.194]],["parent/404",[267,6.469]],["name/405",[32,60.928]],["parent/405",[267,6.469]],["name/406",[33,60.928]],["parent/406",[267,6.469]],["name/407",[34,54.159]],["parent/407",[267,6.469]],["name/408",[35,69.618]],["parent/408",[267,6.469]],["name/409",[36,60.928]],["parent/409",[267,6.469]],["name/410",[37,60.928]],["parent/410",[267,6.469]],["name/411",[38,51.573]],["parent/411",[267,6.469]],["name/412",[268,84.281]],["parent/412",[9,3.754]],["name/413",[127,31.117]],["parent/413",[269,8.41]],["name/414",[11,33.551]],["parent/414",[270,4.461]],["name/415",[153,53.524]],["parent/415",[270,4.461]],["name/416",[154,53.524]],["parent/416",[270,4.461]],["name/417",[155,53.524]],["parent/417",[270,4.461]],["name/418",[156,53.524]],["parent/418",[270,4.461]],["name/419",[157,53.524]],["parent/419",[270,4.461]],["name/420",[158,53.524]],["parent/420",[270,4.461]],["name/421",[159,53.524]],["parent/421",[270,4.461]],["name/422",[31,55.194]],["parent/422",[270,4.461]],["name/423",[271,65.823]],["parent/423",[270,4.461]],["name/424",[272,65.823]],["parent/424",[270,4.461]],["name/425",[273,65.823]],["parent/425",[270,4.461]],["name/426",[274,65.823]],["parent/426",[270,4.461]],["name/427",[275,65.823]],["parent/427",[270,4.461]],["name/428",[276,65.823]],["parent/428",[270,4.461]],["name/429",[277,65.823]],["parent/429",[270,4.461]],["name/430",[32,60.928]],["parent/430",[270,4.461]],["name/431",[278,73.295]],["parent/431",[270,4.461]],["name/432",[279,73.295]],["parent/432",[270,4.461]],["name/433",[280,73.295]],["parent/433",[270,4.461]],["name/434",[281,73.295]],["parent/434",[270,4.461]],["name/435",[282,73.295]],["parent/435",[270,4.461]],["name/436",[283,73.295]],["parent/436",[270,4.461]],["name/437",[284,73.295]],["parent/437",[270,4.461]],["name/438",[285,73.295]],["parent/438",[270,4.461]],["name/439",[286,73.295]],["parent/439",[270,4.461]],["name/440",[287,73.295]],["parent/440",[270,4.461]],["name/441",[288,73.295]],["parent/441",[270,4.461]],["name/442",[289,73.295]],["parent/442",[270,4.461]],["name/443",[290,73.295]],["parent/443",[270,4.461]],["name/444",[33,60.928]],["parent/444",[270,4.461]],["name/445",[291,71.289]],["parent/445",[270,4.461]],["name/446",[292,71.289]],["parent/446",[270,4.461]],["name/447",[293,71.289]],["parent/447",[270,4.461]],["name/448",[294,71.289]],["parent/448",[270,4.461]],["name/449",[295,71.289]],["parent/449",[270,4.461]],["name/450",[296,71.289]],["parent/450",[270,4.461]],["name/451",[297,71.289]],["parent/451",[270,4.461]],["name/452",[34,54.159]],["parent/452",[270,4.461]],["name/453",[298,64.822]],["parent/453",[270,4.461]],["name/454",[299,64.822]],["parent/454",[270,4.461]],["name/455",[300,64.822]],["parent/455",[270,4.461]],["name/456",[301,64.822]],["parent/456",[270,4.461]],["name/457",[302,64.822]],["parent/457",[270,4.461]],["name/458",[303,64.822]],["parent/458",[270,4.461]],["name/459",[304,64.822]],["parent/459",[270,4.461]],["name/460",[35,69.618]],["parent/460",[270,4.461]],["name/461",[305,79.173]],["parent/461",[270,4.461]],["name/462",[306,79.173]],["parent/462",[270,4.461]],["name/463",[307,79.173]],["parent/463",[270,4.461]],["name/464",[308,79.173]],["parent/464",[270,4.461]],["name/465",[309,79.173]],["parent/465",[270,4.461]],["name/466",[310,79.173]],["parent/466",[270,4.461]],["name/467",[311,79.173]],["parent/467",[270,4.461]],["name/468",[36,60.928]],["parent/468",[270,4.461]],["name/469",[312,71.289]],["parent/469",[270,4.461]],["name/470",[313,71.289]],["parent/470",[270,4.461]],["name/471",[314,71.289]],["parent/471",[270,4.461]],["name/472",[315,71.289]],["parent/472",[270,4.461]],["name/473",[316,71.289]],["parent/473",[270,4.461]],["name/474",[317,71.289]],["parent/474",[270,4.461]],["name/475",[318,71.289]],["parent/475",[270,4.461]],["name/476",[37,60.928]],["parent/476",[270,4.461]],["name/477",[319,71.289]],["parent/477",[270,4.461]],["name/478",[320,71.289]],["parent/478",[270,4.461]],["name/479",[321,71.289]],["parent/479",[270,4.461]],["name/480",[322,71.289]],["parent/480",[270,4.461]],["name/481",[323,71.289]],["parent/481",[270,4.461]],["name/482",[324,71.289]],["parent/482",[270,4.461]],["name/483",[325,71.289]],["parent/483",[270,4.461]],["name/484",[38,51.573]],["parent/484",[270,4.461]],["name/485",[326,62.309]],["parent/485",[270,4.461]],["name/486",[327,62.309]],["parent/486",[270,4.461]],["name/487",[328,62.309]],["parent/487",[270,4.461]],["name/488",[329,62.309]],["parent/488",[270,4.461]],["name/489",[330,62.309]],["parent/489",[270,4.461]],["name/490",[331,62.309]],["parent/490",[270,4.461]],["name/491",[332,62.309]],["parent/491",[270,4.461]],["name/492",[32,60.928]],["parent/492",[9,3.754]],["name/493",[127,31.117]],["parent/493",[333,8.41]],["name/494",[148,51.323]],["parent/494",[334,6.08]],["name/495",[11,33.551]],["parent/495",[334,6.08]],["name/496",[41,69.618]],["parent/496",[334,6.08]],["name/497",[34,54.159]],["parent/497",[334,6.08]],["name/498",[33,60.928]],["parent/498",[334,6.08]],["name/499",[42,59.158]],["parent/499",[334,6.08]],["name/500",[37,60.928]],["parent/500",[334,6.08]],["name/501",[36,60.928]],["parent/501",[334,6.08]],["name/502",[38,51.573]],["parent/502",[334,6.08]],["name/503",[43,75.808]],["parent/503",[334,6.08]],["name/504",[44,75.808]],["parent/504",[334,6.08]],["name/505",[45,68.187]],["parent/505",[334,6.08]],["name/506",[46,68.187]],["parent/506",[334,6.08]],["name/507",[47,65.823]],["parent/507",[334,6.08]],["name/508",[48,65.823]],["parent/508",[334,6.08]],["name/509",[335,84.281]],["parent/509",[9,3.754]],["name/510",[127,31.117]],["parent/510",[336,8.41]],["name/511",[337,39.934]],["parent/511",[338,7.114]],["name/512",[339,39.934]],["parent/512",[338,7.114]],["name/513",[340,40.174]],["parent/513",[338,7.114]],["name/514",[68,40.013]],["parent/514",[338,7.114]],["name/515",[341,40.174]],["parent/515",[338,7.114]],["name/516",[342,84.281]],["parent/516",[9,3.754]],["name/517",[127,31.117]],["parent/517",[343,8.41]],["name/518",[337,39.934]],["parent/518",[344,7.114]],["name/519",[339,39.934]],["parent/519",[344,7.114]],["name/520",[340,40.174]],["parent/520",[344,7.114]],["name/521",[68,40.013]],["parent/521",[344,7.114]],["name/522",[341,40.174]],["parent/522",[344,7.114]],["name/523",[345,84.281]],["parent/523",[9,3.754]],["name/524",[127,31.117]],["parent/524",[346,8.41]],["name/525",[337,39.934]],["parent/525",[347,7.114]],["name/526",[339,39.934]],["parent/526",[347,7.114]],["name/527",[340,40.174]],["parent/527",[347,7.114]],["name/528",[68,40.013]],["parent/528",[347,7.114]],["name/529",[341,40.174]],["parent/529",[347,7.114]],["name/530",[348,84.281]],["parent/530",[9,3.754]],["name/531",[127,31.117]],["parent/531",[349,8.41]],["name/532",[337,39.934]],["parent/532",[350,7.114]],["name/533",[339,39.934]],["parent/533",[350,7.114]],["name/534",[340,40.174]],["parent/534",[350,7.114]],["name/535",[68,40.013]],["parent/535",[350,7.114]],["name/536",[341,40.174]],["parent/536",[350,7.114]],["name/537",[351,84.281]],["parent/537",[9,3.754]],["name/538",[127,31.117]],["parent/538",[352,8.41]],["name/539",[11,33.551]],["parent/539",[353,4.436]],["name/540",[153,53.524]],["parent/540",[353,4.436]],["name/541",[154,53.524]],["parent/541",[353,4.436]],["name/542",[155,53.524]],["parent/542",[353,4.436]],["name/543",[156,53.524]],["parent/543",[353,4.436]],["name/544",[157,53.524]],["parent/544",[353,4.436]],["name/545",[158,53.524]],["parent/545",[353,4.436]],["name/546",[159,53.524]],["parent/546",[353,4.436]],["name/547",[41,69.618]],["parent/547",[353,4.436]],["name/548",[354,79.173]],["parent/548",[353,4.436]],["name/549",[355,79.173]],["parent/549",[353,4.436]],["name/550",[356,79.173]],["parent/550",[353,4.436]],["name/551",[357,79.173]],["parent/551",[353,4.436]],["name/552",[358,79.173]],["parent/552",[353,4.436]],["name/553",[359,79.173]],["parent/553",[353,4.436]],["name/554",[360,79.173]],["parent/554",[353,4.436]],["name/555",[34,54.159]],["parent/555",[353,4.436]],["name/556",[298,64.822]],["parent/556",[353,4.436]],["name/557",[299,64.822]],["parent/557",[353,4.436]],["name/558",[300,64.822]],["parent/558",[353,4.436]],["name/559",[301,64.822]],["parent/559",[353,4.436]],["name/560",[302,64.822]],["parent/560",[353,4.436]],["name/561",[303,64.822]],["parent/561",[353,4.436]],["name/562",[304,64.822]],["parent/562",[353,4.436]],["name/563",[33,60.928]],["parent/563",[353,4.436]],["name/564",[291,71.289]],["parent/564",[353,4.436]],["name/565",[292,71.289]],["parent/565",[353,4.436]],["name/566",[293,71.289]],["parent/566",[353,4.436]],["name/567",[294,71.289]],["parent/567",[353,4.436]],["name/568",[295,71.289]],["parent/568",[353,4.436]],["name/569",[296,71.289]],["parent/569",[353,4.436]],["name/570",[297,71.289]],["parent/570",[353,4.436]],["name/571",[42,59.158]],["parent/571",[353,4.436]],["name/572",[361,69.618]],["parent/572",[353,4.436]],["name/573",[362,69.618]],["parent/573",[353,4.436]],["name/574",[363,69.618]],["parent/574",[353,4.436]],["name/575",[364,69.618]],["parent/575",[353,4.436]],["name/576",[365,69.618]],["parent/576",[353,4.436]],["name/577",[366,69.618]],["parent/577",[353,4.436]],["name/578",[367,69.618]],["parent/578",[353,4.436]],["name/579",[37,60.928]],["parent/579",[353,4.436]],["name/580",[319,71.289]],["parent/580",[353,4.436]],["name/581",[320,71.289]],["parent/581",[353,4.436]],["name/582",[321,71.289]],["parent/582",[353,4.436]],["name/583",[322,71.289]],["parent/583",[353,4.436]],["name/584",[323,71.289]],["parent/584",[353,4.436]],["name/585",[324,71.289]],["parent/585",[353,4.436]],["name/586",[325,71.289]],["parent/586",[353,4.436]],["name/587",[36,60.928]],["parent/587",[353,4.436]],["name/588",[312,71.289]],["parent/588",[353,4.436]],["name/589",[313,71.289]],["parent/589",[353,4.436]],["name/590",[314,71.289]],["parent/590",[353,4.436]],["name/591",[315,71.289]],["parent/591",[353,4.436]],["name/592",[316,71.289]],["parent/592",[353,4.436]],["name/593",[317,71.289]],["parent/593",[353,4.436]],["name/594",[318,71.289]],["parent/594",[353,4.436]],["name/595",[38,51.573]],["parent/595",[353,4.436]],["name/596",[326,62.309]],["parent/596",[353,4.436]],["name/597",[327,62.309]],["parent/597",[353,4.436]],["name/598",[328,62.309]],["parent/598",[353,4.436]],["name/599",[329,62.309]],["parent/599",[353,4.436]],["name/600",[330,62.309]],["parent/600",[353,4.436]],["name/601",[331,62.309]],["parent/601",[353,4.436]],["name/602",[332,62.309]],["parent/602",[353,4.436]],["name/603",[43,75.808]],["parent/603",[353,4.436]],["name/604",[368,84.281]],["parent/604",[353,4.436]],["name/605",[369,84.281]],["parent/605",[353,4.436]],["name/606",[370,84.281]],["parent/606",[353,4.436]],["name/607",[371,84.281]],["parent/607",[353,4.436]],["name/608",[372,84.281]],["parent/608",[353,4.436]],["name/609",[373,84.281]],["parent/609",[353,4.436]],["name/610",[374,84.281]],["parent/610",[353,4.436]],["name/611",[44,75.808]],["parent/611",[353,4.436]],["name/612",[375,84.281]],["parent/612",[353,4.436]],["name/613",[376,84.281]],["parent/613",[353,4.436]],["name/614",[377,84.281]],["parent/614",[353,4.436]],["name/615",[378,84.281]],["parent/615",[353,4.436]],["name/616",[379,84.281]],["parent/616",[353,4.436]],["name/617",[380,84.281]],["parent/617",[353,4.436]],["name/618",[381,84.281]],["parent/618",[353,4.436]],["name/619",[47,65.823]],["parent/619",[9,3.754]],["name/620",[127,31.117]],["parent/620",[382,8.41]],["name/621",[148,51.323]],["parent/621",[383,6.469]],["name/622",[11,33.551]],["parent/622",[383,6.469]],["name/623",[31,55.194]],["parent/623",[383,6.469]],["name/624",[32,60.928]],["parent/624",[383,6.469]],["name/625",[33,60.928]],["parent/625",[383,6.469]],["name/626",[34,54.159]],["parent/626",[383,6.469]],["name/627",[35,69.618]],["parent/627",[383,6.469]],["name/628",[36,60.928]],["parent/628",[383,6.469]],["name/629",[37,60.928]],["parent/629",[383,6.469]],["name/630",[38,51.573]],["parent/630",[383,6.469]],["name/631",[384,84.281]],["parent/631",[9,3.754]],["name/632",[127,31.117]],["parent/632",[385,8.41]],["name/633",[11,33.551]],["parent/633",[386,4.461]],["name/634",[153,53.524]],["parent/634",[386,4.461]],["name/635",[154,53.524]],["parent/635",[386,4.461]],["name/636",[155,53.524]],["parent/636",[386,4.461]],["name/637",[156,53.524]],["parent/637",[386,4.461]],["name/638",[157,53.524]],["parent/638",[386,4.461]],["name/639",[158,53.524]],["parent/639",[386,4.461]],["name/640",[159,53.524]],["parent/640",[386,4.461]],["name/641",[31,55.194]],["parent/641",[386,4.461]],["name/642",[271,65.823]],["parent/642",[386,4.461]],["name/643",[272,65.823]],["parent/643",[386,4.461]],["name/644",[273,65.823]],["parent/644",[386,4.461]],["name/645",[274,65.823]],["parent/645",[386,4.461]],["name/646",[275,65.823]],["parent/646",[386,4.461]],["name/647",[276,65.823]],["parent/647",[386,4.461]],["name/648",[277,65.823]],["parent/648",[386,4.461]],["name/649",[32,60.928]],["parent/649",[386,4.461]],["name/650",[278,73.295]],["parent/650",[386,4.461]],["name/651",[279,73.295]],["parent/651",[386,4.461]],["name/652",[280,73.295]],["parent/652",[386,4.461]],["name/653",[281,73.295]],["parent/653",[386,4.461]],["name/654",[282,73.295]],["parent/654",[386,4.461]],["name/655",[283,73.295]],["parent/655",[386,4.461]],["name/656",[284,73.295]],["parent/656",[386,4.461]],["name/657",[285,73.295]],["parent/657",[386,4.461]],["name/658",[286,73.295]],["parent/658",[386,4.461]],["name/659",[287,73.295]],["parent/659",[386,4.461]],["name/660",[288,73.295]],["parent/660",[386,4.461]],["name/661",[289,73.295]],["parent/661",[386,4.461]],["name/662",[290,73.295]],["parent/662",[386,4.461]],["name/663",[33,60.928]],["parent/663",[386,4.461]],["name/664",[291,71.289]],["parent/664",[386,4.461]],["name/665",[292,71.289]],["parent/665",[386,4.461]],["name/666",[293,71.289]],["parent/666",[386,4.461]],["name/667",[294,71.289]],["parent/667",[386,4.461]],["name/668",[295,71.289]],["parent/668",[386,4.461]],["name/669",[296,71.289]],["parent/669",[386,4.461]],["name/670",[297,71.289]],["parent/670",[386,4.461]],["name/671",[34,54.159]],["parent/671",[386,4.461]],["name/672",[298,64.822]],["parent/672",[386,4.461]],["name/673",[299,64.822]],["parent/673",[386,4.461]],["name/674",[300,64.822]],["parent/674",[386,4.461]],["name/675",[301,64.822]],["parent/675",[386,4.461]],["name/676",[302,64.822]],["parent/676",[386,4.461]],["name/677",[303,64.822]],["parent/677",[386,4.461]],["name/678",[304,64.822]],["parent/678",[386,4.461]],["name/679",[35,69.618]],["parent/679",[386,4.461]],["name/680",[305,79.173]],["parent/680",[386,4.461]],["name/681",[306,79.173]],["parent/681",[386,4.461]],["name/682",[307,79.173]],["parent/682",[386,4.461]],["name/683",[308,79.173]],["parent/683",[386,4.461]],["name/684",[309,79.173]],["parent/684",[386,4.461]],["name/685",[310,79.173]],["parent/685",[386,4.461]],["name/686",[311,79.173]],["parent/686",[386,4.461]],["name/687",[36,60.928]],["parent/687",[386,4.461]],["name/688",[312,71.289]],["parent/688",[386,4.461]],["name/689",[313,71.289]],["parent/689",[386,4.461]],["name/690",[314,71.289]],["parent/690",[386,4.461]],["name/691",[315,71.289]],["parent/691",[386,4.461]],["name/692",[316,71.289]],["parent/692",[386,4.461]],["name/693",[317,71.289]],["parent/693",[386,4.461]],["name/694",[318,71.289]],["parent/694",[386,4.461]],["name/695",[37,60.928]],["parent/695",[386,4.461]],["name/696",[319,71.289]],["parent/696",[386,4.461]],["name/697",[320,71.289]],["parent/697",[386,4.461]],["name/698",[321,71.289]],["parent/698",[386,4.461]],["name/699",[322,71.289]],["parent/699",[386,4.461]],["name/700",[323,71.289]],["parent/700",[386,4.461]],["name/701",[324,71.289]],["parent/701",[386,4.461]],["name/702",[325,71.289]],["parent/702",[386,4.461]],["name/703",[38,51.573]],["parent/703",[386,4.461]],["name/704",[326,62.309]],["parent/704",[386,4.461]],["name/705",[327,62.309]],["parent/705",[386,4.461]],["name/706",[328,62.309]],["parent/706",[386,4.461]],["name/707",[329,62.309]],["parent/707",[386,4.461]],["name/708",[330,62.309]],["parent/708",[386,4.461]],["name/709",[331,62.309]],["parent/709",[386,4.461]],["name/710",[332,62.309]],["parent/710",[386,4.461]],["name/711",[53,62.309]],["parent/711",[9,3.754]],["name/712",[127,31.117]],["parent/712",[387,8.41]],["name/713",[148,51.323]],["parent/713",[388,6.68]],["name/714",[11,33.551]],["parent/714",[388,6.68]],["name/715",[55,58.632]],["parent/715",[388,6.68]],["name/716",[18,49.942]],["parent/716",[388,6.68]],["name/717",[62,63.079]],["parent/717",[388,6.68]],["name/718",[65,79.173]],["parent/718",[388,6.68]],["name/719",[54,36.379]],["parent/719",[388,6.68]],["name/720",[17,52.363]],["parent/720",[388,6.68]],["name/721",[389,84.281]],["parent/721",[9,3.754]],["name/722",[127,31.117]],["parent/722",[390,8.41]],["name/723",[337,39.934]],["parent/723",[391,7.114]],["name/724",[339,39.934]],["parent/724",[391,7.114]],["name/725",[340,40.174]],["parent/725",[391,7.114]],["name/726",[68,40.013]],["parent/726",[391,7.114]],["name/727",[341,40.174]],["parent/727",[391,7.114]],["name/728",[392,68.187]],["parent/728",[9,3.754]],["name/729",[127,31.117]],["parent/729",[393,8.41]],["name/730",[148,51.323]],["parent/730",[394,6.147]],["name/731",[11,33.551]],["parent/731",[394,6.147]],["name/732",[53,62.309]],["parent/732",[394,6.147]],["name/733",[17,52.363]],["parent/733",[394,6.147]],["name/734",[54,36.379]],["parent/734",[394,6.147]],["name/735",[55,58.632]],["parent/735",[394,6.147]],["name/736",[18,49.942]],["parent/736",[394,6.147]],["name/737",[56,69.618]],["parent/737",[394,6.147]],["name/738",[57,69.618]],["parent/738",[394,6.147]],["name/739",[58,56.349]],["parent/739",[394,6.147]],["name/740",[59,56.349]],["parent/740",[394,6.147]],["name/741",[60,56.349]],["parent/741",[394,6.147]],["name/742",[61,69.618]],["parent/742",[394,6.147]],["name/743",[62,63.079]],["parent/743",[394,6.147]],["name/744",[395,79.173]],["parent/744",[9,3.754]],["name/745",[127,31.117]],["parent/745",[396,8.41]],["name/746",[11,33.551]],["parent/746",[397,4.017]],["name/747",[153,53.524]],["parent/747",[397,4.017]],["name/748",[154,53.524]],["parent/748",[397,4.017]],["name/749",[155,53.524]],["parent/749",[397,4.017]],["name/750",[156,53.524]],["parent/750",[397,4.017]],["name/751",[157,53.524]],["parent/751",[397,4.017]],["name/752",[158,53.524]],["parent/752",[397,4.017]],["name/753",[159,53.524]],["parent/753",[397,4.017]],["name/754",[53,62.309]],["parent/754",[397,4.017]],["name/755",[398,79.173]],["parent/755",[397,4.017]],["name/756",[399,79.173]],["parent/756",[397,4.017]],["name/757",[400,79.173]],["parent/757",[397,4.017]],["name/758",[401,79.173]],["parent/758",[397,4.017]],["name/759",[402,79.173]],["parent/759",[397,4.017]],["name/760",[403,79.173]],["parent/760",[397,4.017]],["name/761",[404,79.173]],["parent/761",[397,4.017]],["name/762",[405,79.173]],["parent/762",[397,4.017]],["name/763",[406,79.173]],["parent/763",[397,4.017]],["name/764",[407,79.173]],["parent/764",[397,4.017]],["name/765",[408,79.173]],["parent/765",[397,4.017]],["name/766",[409,79.173]],["parent/766",[397,4.017]],["name/767",[410,79.173]],["parent/767",[397,4.017]],["name/768",[17,52.363]],["parent/768",[397,4.017]],["name/769",[186,63.079]],["parent/769",[397,4.017]],["name/770",[187,63.079]],["parent/770",[397,4.017]],["name/771",[188,63.079]],["parent/771",[397,4.017]],["name/772",[189,63.079]],["parent/772",[397,4.017]],["name/773",[190,63.079]],["parent/773",[397,4.017]],["name/774",[191,63.079]],["parent/774",[397,4.017]],["name/775",[192,63.079]],["parent/775",[397,4.017]],["name/776",[54,36.379]],["parent/776",[397,4.017]],["name/777",[411,73.295]],["parent/777",[397,4.017]],["name/778",[412,73.295]],["parent/778",[397,4.017]],["name/779",[413,73.295]],["parent/779",[397,4.017]],["name/780",[414,73.295]],["parent/780",[397,4.017]],["name/781",[415,73.295]],["parent/781",[397,4.017]],["name/782",[416,73.295]],["parent/782",[397,4.017]],["name/783",[417,73.295]],["parent/783",[397,4.017]],["name/784",[55,58.632]],["parent/784",[397,4.017]],["name/785",[418,73.295]],["parent/785",[397,4.017]],["name/786",[419,73.295]],["parent/786",[397,4.017]],["name/787",[420,73.295]],["parent/787",[397,4.017]],["name/788",[421,73.295]],["parent/788",[397,4.017]],["name/789",[422,73.295]],["parent/789",[397,4.017]],["name/790",[423,73.295]],["parent/790",[397,4.017]],["name/791",[424,73.295]],["parent/791",[397,4.017]],["name/792",[425,73.295]],["parent/792",[397,4.017]],["name/793",[426,73.295]],["parent/793",[397,4.017]],["name/794",[427,73.295]],["parent/794",[397,4.017]],["name/795",[428,73.295]],["parent/795",[397,4.017]],["name/796",[429,73.295]],["parent/796",[397,4.017]],["name/797",[430,73.295]],["parent/797",[397,4.017]],["name/798",[18,49.942]],["parent/798",[397,4.017]],["name/799",[193,62.309]],["parent/799",[397,4.017]],["name/800",[194,62.309]],["parent/800",[397,4.017]],["name/801",[195,62.309]],["parent/801",[397,4.017]],["name/802",[196,62.309]],["parent/802",[397,4.017]],["name/803",[197,62.309]],["parent/803",[397,4.017]],["name/804",[198,62.309]],["parent/804",[397,4.017]],["name/805",[199,62.309]],["parent/805",[397,4.017]],["name/806",[200,62.309]],["parent/806",[397,4.017]],["name/807",[201,62.309]],["parent/807",[397,4.017]],["name/808",[202,62.309]],["parent/808",[397,4.017]],["name/809",[203,62.309]],["parent/809",[397,4.017]],["name/810",[204,62.309]],["parent/810",[397,4.017]],["name/811",[205,62.309]],["parent/811",[397,4.017]],["name/812",[56,69.618]],["parent/812",[397,4.017]],["name/813",[431,79.173]],["parent/813",[397,4.017]],["name/814",[432,79.173]],["parent/814",[397,4.017]],["name/815",[433,79.173]],["parent/815",[397,4.017]],["name/816",[434,79.173]],["parent/816",[397,4.017]],["name/817",[435,79.173]],["parent/817",[397,4.017]],["name/818",[436,79.173]],["parent/818",[397,4.017]],["name/819",[437,79.173]],["parent/819",[397,4.017]],["name/820",[57,69.618]],["parent/820",[397,4.017]],["name/821",[438,79.173]],["parent/821",[397,4.017]],["name/822",[439,79.173]],["parent/822",[397,4.017]],["name/823",[440,79.173]],["parent/823",[397,4.017]],["name/824",[441,79.173]],["parent/824",[397,4.017]],["name/825",[442,79.173]],["parent/825",[397,4.017]],["name/826",[443,79.173]],["parent/826",[397,4.017]],["name/827",[444,79.173]],["parent/827",[397,4.017]],["name/828",[58,56.349]],["parent/828",[397,4.017]],["name/829",[445,66.935]],["parent/829",[397,4.017]],["name/830",[446,66.935]],["parent/830",[397,4.017]],["name/831",[447,66.935]],["parent/831",[397,4.017]],["name/832",[448,66.935]],["parent/832",[397,4.017]],["name/833",[449,66.935]],["parent/833",[397,4.017]],["name/834",[450,66.935]],["parent/834",[397,4.017]],["name/835",[451,66.935]],["parent/835",[397,4.017]],["name/836",[59,56.349]],["parent/836",[397,4.017]],["name/837",[452,66.935]],["parent/837",[397,4.017]],["name/838",[453,66.935]],["parent/838",[397,4.017]],["name/839",[454,66.935]],["parent/839",[397,4.017]],["name/840",[455,66.935]],["parent/840",[397,4.017]],["name/841",[456,66.935]],["parent/841",[397,4.017]],["name/842",[457,66.935]],["parent/842",[397,4.017]],["name/843",[458,66.935]],["parent/843",[397,4.017]],["name/844",[60,56.349]],["parent/844",[397,4.017]],["name/845",[459,66.935]],["parent/845",[397,4.017]],["name/846",[460,66.935]],["parent/846",[397,4.017]],["name/847",[461,66.935]],["parent/847",[397,4.017]],["name/848",[462,66.935]],["parent/848",[397,4.017]],["name/849",[463,66.935]],["parent/849",[397,4.017]],["name/850",[464,66.935]],["parent/850",[397,4.017]],["name/851",[465,66.935]],["parent/851",[397,4.017]],["name/852",[61,69.618]],["parent/852",[397,4.017]],["name/853",[466,79.173]],["parent/853",[397,4.017]],["name/854",[467,79.173]],["parent/854",[397,4.017]],["name/855",[468,79.173]],["parent/855",[397,4.017]],["name/856",[469,79.173]],["parent/856",[397,4.017]],["name/857",[470,79.173]],["parent/857",[397,4.017]],["name/858",[471,79.173]],["parent/858",[397,4.017]],["name/859",[472,79.173]],["parent/859",[397,4.017]],["name/860",[62,63.079]],["parent/860",[397,4.017]],["name/861",[473,73.295]],["parent/861",[397,4.017]],["name/862",[474,73.295]],["parent/862",[397,4.017]],["name/863",[475,73.295]],["parent/863",[397,4.017]],["name/864",[476,73.295]],["parent/864",[397,4.017]],["name/865",[477,73.295]],["parent/865",[397,4.017]],["name/866",[478,73.295]],["parent/866",[397,4.017]],["name/867",[479,73.295]],["parent/867",[397,4.017]],["name/868",[480,79.173]],["parent/868",[9,3.754]],["name/869",[127,31.117]],["parent/869",[481,8.41]],["name/870",[11,33.551]],["parent/870",[482,4.721]],["name/871",[153,53.524]],["parent/871",[482,4.721]],["name/872",[154,53.524]],["parent/872",[482,4.721]],["name/873",[155,53.524]],["parent/873",[482,4.721]],["name/874",[156,53.524]],["parent/874",[482,4.721]],["name/875",[157,53.524]],["parent/875",[482,4.721]],["name/876",[158,53.524]],["parent/876",[482,4.721]],["name/877",[159,53.524]],["parent/877",[482,4.721]],["name/878",[55,58.632]],["parent/878",[482,4.721]],["name/879",[418,73.295]],["parent/879",[482,4.721]],["name/880",[419,73.295]],["parent/880",[482,4.721]],["name/881",[420,73.295]],["parent/881",[482,4.721]],["name/882",[421,73.295]],["parent/882",[482,4.721]],["name/883",[422,73.295]],["parent/883",[482,4.721]],["name/884",[423,73.295]],["parent/884",[482,4.721]],["name/885",[424,73.295]],["parent/885",[482,4.721]],["name/886",[425,73.295]],["parent/886",[482,4.721]],["name/887",[426,73.295]],["parent/887",[482,4.721]],["name/888",[427,73.295]],["parent/888",[482,4.721]],["name/889",[428,73.295]],["parent/889",[482,4.721]],["name/890",[429,73.295]],["parent/890",[482,4.721]],["name/891",[430,73.295]],["parent/891",[482,4.721]],["name/892",[18,49.942]],["parent/892",[482,4.721]],["name/893",[193,62.309]],["parent/893",[482,4.721]],["name/894",[194,62.309]],["parent/894",[482,4.721]],["name/895",[195,62.309]],["parent/895",[482,4.721]],["name/896",[196,62.309]],["parent/896",[482,4.721]],["name/897",[197,62.309]],["parent/897",[482,4.721]],["name/898",[198,62.309]],["parent/898",[482,4.721]],["name/899",[199,62.309]],["parent/899",[482,4.721]],["name/900",[200,62.309]],["parent/900",[482,4.721]],["name/901",[201,62.309]],["parent/901",[482,4.721]],["name/902",[202,62.309]],["parent/902",[482,4.721]],["name/903",[203,62.309]],["parent/903",[482,4.721]],["name/904",[204,62.309]],["parent/904",[482,4.721]],["name/905",[205,62.309]],["parent/905",[482,4.721]],["name/906",[62,63.079]],["parent/906",[482,4.721]],["name/907",[473,73.295]],["parent/907",[482,4.721]],["name/908",[474,73.295]],["parent/908",[482,4.721]],["name/909",[475,73.295]],["parent/909",[482,4.721]],["name/910",[476,73.295]],["parent/910",[482,4.721]],["name/911",[477,73.295]],["parent/911",[482,4.721]],["name/912",[478,73.295]],["parent/912",[482,4.721]],["name/913",[479,73.295]],["parent/913",[482,4.721]],["name/914",[54,36.379]],["parent/914",[482,4.721]],["name/915",[411,73.295]],["parent/915",[482,4.721]],["name/916",[412,73.295]],["parent/916",[482,4.721]],["name/917",[413,73.295]],["parent/917",[482,4.721]],["name/918",[414,73.295]],["parent/918",[482,4.721]],["name/919",[415,73.295]],["parent/919",[482,4.721]],["name/920",[416,73.295]],["parent/920",[482,4.721]],["name/921",[417,73.295]],["parent/921",[482,4.721]],["name/922",[17,52.363]],["parent/922",[482,4.721]],["name/923",[186,63.079]],["parent/923",[482,4.721]],["name/924",[187,63.079]],["parent/924",[482,4.721]],["name/925",[188,63.079]],["parent/925",[482,4.721]],["name/926",[189,63.079]],["parent/926",[482,4.721]],["name/927",[190,63.079]],["parent/927",[482,4.721]],["name/928",[191,63.079]],["parent/928",[482,4.721]],["name/929",[192,63.079]],["parent/929",[482,4.721]],["name/930",[483,68.187]],["parent/930",[9,3.754]],["name/931",[127,31.117]],["parent/931",[484,8.41]],["name/932",[148,51.323]],["parent/932",[485,6.147]],["name/933",[11,33.551]],["parent/933",[485,6.147]],["name/934",[16,55.949]],["parent/934",[485,6.147]],["name/935",[17,52.363]],["parent/935",[485,6.147]],["name/936",[18,49.942]],["parent/936",[485,6.147]],["name/937",[23,59.158]],["parent/937",[485,6.147]],["name/938",[19,57.656]],["parent/938",[485,6.147]],["name/939",[20,59.158]],["parent/939",[485,6.147]],["name/940",[21,63.079]],["parent/940",[485,6.147]],["name/941",[22,63.079]],["parent/941",[485,6.147]],["name/942",[24,59.158]],["parent/942",[485,6.147]],["name/943",[25,59.158]],["parent/943",[485,6.147]],["name/944",[27,63.079]],["parent/944",[485,6.147]],["name/945",[28,63.079]],["parent/945",[485,6.147]],["name/946",[486,79.173]],["parent/946",[9,3.754]],["name/947",[127,31.117]],["parent/947",[487,8.41]],["name/948",[11,33.551]],["parent/948",[488,4.12]],["name/949",[153,53.524]],["parent/949",[488,4.12]],["name/950",[154,53.524]],["parent/950",[488,4.12]],["name/951",[155,53.524]],["parent/951",[488,4.12]],["name/952",[156,53.524]],["parent/952",[488,4.12]],["name/953",[157,53.524]],["parent/953",[488,4.12]],["name/954",[158,53.524]],["parent/954",[488,4.12]],["name/955",[159,53.524]],["parent/955",[488,4.12]],["name/956",[16,55.949]],["parent/956",[488,4.12]],["name/957",[173,69.618]],["parent/957",[488,4.12]],["name/958",[174,69.618]],["parent/958",[488,4.12]],["name/959",[175,69.618]],["parent/959",[488,4.12]],["name/960",[176,69.618]],["parent/960",[488,4.12]],["name/961",[177,69.618]],["parent/961",[488,4.12]],["name/962",[178,69.618]],["parent/962",[488,4.12]],["name/963",[179,69.618]],["parent/963",[488,4.12]],["name/964",[180,69.618]],["parent/964",[488,4.12]],["name/965",[181,69.618]],["parent/965",[488,4.12]],["name/966",[182,69.618]],["parent/966",[488,4.12]],["name/967",[183,69.618]],["parent/967",[488,4.12]],["name/968",[184,69.618]],["parent/968",[488,4.12]],["name/969",[185,69.618]],["parent/969",[488,4.12]],["name/970",[17,52.363]],["parent/970",[488,4.12]],["name/971",[186,63.079]],["parent/971",[488,4.12]],["name/972",[187,63.079]],["parent/972",[488,4.12]],["name/973",[188,63.079]],["parent/973",[488,4.12]],["name/974",[189,63.079]],["parent/974",[488,4.12]],["name/975",[190,63.079]],["parent/975",[488,4.12]],["name/976",[191,63.079]],["parent/976",[488,4.12]],["name/977",[192,63.079]],["parent/977",[488,4.12]],["name/978",[18,49.942]],["parent/978",[488,4.12]],["name/979",[193,62.309]],["parent/979",[488,4.12]],["name/980",[194,62.309]],["parent/980",[488,4.12]],["name/981",[195,62.309]],["parent/981",[488,4.12]],["name/982",[196,62.309]],["parent/982",[488,4.12]],["name/983",[197,62.309]],["parent/983",[488,4.12]],["name/984",[198,62.309]],["parent/984",[488,4.12]],["name/985",[199,62.309]],["parent/985",[488,4.12]],["name/986",[200,62.309]],["parent/986",[488,4.12]],["name/987",[201,62.309]],["parent/987",[488,4.12]],["name/988",[202,62.309]],["parent/988",[488,4.12]],["name/989",[203,62.309]],["parent/989",[488,4.12]],["name/990",[204,62.309]],["parent/990",[488,4.12]],["name/991",[205,62.309]],["parent/991",[488,4.12]],["name/992",[23,59.158]],["parent/992",[488,4.12]],["name/993",[232,69.618]],["parent/993",[488,4.12]],["name/994",[233,69.618]],["parent/994",[488,4.12]],["name/995",[234,69.618]],["parent/995",[488,4.12]],["name/996",[235,69.618]],["parent/996",[488,4.12]],["name/997",[236,69.618]],["parent/997",[488,4.12]],["name/998",[19,57.656]],["parent/998",[488,4.12]],["name/999",[206,68.187]],["parent/999",[488,4.12]],["name/1000",[207,68.187]],["parent/1000",[488,4.12]],["name/1001",[208,68.187]],["parent/1001",[488,4.12]],["name/1002",[209,68.187]],["parent/1002",[488,4.12]],["name/1003",[210,68.187]],["parent/1003",[488,4.12]],["name/1004",[211,68.187]],["parent/1004",[488,4.12]],["name/1005",[212,68.187]],["parent/1005",[488,4.12]],["name/1006",[20,59.158]],["parent/1006",[488,4.12]],["name/1007",[213,69.618]],["parent/1007",[488,4.12]],["name/1008",[214,69.618]],["parent/1008",[488,4.12]],["name/1009",[215,69.618]],["parent/1009",[488,4.12]],["name/1010",[216,69.618]],["parent/1010",[488,4.12]],["name/1011",[217,69.618]],["parent/1011",[488,4.12]],["name/1012",[21,63.079]],["parent/1012",[488,4.12]],["name/1013",[218,73.295]],["parent/1013",[488,4.12]],["name/1014",[219,73.295]],["parent/1014",[488,4.12]],["name/1015",[220,73.295]],["parent/1015",[488,4.12]],["name/1016",[221,73.295]],["parent/1016",[488,4.12]],["name/1017",[222,73.295]],["parent/1017",[488,4.12]],["name/1018",[223,73.295]],["parent/1018",[488,4.12]],["name/1019",[224,73.295]],["parent/1019",[488,4.12]],["name/1020",[22,63.079]],["parent/1020",[488,4.12]],["name/1021",[225,73.295]],["parent/1021",[488,4.12]],["name/1022",[226,73.295]],["parent/1022",[488,4.12]],["name/1023",[227,73.295]],["parent/1023",[488,4.12]],["name/1024",[228,73.295]],["parent/1024",[488,4.12]],["name/1025",[229,73.295]],["parent/1025",[488,4.12]],["name/1026",[230,73.295]],["parent/1026",[488,4.12]],["name/1027",[231,73.295]],["parent/1027",[488,4.12]],["name/1028",[24,59.158]],["parent/1028",[488,4.12]],["name/1029",[237,69.618]],["parent/1029",[488,4.12]],["name/1030",[238,69.618]],["parent/1030",[488,4.12]],["name/1031",[239,69.618]],["parent/1031",[488,4.12]],["name/1032",[240,69.618]],["parent/1032",[488,4.12]],["name/1033",[241,69.618]],["parent/1033",[488,4.12]],["name/1034",[242,69.618]],["parent/1034",[488,4.12]],["name/1035",[243,69.618]],["parent/1035",[488,4.12]],["name/1036",[25,59.158]],["parent/1036",[488,4.12]],["name/1037",[244,69.618]],["parent/1037",[488,4.12]],["name/1038",[245,69.618]],["parent/1038",[488,4.12]],["name/1039",[246,69.618]],["parent/1039",[488,4.12]],["name/1040",[247,69.618]],["parent/1040",[488,4.12]],["name/1041",[248,69.618]],["parent/1041",[488,4.12]],["name/1042",[249,69.618]],["parent/1042",[488,4.12]],["name/1043",[250,69.618]],["parent/1043",[488,4.12]],["name/1044",[27,63.079]],["parent/1044",[488,4.12]],["name/1045",[254,73.295]],["parent/1045",[488,4.12]],["name/1046",[255,73.295]],["parent/1046",[488,4.12]],["name/1047",[256,73.295]],["parent/1047",[488,4.12]],["name/1048",[257,73.295]],["parent/1048",[488,4.12]],["name/1049",[258,73.295]],["parent/1049",[488,4.12]],["name/1050",[28,63.079]],["parent/1050",[488,4.12]],["name/1051",[259,73.295]],["parent/1051",[488,4.12]],["name/1052",[260,73.295]],["parent/1052",[488,4.12]],["name/1053",[261,73.295]],["parent/1053",[488,4.12]],["name/1054",[262,73.295]],["parent/1054",[488,4.12]],["name/1055",[263,73.295]],["parent/1055",[488,4.12]],["name/1056",[264,73.295]],["parent/1056",[488,4.12]],["name/1057",[265,73.295]],["parent/1057",[488,4.12]],["name/1058",[18,49.942]],["parent/1058",[9,3.754]],["name/1059",[127,31.117]],["parent/1059",[489,8.41]],["name/1060",[148,51.323]],["parent/1060",[490,5.438]],["name/1061",[11,33.551]],["parent/1061",[490,5.438]],["name/1062",[32,60.928]],["parent/1062",[490,5.438]],["name/1063",[83,65.823]],["parent/1063",[490,5.438]],["name/1064",[74,63.079]],["parent/1064",[490,5.438]],["name/1065",[75,63.079]],["parent/1065",[490,5.438]],["name/1066",[58,56.349]],["parent/1066",[490,5.438]],["name/1067",[59,56.349]],["parent/1067",[490,5.438]],["name/1068",[76,59.158]],["parent/1068",[490,5.438]],["name/1069",[84,69.618]],["parent/1069",[490,5.438]],["name/1070",[60,56.349]],["parent/1070",[490,5.438]],["name/1071",[85,69.618]],["parent/1071",[490,5.438]],["name/1072",[86,69.618]],["parent/1072",[490,5.438]],["name/1073",[87,69.618]],["parent/1073",[490,5.438]],["name/1074",[77,63.079]],["parent/1074",[490,5.438]],["name/1075",[78,63.079]],["parent/1075",[490,5.438]],["name/1076",[34,54.159]],["parent/1076",[490,5.438]],["name/1077",[42,59.158]],["parent/1077",[490,5.438]],["name/1078",[38,51.573]],["parent/1078",[490,5.438]],["name/1079",[88,69.618]],["parent/1079",[490,5.438]],["name/1080",[89,63.913]],["parent/1080",[490,5.438]],["name/1081",[90,68.187]],["parent/1081",[490,5.438]],["name/1082",[48,65.823]],["parent/1082",[490,5.438]],["name/1083",[47,65.823]],["parent/1083",[490,5.438]],["name/1084",[91,62.309]],["parent/1084",[490,5.438]],["name/1085",[92,62.309]],["parent/1085",[490,5.438]],["name/1086",[93,62.309]],["parent/1086",[490,5.438]],["name/1087",[17,52.363]],["parent/1087",[490,5.438]],["name/1088",[54,36.379]],["parent/1088",[490,5.438]],["name/1089",[491,84.281]],["parent/1089",[9,3.754]],["name/1090",[127,31.117]],["parent/1090",[492,8.41]],["name/1091",[337,39.934]],["parent/1091",[493,7.114]],["name/1092",[339,39.934]],["parent/1092",[493,7.114]],["name/1093",[340,40.174]],["parent/1093",[493,7.114]],["name/1094",[68,40.013]],["parent/1094",[493,7.114]],["name/1095",[341,40.174]],["parent/1095",[493,7.114]],["name/1096",[494,84.281]],["parent/1096",[9,3.754]],["name/1097",[127,31.117]],["parent/1097",[495,8.41]],["name/1098",[337,39.934]],["parent/1098",[496,7.114]],["name/1099",[339,39.934]],["parent/1099",[496,7.114]],["name/1100",[340,40.174]],["parent/1100",[496,7.114]],["name/1101",[68,40.013]],["parent/1101",[496,7.114]],["name/1102",[341,40.174]],["parent/1102",[496,7.114]],["name/1103",[497,84.281]],["parent/1103",[9,3.754]],["name/1104",[127,31.117]],["parent/1104",[498,8.41]],["name/1105",[337,39.934]],["parent/1105",[499,7.114]],["name/1106",[339,39.934]],["parent/1106",[499,7.114]],["name/1107",[340,40.174]],["parent/1107",[499,7.114]],["name/1108",[68,40.013]],["parent/1108",[499,7.114]],["name/1109",[341,40.174]],["parent/1109",[499,7.114]],["name/1110",[500,84.281]],["parent/1110",[9,3.754]],["name/1111",[127,31.117]],["parent/1111",[501,8.41]],["name/1112",[337,39.934]],["parent/1112",[502,7.114]],["name/1113",[339,39.934]],["parent/1113",[502,7.114]],["name/1114",[340,40.174]],["parent/1114",[502,7.114]],["name/1115",[68,40.013]],["parent/1115",[502,7.114]],["name/1116",[341,40.174]],["parent/1116",[502,7.114]],["name/1117",[503,84.281]],["parent/1117",[9,3.754]],["name/1118",[127,31.117]],["parent/1118",[504,8.41]],["name/1119",[337,39.934]],["parent/1119",[505,7.114]],["name/1120",[339,39.934]],["parent/1120",[505,7.114]],["name/1121",[340,40.174]],["parent/1121",[505,7.114]],["name/1122",[68,40.013]],["parent/1122",[505,7.114]],["name/1123",[341,40.174]],["parent/1123",[505,7.114]],["name/1124",[506,84.281]],["parent/1124",[9,3.754]],["name/1125",[127,31.117]],["parent/1125",[507,8.41]],["name/1126",[337,39.934]],["parent/1126",[508,7.114]],["name/1127",[339,39.934]],["parent/1127",[508,7.114]],["name/1128",[340,40.174]],["parent/1128",[508,7.114]],["name/1129",[68,40.013]],["parent/1129",[508,7.114]],["name/1130",[341,40.174]],["parent/1130",[508,7.114]],["name/1131",[509,84.281]],["parent/1131",[9,3.754]],["name/1132",[127,31.117]],["parent/1132",[510,8.41]],["name/1133",[337,39.934]],["parent/1133",[511,7.114]],["name/1134",[339,39.934]],["parent/1134",[511,7.114]],["name/1135",[340,40.174]],["parent/1135",[511,7.114]],["name/1136",[68,40.013]],["parent/1136",[511,7.114]],["name/1137",[341,40.174]],["parent/1137",[511,7.114]],["name/1138",[512,68.187]],["parent/1138",[9,3.754]],["name/1139",[127,31.117]],["parent/1139",[513,8.41]],["name/1140",[148,51.323]],["parent/1140",[514,6.147]],["name/1141",[11,33.551]],["parent/1141",[514,6.147]],["name/1142",[31,55.194]],["parent/1142",[514,6.147]],["name/1143",[18,49.942]],["parent/1143",[514,6.147]],["name/1144",[74,63.079]],["parent/1144",[514,6.147]],["name/1145",[75,63.079]],["parent/1145",[514,6.147]],["name/1146",[58,56.349]],["parent/1146",[514,6.147]],["name/1147",[59,56.349]],["parent/1147",[514,6.147]],["name/1148",[76,59.158]],["parent/1148",[514,6.147]],["name/1149",[60,56.349]],["parent/1149",[514,6.147]],["name/1150",[77,63.079]],["parent/1150",[514,6.147]],["name/1151",[78,63.079]],["parent/1151",[514,6.147]],["name/1152",[34,54.159]],["parent/1152",[514,6.147]],["name/1153",[38,51.573]],["parent/1153",[514,6.147]],["name/1154",[515,79.173]],["parent/1154",[9,3.754]],["name/1155",[127,31.117]],["parent/1155",[516,8.41]],["name/1156",[11,33.551]],["parent/1156",[517,4.017]],["name/1157",[153,53.524]],["parent/1157",[517,4.017]],["name/1158",[154,53.524]],["parent/1158",[517,4.017]],["name/1159",[155,53.524]],["parent/1159",[517,4.017]],["name/1160",[156,53.524]],["parent/1160",[517,4.017]],["name/1161",[157,53.524]],["parent/1161",[517,4.017]],["name/1162",[158,53.524]],["parent/1162",[517,4.017]],["name/1163",[159,53.524]],["parent/1163",[517,4.017]],["name/1164",[31,55.194]],["parent/1164",[517,4.017]],["name/1165",[271,65.823]],["parent/1165",[517,4.017]],["name/1166",[272,65.823]],["parent/1166",[517,4.017]],["name/1167",[273,65.823]],["parent/1167",[517,4.017]],["name/1168",[274,65.823]],["parent/1168",[517,4.017]],["name/1169",[275,65.823]],["parent/1169",[517,4.017]],["name/1170",[276,65.823]],["parent/1170",[517,4.017]],["name/1171",[277,65.823]],["parent/1171",[517,4.017]],["name/1172",[18,49.942]],["parent/1172",[517,4.017]],["name/1173",[193,62.309]],["parent/1173",[517,4.017]],["name/1174",[194,62.309]],["parent/1174",[517,4.017]],["name/1175",[195,62.309]],["parent/1175",[517,4.017]],["name/1176",[196,62.309]],["parent/1176",[517,4.017]],["name/1177",[197,62.309]],["parent/1177",[517,4.017]],["name/1178",[198,62.309]],["parent/1178",[517,4.017]],["name/1179",[199,62.309]],["parent/1179",[517,4.017]],["name/1180",[200,62.309]],["parent/1180",[517,4.017]],["name/1181",[201,62.309]],["parent/1181",[517,4.017]],["name/1182",[202,62.309]],["parent/1182",[517,4.017]],["name/1183",[203,62.309]],["parent/1183",[517,4.017]],["name/1184",[204,62.309]],["parent/1184",[517,4.017]],["name/1185",[205,62.309]],["parent/1185",[517,4.017]],["name/1186",[74,63.079]],["parent/1186",[517,4.017]],["name/1187",[518,73.295]],["parent/1187",[517,4.017]],["name/1188",[519,73.295]],["parent/1188",[517,4.017]],["name/1189",[520,73.295]],["parent/1189",[517,4.017]],["name/1190",[521,73.295]],["parent/1190",[517,4.017]],["name/1191",[522,73.295]],["parent/1191",[517,4.017]],["name/1192",[523,73.295]],["parent/1192",[517,4.017]],["name/1193",[524,73.295]],["parent/1193",[517,4.017]],["name/1194",[525,73.295]],["parent/1194",[517,4.017]],["name/1195",[526,73.295]],["parent/1195",[517,4.017]],["name/1196",[527,73.295]],["parent/1196",[517,4.017]],["name/1197",[528,73.295]],["parent/1197",[517,4.017]],["name/1198",[529,73.295]],["parent/1198",[517,4.017]],["name/1199",[530,73.295]],["parent/1199",[517,4.017]],["name/1200",[75,63.079]],["parent/1200",[517,4.017]],["name/1201",[531,73.295]],["parent/1201",[517,4.017]],["name/1202",[532,73.295]],["parent/1202",[517,4.017]],["name/1203",[533,73.295]],["parent/1203",[517,4.017]],["name/1204",[534,73.295]],["parent/1204",[517,4.017]],["name/1205",[535,73.295]],["parent/1205",[517,4.017]],["name/1206",[536,73.295]],["parent/1206",[517,4.017]],["name/1207",[537,73.295]],["parent/1207",[517,4.017]],["name/1208",[538,73.295]],["parent/1208",[517,4.017]],["name/1209",[539,73.295]],["parent/1209",[517,4.017]],["name/1210",[540,73.295]],["parent/1210",[517,4.017]],["name/1211",[541,73.295]],["parent/1211",[517,4.017]],["name/1212",[542,73.295]],["parent/1212",[517,4.017]],["name/1213",[543,73.295]],["parent/1213",[517,4.017]],["name/1214",[58,56.349]],["parent/1214",[517,4.017]],["name/1215",[445,66.935]],["parent/1215",[517,4.017]],["name/1216",[446,66.935]],["parent/1216",[517,4.017]],["name/1217",[447,66.935]],["parent/1217",[517,4.017]],["name/1218",[448,66.935]],["parent/1218",[517,4.017]],["name/1219",[449,66.935]],["parent/1219",[517,4.017]],["name/1220",[450,66.935]],["parent/1220",[517,4.017]],["name/1221",[451,66.935]],["parent/1221",[517,4.017]],["name/1222",[59,56.349]],["parent/1222",[517,4.017]],["name/1223",[452,66.935]],["parent/1223",[517,4.017]],["name/1224",[453,66.935]],["parent/1224",[517,4.017]],["name/1225",[454,66.935]],["parent/1225",[517,4.017]],["name/1226",[455,66.935]],["parent/1226",[517,4.017]],["name/1227",[456,66.935]],["parent/1227",[517,4.017]],["name/1228",[457,66.935]],["parent/1228",[517,4.017]],["name/1229",[458,66.935]],["parent/1229",[517,4.017]],["name/1230",[76,59.158]],["parent/1230",[517,4.017]],["name/1231",[544,69.618]],["parent/1231",[517,4.017]],["name/1232",[545,69.618]],["parent/1232",[517,4.017]],["name/1233",[546,69.618]],["parent/1233",[517,4.017]],["name/1234",[547,69.618]],["parent/1234",[517,4.017]],["name/1235",[548,69.618]],["parent/1235",[517,4.017]],["name/1236",[549,69.618]],["parent/1236",[517,4.017]],["name/1237",[550,69.618]],["parent/1237",[517,4.017]],["name/1238",[60,56.349]],["parent/1238",[517,4.017]],["name/1239",[459,66.935]],["parent/1239",[517,4.017]],["name/1240",[460,66.935]],["parent/1240",[517,4.017]],["name/1241",[461,66.935]],["parent/1241",[517,4.017]],["name/1242",[462,66.935]],["parent/1242",[517,4.017]],["name/1243",[463,66.935]],["parent/1243",[517,4.017]],["name/1244",[464,66.935]],["parent/1244",[517,4.017]],["name/1245",[465,66.935]],["parent/1245",[517,4.017]],["name/1246",[77,63.079]],["parent/1246",[517,4.017]],["name/1247",[551,73.295]],["parent/1247",[517,4.017]],["name/1248",[552,73.295]],["parent/1248",[517,4.017]],["name/1249",[553,73.295]],["parent/1249",[517,4.017]],["name/1250",[554,73.295]],["parent/1250",[517,4.017]],["name/1251",[555,73.295]],["parent/1251",[517,4.017]],["name/1252",[556,73.295]],["parent/1252",[517,4.017]],["name/1253",[557,73.295]],["parent/1253",[517,4.017]],["name/1254",[78,63.079]],["parent/1254",[517,4.017]],["name/1255",[558,73.295]],["parent/1255",[517,4.017]],["name/1256",[559,73.295]],["parent/1256",[517,4.017]],["name/1257",[560,73.295]],["parent/1257",[517,4.017]],["name/1258",[561,73.295]],["parent/1258",[517,4.017]],["name/1259",[562,73.295]],["parent/1259",[517,4.017]],["name/1260",[563,73.295]],["parent/1260",[517,4.017]],["name/1261",[564,73.295]],["parent/1261",[517,4.017]],["name/1262",[34,54.159]],["parent/1262",[517,4.017]],["name/1263",[298,64.822]],["parent/1263",[517,4.017]],["name/1264",[299,64.822]],["parent/1264",[517,4.017]],["name/1265",[300,64.822]],["parent/1265",[517,4.017]],["name/1266",[301,64.822]],["parent/1266",[517,4.017]],["name/1267",[302,64.822]],["parent/1267",[517,4.017]],["name/1268",[303,64.822]],["parent/1268",[517,4.017]],["name/1269",[304,64.822]],["parent/1269",[517,4.017]],["name/1270",[38,51.573]],["parent/1270",[517,4.017]],["name/1271",[326,62.309]],["parent/1271",[517,4.017]],["name/1272",[327,62.309]],["parent/1272",[517,4.017]],["name/1273",[328,62.309]],["parent/1273",[517,4.017]],["name/1274",[329,62.309]],["parent/1274",[517,4.017]],["name/1275",[330,62.309]],["parent/1275",[517,4.017]],["name/1276",[331,62.309]],["parent/1276",[517,4.017]],["name/1277",[332,62.309]],["parent/1277",[517,4.017]],["name/1278",[565,68.187]],["parent/1278",[9,3.754]],["name/1279",[127,31.117]],["parent/1279",[566,8.41]],["name/1280",[148,51.323]],["parent/1280",[567,6.378]],["name/1281",[11,33.551]],["parent/1281",[567,6.378]],["name/1282",[31,55.194]],["parent/1282",[567,6.378]],["name/1283",[18,49.942]],["parent/1283",[567,6.378]],["name/1284",[58,56.349]],["parent/1284",[567,6.378]],["name/1285",[59,56.349]],["parent/1285",[567,6.378]],["name/1286",[60,56.349]],["parent/1286",[567,6.378]],["name/1287",[77,63.079]],["parent/1287",[567,6.378]],["name/1288",[78,63.079]],["parent/1288",[567,6.378]],["name/1289",[34,54.159]],["parent/1289",[567,6.378]],["name/1290",[38,51.573]],["parent/1290",[567,6.378]],["name/1291",[568,79.173]],["parent/1291",[9,3.754]],["name/1292",[127,31.117]],["parent/1292",[569,8.41]],["name/1293",[11,33.551]],["parent/1293",[570,4.364]],["name/1294",[153,53.524]],["parent/1294",[570,4.364]],["name/1295",[154,53.524]],["parent/1295",[570,4.364]],["name/1296",[155,53.524]],["parent/1296",[570,4.364]],["name/1297",[156,53.524]],["parent/1297",[570,4.364]],["name/1298",[157,53.524]],["parent/1298",[570,4.364]],["name/1299",[158,53.524]],["parent/1299",[570,4.364]],["name/1300",[159,53.524]],["parent/1300",[570,4.364]],["name/1301",[31,55.194]],["parent/1301",[570,4.364]],["name/1302",[271,65.823]],["parent/1302",[570,4.364]],["name/1303",[272,65.823]],["parent/1303",[570,4.364]],["name/1304",[273,65.823]],["parent/1304",[570,4.364]],["name/1305",[274,65.823]],["parent/1305",[570,4.364]],["name/1306",[275,65.823]],["parent/1306",[570,4.364]],["name/1307",[276,65.823]],["parent/1307",[570,4.364]],["name/1308",[277,65.823]],["parent/1308",[570,4.364]],["name/1309",[18,49.942]],["parent/1309",[570,4.364]],["name/1310",[193,62.309]],["parent/1310",[570,4.364]],["name/1311",[194,62.309]],["parent/1311",[570,4.364]],["name/1312",[195,62.309]],["parent/1312",[570,4.364]],["name/1313",[196,62.309]],["parent/1313",[570,4.364]],["name/1314",[197,62.309]],["parent/1314",[570,4.364]],["name/1315",[198,62.309]],["parent/1315",[570,4.364]],["name/1316",[199,62.309]],["parent/1316",[570,4.364]],["name/1317",[200,62.309]],["parent/1317",[570,4.364]],["name/1318",[201,62.309]],["parent/1318",[570,4.364]],["name/1319",[202,62.309]],["parent/1319",[570,4.364]],["name/1320",[203,62.309]],["parent/1320",[570,4.364]],["name/1321",[204,62.309]],["parent/1321",[570,4.364]],["name/1322",[205,62.309]],["parent/1322",[570,4.364]],["name/1323",[58,56.349]],["parent/1323",[570,4.364]],["name/1324",[445,66.935]],["parent/1324",[570,4.364]],["name/1325",[446,66.935]],["parent/1325",[570,4.364]],["name/1326",[447,66.935]],["parent/1326",[570,4.364]],["name/1327",[448,66.935]],["parent/1327",[570,4.364]],["name/1328",[449,66.935]],["parent/1328",[570,4.364]],["name/1329",[450,66.935]],["parent/1329",[570,4.364]],["name/1330",[451,66.935]],["parent/1330",[570,4.364]],["name/1331",[59,56.349]],["parent/1331",[570,4.364]],["name/1332",[452,66.935]],["parent/1332",[570,4.364]],["name/1333",[453,66.935]],["parent/1333",[570,4.364]],["name/1334",[454,66.935]],["parent/1334",[570,4.364]],["name/1335",[455,66.935]],["parent/1335",[570,4.364]],["name/1336",[456,66.935]],["parent/1336",[570,4.364]],["name/1337",[457,66.935]],["parent/1337",[570,4.364]],["name/1338",[458,66.935]],["parent/1338",[570,4.364]],["name/1339",[60,56.349]],["parent/1339",[570,4.364]],["name/1340",[459,66.935]],["parent/1340",[570,4.364]],["name/1341",[460,66.935]],["parent/1341",[570,4.364]],["name/1342",[461,66.935]],["parent/1342",[570,4.364]],["name/1343",[462,66.935]],["parent/1343",[570,4.364]],["name/1344",[463,66.935]],["parent/1344",[570,4.364]],["name/1345",[464,66.935]],["parent/1345",[570,4.364]],["name/1346",[465,66.935]],["parent/1346",[570,4.364]],["name/1347",[77,63.079]],["parent/1347",[570,4.364]],["name/1348",[551,73.295]],["parent/1348",[570,4.364]],["name/1349",[552,73.295]],["parent/1349",[570,4.364]],["name/1350",[553,73.295]],["parent/1350",[570,4.364]],["name/1351",[554,73.295]],["parent/1351",[570,4.364]],["name/1352",[555,73.295]],["parent/1352",[570,4.364]],["name/1353",[556,73.295]],["parent/1353",[570,4.364]],["name/1354",[557,73.295]],["parent/1354",[570,4.364]],["name/1355",[78,63.079]],["parent/1355",[570,4.364]],["name/1356",[558,73.295]],["parent/1356",[570,4.364]],["name/1357",[559,73.295]],["parent/1357",[570,4.364]],["name/1358",[560,73.295]],["parent/1358",[570,4.364]],["name/1359",[561,73.295]],["parent/1359",[570,4.364]],["name/1360",[562,73.295]],["parent/1360",[570,4.364]],["name/1361",[563,73.295]],["parent/1361",[570,4.364]],["name/1362",[564,73.295]],["parent/1362",[570,4.364]],["name/1363",[34,54.159]],["parent/1363",[570,4.364]],["name/1364",[298,64.822]],["parent/1364",[570,4.364]],["name/1365",[299,64.822]],["parent/1365",[570,4.364]],["name/1366",[300,64.822]],["parent/1366",[570,4.364]],["name/1367",[301,64.822]],["parent/1367",[570,4.364]],["name/1368",[302,64.822]],["parent/1368",[570,4.364]],["name/1369",[303,64.822]],["parent/1369",[570,4.364]],["name/1370",[304,64.822]],["parent/1370",[570,4.364]],["name/1371",[38,51.573]],["parent/1371",[570,4.364]],["name/1372",[326,62.309]],["parent/1372",[570,4.364]],["name/1373",[327,62.309]],["parent/1373",[570,4.364]],["name/1374",[328,62.309]],["parent/1374",[570,4.364]],["name/1375",[329,62.309]],["parent/1375",[570,4.364]],["name/1376",[330,62.309]],["parent/1376",[570,4.364]],["name/1377",[331,62.309]],["parent/1377",[570,4.364]],["name/1378",[332,62.309]],["parent/1378",[570,4.364]],["name/1379",[571,79.173]],["parent/1379",[9,3.754]],["name/1380",[127,31.117]],["parent/1380",[572,8.41]],["name/1381",[11,33.551]],["parent/1381",[573,3.566]],["name/1382",[153,53.524]],["parent/1382",[573,3.566]],["name/1383",[154,53.524]],["parent/1383",[573,3.566]],["name/1384",[155,53.524]],["parent/1384",[573,3.566]],["name/1385",[156,53.524]],["parent/1385",[573,3.566]],["name/1386",[157,53.524]],["parent/1386",[573,3.566]],["name/1387",[158,53.524]],["parent/1387",[573,3.566]],["name/1388",[159,53.524]],["parent/1388",[573,3.566]],["name/1389",[32,60.928]],["parent/1389",[573,3.566]],["name/1390",[278,73.295]],["parent/1390",[573,3.566]],["name/1391",[279,73.295]],["parent/1391",[573,3.566]],["name/1392",[280,73.295]],["parent/1392",[573,3.566]],["name/1393",[281,73.295]],["parent/1393",[573,3.566]],["name/1394",[282,73.295]],["parent/1394",[573,3.566]],["name/1395",[283,73.295]],["parent/1395",[573,3.566]],["name/1396",[284,73.295]],["parent/1396",[573,3.566]],["name/1397",[285,73.295]],["parent/1397",[573,3.566]],["name/1398",[286,73.295]],["parent/1398",[573,3.566]],["name/1399",[287,73.295]],["parent/1399",[573,3.566]],["name/1400",[288,73.295]],["parent/1400",[573,3.566]],["name/1401",[289,73.295]],["parent/1401",[573,3.566]],["name/1402",[290,73.295]],["parent/1402",[573,3.566]],["name/1403",[83,65.823]],["parent/1403",[573,3.566]],["name/1404",[574,75.808]],["parent/1404",[573,3.566]],["name/1405",[575,75.808]],["parent/1405",[573,3.566]],["name/1406",[576,75.808]],["parent/1406",[573,3.566]],["name/1407",[577,75.808]],["parent/1407",[573,3.566]],["name/1408",[578,75.808]],["parent/1408",[573,3.566]],["name/1409",[579,75.808]],["parent/1409",[573,3.566]],["name/1410",[580,75.808]],["parent/1410",[573,3.566]],["name/1411",[581,75.808]],["parent/1411",[573,3.566]],["name/1412",[582,75.808]],["parent/1412",[573,3.566]],["name/1413",[583,75.808]],["parent/1413",[573,3.566]],["name/1414",[584,75.808]],["parent/1414",[573,3.566]],["name/1415",[585,75.808]],["parent/1415",[573,3.566]],["name/1416",[586,75.808]],["parent/1416",[573,3.566]],["name/1417",[74,63.079]],["parent/1417",[573,3.566]],["name/1418",[518,73.295]],["parent/1418",[573,3.566]],["name/1419",[519,73.295]],["parent/1419",[573,3.566]],["name/1420",[520,73.295]],["parent/1420",[573,3.566]],["name/1421",[521,73.295]],["parent/1421",[573,3.566]],["name/1422",[522,73.295]],["parent/1422",[573,3.566]],["name/1423",[523,73.295]],["parent/1423",[573,3.566]],["name/1424",[524,73.295]],["parent/1424",[573,3.566]],["name/1425",[525,73.295]],["parent/1425",[573,3.566]],["name/1426",[526,73.295]],["parent/1426",[573,3.566]],["name/1427",[527,73.295]],["parent/1427",[573,3.566]],["name/1428",[528,73.295]],["parent/1428",[573,3.566]],["name/1429",[529,73.295]],["parent/1429",[573,3.566]],["name/1430",[530,73.295]],["parent/1430",[573,3.566]],["name/1431",[75,63.079]],["parent/1431",[573,3.566]],["name/1432",[531,73.295]],["parent/1432",[573,3.566]],["name/1433",[532,73.295]],["parent/1433",[573,3.566]],["name/1434",[533,73.295]],["parent/1434",[573,3.566]],["name/1435",[534,73.295]],["parent/1435",[573,3.566]],["name/1436",[535,73.295]],["parent/1436",[573,3.566]],["name/1437",[536,73.295]],["parent/1437",[573,3.566]],["name/1438",[537,73.295]],["parent/1438",[573,3.566]],["name/1439",[538,73.295]],["parent/1439",[573,3.566]],["name/1440",[539,73.295]],["parent/1440",[573,3.566]],["name/1441",[540,73.295]],["parent/1441",[573,3.566]],["name/1442",[541,73.295]],["parent/1442",[573,3.566]],["name/1443",[542,73.295]],["parent/1443",[573,3.566]],["name/1444",[543,73.295]],["parent/1444",[573,3.566]],["name/1445",[58,56.349]],["parent/1445",[573,3.566]],["name/1446",[445,66.935]],["parent/1446",[573,3.566]],["name/1447",[446,66.935]],["parent/1447",[573,3.566]],["name/1448",[447,66.935]],["parent/1448",[573,3.566]],["name/1449",[448,66.935]],["parent/1449",[573,3.566]],["name/1450",[449,66.935]],["parent/1450",[573,3.566]],["name/1451",[450,66.935]],["parent/1451",[573,3.566]],["name/1452",[451,66.935]],["parent/1452",[573,3.566]],["name/1453",[59,56.349]],["parent/1453",[573,3.566]],["name/1454",[452,66.935]],["parent/1454",[573,3.566]],["name/1455",[453,66.935]],["parent/1455",[573,3.566]],["name/1456",[454,66.935]],["parent/1456",[573,3.566]],["name/1457",[455,66.935]],["parent/1457",[573,3.566]],["name/1458",[456,66.935]],["parent/1458",[573,3.566]],["name/1459",[457,66.935]],["parent/1459",[573,3.566]],["name/1460",[458,66.935]],["parent/1460",[573,3.566]],["name/1461",[76,59.158]],["parent/1461",[573,3.566]],["name/1462",[544,69.618]],["parent/1462",[573,3.566]],["name/1463",[545,69.618]],["parent/1463",[573,3.566]],["name/1464",[546,69.618]],["parent/1464",[573,3.566]],["name/1465",[547,69.618]],["parent/1465",[573,3.566]],["name/1466",[548,69.618]],["parent/1466",[573,3.566]],["name/1467",[549,69.618]],["parent/1467",[573,3.566]],["name/1468",[550,69.618]],["parent/1468",[573,3.566]],["name/1469",[84,69.618]],["parent/1469",[573,3.566]],["name/1470",[587,79.173]],["parent/1470",[573,3.566]],["name/1471",[588,79.173]],["parent/1471",[573,3.566]],["name/1472",[589,79.173]],["parent/1472",[573,3.566]],["name/1473",[590,79.173]],["parent/1473",[573,3.566]],["name/1474",[591,79.173]],["parent/1474",[573,3.566]],["name/1475",[592,79.173]],["parent/1475",[573,3.566]],["name/1476",[593,79.173]],["parent/1476",[573,3.566]],["name/1477",[60,56.349]],["parent/1477",[573,3.566]],["name/1478",[459,66.935]],["parent/1478",[573,3.566]],["name/1479",[460,66.935]],["parent/1479",[573,3.566]],["name/1480",[461,66.935]],["parent/1480",[573,3.566]],["name/1481",[462,66.935]],["parent/1481",[573,3.566]],["name/1482",[463,66.935]],["parent/1482",[573,3.566]],["name/1483",[464,66.935]],["parent/1483",[573,3.566]],["name/1484",[465,66.935]],["parent/1484",[573,3.566]],["name/1485",[85,69.618]],["parent/1485",[573,3.566]],["name/1486",[594,79.173]],["parent/1486",[573,3.566]],["name/1487",[595,79.173]],["parent/1487",[573,3.566]],["name/1488",[596,79.173]],["parent/1488",[573,3.566]],["name/1489",[597,79.173]],["parent/1489",[573,3.566]],["name/1490",[598,79.173]],["parent/1490",[573,3.566]],["name/1491",[599,79.173]],["parent/1491",[573,3.566]],["name/1492",[600,79.173]],["parent/1492",[573,3.566]],["name/1493",[86,69.618]],["parent/1493",[573,3.566]],["name/1494",[601,79.173]],["parent/1494",[573,3.566]],["name/1495",[602,79.173]],["parent/1495",[573,3.566]],["name/1496",[603,79.173]],["parent/1496",[573,3.566]],["name/1497",[604,79.173]],["parent/1497",[573,3.566]],["name/1498",[605,79.173]],["parent/1498",[573,3.566]],["name/1499",[606,79.173]],["parent/1499",[573,3.566]],["name/1500",[607,79.173]],["parent/1500",[573,3.566]],["name/1501",[87,69.618]],["parent/1501",[573,3.566]],["name/1502",[608,79.173]],["parent/1502",[573,3.566]],["name/1503",[609,79.173]],["parent/1503",[573,3.566]],["name/1504",[610,79.173]],["parent/1504",[573,3.566]],["name/1505",[611,79.173]],["parent/1505",[573,3.566]],["name/1506",[612,79.173]],["parent/1506",[573,3.566]],["name/1507",[613,79.173]],["parent/1507",[573,3.566]],["name/1508",[614,79.173]],["parent/1508",[573,3.566]],["name/1509",[77,63.079]],["parent/1509",[573,3.566]],["name/1510",[551,73.295]],["parent/1510",[573,3.566]],["name/1511",[552,73.295]],["parent/1511",[573,3.566]],["name/1512",[553,73.295]],["parent/1512",[573,3.566]],["name/1513",[554,73.295]],["parent/1513",[573,3.566]],["name/1514",[555,73.295]],["parent/1514",[573,3.566]],["name/1515",[556,73.295]],["parent/1515",[573,3.566]],["name/1516",[557,73.295]],["parent/1516",[573,3.566]],["name/1517",[78,63.079]],["parent/1517",[573,3.566]],["name/1518",[558,73.295]],["parent/1518",[573,3.566]],["name/1519",[559,73.295]],["parent/1519",[573,3.566]],["name/1520",[560,73.295]],["parent/1520",[573,3.566]],["name/1521",[561,73.295]],["parent/1521",[573,3.566]],["name/1522",[562,73.295]],["parent/1522",[573,3.566]],["name/1523",[563,73.295]],["parent/1523",[573,3.566]],["name/1524",[564,73.295]],["parent/1524",[573,3.566]],["name/1525",[34,54.159]],["parent/1525",[573,3.566]],["name/1526",[298,64.822]],["parent/1526",[573,3.566]],["name/1527",[299,64.822]],["parent/1527",[573,3.566]],["name/1528",[300,64.822]],["parent/1528",[573,3.566]],["name/1529",[301,64.822]],["parent/1529",[573,3.566]],["name/1530",[302,64.822]],["parent/1530",[573,3.566]],["name/1531",[303,64.822]],["parent/1531",[573,3.566]],["name/1532",[304,64.822]],["parent/1532",[573,3.566]],["name/1533",[42,59.158]],["parent/1533",[573,3.566]],["name/1534",[361,69.618]],["parent/1534",[573,3.566]],["name/1535",[362,69.618]],["parent/1535",[573,3.566]],["name/1536",[363,69.618]],["parent/1536",[573,3.566]],["name/1537",[364,69.618]],["parent/1537",[573,3.566]],["name/1538",[365,69.618]],["parent/1538",[573,3.566]],["name/1539",[366,69.618]],["parent/1539",[573,3.566]],["name/1540",[367,69.618]],["parent/1540",[573,3.566]],["name/1541",[38,51.573]],["parent/1541",[573,3.566]],["name/1542",[326,62.309]],["parent/1542",[573,3.566]],["name/1543",[327,62.309]],["parent/1543",[573,3.566]],["name/1544",[328,62.309]],["parent/1544",[573,3.566]],["name/1545",[329,62.309]],["parent/1545",[573,3.566]],["name/1546",[330,62.309]],["parent/1546",[573,3.566]],["name/1547",[331,62.309]],["parent/1547",[573,3.566]],["name/1548",[332,62.309]],["parent/1548",[573,3.566]],["name/1549",[88,69.618]],["parent/1549",[573,3.566]],["name/1550",[615,79.173]],["parent/1550",[573,3.566]],["name/1551",[616,79.173]],["parent/1551",[573,3.566]],["name/1552",[617,79.173]],["parent/1552",[573,3.566]],["name/1553",[618,79.173]],["parent/1553",[573,3.566]],["name/1554",[619,79.173]],["parent/1554",[573,3.566]],["name/1555",[620,79.173]],["parent/1555",[573,3.566]],["name/1556",[621,79.173]],["parent/1556",[573,3.566]],["name/1557",[17,52.363]],["parent/1557",[573,3.566]],["name/1558",[186,63.079]],["parent/1558",[573,3.566]],["name/1559",[187,63.079]],["parent/1559",[573,3.566]],["name/1560",[188,63.079]],["parent/1560",[573,3.566]],["name/1561",[189,63.079]],["parent/1561",[573,3.566]],["name/1562",[190,63.079]],["parent/1562",[573,3.566]],["name/1563",[191,63.079]],["parent/1563",[573,3.566]],["name/1564",[192,63.079]],["parent/1564",[573,3.566]],["name/1565",[54,36.379]],["parent/1565",[573,3.566]],["name/1566",[411,73.295]],["parent/1566",[573,3.566]],["name/1567",[412,73.295]],["parent/1567",[573,3.566]],["name/1568",[413,73.295]],["parent/1568",[573,3.566]],["name/1569",[414,73.295]],["parent/1569",[573,3.566]],["name/1570",[415,73.295]],["parent/1570",[573,3.566]],["name/1571",[416,73.295]],["parent/1571",[573,3.566]],["name/1572",[417,73.295]],["parent/1572",[573,3.566]],["name/1573",[4,75.808]],["parent/1573",[9,3.754]],["name/1574",[127,31.117]],["parent/1574",[622,8.41]],["name/1575",[148,51.323]],["parent/1575",[623,5.147]],["name/1576",[55,58.632]],["parent/1576",[623,5.147]],["name/1577",[624,71.289]],["parent/1577",[623,5.147]],["name/1578",[146,68.187]],["parent/1578",[623,5.147]],["name/1579",[625,71.289]],["parent/1579",[623,5.147]],["name/1580",[32,60.928]],["parent/1580",[623,5.147]],["name/1581",[626,79.173]],["parent/1581",[623,5.147]],["name/1582",[47,65.823]],["parent/1582",[623,5.147]],["name/1583",[627,79.173]],["parent/1583",[623,5.147]],["name/1584",[48,65.823]],["parent/1584",[623,5.147]],["name/1585",[628,79.173]],["parent/1585",[623,5.147]],["name/1586",[102,60.302]],["parent/1586",[623,5.147]],["name/1587",[46,68.187]],["parent/1587",[623,5.147]],["name/1588",[629,75.808]],["parent/1588",[623,5.147]],["name/1589",[630,79.173]],["parent/1589",[623,5.147]],["name/1590",[631,68.187]],["parent/1590",[623,5.147]],["name/1591",[632,71.289]],["parent/1591",[623,5.147]],["name/1592",[18,49.942]],["parent/1592",[623,5.147]],["name/1593",[45,68.187]],["parent/1593",[623,5.147]],["name/1594",[565,68.187]],["parent/1594",[623,5.147]],["name/1595",[633,71.289]],["parent/1595",[623,5.147]],["name/1596",[512,68.187]],["parent/1596",[623,5.147]],["name/1597",[634,71.289]],["parent/1597",[623,5.147]],["name/1598",[53,62.309]],["parent/1598",[623,5.147]],["name/1599",[89,63.913]],["parent/1599",[623,5.147]],["name/1600",[392,68.187]],["parent/1600",[623,5.147]],["name/1601",[90,68.187]],["parent/1601",[623,5.147]],["name/1602",[16,55.949]],["parent/1602",[623,5.147]],["name/1603",[635,71.289]],["parent/1603",[623,5.147]],["name/1604",[483,68.187]],["parent/1604",[623,5.147]],["name/1605",[91,62.309]],["parent/1605",[623,5.147]],["name/1606",[167,68.187]],["parent/1606",[623,5.147]],["name/1607",[92,62.309]],["parent/1607",[623,5.147]],["name/1608",[636,68.187]],["parent/1608",[623,5.147]],["name/1609",[93,62.309]],["parent/1609",[623,5.147]],["name/1610",[637,84.281]],["parent/1610",[623,5.147]],["name/1611",[638,84.281]],["parent/1611",[623,5.147]],["name/1612",[639,84.281]],["parent/1612",[623,5.147]],["name/1613",[640,71.289]],["parent/1613",[623,5.147]],["name/1614",[641,79.173]],["parent/1614",[9,3.754]],["name/1615",[127,31.117]],["parent/1615",[642,8.41]],["name/1616",[11,33.551]],["parent/1616",[643,7.901]],["name/1617",[54,36.379]],["parent/1617",[643,7.901]],["name/1618",[644,79.173]],["parent/1618",[9,3.754]],["name/1619",[127,31.117]],["parent/1619",[645,8.41]],["name/1620",[337,39.934]],["parent/1620",[646,6.947]],["name/1621",[339,39.934]],["parent/1621",[646,6.947]],["name/1622",[340,40.174]],["parent/1622",[646,6.947]],["name/1623",[68,40.013]],["parent/1623",[646,6.947]],["name/1624",[341,40.174]],["parent/1624",[646,6.947]],["name/1625",[54,36.379]],["parent/1625",[646,6.947]],["name/1626",[647,79.173]],["parent/1626",[9,3.754]],["name/1627",[127,31.117]],["parent/1627",[648,8.41]],["name/1628",[11,33.551]],["parent/1628",[649,7.901]],["name/1629",[54,36.379]],["parent/1629",[649,7.901]],["name/1630",[650,79.173]],["parent/1630",[9,3.754]],["name/1631",[127,31.117]],["parent/1631",[651,8.41]],["name/1632",[337,39.934]],["parent/1632",[652,6.947]],["name/1633",[339,39.934]],["parent/1633",[652,6.947]],["name/1634",[340,40.174]],["parent/1634",[652,6.947]],["name/1635",[68,40.013]],["parent/1635",[652,6.947]],["name/1636",[341,40.174]],["parent/1636",[652,6.947]],["name/1637",[54,36.379]],["parent/1637",[652,6.947]],["name/1638",[653,84.281]],["parent/1638",[9,3.754]],["name/1639",[127,31.117]],["parent/1639",[654,8.41]],["name/1640",[11,33.551]],["parent/1640",[655,7.901]],["name/1641",[54,36.379]],["parent/1641",[655,7.901]],["name/1642",[656,84.281]],["parent/1642",[9,3.754]],["name/1643",[127,31.117]],["parent/1643",[657,8.41]],["name/1644",[337,39.934]],["parent/1644",[658,6.947]],["name/1645",[339,39.934]],["parent/1645",[658,6.947]],["name/1646",[340,40.174]],["parent/1646",[658,6.947]],["name/1647",[68,40.013]],["parent/1647",[658,6.947]],["name/1648",[341,40.174]],["parent/1648",[658,6.947]],["name/1649",[54,36.379]],["parent/1649",[658,6.947]],["name/1650",[659,84.281]],["parent/1650",[9,3.754]],["name/1651",[127,31.117]],["parent/1651",[660,8.41]],["name/1652",[11,33.551]],["parent/1652",[661,7.901]],["name/1653",[54,36.379]],["parent/1653",[661,7.901]],["name/1654",[662,84.281]],["parent/1654",[9,3.754]],["name/1655",[127,31.117]],["parent/1655",[663,8.41]],["name/1656",[337,39.934]],["parent/1656",[664,6.947]],["name/1657",[339,39.934]],["parent/1657",[664,6.947]],["name/1658",[340,40.174]],["parent/1658",[664,6.947]],["name/1659",[68,40.013]],["parent/1659",[664,6.947]],["name/1660",[341,40.174]],["parent/1660",[664,6.947]],["name/1661",[54,36.379]],["parent/1661",[664,6.947]],["name/1662",[665,84.281]],["parent/1662",[9,3.754]],["name/1663",[127,31.117]],["parent/1663",[666,8.41]],["name/1664",[11,33.551]],["parent/1664",[667,7.901]],["name/1665",[54,36.379]],["parent/1665",[667,7.901]],["name/1666",[668,84.281]],["parent/1666",[9,3.754]],["name/1667",[127,31.117]],["parent/1667",[669,8.41]],["name/1668",[337,39.934]],["parent/1668",[670,6.947]],["name/1669",[339,39.934]],["parent/1669",[670,6.947]],["name/1670",[340,40.174]],["parent/1670",[670,6.947]],["name/1671",[68,40.013]],["parent/1671",[670,6.947]],["name/1672",[341,40.174]],["parent/1672",[670,6.947]],["name/1673",[54,36.379]],["parent/1673",[670,6.947]],["name/1674",[671,79.173]],["parent/1674",[9,3.754]],["name/1675",[127,31.117]],["parent/1675",[672,8.41]],["name/1676",[11,33.551]],["parent/1676",[673,7.901]],["name/1677",[54,36.379]],["parent/1677",[673,7.901]],["name/1678",[674,79.173]],["parent/1678",[9,3.754]],["name/1679",[127,31.117]],["parent/1679",[675,8.41]],["name/1680",[337,39.934]],["parent/1680",[676,6.947]],["name/1681",[339,39.934]],["parent/1681",[676,6.947]],["name/1682",[340,40.174]],["parent/1682",[676,6.947]],["name/1683",[68,40.013]],["parent/1683",[676,6.947]],["name/1684",[341,40.174]],["parent/1684",[676,6.947]],["name/1685",[54,36.379]],["parent/1685",[676,6.947]],["name/1686",[677,84.281]],["parent/1686",[9,3.754]],["name/1687",[127,31.117]],["parent/1687",[678,8.41]],["name/1688",[11,33.551]],["parent/1688",[679,7.901]],["name/1689",[54,36.379]],["parent/1689",[679,7.901]],["name/1690",[680,84.281]],["parent/1690",[9,3.754]],["name/1691",[127,31.117]],["parent/1691",[681,8.41]],["name/1692",[337,39.934]],["parent/1692",[682,6.947]],["name/1693",[339,39.934]],["parent/1693",[682,6.947]],["name/1694",[340,40.174]],["parent/1694",[682,6.947]],["name/1695",[68,40.013]],["parent/1695",[682,6.947]],["name/1696",[341,40.174]],["parent/1696",[682,6.947]],["name/1697",[54,36.379]],["parent/1697",[682,6.947]],["name/1698",[683,79.173]],["parent/1698",[9,3.754]],["name/1699",[127,31.117]],["parent/1699",[684,8.41]],["name/1700",[11,33.551]],["parent/1700",[685,7.901]],["name/1701",[54,36.379]],["parent/1701",[685,7.901]],["name/1702",[686,79.173]],["parent/1702",[9,3.754]],["name/1703",[127,31.117]],["parent/1703",[687,8.41]],["name/1704",[337,39.934]],["parent/1704",[688,6.947]],["name/1705",[339,39.934]],["parent/1705",[688,6.947]],["name/1706",[340,40.174]],["parent/1706",[688,6.947]],["name/1707",[68,40.013]],["parent/1707",[688,6.947]],["name/1708",[341,40.174]],["parent/1708",[688,6.947]],["name/1709",[54,36.379]],["parent/1709",[688,6.947]],["name/1710",[689,79.173]],["parent/1710",[9,3.754]],["name/1711",[127,31.117]],["parent/1711",[690,8.41]],["name/1712",[11,33.551]],["parent/1712",[691,7.901]],["name/1713",[54,36.379]],["parent/1713",[691,7.901]],["name/1714",[692,79.173]],["parent/1714",[9,3.754]],["name/1715",[127,31.117]],["parent/1715",[693,8.41]],["name/1716",[337,39.934]],["parent/1716",[694,6.947]],["name/1717",[339,39.934]],["parent/1717",[694,6.947]],["name/1718",[340,40.174]],["parent/1718",[694,6.947]],["name/1719",[68,40.013]],["parent/1719",[694,6.947]],["name/1720",[341,40.174]],["parent/1720",[694,6.947]],["name/1721",[54,36.379]],["parent/1721",[694,6.947]],["name/1722",[695,79.173]],["parent/1722",[9,3.754]],["name/1723",[127,31.117]],["parent/1723",[696,8.41]],["name/1724",[11,33.551]],["parent/1724",[697,7.901]],["name/1725",[54,36.379]],["parent/1725",[697,7.901]],["name/1726",[698,79.173]],["parent/1726",[9,3.754]],["name/1727",[127,31.117]],["parent/1727",[699,8.41]],["name/1728",[337,39.934]],["parent/1728",[700,6.947]],["name/1729",[339,39.934]],["parent/1729",[700,6.947]],["name/1730",[340,40.174]],["parent/1730",[700,6.947]],["name/1731",[68,40.013]],["parent/1731",[700,6.947]],["name/1732",[341,40.174]],["parent/1732",[700,6.947]],["name/1733",[54,36.379]],["parent/1733",[700,6.947]],["name/1734",[701,79.173]],["parent/1734",[9,3.754]],["name/1735",[127,31.117]],["parent/1735",[702,8.41]],["name/1736",[11,33.551]],["parent/1736",[703,7.901]],["name/1737",[54,36.379]],["parent/1737",[703,7.901]],["name/1738",[704,79.173]],["parent/1738",[9,3.754]],["name/1739",[127,31.117]],["parent/1739",[705,8.41]],["name/1740",[337,39.934]],["parent/1740",[706,6.947]],["name/1741",[339,39.934]],["parent/1741",[706,6.947]],["name/1742",[340,40.174]],["parent/1742",[706,6.947]],["name/1743",[68,40.013]],["parent/1743",[706,6.947]],["name/1744",[341,40.174]],["parent/1744",[706,6.947]],["name/1745",[54,36.379]],["parent/1745",[706,6.947]],["name/1746",[707,79.173]],["parent/1746",[9,3.754]],["name/1747",[127,31.117]],["parent/1747",[708,8.41]],["name/1748",[11,33.551]],["parent/1748",[709,7.901]],["name/1749",[54,36.379]],["parent/1749",[709,7.901]],["name/1750",[710,79.173]],["parent/1750",[9,3.754]],["name/1751",[127,31.117]],["parent/1751",[711,8.41]],["name/1752",[337,39.934]],["parent/1752",[712,6.947]],["name/1753",[339,39.934]],["parent/1753",[712,6.947]],["name/1754",[340,40.174]],["parent/1754",[712,6.947]],["name/1755",[68,40.013]],["parent/1755",[712,6.947]],["name/1756",[341,40.174]],["parent/1756",[712,6.947]],["name/1757",[54,36.379]],["parent/1757",[712,6.947]],["name/1758",[713,79.173]],["parent/1758",[9,3.754]],["name/1759",[127,31.117]],["parent/1759",[714,8.41]],["name/1760",[11,33.551]],["parent/1760",[715,7.901]],["name/1761",[54,36.379]],["parent/1761",[715,7.901]],["name/1762",[716,79.173]],["parent/1762",[9,3.754]],["name/1763",[127,31.117]],["parent/1763",[717,8.41]],["name/1764",[337,39.934]],["parent/1764",[718,6.947]],["name/1765",[339,39.934]],["parent/1765",[718,6.947]],["name/1766",[340,40.174]],["parent/1766",[718,6.947]],["name/1767",[68,40.013]],["parent/1767",[718,6.947]],["name/1768",[341,40.174]],["parent/1768",[718,6.947]],["name/1769",[54,36.379]],["parent/1769",[718,6.947]],["name/1770",[719,79.173]],["parent/1770",[9,3.754]],["name/1771",[127,31.117]],["parent/1771",[720,8.41]],["name/1772",[11,33.551]],["parent/1772",[721,7.901]],["name/1773",[54,36.379]],["parent/1773",[721,7.901]],["name/1774",[722,79.173]],["parent/1774",[9,3.754]],["name/1775",[127,31.117]],["parent/1775",[723,8.41]],["name/1776",[337,39.934]],["parent/1776",[724,6.947]],["name/1777",[339,39.934]],["parent/1777",[724,6.947]],["name/1778",[340,40.174]],["parent/1778",[724,6.947]],["name/1779",[68,40.013]],["parent/1779",[724,6.947]],["name/1780",[341,40.174]],["parent/1780",[724,6.947]],["name/1781",[54,36.379]],["parent/1781",[724,6.947]],["name/1782",[725,79.173]],["parent/1782",[9,3.754]],["name/1783",[127,31.117]],["parent/1783",[726,8.41]],["name/1784",[11,33.551]],["parent/1784",[727,7.901]],["name/1785",[54,36.379]],["parent/1785",[727,7.901]],["name/1786",[728,79.173]],["parent/1786",[9,3.754]],["name/1787",[127,31.117]],["parent/1787",[729,8.41]],["name/1788",[337,39.934]],["parent/1788",[730,6.947]],["name/1789",[339,39.934]],["parent/1789",[730,6.947]],["name/1790",[340,40.174]],["parent/1790",[730,6.947]],["name/1791",[68,40.013]],["parent/1791",[730,6.947]],["name/1792",[341,40.174]],["parent/1792",[730,6.947]],["name/1793",[54,36.379]],["parent/1793",[730,6.947]],["name/1794",[731,79.173]],["parent/1794",[9,3.754]],["name/1795",[127,31.117]],["parent/1795",[732,8.41]],["name/1796",[11,33.551]],["parent/1796",[733,7.901]],["name/1797",[54,36.379]],["parent/1797",[733,7.901]],["name/1798",[734,79.173]],["parent/1798",[9,3.754]],["name/1799",[127,31.117]],["parent/1799",[735,8.41]],["name/1800",[337,39.934]],["parent/1800",[736,6.947]],["name/1801",[339,39.934]],["parent/1801",[736,6.947]],["name/1802",[340,40.174]],["parent/1802",[736,6.947]],["name/1803",[68,40.013]],["parent/1803",[736,6.947]],["name/1804",[341,40.174]],["parent/1804",[736,6.947]],["name/1805",[54,36.379]],["parent/1805",[736,6.947]],["name/1806",[737,79.173]],["parent/1806",[9,3.754]],["name/1807",[127,31.117]],["parent/1807",[738,8.41]],["name/1808",[11,33.551]],["parent/1808",[739,7.901]],["name/1809",[54,36.379]],["parent/1809",[739,7.901]],["name/1810",[740,79.173]],["parent/1810",[9,3.754]],["name/1811",[127,31.117]],["parent/1811",[741,8.41]],["name/1812",[337,39.934]],["parent/1812",[742,6.947]],["name/1813",[339,39.934]],["parent/1813",[742,6.947]],["name/1814",[340,40.174]],["parent/1814",[742,6.947]],["name/1815",[68,40.013]],["parent/1815",[742,6.947]],["name/1816",[341,40.174]],["parent/1816",[742,6.947]],["name/1817",[54,36.379]],["parent/1817",[742,6.947]],["name/1818",[743,84.281]],["parent/1818",[9,3.754]],["name/1819",[127,31.117]],["parent/1819",[744,8.41]],["name/1820",[745,75.808]],["parent/1820",[746,7.314]],["name/1821",[339,39.934]],["parent/1821",[746,7.314]],["name/1822",[337,39.934]],["parent/1822",[746,7.314]],["name/1823",[54,36.379]],["parent/1823",[746,7.314]],["name/1824",[747,84.281]],["parent/1824",[9,3.754]],["name/1825",[127,31.117]],["parent/1825",[748,8.41]],["name/1826",[745,75.808]],["parent/1826",[749,7.314]],["name/1827",[339,39.934]],["parent/1827",[749,7.314]],["name/1828",[337,39.934]],["parent/1828",[749,7.314]],["name/1829",[54,36.379]],["parent/1829",[749,7.314]],["name/1830",[750,84.281]],["parent/1830",[9,3.754]],["name/1831",[127,31.117]],["parent/1831",[751,8.41]],["name/1832",[745,75.808]],["parent/1832",[752,7.314]],["name/1833",[339,39.934]],["parent/1833",[752,7.314]],["name/1834",[337,39.934]],["parent/1834",[752,7.314]],["name/1835",[54,36.379]],["parent/1835",[752,7.314]],["name/1836",[753,79.173]],["parent/1836",[9,3.754]],["name/1837",[127,31.117]],["parent/1837",[754,8.41]],["name/1838",[54,36.379]],["parent/1838",[755,8.41]],["name/1839",[756,79.173]],["parent/1839",[9,3.754]],["name/1840",[127,31.117]],["parent/1840",[757,8.41]],["name/1841",[148,51.323]],["parent/1841",[758,5.225]],["name/1842",[55,58.632]],["parent/1842",[758,5.225]],["name/1843",[624,71.289]],["parent/1843",[758,5.225]],["name/1844",[146,68.187]],["parent/1844",[758,5.225]],["name/1845",[625,71.289]],["parent/1845",[758,5.225]],["name/1846",[32,60.928]],["parent/1846",[758,5.225]],["name/1847",[626,79.173]],["parent/1847",[758,5.225]],["name/1848",[47,65.823]],["parent/1848",[758,5.225]],["name/1849",[627,79.173]],["parent/1849",[758,5.225]],["name/1850",[48,65.823]],["parent/1850",[758,5.225]],["name/1851",[628,79.173]],["parent/1851",[758,5.225]],["name/1852",[102,60.302]],["parent/1852",[758,5.225]],["name/1853",[46,68.187]],["parent/1853",[758,5.225]],["name/1854",[629,75.808]],["parent/1854",[758,5.225]],["name/1855",[630,79.173]],["parent/1855",[758,5.225]],["name/1856",[631,68.187]],["parent/1856",[758,5.225]],["name/1857",[632,71.289]],["parent/1857",[758,5.225]],["name/1858",[18,49.942]],["parent/1858",[758,5.225]],["name/1859",[45,68.187]],["parent/1859",[758,5.225]],["name/1860",[565,68.187]],["parent/1860",[758,5.225]],["name/1861",[633,71.289]],["parent/1861",[758,5.225]],["name/1862",[512,68.187]],["parent/1862",[758,5.225]],["name/1863",[634,71.289]],["parent/1863",[758,5.225]],["name/1864",[53,62.309]],["parent/1864",[758,5.225]],["name/1865",[89,63.913]],["parent/1865",[758,5.225]],["name/1866",[392,68.187]],["parent/1866",[758,5.225]],["name/1867",[90,68.187]],["parent/1867",[758,5.225]],["name/1868",[16,55.949]],["parent/1868",[758,5.225]],["name/1869",[635,71.289]],["parent/1869",[758,5.225]],["name/1870",[483,68.187]],["parent/1870",[758,5.225]],["name/1871",[91,62.309]],["parent/1871",[758,5.225]],["name/1872",[167,68.187]],["parent/1872",[758,5.225]],["name/1873",[92,62.309]],["parent/1873",[758,5.225]],["name/1874",[636,68.187]],["parent/1874",[758,5.225]],["name/1875",[93,62.309]],["parent/1875",[758,5.225]],["name/1876",[640,71.289]],["parent/1876",[758,5.225]],["name/1877",[759,79.173]],["parent/1877",[9,3.754]],["name/1878",[127,31.117]],["parent/1878",[760,8.41]],["name/1879",[11,33.551]],["parent/1879",[761,7.901]],["name/1880",[54,36.379]],["parent/1880",[761,7.901]],["name/1881",[762,79.173]],["parent/1881",[9,3.754]],["name/1882",[127,31.117]],["parent/1882",[763,8.41]],["name/1883",[337,39.934]],["parent/1883",[764,6.947]],["name/1884",[339,39.934]],["parent/1884",[764,6.947]],["name/1885",[340,40.174]],["parent/1885",[764,6.947]],["name/1886",[68,40.013]],["parent/1886",[764,6.947]],["name/1887",[341,40.174]],["parent/1887",[764,6.947]],["name/1888",[54,36.379]],["parent/1888",[764,6.947]],["name/1889",[765,79.173]],["parent/1889",[9,3.754]],["name/1890",[127,31.117]],["parent/1890",[766,8.41]],["name/1891",[11,33.551]],["parent/1891",[767,7.901]],["name/1892",[54,36.379]],["parent/1892",[767,7.901]],["name/1893",[768,79.173]],["parent/1893",[9,3.754]],["name/1894",[127,31.117]],["parent/1894",[769,8.41]],["name/1895",[337,39.934]],["parent/1895",[770,6.947]],["name/1896",[339,39.934]],["parent/1896",[770,6.947]],["name/1897",[340,40.174]],["parent/1897",[770,6.947]],["name/1898",[68,40.013]],["parent/1898",[770,6.947]],["name/1899",[341,40.174]],["parent/1899",[770,6.947]],["name/1900",[54,36.379]],["parent/1900",[770,6.947]],["name/1901",[771,84.281]],["parent/1901",[9,3.754]],["name/1902",[127,31.117]],["parent/1902",[772,8.41]],["name/1903",[11,33.551]],["parent/1903",[773,7.901]],["name/1904",[54,36.379]],["parent/1904",[773,7.901]],["name/1905",[774,84.281]],["parent/1905",[9,3.754]],["name/1906",[127,31.117]],["parent/1906",[775,8.41]],["name/1907",[337,39.934]],["parent/1907",[776,6.947]],["name/1908",[339,39.934]],["parent/1908",[776,6.947]],["name/1909",[340,40.174]],["parent/1909",[776,6.947]],["name/1910",[68,40.013]],["parent/1910",[776,6.947]],["name/1911",[341,40.174]],["parent/1911",[776,6.947]],["name/1912",[54,36.379]],["parent/1912",[776,6.947]],["name/1913",[777,84.281]],["parent/1913",[9,3.754]],["name/1914",[127,31.117]],["parent/1914",[778,8.41]],["name/1915",[11,33.551]],["parent/1915",[779,7.901]],["name/1916",[54,36.379]],["parent/1916",[779,7.901]],["name/1917",[780,84.281]],["parent/1917",[9,3.754]],["name/1918",[127,31.117]],["parent/1918",[781,8.41]],["name/1919",[337,39.934]],["parent/1919",[782,6.947]],["name/1920",[339,39.934]],["parent/1920",[782,6.947]],["name/1921",[340,40.174]],["parent/1921",[782,6.947]],["name/1922",[68,40.013]],["parent/1922",[782,6.947]],["name/1923",[341,40.174]],["parent/1923",[782,6.947]],["name/1924",[54,36.379]],["parent/1924",[782,6.947]],["name/1925",[783,84.281]],["parent/1925",[9,3.754]],["name/1926",[127,31.117]],["parent/1926",[784,8.41]],["name/1927",[11,33.551]],["parent/1927",[785,7.901]],["name/1928",[54,36.379]],["parent/1928",[785,7.901]],["name/1929",[786,84.281]],["parent/1929",[9,3.754]],["name/1930",[127,31.117]],["parent/1930",[787,8.41]],["name/1931",[337,39.934]],["parent/1931",[788,6.947]],["name/1932",[339,39.934]],["parent/1932",[788,6.947]],["name/1933",[340,40.174]],["parent/1933",[788,6.947]],["name/1934",[68,40.013]],["parent/1934",[788,6.947]],["name/1935",[341,40.174]],["parent/1935",[788,6.947]],["name/1936",[54,36.379]],["parent/1936",[788,6.947]],["name/1937",[789,79.173]],["parent/1937",[9,3.754]],["name/1938",[127,31.117]],["parent/1938",[790,8.41]],["name/1939",[11,33.551]],["parent/1939",[791,7.901]],["name/1940",[54,36.379]],["parent/1940",[791,7.901]],["name/1941",[792,79.173]],["parent/1941",[9,3.754]],["name/1942",[127,31.117]],["parent/1942",[793,8.41]],["name/1943",[337,39.934]],["parent/1943",[794,6.947]],["name/1944",[339,39.934]],["parent/1944",[794,6.947]],["name/1945",[340,40.174]],["parent/1945",[794,6.947]],["name/1946",[68,40.013]],["parent/1946",[794,6.947]],["name/1947",[341,40.174]],["parent/1947",[794,6.947]],["name/1948",[54,36.379]],["parent/1948",[794,6.947]],["name/1949",[795,84.281]],["parent/1949",[9,3.754]],["name/1950",[127,31.117]],["parent/1950",[796,8.41]],["name/1951",[11,33.551]],["parent/1951",[797,7.901]],["name/1952",[54,36.379]],["parent/1952",[797,7.901]],["name/1953",[798,84.281]],["parent/1953",[9,3.754]],["name/1954",[127,31.117]],["parent/1954",[799,8.41]],["name/1955",[337,39.934]],["parent/1955",[800,6.947]],["name/1956",[339,39.934]],["parent/1956",[800,6.947]],["name/1957",[340,40.174]],["parent/1957",[800,6.947]],["name/1958",[68,40.013]],["parent/1958",[800,6.947]],["name/1959",[341,40.174]],["parent/1959",[800,6.947]],["name/1960",[54,36.379]],["parent/1960",[800,6.947]],["name/1961",[801,79.173]],["parent/1961",[9,3.754]],["name/1962",[127,31.117]],["parent/1962",[802,8.41]],["name/1963",[11,33.551]],["parent/1963",[803,7.901]],["name/1964",[54,36.379]],["parent/1964",[803,7.901]],["name/1965",[804,79.173]],["parent/1965",[9,3.754]],["name/1966",[127,31.117]],["parent/1966",[805,8.41]],["name/1967",[337,39.934]],["parent/1967",[806,6.947]],["name/1968",[339,39.934]],["parent/1968",[806,6.947]],["name/1969",[340,40.174]],["parent/1969",[806,6.947]],["name/1970",[68,40.013]],["parent/1970",[806,6.947]],["name/1971",[341,40.174]],["parent/1971",[806,6.947]],["name/1972",[54,36.379]],["parent/1972",[806,6.947]],["name/1973",[807,79.173]],["parent/1973",[9,3.754]],["name/1974",[127,31.117]],["parent/1974",[808,8.41]],["name/1975",[11,33.551]],["parent/1975",[809,7.901]],["name/1976",[54,36.379]],["parent/1976",[809,7.901]],["name/1977",[810,79.173]],["parent/1977",[9,3.754]],["name/1978",[127,31.117]],["parent/1978",[811,8.41]],["name/1979",[337,39.934]],["parent/1979",[812,6.947]],["name/1980",[339,39.934]],["parent/1980",[812,6.947]],["name/1981",[340,40.174]],["parent/1981",[812,6.947]],["name/1982",[68,40.013]],["parent/1982",[812,6.947]],["name/1983",[341,40.174]],["parent/1983",[812,6.947]],["name/1984",[54,36.379]],["parent/1984",[812,6.947]],["name/1985",[813,79.173]],["parent/1985",[9,3.754]],["name/1986",[127,31.117]],["parent/1986",[814,8.41]],["name/1987",[11,33.551]],["parent/1987",[815,7.901]],["name/1988",[54,36.379]],["parent/1988",[815,7.901]],["name/1989",[816,79.173]],["parent/1989",[9,3.754]],["name/1990",[127,31.117]],["parent/1990",[817,8.41]],["name/1991",[337,39.934]],["parent/1991",[818,6.947]],["name/1992",[339,39.934]],["parent/1992",[818,6.947]],["name/1993",[340,40.174]],["parent/1993",[818,6.947]],["name/1994",[68,40.013]],["parent/1994",[818,6.947]],["name/1995",[341,40.174]],["parent/1995",[818,6.947]],["name/1996",[54,36.379]],["parent/1996",[818,6.947]],["name/1997",[819,79.173]],["parent/1997",[9,3.754]],["name/1998",[127,31.117]],["parent/1998",[820,8.41]],["name/1999",[11,33.551]],["parent/1999",[821,7.901]],["name/2000",[54,36.379]],["parent/2000",[821,7.901]],["name/2001",[822,79.173]],["parent/2001",[9,3.754]],["name/2002",[127,31.117]],["parent/2002",[823,8.41]],["name/2003",[337,39.934]],["parent/2003",[824,6.947]],["name/2004",[339,39.934]],["parent/2004",[824,6.947]],["name/2005",[340,40.174]],["parent/2005",[824,6.947]],["name/2006",[68,40.013]],["parent/2006",[824,6.947]],["name/2007",[341,40.174]],["parent/2007",[824,6.947]],["name/2008",[54,36.379]],["parent/2008",[824,6.947]],["name/2009",[825,79.173]],["parent/2009",[9,3.754]],["name/2010",[127,31.117]],["parent/2010",[826,8.41]],["name/2011",[11,33.551]],["parent/2011",[827,7.901]],["name/2012",[54,36.379]],["parent/2012",[827,7.901]],["name/2013",[828,79.173]],["parent/2013",[9,3.754]],["name/2014",[127,31.117]],["parent/2014",[829,8.41]],["name/2015",[337,39.934]],["parent/2015",[830,6.947]],["name/2016",[339,39.934]],["parent/2016",[830,6.947]],["name/2017",[340,40.174]],["parent/2017",[830,6.947]],["name/2018",[68,40.013]],["parent/2018",[830,6.947]],["name/2019",[341,40.174]],["parent/2019",[830,6.947]],["name/2020",[54,36.379]],["parent/2020",[830,6.947]],["name/2021",[831,79.173]],["parent/2021",[9,3.754]],["name/2022",[127,31.117]],["parent/2022",[832,8.41]],["name/2023",[11,33.551]],["parent/2023",[833,7.901]],["name/2024",[54,36.379]],["parent/2024",[833,7.901]],["name/2025",[834,79.173]],["parent/2025",[9,3.754]],["name/2026",[127,31.117]],["parent/2026",[835,8.41]],["name/2027",[337,39.934]],["parent/2027",[836,6.947]],["name/2028",[339,39.934]],["parent/2028",[836,6.947]],["name/2029",[340,40.174]],["parent/2029",[836,6.947]],["name/2030",[68,40.013]],["parent/2030",[836,6.947]],["name/2031",[341,40.174]],["parent/2031",[836,6.947]],["name/2032",[54,36.379]],["parent/2032",[836,6.947]],["name/2033",[837,79.173]],["parent/2033",[9,3.754]],["name/2034",[127,31.117]],["parent/2034",[838,8.41]],["name/2035",[11,33.551]],["parent/2035",[839,7.901]],["name/2036",[54,36.379]],["parent/2036",[839,7.901]],["name/2037",[840,79.173]],["parent/2037",[9,3.754]],["name/2038",[127,31.117]],["parent/2038",[841,8.41]],["name/2039",[337,39.934]],["parent/2039",[842,6.947]],["name/2040",[339,39.934]],["parent/2040",[842,6.947]],["name/2041",[340,40.174]],["parent/2041",[842,6.947]],["name/2042",[68,40.013]],["parent/2042",[842,6.947]],["name/2043",[341,40.174]],["parent/2043",[842,6.947]],["name/2044",[54,36.379]],["parent/2044",[842,6.947]],["name/2045",[843,79.173]],["parent/2045",[9,3.754]],["name/2046",[127,31.117]],["parent/2046",[844,8.41]],["name/2047",[11,33.551]],["parent/2047",[845,7.901]],["name/2048",[54,36.379]],["parent/2048",[845,7.901]],["name/2049",[846,79.173]],["parent/2049",[9,3.754]],["name/2050",[127,31.117]],["parent/2050",[847,8.41]],["name/2051",[337,39.934]],["parent/2051",[848,6.947]],["name/2052",[339,39.934]],["parent/2052",[848,6.947]],["name/2053",[340,40.174]],["parent/2053",[848,6.947]],["name/2054",[68,40.013]],["parent/2054",[848,6.947]],["name/2055",[341,40.174]],["parent/2055",[848,6.947]],["name/2056",[54,36.379]],["parent/2056",[848,6.947]],["name/2057",[849,79.173]],["parent/2057",[9,3.754]],["name/2058",[127,31.117]],["parent/2058",[850,8.41]],["name/2059",[11,33.551]],["parent/2059",[851,7.901]],["name/2060",[54,36.379]],["parent/2060",[851,7.901]],["name/2061",[852,79.173]],["parent/2061",[9,3.754]],["name/2062",[127,31.117]],["parent/2062",[853,8.41]],["name/2063",[337,39.934]],["parent/2063",[854,6.947]],["name/2064",[339,39.934]],["parent/2064",[854,6.947]],["name/2065",[340,40.174]],["parent/2065",[854,6.947]],["name/2066",[68,40.013]],["parent/2066",[854,6.947]],["name/2067",[341,40.174]],["parent/2067",[854,6.947]],["name/2068",[54,36.379]],["parent/2068",[854,6.947]],["name/2069",[855,79.173]],["parent/2069",[9,3.754]],["name/2070",[127,31.117]],["parent/2070",[856,8.41]],["name/2071",[11,33.551]],["parent/2071",[857,7.901]],["name/2072",[54,36.379]],["parent/2072",[857,7.901]],["name/2073",[858,79.173]],["parent/2073",[9,3.754]],["name/2074",[127,31.117]],["parent/2074",[859,8.41]],["name/2075",[337,39.934]],["parent/2075",[860,6.947]],["name/2076",[339,39.934]],["parent/2076",[860,6.947]],["name/2077",[340,40.174]],["parent/2077",[860,6.947]],["name/2078",[68,40.013]],["parent/2078",[860,6.947]],["name/2079",[341,40.174]],["parent/2079",[860,6.947]],["name/2080",[54,36.379]],["parent/2080",[860,6.947]],["name/2081",[861,79.173]],["parent/2081",[9,3.754]],["name/2082",[127,31.117]],["parent/2082",[862,8.41]],["name/2083",[54,36.379]],["parent/2083",[863,8.41]],["name/2084",[636,68.187]],["parent/2084",[9,3.754]],["name/2085",[127,31.117]],["parent/2085",[864,8.41]],["name/2086",[148,51.323]],["parent/2086",[865,6.218]],["name/2087",[11,33.551]],["parent/2087",[865,6.218]],["name/2088",[16,55.949]],["parent/2088",[865,6.218]],["name/2089",[17,52.363]],["parent/2089",[865,6.218]],["name/2090",[18,49.942]],["parent/2090",[865,6.218]],["name/2091",[20,59.158]],["parent/2091",[865,6.218]],["name/2092",[96,69.618]],["parent/2092",[865,6.218]],["name/2093",[97,69.618]],["parent/2093",[865,6.218]],["name/2094",[98,69.618]],["parent/2094",[865,6.218]],["name/2095",[99,69.618]],["parent/2095",[865,6.218]],["name/2096",[23,59.158]],["parent/2096",[865,6.218]],["name/2097",[24,59.158]],["parent/2097",[865,6.218]],["name/2098",[25,59.158]],["parent/2098",[865,6.218]],["name/2099",[866,79.173]],["parent/2099",[9,3.754]],["name/2100",[127,31.117]],["parent/2100",[867,8.41]],["name/2101",[11,33.551]],["parent/2101",[868,4.176]],["name/2102",[153,53.524]],["parent/2102",[868,4.176]],["name/2103",[154,53.524]],["parent/2103",[868,4.176]],["name/2104",[155,53.524]],["parent/2104",[868,4.176]],["name/2105",[156,53.524]],["parent/2105",[868,4.176]],["name/2106",[157,53.524]],["parent/2106",[868,4.176]],["name/2107",[158,53.524]],["parent/2107",[868,4.176]],["name/2108",[159,53.524]],["parent/2108",[868,4.176]],["name/2109",[16,55.949]],["parent/2109",[868,4.176]],["name/2110",[173,69.618]],["parent/2110",[868,4.176]],["name/2111",[174,69.618]],["parent/2111",[868,4.176]],["name/2112",[175,69.618]],["parent/2112",[868,4.176]],["name/2113",[176,69.618]],["parent/2113",[868,4.176]],["name/2114",[177,69.618]],["parent/2114",[868,4.176]],["name/2115",[178,69.618]],["parent/2115",[868,4.176]],["name/2116",[179,69.618]],["parent/2116",[868,4.176]],["name/2117",[180,69.618]],["parent/2117",[868,4.176]],["name/2118",[181,69.618]],["parent/2118",[868,4.176]],["name/2119",[182,69.618]],["parent/2119",[868,4.176]],["name/2120",[183,69.618]],["parent/2120",[868,4.176]],["name/2121",[184,69.618]],["parent/2121",[868,4.176]],["name/2122",[185,69.618]],["parent/2122",[868,4.176]],["name/2123",[17,52.363]],["parent/2123",[868,4.176]],["name/2124",[186,63.079]],["parent/2124",[868,4.176]],["name/2125",[187,63.079]],["parent/2125",[868,4.176]],["name/2126",[188,63.079]],["parent/2126",[868,4.176]],["name/2127",[189,63.079]],["parent/2127",[868,4.176]],["name/2128",[190,63.079]],["parent/2128",[868,4.176]],["name/2129",[191,63.079]],["parent/2129",[868,4.176]],["name/2130",[192,63.079]],["parent/2130",[868,4.176]],["name/2131",[18,49.942]],["parent/2131",[868,4.176]],["name/2132",[193,62.309]],["parent/2132",[868,4.176]],["name/2133",[194,62.309]],["parent/2133",[868,4.176]],["name/2134",[195,62.309]],["parent/2134",[868,4.176]],["name/2135",[196,62.309]],["parent/2135",[868,4.176]],["name/2136",[197,62.309]],["parent/2136",[868,4.176]],["name/2137",[198,62.309]],["parent/2137",[868,4.176]],["name/2138",[199,62.309]],["parent/2138",[868,4.176]],["name/2139",[200,62.309]],["parent/2139",[868,4.176]],["name/2140",[201,62.309]],["parent/2140",[868,4.176]],["name/2141",[202,62.309]],["parent/2141",[868,4.176]],["name/2142",[203,62.309]],["parent/2142",[868,4.176]],["name/2143",[204,62.309]],["parent/2143",[868,4.176]],["name/2144",[205,62.309]],["parent/2144",[868,4.176]],["name/2145",[20,59.158]],["parent/2145",[868,4.176]],["name/2146",[213,69.618]],["parent/2146",[868,4.176]],["name/2147",[214,69.618]],["parent/2147",[868,4.176]],["name/2148",[215,69.618]],["parent/2148",[868,4.176]],["name/2149",[216,69.618]],["parent/2149",[868,4.176]],["name/2150",[217,69.618]],["parent/2150",[868,4.176]],["name/2151",[96,69.618]],["parent/2151",[868,4.176]],["name/2152",[869,79.173]],["parent/2152",[868,4.176]],["name/2153",[870,79.173]],["parent/2153",[868,4.176]],["name/2154",[871,79.173]],["parent/2154",[868,4.176]],["name/2155",[872,79.173]],["parent/2155",[868,4.176]],["name/2156",[873,79.173]],["parent/2156",[868,4.176]],["name/2157",[874,79.173]],["parent/2157",[868,4.176]],["name/2158",[875,79.173]],["parent/2158",[868,4.176]],["name/2159",[97,69.618]],["parent/2159",[868,4.176]],["name/2160",[876,79.173]],["parent/2160",[868,4.176]],["name/2161",[877,79.173]],["parent/2161",[868,4.176]],["name/2162",[878,79.173]],["parent/2162",[868,4.176]],["name/2163",[879,79.173]],["parent/2163",[868,4.176]],["name/2164",[880,79.173]],["parent/2164",[868,4.176]],["name/2165",[881,79.173]],["parent/2165",[868,4.176]],["name/2166",[882,79.173]],["parent/2166",[868,4.176]],["name/2167",[98,69.618]],["parent/2167",[868,4.176]],["name/2168",[883,79.173]],["parent/2168",[868,4.176]],["name/2169",[884,79.173]],["parent/2169",[868,4.176]],["name/2170",[885,79.173]],["parent/2170",[868,4.176]],["name/2171",[886,79.173]],["parent/2171",[868,4.176]],["name/2172",[887,79.173]],["parent/2172",[868,4.176]],["name/2173",[888,79.173]],["parent/2173",[868,4.176]],["name/2174",[889,79.173]],["parent/2174",[868,4.176]],["name/2175",[99,69.618]],["parent/2175",[868,4.176]],["name/2176",[890,79.173]],["parent/2176",[868,4.176]],["name/2177",[891,79.173]],["parent/2177",[868,4.176]],["name/2178",[892,79.173]],["parent/2178",[868,4.176]],["name/2179",[893,79.173]],["parent/2179",[868,4.176]],["name/2180",[894,79.173]],["parent/2180",[868,4.176]],["name/2181",[895,79.173]],["parent/2181",[868,4.176]],["name/2182",[896,79.173]],["parent/2182",[868,4.176]],["name/2183",[23,59.158]],["parent/2183",[868,4.176]],["name/2184",[232,69.618]],["parent/2184",[868,4.176]],["name/2185",[233,69.618]],["parent/2185",[868,4.176]],["name/2186",[234,69.618]],["parent/2186",[868,4.176]],["name/2187",[235,69.618]],["parent/2187",[868,4.176]],["name/2188",[236,69.618]],["parent/2188",[868,4.176]],["name/2189",[24,59.158]],["parent/2189",[868,4.176]],["name/2190",[237,69.618]],["parent/2190",[868,4.176]],["name/2191",[238,69.618]],["parent/2191",[868,4.176]],["name/2192",[239,69.618]],["parent/2192",[868,4.176]],["name/2193",[240,69.618]],["parent/2193",[868,4.176]],["name/2194",[241,69.618]],["parent/2194",[868,4.176]],["name/2195",[242,69.618]],["parent/2195",[868,4.176]],["name/2196",[243,69.618]],["parent/2196",[868,4.176]],["name/2197",[25,59.158]],["parent/2197",[868,4.176]],["name/2198",[244,69.618]],["parent/2198",[868,4.176]],["name/2199",[245,69.618]],["parent/2199",[868,4.176]],["name/2200",[246,69.618]],["parent/2200",[868,4.176]],["name/2201",[247,69.618]],["parent/2201",[868,4.176]],["name/2202",[248,69.618]],["parent/2202",[868,4.176]],["name/2203",[249,69.618]],["parent/2203",[868,4.176]],["name/2204",[250,69.618]],["parent/2204",[868,4.176]],["name/2205",[102,60.302]],["parent/2205",[9,3.754]],["name/2206",[127,31.117]],["parent/2206",[897,8.41]],["name/2207",[148,51.323]],["parent/2207",[898,5.851]],["name/2208",[11,33.551]],["parent/2208",[898,5.851]],["name/2209",[32,60.928]],["parent/2209",[898,5.851]],["name/2210",[109,69.618]],["parent/2210",[898,5.851]],["name/2211",[83,65.823]],["parent/2211",[898,5.851]],["name/2212",[110,69.618]],["parent/2212",[898,5.851]],["name/2213",[76,59.158]],["parent/2213",[898,5.851]],["name/2214",[103,65.823]],["parent/2214",[898,5.851]],["name/2215",[34,54.159]],["parent/2215",[898,5.851]],["name/2216",[42,59.158]],["parent/2216",[898,5.851]],["name/2217",[38,51.573]],["parent/2217",[898,5.851]],["name/2218",[19,57.656]],["parent/2218",[898,5.851]],["name/2219",[111,69.618]],["parent/2219",[898,5.851]],["name/2220",[47,65.823]],["parent/2220",[898,5.851]],["name/2221",[48,65.823]],["parent/2221",[898,5.851]],["name/2222",[112,79.173]],["parent/2222",[898,5.851]],["name/2223",[113,79.173]],["parent/2223",[898,5.851]],["name/2224",[114,79.173]],["parent/2224",[898,5.851]],["name/2225",[115,79.173]],["parent/2225",[898,5.851]],["name/2226",[899,84.281]],["parent/2226",[9,3.754]],["name/2227",[127,31.117]],["parent/2227",[900,8.41]],["name/2228",[337,39.934]],["parent/2228",[901,7.114]],["name/2229",[339,39.934]],["parent/2229",[901,7.114]],["name/2230",[340,40.174]],["parent/2230",[901,7.114]],["name/2231",[68,40.013]],["parent/2231",[901,7.114]],["name/2232",[341,40.174]],["parent/2232",[901,7.114]],["name/2233",[902,84.281]],["parent/2233",[9,3.754]],["name/2234",[127,31.117]],["parent/2234",[903,8.41]],["name/2235",[337,39.934]],["parent/2235",[904,7.114]],["name/2236",[339,39.934]],["parent/2236",[904,7.114]],["name/2237",[340,40.174]],["parent/2237",[904,7.114]],["name/2238",[68,40.013]],["parent/2238",[904,7.114]],["name/2239",[341,40.174]],["parent/2239",[904,7.114]],["name/2240",[905,84.281]],["parent/2240",[9,3.754]],["name/2241",[127,31.117]],["parent/2241",[906,8.41]],["name/2242",[337,39.934]],["parent/2242",[907,7.114]],["name/2243",[339,39.934]],["parent/2243",[907,7.114]],["name/2244",[340,40.174]],["parent/2244",[907,7.114]],["name/2245",[68,40.013]],["parent/2245",[907,7.114]],["name/2246",[341,40.174]],["parent/2246",[907,7.114]],["name/2247",[908,84.281]],["parent/2247",[9,3.754]],["name/2248",[127,31.117]],["parent/2248",[909,8.41]],["name/2249",[337,39.934]],["parent/2249",[910,7.114]],["name/2250",[339,39.934]],["parent/2250",[910,7.114]],["name/2251",[340,40.174]],["parent/2251",[910,7.114]],["name/2252",[68,40.013]],["parent/2252",[910,7.114]],["name/2253",[341,40.174]],["parent/2253",[910,7.114]],["name/2254",[911,84.281]],["parent/2254",[9,3.754]],["name/2255",[127,31.117]],["parent/2255",[912,8.41]],["name/2256",[337,39.934]],["parent/2256",[913,7.114]],["name/2257",[339,39.934]],["parent/2257",[913,7.114]],["name/2258",[340,40.174]],["parent/2258",[913,7.114]],["name/2259",[68,40.013]],["parent/2259",[913,7.114]],["name/2260",[341,40.174]],["parent/2260",[913,7.114]],["name/2261",[914,84.281]],["parent/2261",[9,3.754]],["name/2262",[127,31.117]],["parent/2262",[915,8.41]],["name/2263",[337,39.934]],["parent/2263",[916,7.114]],["name/2264",[339,39.934]],["parent/2264",[916,7.114]],["name/2265",[340,40.174]],["parent/2265",[916,7.114]],["name/2266",[68,40.013]],["parent/2266",[916,7.114]],["name/2267",[341,40.174]],["parent/2267",[916,7.114]],["name/2268",[631,68.187]],["parent/2268",[9,3.754]],["name/2269",[127,31.117]],["parent/2269",[917,8.41]],["name/2270",[148,51.323]],["parent/2270",[918,6.295]],["name/2271",[11,33.551]],["parent/2271",[918,6.295]],["name/2272",[31,55.194]],["parent/2272",[918,6.295]],["name/2273",[102,60.302]],["parent/2273",[918,6.295]],["name/2274",[103,65.823]],["parent/2274",[918,6.295]],["name/2275",[33,60.928]],["parent/2275",[918,6.295]],["name/2276",[34,54.159]],["parent/2276",[918,6.295]],["name/2277",[38,51.573]],["parent/2277",[918,6.295]],["name/2278",[19,57.656]],["parent/2278",[918,6.295]],["name/2279",[36,60.928]],["parent/2279",[918,6.295]],["name/2280",[37,60.928]],["parent/2280",[918,6.295]],["name/2281",[104,65.823]],["parent/2281",[918,6.295]],["name/2282",[919,79.173]],["parent/2282",[9,3.754]],["name/2283",[127,31.117]],["parent/2283",[920,8.41]],["name/2284",[11,33.551]],["parent/2284",[921,4.276]],["name/2285",[153,53.524]],["parent/2285",[921,4.276]],["name/2286",[154,53.524]],["parent/2286",[921,4.276]],["name/2287",[155,53.524]],["parent/2287",[921,4.276]],["name/2288",[156,53.524]],["parent/2288",[921,4.276]],["name/2289",[157,53.524]],["parent/2289",[921,4.276]],["name/2290",[158,53.524]],["parent/2290",[921,4.276]],["name/2291",[159,53.524]],["parent/2291",[921,4.276]],["name/2292",[31,55.194]],["parent/2292",[921,4.276]],["name/2293",[271,65.823]],["parent/2293",[921,4.276]],["name/2294",[272,65.823]],["parent/2294",[921,4.276]],["name/2295",[273,65.823]],["parent/2295",[921,4.276]],["name/2296",[274,65.823]],["parent/2296",[921,4.276]],["name/2297",[275,65.823]],["parent/2297",[921,4.276]],["name/2298",[276,65.823]],["parent/2298",[921,4.276]],["name/2299",[277,65.823]],["parent/2299",[921,4.276]],["name/2300",[102,60.302]],["parent/2300",[921,4.276]],["name/2301",[922,75.808]],["parent/2301",[921,4.276]],["name/2302",[923,75.808]],["parent/2302",[921,4.276]],["name/2303",[924,75.808]],["parent/2303",[921,4.276]],["name/2304",[925,75.808]],["parent/2304",[921,4.276]],["name/2305",[926,75.808]],["parent/2305",[921,4.276]],["name/2306",[927,75.808]],["parent/2306",[921,4.276]],["name/2307",[928,75.808]],["parent/2307",[921,4.276]],["name/2308",[929,75.808]],["parent/2308",[921,4.276]],["name/2309",[930,75.808]],["parent/2309",[921,4.276]],["name/2310",[931,75.808]],["parent/2310",[921,4.276]],["name/2311",[932,75.808]],["parent/2311",[921,4.276]],["name/2312",[933,75.808]],["parent/2312",[921,4.276]],["name/2313",[934,75.808]],["parent/2313",[921,4.276]],["name/2314",[103,65.823]],["parent/2314",[921,4.276]],["name/2315",[935,75.808]],["parent/2315",[921,4.276]],["name/2316",[936,75.808]],["parent/2316",[921,4.276]],["name/2317",[937,75.808]],["parent/2317",[921,4.276]],["name/2318",[938,75.808]],["parent/2318",[921,4.276]],["name/2319",[939,75.808]],["parent/2319",[921,4.276]],["name/2320",[940,75.808]],["parent/2320",[921,4.276]],["name/2321",[941,75.808]],["parent/2321",[921,4.276]],["name/2322",[33,60.928]],["parent/2322",[921,4.276]],["name/2323",[291,71.289]],["parent/2323",[921,4.276]],["name/2324",[292,71.289]],["parent/2324",[921,4.276]],["name/2325",[293,71.289]],["parent/2325",[921,4.276]],["name/2326",[294,71.289]],["parent/2326",[921,4.276]],["name/2327",[295,71.289]],["parent/2327",[921,4.276]],["name/2328",[296,71.289]],["parent/2328",[921,4.276]],["name/2329",[297,71.289]],["parent/2329",[921,4.276]],["name/2330",[34,54.159]],["parent/2330",[921,4.276]],["name/2331",[298,64.822]],["parent/2331",[921,4.276]],["name/2332",[299,64.822]],["parent/2332",[921,4.276]],["name/2333",[300,64.822]],["parent/2333",[921,4.276]],["name/2334",[301,64.822]],["parent/2334",[921,4.276]],["name/2335",[302,64.822]],["parent/2335",[921,4.276]],["name/2336",[303,64.822]],["parent/2336",[921,4.276]],["name/2337",[304,64.822]],["parent/2337",[921,4.276]],["name/2338",[38,51.573]],["parent/2338",[921,4.276]],["name/2339",[326,62.309]],["parent/2339",[921,4.276]],["name/2340",[327,62.309]],["parent/2340",[921,4.276]],["name/2341",[328,62.309]],["parent/2341",[921,4.276]],["name/2342",[329,62.309]],["parent/2342",[921,4.276]],["name/2343",[330,62.309]],["parent/2343",[921,4.276]],["name/2344",[331,62.309]],["parent/2344",[921,4.276]],["name/2345",[332,62.309]],["parent/2345",[921,4.276]],["name/2346",[19,57.656]],["parent/2346",[921,4.276]],["name/2347",[206,68.187]],["parent/2347",[921,4.276]],["name/2348",[207,68.187]],["parent/2348",[921,4.276]],["name/2349",[208,68.187]],["parent/2349",[921,4.276]],["name/2350",[209,68.187]],["parent/2350",[921,4.276]],["name/2351",[210,68.187]],["parent/2351",[921,4.276]],["name/2352",[211,68.187]],["parent/2352",[921,4.276]],["name/2353",[212,68.187]],["parent/2353",[921,4.276]],["name/2354",[36,60.928]],["parent/2354",[921,4.276]],["name/2355",[312,71.289]],["parent/2355",[921,4.276]],["name/2356",[313,71.289]],["parent/2356",[921,4.276]],["name/2357",[314,71.289]],["parent/2357",[921,4.276]],["name/2358",[315,71.289]],["parent/2358",[921,4.276]],["name/2359",[316,71.289]],["parent/2359",[921,4.276]],["name/2360",[317,71.289]],["parent/2360",[921,4.276]],["name/2361",[318,71.289]],["parent/2361",[921,4.276]],["name/2362",[37,60.928]],["parent/2362",[921,4.276]],["name/2363",[319,71.289]],["parent/2363",[921,4.276]],["name/2364",[320,71.289]],["parent/2364",[921,4.276]],["name/2365",[321,71.289]],["parent/2365",[921,4.276]],["name/2366",[322,71.289]],["parent/2366",[921,4.276]],["name/2367",[323,71.289]],["parent/2367",[921,4.276]],["name/2368",[324,71.289]],["parent/2368",[921,4.276]],["name/2369",[325,71.289]],["parent/2369",[921,4.276]],["name/2370",[104,65.823]],["parent/2370",[921,4.276]],["name/2371",[942,75.808]],["parent/2371",[921,4.276]],["name/2372",[943,75.808]],["parent/2372",[921,4.276]],["name/2373",[944,75.808]],["parent/2373",[921,4.276]],["name/2374",[945,75.808]],["parent/2374",[921,4.276]],["name/2375",[946,75.808]],["parent/2375",[921,4.276]],["name/2376",[947,75.808]],["parent/2376",[921,4.276]],["name/2377",[948,75.808]],["parent/2377",[921,4.276]],["name/2378",[629,75.808]],["parent/2378",[9,3.754]],["name/2379",[127,31.117]],["parent/2379",[949,8.41]],["name/2380",[148,51.323]],["parent/2380",[950,6.295]],["name/2381",[11,33.551]],["parent/2381",[950,6.295]],["name/2382",[31,55.194]],["parent/2382",[950,6.295]],["name/2383",[102,60.302]],["parent/2383",[950,6.295]],["name/2384",[103,65.823]],["parent/2384",[950,6.295]],["name/2385",[33,60.928]],["parent/2385",[950,6.295]],["name/2386",[34,54.159]],["parent/2386",[950,6.295]],["name/2387",[38,51.573]],["parent/2387",[950,6.295]],["name/2388",[19,57.656]],["parent/2388",[950,6.295]],["name/2389",[36,60.928]],["parent/2389",[950,6.295]],["name/2390",[37,60.928]],["parent/2390",[950,6.295]],["name/2391",[104,65.823]],["parent/2391",[950,6.295]],["name/2392",[951,84.281]],["parent/2392",[9,3.754]],["name/2393",[127,31.117]],["parent/2393",[952,8.41]],["name/2394",[11,33.551]],["parent/2394",[953,4.276]],["name/2395",[153,53.524]],["parent/2395",[953,4.276]],["name/2396",[154,53.524]],["parent/2396",[953,4.276]],["name/2397",[155,53.524]],["parent/2397",[953,4.276]],["name/2398",[156,53.524]],["parent/2398",[953,4.276]],["name/2399",[157,53.524]],["parent/2399",[953,4.276]],["name/2400",[158,53.524]],["parent/2400",[953,4.276]],["name/2401",[159,53.524]],["parent/2401",[953,4.276]],["name/2402",[31,55.194]],["parent/2402",[953,4.276]],["name/2403",[271,65.823]],["parent/2403",[953,4.276]],["name/2404",[272,65.823]],["parent/2404",[953,4.276]],["name/2405",[273,65.823]],["parent/2405",[953,4.276]],["name/2406",[274,65.823]],["parent/2406",[953,4.276]],["name/2407",[275,65.823]],["parent/2407",[953,4.276]],["name/2408",[276,65.823]],["parent/2408",[953,4.276]],["name/2409",[277,65.823]],["parent/2409",[953,4.276]],["name/2410",[102,60.302]],["parent/2410",[953,4.276]],["name/2411",[922,75.808]],["parent/2411",[953,4.276]],["name/2412",[923,75.808]],["parent/2412",[953,4.276]],["name/2413",[924,75.808]],["parent/2413",[953,4.276]],["name/2414",[925,75.808]],["parent/2414",[953,4.276]],["name/2415",[926,75.808]],["parent/2415",[953,4.276]],["name/2416",[927,75.808]],["parent/2416",[953,4.276]],["name/2417",[928,75.808]],["parent/2417",[953,4.276]],["name/2418",[929,75.808]],["parent/2418",[953,4.276]],["name/2419",[930,75.808]],["parent/2419",[953,4.276]],["name/2420",[931,75.808]],["parent/2420",[953,4.276]],["name/2421",[932,75.808]],["parent/2421",[953,4.276]],["name/2422",[933,75.808]],["parent/2422",[953,4.276]],["name/2423",[934,75.808]],["parent/2423",[953,4.276]],["name/2424",[103,65.823]],["parent/2424",[953,4.276]],["name/2425",[935,75.808]],["parent/2425",[953,4.276]],["name/2426",[936,75.808]],["parent/2426",[953,4.276]],["name/2427",[937,75.808]],["parent/2427",[953,4.276]],["name/2428",[938,75.808]],["parent/2428",[953,4.276]],["name/2429",[939,75.808]],["parent/2429",[953,4.276]],["name/2430",[940,75.808]],["parent/2430",[953,4.276]],["name/2431",[941,75.808]],["parent/2431",[953,4.276]],["name/2432",[33,60.928]],["parent/2432",[953,4.276]],["name/2433",[291,71.289]],["parent/2433",[953,4.276]],["name/2434",[292,71.289]],["parent/2434",[953,4.276]],["name/2435",[293,71.289]],["parent/2435",[953,4.276]],["name/2436",[294,71.289]],["parent/2436",[953,4.276]],["name/2437",[295,71.289]],["parent/2437",[953,4.276]],["name/2438",[296,71.289]],["parent/2438",[953,4.276]],["name/2439",[297,71.289]],["parent/2439",[953,4.276]],["name/2440",[34,54.159]],["parent/2440",[953,4.276]],["name/2441",[298,64.822]],["parent/2441",[953,4.276]],["name/2442",[299,64.822]],["parent/2442",[953,4.276]],["name/2443",[300,64.822]],["parent/2443",[953,4.276]],["name/2444",[301,64.822]],["parent/2444",[953,4.276]],["name/2445",[302,64.822]],["parent/2445",[953,4.276]],["name/2446",[303,64.822]],["parent/2446",[953,4.276]],["name/2447",[304,64.822]],["parent/2447",[953,4.276]],["name/2448",[38,51.573]],["parent/2448",[953,4.276]],["name/2449",[326,62.309]],["parent/2449",[953,4.276]],["name/2450",[327,62.309]],["parent/2450",[953,4.276]],["name/2451",[328,62.309]],["parent/2451",[953,4.276]],["name/2452",[329,62.309]],["parent/2452",[953,4.276]],["name/2453",[330,62.309]],["parent/2453",[953,4.276]],["name/2454",[331,62.309]],["parent/2454",[953,4.276]],["name/2455",[332,62.309]],["parent/2455",[953,4.276]],["name/2456",[19,57.656]],["parent/2456",[953,4.276]],["name/2457",[206,68.187]],["parent/2457",[953,4.276]],["name/2458",[207,68.187]],["parent/2458",[953,4.276]],["name/2459",[208,68.187]],["parent/2459",[953,4.276]],["name/2460",[209,68.187]],["parent/2460",[953,4.276]],["name/2461",[210,68.187]],["parent/2461",[953,4.276]],["name/2462",[211,68.187]],["parent/2462",[953,4.276]],["name/2463",[212,68.187]],["parent/2463",[953,4.276]],["name/2464",[36,60.928]],["parent/2464",[953,4.276]],["name/2465",[312,71.289]],["parent/2465",[953,4.276]],["name/2466",[313,71.289]],["parent/2466",[953,4.276]],["name/2467",[314,71.289]],["parent/2467",[953,4.276]],["name/2468",[315,71.289]],["parent/2468",[953,4.276]],["name/2469",[316,71.289]],["parent/2469",[953,4.276]],["name/2470",[317,71.289]],["parent/2470",[953,4.276]],["name/2471",[318,71.289]],["parent/2471",[953,4.276]],["name/2472",[37,60.928]],["parent/2472",[953,4.276]],["name/2473",[319,71.289]],["parent/2473",[953,4.276]],["name/2474",[320,71.289]],["parent/2474",[953,4.276]],["name/2475",[321,71.289]],["parent/2475",[953,4.276]],["name/2476",[322,71.289]],["parent/2476",[953,4.276]],["name/2477",[323,71.289]],["parent/2477",[953,4.276]],["name/2478",[324,71.289]],["parent/2478",[953,4.276]],["name/2479",[325,71.289]],["parent/2479",[953,4.276]],["name/2480",[104,65.823]],["parent/2480",[953,4.276]],["name/2481",[942,75.808]],["parent/2481",[953,4.276]],["name/2482",[943,75.808]],["parent/2482",[953,4.276]],["name/2483",[944,75.808]],["parent/2483",[953,4.276]],["name/2484",[945,75.808]],["parent/2484",[953,4.276]],["name/2485",[946,75.808]],["parent/2485",[953,4.276]],["name/2486",[947,75.808]],["parent/2486",[953,4.276]],["name/2487",[948,75.808]],["parent/2487",[953,4.276]],["name/2488",[954,79.173]],["parent/2488",[9,3.754]],["name/2489",[127,31.117]],["parent/2489",[955,8.41]],["name/2490",[11,33.551]],["parent/2490",[956,4.084]],["name/2491",[153,53.524]],["parent/2491",[956,4.084]],["name/2492",[154,53.524]],["parent/2492",[956,4.084]],["name/2493",[155,53.524]],["parent/2493",[956,4.084]],["name/2494",[156,53.524]],["parent/2494",[956,4.084]],["name/2495",[157,53.524]],["parent/2495",[956,4.084]],["name/2496",[158,53.524]],["parent/2496",[956,4.084]],["name/2497",[159,53.524]],["parent/2497",[956,4.084]],["name/2498",[32,60.928]],["parent/2498",[956,4.084]],["name/2499",[278,73.295]],["parent/2499",[956,4.084]],["name/2500",[279,73.295]],["parent/2500",[956,4.084]],["name/2501",[280,73.295]],["parent/2501",[956,4.084]],["name/2502",[281,73.295]],["parent/2502",[956,4.084]],["name/2503",[282,73.295]],["parent/2503",[956,4.084]],["name/2504",[283,73.295]],["parent/2504",[956,4.084]],["name/2505",[284,73.295]],["parent/2505",[956,4.084]],["name/2506",[285,73.295]],["parent/2506",[956,4.084]],["name/2507",[286,73.295]],["parent/2507",[956,4.084]],["name/2508",[287,73.295]],["parent/2508",[956,4.084]],["name/2509",[288,73.295]],["parent/2509",[956,4.084]],["name/2510",[289,73.295]],["parent/2510",[956,4.084]],["name/2511",[290,73.295]],["parent/2511",[956,4.084]],["name/2512",[109,69.618]],["parent/2512",[956,4.084]],["name/2513",[957,79.173]],["parent/2513",[956,4.084]],["name/2514",[958,79.173]],["parent/2514",[956,4.084]],["name/2515",[959,79.173]],["parent/2515",[956,4.084]],["name/2516",[960,79.173]],["parent/2516",[956,4.084]],["name/2517",[961,79.173]],["parent/2517",[956,4.084]],["name/2518",[962,79.173]],["parent/2518",[956,4.084]],["name/2519",[963,79.173]],["parent/2519",[956,4.084]],["name/2520",[964,79.173]],["parent/2520",[956,4.084]],["name/2521",[965,79.173]],["parent/2521",[956,4.084]],["name/2522",[966,79.173]],["parent/2522",[956,4.084]],["name/2523",[967,79.173]],["parent/2523",[956,4.084]],["name/2524",[968,79.173]],["parent/2524",[956,4.084]],["name/2525",[969,79.173]],["parent/2525",[956,4.084]],["name/2526",[83,65.823]],["parent/2526",[956,4.084]],["name/2527",[574,75.808]],["parent/2527",[956,4.084]],["name/2528",[575,75.808]],["parent/2528",[956,4.084]],["name/2529",[576,75.808]],["parent/2529",[956,4.084]],["name/2530",[577,75.808]],["parent/2530",[956,4.084]],["name/2531",[578,75.808]],["parent/2531",[956,4.084]],["name/2532",[579,75.808]],["parent/2532",[956,4.084]],["name/2533",[580,75.808]],["parent/2533",[956,4.084]],["name/2534",[581,75.808]],["parent/2534",[956,4.084]],["name/2535",[582,75.808]],["parent/2535",[956,4.084]],["name/2536",[583,75.808]],["parent/2536",[956,4.084]],["name/2537",[584,75.808]],["parent/2537",[956,4.084]],["name/2538",[585,75.808]],["parent/2538",[956,4.084]],["name/2539",[586,75.808]],["parent/2539",[956,4.084]],["name/2540",[110,69.618]],["parent/2540",[956,4.084]],["name/2541",[970,79.173]],["parent/2541",[956,4.084]],["name/2542",[971,79.173]],["parent/2542",[956,4.084]],["name/2543",[972,79.173]],["parent/2543",[956,4.084]],["name/2544",[973,79.173]],["parent/2544",[956,4.084]],["name/2545",[974,79.173]],["parent/2545",[956,4.084]],["name/2546",[975,79.173]],["parent/2546",[956,4.084]],["name/2547",[976,79.173]],["parent/2547",[956,4.084]],["name/2548",[76,59.158]],["parent/2548",[956,4.084]],["name/2549",[544,69.618]],["parent/2549",[956,4.084]],["name/2550",[545,69.618]],["parent/2550",[956,4.084]],["name/2551",[546,69.618]],["parent/2551",[956,4.084]],["name/2552",[547,69.618]],["parent/2552",[956,4.084]],["name/2553",[548,69.618]],["parent/2553",[956,4.084]],["name/2554",[549,69.618]],["parent/2554",[956,4.084]],["name/2555",[550,69.618]],["parent/2555",[956,4.084]],["name/2556",[103,65.823]],["parent/2556",[956,4.084]],["name/2557",[935,75.808]],["parent/2557",[956,4.084]],["name/2558",[936,75.808]],["parent/2558",[956,4.084]],["name/2559",[937,75.808]],["parent/2559",[956,4.084]],["name/2560",[938,75.808]],["parent/2560",[956,4.084]],["name/2561",[939,75.808]],["parent/2561",[956,4.084]],["name/2562",[940,75.808]],["parent/2562",[956,4.084]],["name/2563",[941,75.808]],["parent/2563",[956,4.084]],["name/2564",[34,54.159]],["parent/2564",[956,4.084]],["name/2565",[298,64.822]],["parent/2565",[956,4.084]],["name/2566",[299,64.822]],["parent/2566",[956,4.084]],["name/2567",[300,64.822]],["parent/2567",[956,4.084]],["name/2568",[301,64.822]],["parent/2568",[956,4.084]],["name/2569",[302,64.822]],["parent/2569",[956,4.084]],["name/2570",[303,64.822]],["parent/2570",[956,4.084]],["name/2571",[304,64.822]],["parent/2571",[956,4.084]],["name/2572",[42,59.158]],["parent/2572",[956,4.084]],["name/2573",[361,69.618]],["parent/2573",[956,4.084]],["name/2574",[362,69.618]],["parent/2574",[956,4.084]],["name/2575",[363,69.618]],["parent/2575",[956,4.084]],["name/2576",[364,69.618]],["parent/2576",[956,4.084]],["name/2577",[365,69.618]],["parent/2577",[956,4.084]],["name/2578",[366,69.618]],["parent/2578",[956,4.084]],["name/2579",[367,69.618]],["parent/2579",[956,4.084]],["name/2580",[38,51.573]],["parent/2580",[956,4.084]],["name/2581",[326,62.309]],["parent/2581",[956,4.084]],["name/2582",[327,62.309]],["parent/2582",[956,4.084]],["name/2583",[328,62.309]],["parent/2583",[956,4.084]],["name/2584",[329,62.309]],["parent/2584",[956,4.084]],["name/2585",[330,62.309]],["parent/2585",[956,4.084]],["name/2586",[331,62.309]],["parent/2586",[956,4.084]],["name/2587",[332,62.309]],["parent/2587",[956,4.084]],["name/2588",[19,57.656]],["parent/2588",[956,4.084]],["name/2589",[206,68.187]],["parent/2589",[956,4.084]],["name/2590",[207,68.187]],["parent/2590",[956,4.084]],["name/2591",[208,68.187]],["parent/2591",[956,4.084]],["name/2592",[209,68.187]],["parent/2592",[956,4.084]],["name/2593",[210,68.187]],["parent/2593",[956,4.084]],["name/2594",[211,68.187]],["parent/2594",[956,4.084]],["name/2595",[212,68.187]],["parent/2595",[956,4.084]],["name/2596",[111,69.618]],["parent/2596",[956,4.084]],["name/2597",[977,79.173]],["parent/2597",[956,4.084]],["name/2598",[978,79.173]],["parent/2598",[956,4.084]],["name/2599",[979,79.173]],["parent/2599",[956,4.084]],["name/2600",[980,79.173]],["parent/2600",[956,4.084]],["name/2601",[981,79.173]],["parent/2601",[956,4.084]],["name/2602",[982,79.173]],["parent/2602",[956,4.084]],["name/2603",[983,79.173]],["parent/2603",[956,4.084]],["name/2604",[16,55.949]],["parent/2604",[9,3.754]],["name/2605",[127,31.117]],["parent/2605",[984,8.41]],["name/2606",[148,51.323]],["parent/2606",[985,6.804]],["name/2607",[11,33.551]],["parent/2607",[985,6.804]],["name/2608",[118,69.618]],["parent/2608",[985,6.804]],["name/2609",[17,52.363]],["parent/2609",[985,6.804]],["name/2610",[91,62.309]],["parent/2610",[985,6.804]],["name/2611",[92,62.309]],["parent/2611",[985,6.804]],["name/2612",[93,62.309]],["parent/2612",[985,6.804]],["name/2613",[986,79.173]],["parent/2613",[9,3.754]],["name/2614",[127,31.117]],["parent/2614",[987,8.41]],["name/2615",[337,39.934]],["parent/2615",[988,7.114]],["name/2616",[339,39.934]],["parent/2616",[988,7.114]],["name/2617",[340,40.174]],["parent/2617",[988,7.114]],["name/2618",[68,40.013]],["parent/2618",[988,7.114]],["name/2619",[341,40.174]],["parent/2619",[988,7.114]],["name/2620",[989,79.173]],["parent/2620",[9,3.754]],["name/2621",[127,31.117]],["parent/2621",[990,8.41]],["name/2622",[337,39.934]],["parent/2622",[991,7.114]],["name/2623",[339,39.934]],["parent/2623",[991,7.114]],["name/2624",[340,40.174]],["parent/2624",[991,7.114]],["name/2625",[68,40.013]],["parent/2625",[991,7.114]],["name/2626",[341,40.174]],["parent/2626",[991,7.114]],["name/2627",[992,79.173]],["parent/2627",[9,3.754]],["name/2628",[127,31.117]],["parent/2628",[993,8.41]],["name/2629",[337,39.934]],["parent/2629",[994,7.114]],["name/2630",[339,39.934]],["parent/2630",[994,7.114]],["name/2631",[340,40.174]],["parent/2631",[994,7.114]],["name/2632",[68,40.013]],["parent/2632",[994,7.114]],["name/2633",[341,40.174]],["parent/2633",[994,7.114]],["name/2634",[995,79.173]],["parent/2634",[9,3.754]],["name/2635",[127,31.117]],["parent/2635",[996,8.41]],["name/2636",[11,33.551]],["parent/2636",[997,5.225]],["name/2637",[153,53.524]],["parent/2637",[997,5.225]],["name/2638",[154,53.524]],["parent/2638",[997,5.225]],["name/2639",[155,53.524]],["parent/2639",[997,5.225]],["name/2640",[156,53.524]],["parent/2640",[997,5.225]],["name/2641",[157,53.524]],["parent/2641",[997,5.225]],["name/2642",[158,53.524]],["parent/2642",[997,5.225]],["name/2643",[159,53.524]],["parent/2643",[997,5.225]],["name/2644",[118,69.618]],["parent/2644",[997,5.225]],["name/2645",[998,79.173]],["parent/2645",[997,5.225]],["name/2646",[999,79.173]],["parent/2646",[997,5.225]],["name/2647",[1000,79.173]],["parent/2647",[997,5.225]],["name/2648",[1001,79.173]],["parent/2648",[997,5.225]],["name/2649",[1002,79.173]],["parent/2649",[997,5.225]],["name/2650",[1003,79.173]],["parent/2650",[997,5.225]],["name/2651",[1004,79.173]],["parent/2651",[997,5.225]],["name/2652",[17,52.363]],["parent/2652",[997,5.225]],["name/2653",[186,63.079]],["parent/2653",[997,5.225]],["name/2654",[187,63.079]],["parent/2654",[997,5.225]],["name/2655",[188,63.079]],["parent/2655",[997,5.225]],["name/2656",[189,63.079]],["parent/2656",[997,5.225]],["name/2657",[190,63.079]],["parent/2657",[997,5.225]],["name/2658",[191,63.079]],["parent/2658",[997,5.225]],["name/2659",[192,63.079]],["parent/2659",[997,5.225]],["name/2660",[91,62.309]],["parent/2660",[997,5.225]],["name/2661",[1005,79.173]],["parent/2661",[997,5.225]],["name/2662",[1006,79.173]],["parent/2662",[997,5.225]],["name/2663",[1007,79.173]],["parent/2663",[997,5.225]],["name/2664",[92,62.309]],["parent/2664",[997,5.225]],["name/2665",[1008,79.173]],["parent/2665",[997,5.225]],["name/2666",[1009,79.173]],["parent/2666",[997,5.225]],["name/2667",[1010,79.173]],["parent/2667",[997,5.225]],["name/2668",[93,62.309]],["parent/2668",[997,5.225]],["name/2669",[1011,79.173]],["parent/2669",[997,5.225]],["name/2670",[1012,79.173]],["parent/2670",[997,5.225]],["name/2671",[1013,79.173]],["parent/2671",[997,5.225]],["name/2672",[55,58.632]],["parent/2672",[9,3.754]],["name/2673",[127,31.117]],["parent/2673",[1014,8.41]],["name/2674",[148,51.323]],["parent/2674",[1015,7.565]],["name/2675",[11,33.551]],["parent/2675",[1015,7.565]],["name/2676",[89,63.913]],["parent/2676",[1015,7.565]],["name/2677",[1016,79.173]],["parent/2677",[9,3.754]],["name/2678",[127,31.117]],["parent/2678",[1017,8.41]],["name/2679",[337,39.934]],["parent/2679",[1018,7.114]],["name/2680",[339,39.934]],["parent/2680",[1018,7.114]],["name/2681",[340,40.174]],["parent/2681",[1018,7.114]],["name/2682",[68,40.013]],["parent/2682",[1018,7.114]],["name/2683",[341,40.174]],["parent/2683",[1018,7.114]],["name/2684",[1019,79.173]],["parent/2684",[9,3.754]],["name/2685",[127,31.117]],["parent/2685",[1020,8.41]],["name/2686",[11,33.551]],["parent/2686",[1021,6.68]],["name/2687",[153,53.524]],["parent/2687",[1021,6.68]],["name/2688",[154,53.524]],["parent/2688",[1021,6.68]],["name/2689",[155,53.524]],["parent/2689",[1021,6.68]],["name/2690",[156,53.524]],["parent/2690",[1021,6.68]],["name/2691",[157,53.524]],["parent/2691",[1021,6.68]],["name/2692",[158,53.524]],["parent/2692",[1021,6.68]],["name/2693",[159,53.524]],["parent/2693",[1021,6.68]],["name/2694",[1022,79.173]],["parent/2694",[9,3.754]],["name/2695",[127,31.117]],["parent/2695",[1023,8.41]],["name/2696",[148,51.323]],["parent/2696",[1024,7.565]],["name/2697",[143,73.295]],["parent/2697",[1024,7.565]],["name/2698",[145,73.295]],["parent/2698",[1024,7.565]],["name/2699",[1025,79.173]],["parent/2699",[9,3.754]],["name/2700",[127,31.117]],["parent/2700",[1026,8.41]],["name/2701",[148,51.323]],["parent/2701",[1027,7.314]],["name/2702",[54,36.379]],["parent/2702",[1027,7.314]],["name/2703",[1028,79.173]],["parent/2703",[1027,7.314]],["name/2704",[1029,79.173]],["parent/2704",[1027,7.314]],["name/2705",[1030,75.808]],["parent/2705",[]],["name/2706",[640,71.289]],["parent/2706",[1030,7.565]],["name/2707",[1031,53.836]],["parent/2707",[1032,5.253]],["name/2708",[1033,46.984]],["parent/2708",[1034,7.901]],["name/2709",[54,36.379]],["parent/2709",[1034,7.901]],["name/2710",[8,46.826]],["parent/2710",[1032,5.253]],["name/2711",[1035,53.836]],["parent/2711",[1032,5.253]],["name/2712",[1036,53.836]],["parent/2712",[1032,5.253]],["name/2713",[1037,53.836]],["parent/2713",[1032,5.253]],["name/2714",[11,33.551]],["parent/2714",[1032,5.253]],["name/2715",[1038,53.836]],["parent/2715",[1032,5.253]],["name/2716",[1039,53.836]],["parent/2716",[1032,5.253]],["name/2717",[1040,53.836]],["parent/2717",[1032,5.253]],["name/2718",[1041,53.836]],["parent/2718",[1032,5.253]],["name/2719",[1033,46.984]],["parent/2719",[1032,5.253]],["name/2720",[1042,53.836]],["parent/2720",[1032,5.253]],["name/2721",[1043,53.836]],["parent/2721",[1032,5.253]],["name/2722",[1044,46.984]],["parent/2722",[1032,5.253]],["name/2723",[1045,53.836]],["parent/2723",[1032,5.253]],["name/2724",[1046,53.836]],["parent/2724",[1032,5.253]],["name/2725",[1047,53.836]],["parent/2725",[1032,5.253]],["name/2726",[1048,53.836]],["parent/2726",[1032,5.253]],["name/2727",[127,31.117]],["parent/2727",[1049,8.41]],["name/2728",[8,46.826]],["parent/2728",[1032,5.253]],["name/2729",[11,33.551]],["parent/2729",[1032,5.253]],["name/2730",[1050,53.836]],["parent/2730",[1032,5.253]],["name/2731",[127,31.117]],["parent/2731",[1051,8.41]],["name/2732",[1052,53.836]],["parent/2732",[1032,5.253]],["name/2733",[1053,53.836]],["parent/2733",[1032,5.253]],["name/2734",[1054,53.836]],["parent/2734",[1032,5.253]],["name/2735",[1055,53.836]],["parent/2735",[1032,5.253]],["name/2736",[1056,53.836]],["parent/2736",[1032,5.253]],["name/2737",[1057,53.836]],["parent/2737",[1032,5.253]],["name/2738",[1058,53.836]],["parent/2738",[1032,5.253]],["name/2739",[1059,53.836]],["parent/2739",[1032,5.253]],["name/2740",[1044,46.984]],["parent/2740",[1032,5.253]],["name/2741",[1060,53.836]],["parent/2741",[1032,5.253]],["name/2742",[1061,53.836]],["parent/2742",[1032,5.253]],["name/2743",[1062,53.836]],["parent/2743",[1032,5.253]],["name/2744",[1063,53.836]],["parent/2744",[1032,5.253]],["name/2745",[1064,53.836]],["parent/2745",[1032,5.253]],["name/2746",[1065,84.281]],["parent/2746",[1030,7.565]],["name/2747",[1066,75.808]],["parent/2747",[]],["name/2748",[146,68.187]],["parent/2748",[1066,7.565]],["name/2749",[1031,53.836]],["parent/2749",[1067,5.253]],["name/2750",[1033,46.984]],["parent/2750",[1068,7.565]],["name/2751",[11,33.551]],["parent/2751",[1068,7.565]],["name/2752",[54,36.379]],["parent/2752",[1068,7.565]],["name/2753",[8,46.826]],["parent/2753",[1067,5.253]],["name/2754",[1035,53.836]],["parent/2754",[1067,5.253]],["name/2755",[1036,53.836]],["parent/2755",[1067,5.253]],["name/2756",[1037,53.836]],["parent/2756",[1067,5.253]],["name/2757",[11,33.551]],["parent/2757",[1067,5.253]],["name/2758",[1038,53.836]],["parent/2758",[1067,5.253]],["name/2759",[1039,53.836]],["parent/2759",[1067,5.253]],["name/2760",[1040,53.836]],["parent/2760",[1067,5.253]],["name/2761",[1041,53.836]],["parent/2761",[1067,5.253]],["name/2762",[1033,46.984]],["parent/2762",[1067,5.253]],["name/2763",[1042,53.836]],["parent/2763",[1067,5.253]],["name/2764",[1043,53.836]],["parent/2764",[1067,5.253]],["name/2765",[1044,46.984]],["parent/2765",[1067,5.253]],["name/2766",[1045,53.836]],["parent/2766",[1067,5.253]],["name/2767",[1046,53.836]],["parent/2767",[1067,5.253]],["name/2768",[1047,53.836]],["parent/2768",[1067,5.253]],["name/2769",[1048,53.836]],["parent/2769",[1067,5.253]],["name/2770",[127,31.117]],["parent/2770",[1069,8.41]],["name/2771",[8,46.826]],["parent/2771",[1067,5.253]],["name/2772",[11,33.551]],["parent/2772",[1067,5.253]],["name/2773",[1050,53.836]],["parent/2773",[1067,5.253]],["name/2774",[127,31.117]],["parent/2774",[1070,8.41]],["name/2775",[1052,53.836]],["parent/2775",[1067,5.253]],["name/2776",[1053,53.836]],["parent/2776",[1067,5.253]],["name/2777",[1054,53.836]],["parent/2777",[1067,5.253]],["name/2778",[1055,53.836]],["parent/2778",[1067,5.253]],["name/2779",[1056,53.836]],["parent/2779",[1067,5.253]],["name/2780",[1057,53.836]],["parent/2780",[1067,5.253]],["name/2781",[1058,53.836]],["parent/2781",[1067,5.253]],["name/2782",[1059,53.836]],["parent/2782",[1067,5.253]],["name/2783",[1044,46.984]],["parent/2783",[1067,5.253]],["name/2784",[1060,53.836]],["parent/2784",[1067,5.253]],["name/2785",[1061,53.836]],["parent/2785",[1067,5.253]],["name/2786",[1062,53.836]],["parent/2786",[1067,5.253]],["name/2787",[1063,53.836]],["parent/2787",[1067,5.253]],["name/2788",[1064,53.836]],["parent/2788",[1067,5.253]],["name/2789",[1071,84.281]],["parent/2789",[1066,7.565]],["name/2790",[1072,75.808]],["parent/2790",[]],["name/2791",[625,71.289]],["parent/2791",[1072,7.565]],["name/2792",[1031,53.836]],["parent/2792",[1073,5.253]],["name/2793",[1033,46.984]],["parent/2793",[1074,6.804]],["name/2794",[337,39.934]],["parent/2794",[1074,6.804]],["name/2795",[339,39.934]],["parent/2795",[1074,6.804]],["name/2796",[340,40.174]],["parent/2796",[1074,6.804]],["name/2797",[68,40.013]],["parent/2797",[1074,6.804]],["name/2798",[341,40.174]],["parent/2798",[1074,6.804]],["name/2799",[54,36.379]],["parent/2799",[1074,6.804]],["name/2800",[8,46.826]],["parent/2800",[1073,5.253]],["name/2801",[1035,53.836]],["parent/2801",[1073,5.253]],["name/2802",[1036,53.836]],["parent/2802",[1073,5.253]],["name/2803",[1037,53.836]],["parent/2803",[1073,5.253]],["name/2804",[11,33.551]],["parent/2804",[1073,5.253]],["name/2805",[1038,53.836]],["parent/2805",[1073,5.253]],["name/2806",[1039,53.836]],["parent/2806",[1073,5.253]],["name/2807",[1040,53.836]],["parent/2807",[1073,5.253]],["name/2808",[1041,53.836]],["parent/2808",[1073,5.253]],["name/2809",[1033,46.984]],["parent/2809",[1073,5.253]],["name/2810",[1042,53.836]],["parent/2810",[1073,5.253]],["name/2811",[1043,53.836]],["parent/2811",[1073,5.253]],["name/2812",[1044,46.984]],["parent/2812",[1073,5.253]],["name/2813",[1045,53.836]],["parent/2813",[1073,5.253]],["name/2814",[1046,53.836]],["parent/2814",[1073,5.253]],["name/2815",[1047,53.836]],["parent/2815",[1073,5.253]],["name/2816",[1048,53.836]],["parent/2816",[1073,5.253]],["name/2817",[127,31.117]],["parent/2817",[1075,8.41]],["name/2818",[8,46.826]],["parent/2818",[1073,5.253]],["name/2819",[11,33.551]],["parent/2819",[1073,5.253]],["name/2820",[1050,53.836]],["parent/2820",[1073,5.253]],["name/2821",[127,31.117]],["parent/2821",[1076,8.41]],["name/2822",[1052,53.836]],["parent/2822",[1073,5.253]],["name/2823",[1053,53.836]],["parent/2823",[1073,5.253]],["name/2824",[1054,53.836]],["parent/2824",[1073,5.253]],["name/2825",[1055,53.836]],["parent/2825",[1073,5.253]],["name/2826",[1056,53.836]],["parent/2826",[1073,5.253]],["name/2827",[1057,53.836]],["parent/2827",[1073,5.253]],["name/2828",[1058,53.836]],["parent/2828",[1073,5.253]],["name/2829",[1059,53.836]],["parent/2829",[1073,5.253]],["name/2830",[1044,46.984]],["parent/2830",[1073,5.253]],["name/2831",[1060,53.836]],["parent/2831",[1073,5.253]],["name/2832",[1061,53.836]],["parent/2832",[1073,5.253]],["name/2833",[1062,53.836]],["parent/2833",[1073,5.253]],["name/2834",[1063,53.836]],["parent/2834",[1073,5.253]],["name/2835",[1064,53.836]],["parent/2835",[1073,5.253]],["name/2836",[1077,84.281]],["parent/2836",[1072,7.565]],["name/2837",[1078,75.808]],["parent/2837",[]],["name/2838",[167,68.187]],["parent/2838",[1078,7.565]],["name/2839",[1031,53.836]],["parent/2839",[1079,5.253]],["name/2840",[1033,46.984]],["parent/2840",[1080,5.472]],["name/2841",[337,39.934]],["parent/2841",[1080,5.472]],["name/2842",[339,39.934]],["parent/2842",[1080,5.472]],["name/2843",[340,40.174]],["parent/2843",[1080,5.472]],["name/2844",[68,40.013]],["parent/2844",[1080,5.472]],["name/2845",[341,40.174]],["parent/2845",[1080,5.472]],["name/2846",[1081,54.837]],["parent/2846",[1080,5.472]],["name/2847",[1082,54.837]],["parent/2847",[1080,5.472]],["name/2848",[1083,54.837]],["parent/2848",[1080,5.472]],["name/2849",[1084,54.837]],["parent/2849",[1080,5.472]],["name/2850",[1085,54.837]],["parent/2850",[1080,5.472]],["name/2851",[1086,55.949]],["parent/2851",[1080,5.472]],["name/2852",[1087,55.949]],["parent/2852",[1080,5.472]],["name/2853",[1088,55.949]],["parent/2853",[1080,5.472]],["name/2854",[1089,55.949]],["parent/2854",[1080,5.472]],["name/2855",[1090,55.949]],["parent/2855",[1080,5.472]],["name/2856",[1091,59.158]],["parent/2856",[1080,5.472]],["name/2857",[1092,59.158]],["parent/2857",[1080,5.472]],["name/2858",[1093,59.158]],["parent/2858",[1080,5.472]],["name/2859",[1094,59.158]],["parent/2859",[1080,5.472]],["name/2860",[1095,59.158]],["parent/2860",[1080,5.472]],["name/2861",[1096,61.595]],["parent/2861",[1080,5.472]],["name/2862",[1097,61.595]],["parent/2862",[1080,5.472]],["name/2863",[1098,61.595]],["parent/2863",[1080,5.472]],["name/2864",[1099,61.595]],["parent/2864",[1080,5.472]],["name/2865",[1100,61.595]],["parent/2865",[1080,5.472]],["name/2866",[11,33.551]],["parent/2866",[1080,5.472]],["name/2867",[54,36.379]],["parent/2867",[1080,5.472]],["name/2868",[8,46.826]],["parent/2868",[1079,5.253]],["name/2869",[1035,53.836]],["parent/2869",[1079,5.253]],["name/2870",[1036,53.836]],["parent/2870",[1079,5.253]],["name/2871",[1037,53.836]],["parent/2871",[1079,5.253]],["name/2872",[11,33.551]],["parent/2872",[1079,5.253]],["name/2873",[1038,53.836]],["parent/2873",[1079,5.253]],["name/2874",[1039,53.836]],["parent/2874",[1079,5.253]],["name/2875",[1040,53.836]],["parent/2875",[1079,5.253]],["name/2876",[1041,53.836]],["parent/2876",[1079,5.253]],["name/2877",[1033,46.984]],["parent/2877",[1079,5.253]],["name/2878",[1042,53.836]],["parent/2878",[1079,5.253]],["name/2879",[1043,53.836]],["parent/2879",[1079,5.253]],["name/2880",[1044,46.984]],["parent/2880",[1079,5.253]],["name/2881",[1045,53.836]],["parent/2881",[1079,5.253]],["name/2882",[1046,53.836]],["parent/2882",[1079,5.253]],["name/2883",[1047,53.836]],["parent/2883",[1079,5.253]],["name/2884",[1048,53.836]],["parent/2884",[1079,5.253]],["name/2885",[127,31.117]],["parent/2885",[1101,8.41]],["name/2886",[8,46.826]],["parent/2886",[1079,5.253]],["name/2887",[11,33.551]],["parent/2887",[1079,5.253]],["name/2888",[1050,53.836]],["parent/2888",[1079,5.253]],["name/2889",[127,31.117]],["parent/2889",[1102,8.41]],["name/2890",[1052,53.836]],["parent/2890",[1079,5.253]],["name/2891",[1053,53.836]],["parent/2891",[1079,5.253]],["name/2892",[1054,53.836]],["parent/2892",[1079,5.253]],["name/2893",[1055,53.836]],["parent/2893",[1079,5.253]],["name/2894",[1056,53.836]],["parent/2894",[1079,5.253]],["name/2895",[1057,53.836]],["parent/2895",[1079,5.253]],["name/2896",[1058,53.836]],["parent/2896",[1079,5.253]],["name/2897",[1059,53.836]],["parent/2897",[1079,5.253]],["name/2898",[1044,46.984]],["parent/2898",[1079,5.253]],["name/2899",[1060,53.836]],["parent/2899",[1079,5.253]],["name/2900",[1061,53.836]],["parent/2900",[1079,5.253]],["name/2901",[1062,53.836]],["parent/2901",[1079,5.253]],["name/2902",[1063,53.836]],["parent/2902",[1079,5.253]],["name/2903",[1064,53.836]],["parent/2903",[1079,5.253]],["name/2904",[1103,84.281]],["parent/2904",[1078,7.565]],["name/2905",[1104,75.808]],["parent/2905",[]],["name/2906",[92,62.309]],["parent/2906",[1104,7.565]],["name/2907",[1031,53.836]],["parent/2907",[1105,5.253]],["name/2908",[1033,46.984]],["parent/2908",[1106,5.341]],["name/2909",[337,39.934]],["parent/2909",[1106,5.341]],["name/2910",[339,39.934]],["parent/2910",[1106,5.341]],["name/2911",[340,40.174]],["parent/2911",[1106,5.341]],["name/2912",[68,40.013]],["parent/2912",[1106,5.341]],["name/2913",[341,40.174]],["parent/2913",[1106,5.341]],["name/2914",[1081,54.837]],["parent/2914",[1106,5.341]],["name/2915",[1082,54.837]],["parent/2915",[1106,5.341]],["name/2916",[1083,54.837]],["parent/2916",[1106,5.341]],["name/2917",[1084,54.837]],["parent/2917",[1106,5.341]],["name/2918",[1085,54.837]],["parent/2918",[1106,5.341]],["name/2919",[1086,55.949]],["parent/2919",[1106,5.341]],["name/2920",[1087,55.949]],["parent/2920",[1106,5.341]],["name/2921",[1088,55.949]],["parent/2921",[1106,5.341]],["name/2922",[1089,55.949]],["parent/2922",[1106,5.341]],["name/2923",[1090,55.949]],["parent/2923",[1106,5.341]],["name/2924",[1091,59.158]],["parent/2924",[1106,5.341]],["name/2925",[1092,59.158]],["parent/2925",[1106,5.341]],["name/2926",[1093,59.158]],["parent/2926",[1106,5.341]],["name/2927",[1094,59.158]],["parent/2927",[1106,5.341]],["name/2928",[1095,59.158]],["parent/2928",[1106,5.341]],["name/2929",[1096,61.595]],["parent/2929",[1106,5.341]],["name/2930",[1097,61.595]],["parent/2930",[1106,5.341]],["name/2931",[1098,61.595]],["parent/2931",[1106,5.341]],["name/2932",[1099,61.595]],["parent/2932",[1106,5.341]],["name/2933",[1100,61.595]],["parent/2933",[1106,5.341]],["name/2934",[1107,69.618]],["parent/2934",[1106,5.341]],["name/2935",[1108,69.618]],["parent/2935",[1106,5.341]],["name/2936",[1109,69.618]],["parent/2936",[1106,5.341]],["name/2937",[1110,69.618]],["parent/2937",[1106,5.341]],["name/2938",[1111,69.618]],["parent/2938",[1106,5.341]],["name/2939",[54,36.379]],["parent/2939",[1106,5.341]],["name/2940",[8,46.826]],["parent/2940",[1105,5.253]],["name/2941",[1035,53.836]],["parent/2941",[1105,5.253]],["name/2942",[1036,53.836]],["parent/2942",[1105,5.253]],["name/2943",[1037,53.836]],["parent/2943",[1105,5.253]],["name/2944",[11,33.551]],["parent/2944",[1105,5.253]],["name/2945",[1038,53.836]],["parent/2945",[1105,5.253]],["name/2946",[1039,53.836]],["parent/2946",[1105,5.253]],["name/2947",[1040,53.836]],["parent/2947",[1105,5.253]],["name/2948",[1041,53.836]],["parent/2948",[1105,5.253]],["name/2949",[1033,46.984]],["parent/2949",[1105,5.253]],["name/2950",[1042,53.836]],["parent/2950",[1105,5.253]],["name/2951",[1043,53.836]],["parent/2951",[1105,5.253]],["name/2952",[1044,46.984]],["parent/2952",[1105,5.253]],["name/2953",[1045,53.836]],["parent/2953",[1105,5.253]],["name/2954",[1046,53.836]],["parent/2954",[1105,5.253]],["name/2955",[1047,53.836]],["parent/2955",[1105,5.253]],["name/2956",[1048,53.836]],["parent/2956",[1105,5.253]],["name/2957",[127,31.117]],["parent/2957",[1112,8.41]],["name/2958",[8,46.826]],["parent/2958",[1105,5.253]],["name/2959",[11,33.551]],["parent/2959",[1105,5.253]],["name/2960",[1050,53.836]],["parent/2960",[1105,5.253]],["name/2961",[127,31.117]],["parent/2961",[1113,8.41]],["name/2962",[1052,53.836]],["parent/2962",[1105,5.253]],["name/2963",[1053,53.836]],["parent/2963",[1105,5.253]],["name/2964",[1054,53.836]],["parent/2964",[1105,5.253]],["name/2965",[1055,53.836]],["parent/2965",[1105,5.253]],["name/2966",[1056,53.836]],["parent/2966",[1105,5.253]],["name/2967",[1057,53.836]],["parent/2967",[1105,5.253]],["name/2968",[1058,53.836]],["parent/2968",[1105,5.253]],["name/2969",[1059,53.836]],["parent/2969",[1105,5.253]],["name/2970",[1044,46.984]],["parent/2970",[1105,5.253]],["name/2971",[1060,53.836]],["parent/2971",[1105,5.253]],["name/2972",[1061,53.836]],["parent/2972",[1105,5.253]],["name/2973",[1062,53.836]],["parent/2973",[1105,5.253]],["name/2974",[1063,53.836]],["parent/2974",[1105,5.253]],["name/2975",[1064,53.836]],["parent/2975",[1105,5.253]],["name/2976",[1114,84.281]],["parent/2976",[1104,7.565]],["name/2977",[1115,75.808]],["parent/2977",[]],["name/2978",[53,62.309]],["parent/2978",[1115,7.565]],["name/2979",[1031,53.836]],["parent/2979",[1116,5.253]],["name/2980",[1033,46.984]],["parent/2980",[1117,5.903]],["name/2981",[337,39.934]],["parent/2981",[1117,5.903]],["name/2982",[339,39.934]],["parent/2982",[1117,5.903]],["name/2983",[340,40.174]],["parent/2983",[1117,5.903]],["name/2984",[68,40.013]],["parent/2984",[1117,5.903]],["name/2985",[341,40.174]],["parent/2985",[1117,5.903]],["name/2986",[1081,54.837]],["parent/2986",[1117,5.903]],["name/2987",[1082,54.837]],["parent/2987",[1117,5.903]],["name/2988",[1083,54.837]],["parent/2988",[1117,5.903]],["name/2989",[1084,54.837]],["parent/2989",[1117,5.903]],["name/2990",[1085,54.837]],["parent/2990",[1117,5.903]],["name/2991",[1086,55.949]],["parent/2991",[1117,5.903]],["name/2992",[1087,55.949]],["parent/2992",[1117,5.903]],["name/2993",[1088,55.949]],["parent/2993",[1117,5.903]],["name/2994",[1089,55.949]],["parent/2994",[1117,5.903]],["name/2995",[1090,55.949]],["parent/2995",[1117,5.903]],["name/2996",[11,33.551]],["parent/2996",[1117,5.903]],["name/2997",[54,36.379]],["parent/2997",[1117,5.903]],["name/2998",[8,46.826]],["parent/2998",[1116,5.253]],["name/2999",[1035,53.836]],["parent/2999",[1116,5.253]],["name/3000",[1036,53.836]],["parent/3000",[1116,5.253]],["name/3001",[1037,53.836]],["parent/3001",[1116,5.253]],["name/3002",[11,33.551]],["parent/3002",[1116,5.253]],["name/3003",[1038,53.836]],["parent/3003",[1116,5.253]],["name/3004",[1039,53.836]],["parent/3004",[1116,5.253]],["name/3005",[1040,53.836]],["parent/3005",[1116,5.253]],["name/3006",[1041,53.836]],["parent/3006",[1116,5.253]],["name/3007",[1033,46.984]],["parent/3007",[1116,5.253]],["name/3008",[1042,53.836]],["parent/3008",[1116,5.253]],["name/3009",[1043,53.836]],["parent/3009",[1116,5.253]],["name/3010",[1044,46.984]],["parent/3010",[1116,5.253]],["name/3011",[1045,53.836]],["parent/3011",[1116,5.253]],["name/3012",[1046,53.836]],["parent/3012",[1116,5.253]],["name/3013",[1047,53.836]],["parent/3013",[1116,5.253]],["name/3014",[1048,53.836]],["parent/3014",[1116,5.253]],["name/3015",[127,31.117]],["parent/3015",[1118,8.41]],["name/3016",[8,46.826]],["parent/3016",[1116,5.253]],["name/3017",[11,33.551]],["parent/3017",[1116,5.253]],["name/3018",[1050,53.836]],["parent/3018",[1116,5.253]],["name/3019",[127,31.117]],["parent/3019",[1119,8.41]],["name/3020",[1052,53.836]],["parent/3020",[1116,5.253]],["name/3021",[1053,53.836]],["parent/3021",[1116,5.253]],["name/3022",[1054,53.836]],["parent/3022",[1116,5.253]],["name/3023",[1055,53.836]],["parent/3023",[1116,5.253]],["name/3024",[1056,53.836]],["parent/3024",[1116,5.253]],["name/3025",[1057,53.836]],["parent/3025",[1116,5.253]],["name/3026",[1058,53.836]],["parent/3026",[1116,5.253]],["name/3027",[1059,53.836]],["parent/3027",[1116,5.253]],["name/3028",[1044,46.984]],["parent/3028",[1116,5.253]],["name/3029",[1060,53.836]],["parent/3029",[1116,5.253]],["name/3030",[1061,53.836]],["parent/3030",[1116,5.253]],["name/3031",[1062,53.836]],["parent/3031",[1116,5.253]],["name/3032",[1063,53.836]],["parent/3032",[1116,5.253]],["name/3033",[1064,53.836]],["parent/3033",[1116,5.253]],["name/3034",[1120,84.281]],["parent/3034",[1115,7.565]],["name/3035",[1121,75.808]],["parent/3035",[]],["name/3036",[392,68.187]],["parent/3036",[1121,7.565]],["name/3037",[1031,53.836]],["parent/3037",[1122,5.253]],["name/3038",[1033,46.984]],["parent/3038",[1123,5.903]],["name/3039",[337,39.934]],["parent/3039",[1123,5.903]],["name/3040",[339,39.934]],["parent/3040",[1123,5.903]],["name/3041",[340,40.174]],["parent/3041",[1123,5.903]],["name/3042",[68,40.013]],["parent/3042",[1123,5.903]],["name/3043",[341,40.174]],["parent/3043",[1123,5.903]],["name/3044",[1081,54.837]],["parent/3044",[1123,5.903]],["name/3045",[1082,54.837]],["parent/3045",[1123,5.903]],["name/3046",[1083,54.837]],["parent/3046",[1123,5.903]],["name/3047",[1084,54.837]],["parent/3047",[1123,5.903]],["name/3048",[1085,54.837]],["parent/3048",[1123,5.903]],["name/3049",[1086,55.949]],["parent/3049",[1123,5.903]],["name/3050",[1087,55.949]],["parent/3050",[1123,5.903]],["name/3051",[1088,55.949]],["parent/3051",[1123,5.903]],["name/3052",[1089,55.949]],["parent/3052",[1123,5.903]],["name/3053",[1090,55.949]],["parent/3053",[1123,5.903]],["name/3054",[11,33.551]],["parent/3054",[1123,5.903]],["name/3055",[54,36.379]],["parent/3055",[1123,5.903]],["name/3056",[8,46.826]],["parent/3056",[1122,5.253]],["name/3057",[1035,53.836]],["parent/3057",[1122,5.253]],["name/3058",[1036,53.836]],["parent/3058",[1122,5.253]],["name/3059",[1037,53.836]],["parent/3059",[1122,5.253]],["name/3060",[11,33.551]],["parent/3060",[1122,5.253]],["name/3061",[1038,53.836]],["parent/3061",[1122,5.253]],["name/3062",[1039,53.836]],["parent/3062",[1122,5.253]],["name/3063",[1040,53.836]],["parent/3063",[1122,5.253]],["name/3064",[1041,53.836]],["parent/3064",[1122,5.253]],["name/3065",[1033,46.984]],["parent/3065",[1122,5.253]],["name/3066",[1042,53.836]],["parent/3066",[1122,5.253]],["name/3067",[1043,53.836]],["parent/3067",[1122,5.253]],["name/3068",[1044,46.984]],["parent/3068",[1122,5.253]],["name/3069",[1045,53.836]],["parent/3069",[1122,5.253]],["name/3070",[1046,53.836]],["parent/3070",[1122,5.253]],["name/3071",[1047,53.836]],["parent/3071",[1122,5.253]],["name/3072",[1048,53.836]],["parent/3072",[1122,5.253]],["name/3073",[127,31.117]],["parent/3073",[1124,8.41]],["name/3074",[8,46.826]],["parent/3074",[1122,5.253]],["name/3075",[11,33.551]],["parent/3075",[1122,5.253]],["name/3076",[1050,53.836]],["parent/3076",[1122,5.253]],["name/3077",[127,31.117]],["parent/3077",[1125,8.41]],["name/3078",[1052,53.836]],["parent/3078",[1122,5.253]],["name/3079",[1053,53.836]],["parent/3079",[1122,5.253]],["name/3080",[1054,53.836]],["parent/3080",[1122,5.253]],["name/3081",[1055,53.836]],["parent/3081",[1122,5.253]],["name/3082",[1056,53.836]],["parent/3082",[1122,5.253]],["name/3083",[1057,53.836]],["parent/3083",[1122,5.253]],["name/3084",[1058,53.836]],["parent/3084",[1122,5.253]],["name/3085",[1059,53.836]],["parent/3085",[1122,5.253]],["name/3086",[1044,46.984]],["parent/3086",[1122,5.253]],["name/3087",[1060,53.836]],["parent/3087",[1122,5.253]],["name/3088",[1061,53.836]],["parent/3088",[1122,5.253]],["name/3089",[1062,53.836]],["parent/3089",[1122,5.253]],["name/3090",[1063,53.836]],["parent/3090",[1122,5.253]],["name/3091",[1064,53.836]],["parent/3091",[1122,5.253]],["name/3092",[1126,84.281]],["parent/3092",[1121,7.565]],["name/3093",[1127,75.808]],["parent/3093",[]],["name/3094",[90,68.187]],["parent/3094",[1127,7.565]],["name/3095",[1031,53.836]],["parent/3095",[1128,5.253]],["name/3096",[1033,46.984]],["parent/3096",[1129,5.708]],["name/3097",[337,39.934]],["parent/3097",[1129,5.708]],["name/3098",[339,39.934]],["parent/3098",[1129,5.708]],["name/3099",[340,40.174]],["parent/3099",[1129,5.708]],["name/3100",[68,40.013]],["parent/3100",[1129,5.708]],["name/3101",[341,40.174]],["parent/3101",[1129,5.708]],["name/3102",[1081,54.837]],["parent/3102",[1129,5.708]],["name/3103",[1082,54.837]],["parent/3103",[1129,5.708]],["name/3104",[1083,54.837]],["parent/3104",[1129,5.708]],["name/3105",[1084,54.837]],["parent/3105",[1129,5.708]],["name/3106",[1085,54.837]],["parent/3106",[1129,5.708]],["name/3107",[1086,55.949]],["parent/3107",[1129,5.708]],["name/3108",[1087,55.949]],["parent/3108",[1129,5.708]],["name/3109",[1088,55.949]],["parent/3109",[1129,5.708]],["name/3110",[1089,55.949]],["parent/3110",[1129,5.708]],["name/3111",[1090,55.949]],["parent/3111",[1129,5.708]],["name/3112",[1091,59.158]],["parent/3112",[1129,5.708]],["name/3113",[1092,59.158]],["parent/3113",[1129,5.708]],["name/3114",[1093,59.158]],["parent/3114",[1129,5.708]],["name/3115",[1094,59.158]],["parent/3115",[1129,5.708]],["name/3116",[1095,59.158]],["parent/3116",[1129,5.708]],["name/3117",[54,36.379]],["parent/3117",[1129,5.708]],["name/3118",[8,46.826]],["parent/3118",[1128,5.253]],["name/3119",[1035,53.836]],["parent/3119",[1128,5.253]],["name/3120",[1036,53.836]],["parent/3120",[1128,5.253]],["name/3121",[1037,53.836]],["parent/3121",[1128,5.253]],["name/3122",[11,33.551]],["parent/3122",[1128,5.253]],["name/3123",[1038,53.836]],["parent/3123",[1128,5.253]],["name/3124",[1039,53.836]],["parent/3124",[1128,5.253]],["name/3125",[1040,53.836]],["parent/3125",[1128,5.253]],["name/3126",[1041,53.836]],["parent/3126",[1128,5.253]],["name/3127",[1033,46.984]],["parent/3127",[1128,5.253]],["name/3128",[1042,53.836]],["parent/3128",[1128,5.253]],["name/3129",[1043,53.836]],["parent/3129",[1128,5.253]],["name/3130",[1044,46.984]],["parent/3130",[1128,5.253]],["name/3131",[1045,53.836]],["parent/3131",[1128,5.253]],["name/3132",[1046,53.836]],["parent/3132",[1128,5.253]],["name/3133",[1047,53.836]],["parent/3133",[1128,5.253]],["name/3134",[1048,53.836]],["parent/3134",[1128,5.253]],["name/3135",[127,31.117]],["parent/3135",[1130,8.41]],["name/3136",[8,46.826]],["parent/3136",[1128,5.253]],["name/3137",[11,33.551]],["parent/3137",[1128,5.253]],["name/3138",[1050,53.836]],["parent/3138",[1128,5.253]],["name/3139",[127,31.117]],["parent/3139",[1131,8.41]],["name/3140",[1052,53.836]],["parent/3140",[1128,5.253]],["name/3141",[1053,53.836]],["parent/3141",[1128,5.253]],["name/3142",[1054,53.836]],["parent/3142",[1128,5.253]],["name/3143",[1055,53.836]],["parent/3143",[1128,5.253]],["name/3144",[1056,53.836]],["parent/3144",[1128,5.253]],["name/3145",[1057,53.836]],["parent/3145",[1128,5.253]],["name/3146",[1058,53.836]],["parent/3146",[1128,5.253]],["name/3147",[1059,53.836]],["parent/3147",[1128,5.253]],["name/3148",[1044,46.984]],["parent/3148",[1128,5.253]],["name/3149",[1060,53.836]],["parent/3149",[1128,5.253]],["name/3150",[1061,53.836]],["parent/3150",[1128,5.253]],["name/3151",[1062,53.836]],["parent/3151",[1128,5.253]],["name/3152",[1063,53.836]],["parent/3152",[1128,5.253]],["name/3153",[1064,53.836]],["parent/3153",[1128,5.253]],["name/3154",[1132,84.281]],["parent/3154",[1127,7.565]],["name/3155",[1133,75.808]],["parent/3155",[]],["name/3156",[89,63.913]],["parent/3156",[1133,7.565]],["name/3157",[1031,53.836]],["parent/3157",[1134,5.253]],["name/3158",[1033,46.984]],["parent/3158",[1135,5.708]],["name/3159",[337,39.934]],["parent/3159",[1135,5.708]],["name/3160",[339,39.934]],["parent/3160",[1135,5.708]],["name/3161",[340,40.174]],["parent/3161",[1135,5.708]],["name/3162",[68,40.013]],["parent/3162",[1135,5.708]],["name/3163",[341,40.174]],["parent/3163",[1135,5.708]],["name/3164",[1081,54.837]],["parent/3164",[1135,5.708]],["name/3165",[1082,54.837]],["parent/3165",[1135,5.708]],["name/3166",[1083,54.837]],["parent/3166",[1135,5.708]],["name/3167",[1084,54.837]],["parent/3167",[1135,5.708]],["name/3168",[1085,54.837]],["parent/3168",[1135,5.708]],["name/3169",[1086,55.949]],["parent/3169",[1135,5.708]],["name/3170",[1087,55.949]],["parent/3170",[1135,5.708]],["name/3171",[1088,55.949]],["parent/3171",[1135,5.708]],["name/3172",[1089,55.949]],["parent/3172",[1135,5.708]],["name/3173",[1090,55.949]],["parent/3173",[1135,5.708]],["name/3174",[1091,59.158]],["parent/3174",[1135,5.708]],["name/3175",[1092,59.158]],["parent/3175",[1135,5.708]],["name/3176",[1093,59.158]],["parent/3176",[1135,5.708]],["name/3177",[1094,59.158]],["parent/3177",[1135,5.708]],["name/3178",[1095,59.158]],["parent/3178",[1135,5.708]],["name/3179",[54,36.379]],["parent/3179",[1135,5.708]],["name/3180",[8,46.826]],["parent/3180",[1134,5.253]],["name/3181",[1035,53.836]],["parent/3181",[1134,5.253]],["name/3182",[1036,53.836]],["parent/3182",[1134,5.253]],["name/3183",[1037,53.836]],["parent/3183",[1134,5.253]],["name/3184",[11,33.551]],["parent/3184",[1134,5.253]],["name/3185",[1038,53.836]],["parent/3185",[1134,5.253]],["name/3186",[1039,53.836]],["parent/3186",[1134,5.253]],["name/3187",[1040,53.836]],["parent/3187",[1134,5.253]],["name/3188",[1041,53.836]],["parent/3188",[1134,5.253]],["name/3189",[1033,46.984]],["parent/3189",[1134,5.253]],["name/3190",[1042,53.836]],["parent/3190",[1134,5.253]],["name/3191",[1043,53.836]],["parent/3191",[1134,5.253]],["name/3192",[1044,46.984]],["parent/3192",[1134,5.253]],["name/3193",[1045,53.836]],["parent/3193",[1134,5.253]],["name/3194",[1046,53.836]],["parent/3194",[1134,5.253]],["name/3195",[1047,53.836]],["parent/3195",[1134,5.253]],["name/3196",[1048,53.836]],["parent/3196",[1134,5.253]],["name/3197",[127,31.117]],["parent/3197",[1136,8.41]],["name/3198",[8,46.826]],["parent/3198",[1134,5.253]],["name/3199",[11,33.551]],["parent/3199",[1134,5.253]],["name/3200",[1050,53.836]],["parent/3200",[1134,5.253]],["name/3201",[127,31.117]],["parent/3201",[1137,8.41]],["name/3202",[1052,53.836]],["parent/3202",[1134,5.253]],["name/3203",[1053,53.836]],["parent/3203",[1134,5.253]],["name/3204",[1054,53.836]],["parent/3204",[1134,5.253]],["name/3205",[1055,53.836]],["parent/3205",[1134,5.253]],["name/3206",[1056,53.836]],["parent/3206",[1134,5.253]],["name/3207",[1057,53.836]],["parent/3207",[1134,5.253]],["name/3208",[1058,53.836]],["parent/3208",[1134,5.253]],["name/3209",[1059,53.836]],["parent/3209",[1134,5.253]],["name/3210",[1044,46.984]],["parent/3210",[1134,5.253]],["name/3211",[1060,53.836]],["parent/3211",[1134,5.253]],["name/3212",[1061,53.836]],["parent/3212",[1134,5.253]],["name/3213",[1062,53.836]],["parent/3213",[1134,5.253]],["name/3214",[1063,53.836]],["parent/3214",[1134,5.253]],["name/3215",[1064,53.836]],["parent/3215",[1134,5.253]],["name/3216",[1138,84.281]],["parent/3216",[1133,7.565]],["name/3217",[1139,75.808]],["parent/3217",[]],["name/3218",[483,68.187]],["parent/3218",[1139,7.565]],["name/3219",[1031,53.836]],["parent/3219",[1140,5.253]],["name/3220",[1033,46.984]],["parent/3220",[1141,5.472]],["name/3221",[337,39.934]],["parent/3221",[1141,5.472]],["name/3222",[339,39.934]],["parent/3222",[1141,5.472]],["name/3223",[340,40.174]],["parent/3223",[1141,5.472]],["name/3224",[68,40.013]],["parent/3224",[1141,5.472]],["name/3225",[341,40.174]],["parent/3225",[1141,5.472]],["name/3226",[1081,54.837]],["parent/3226",[1141,5.472]],["name/3227",[1082,54.837]],["parent/3227",[1141,5.472]],["name/3228",[1083,54.837]],["parent/3228",[1141,5.472]],["name/3229",[1084,54.837]],["parent/3229",[1141,5.472]],["name/3230",[1085,54.837]],["parent/3230",[1141,5.472]],["name/3231",[1086,55.949]],["parent/3231",[1141,5.472]],["name/3232",[1087,55.949]],["parent/3232",[1141,5.472]],["name/3233",[1088,55.949]],["parent/3233",[1141,5.472]],["name/3234",[1089,55.949]],["parent/3234",[1141,5.472]],["name/3235",[1090,55.949]],["parent/3235",[1141,5.472]],["name/3236",[1091,59.158]],["parent/3236",[1141,5.472]],["name/3237",[1092,59.158]],["parent/3237",[1141,5.472]],["name/3238",[1093,59.158]],["parent/3238",[1141,5.472]],["name/3239",[1094,59.158]],["parent/3239",[1141,5.472]],["name/3240",[1095,59.158]],["parent/3240",[1141,5.472]],["name/3241",[1096,61.595]],["parent/3241",[1141,5.472]],["name/3242",[1097,61.595]],["parent/3242",[1141,5.472]],["name/3243",[1098,61.595]],["parent/3243",[1141,5.472]],["name/3244",[1099,61.595]],["parent/3244",[1141,5.472]],["name/3245",[1100,61.595]],["parent/3245",[1141,5.472]],["name/3246",[11,33.551]],["parent/3246",[1141,5.472]],["name/3247",[54,36.379]],["parent/3247",[1141,5.472]],["name/3248",[8,46.826]],["parent/3248",[1140,5.253]],["name/3249",[1035,53.836]],["parent/3249",[1140,5.253]],["name/3250",[1036,53.836]],["parent/3250",[1140,5.253]],["name/3251",[1037,53.836]],["parent/3251",[1140,5.253]],["name/3252",[11,33.551]],["parent/3252",[1140,5.253]],["name/3253",[1038,53.836]],["parent/3253",[1140,5.253]],["name/3254",[1039,53.836]],["parent/3254",[1140,5.253]],["name/3255",[1040,53.836]],["parent/3255",[1140,5.253]],["name/3256",[1041,53.836]],["parent/3256",[1140,5.253]],["name/3257",[1033,46.984]],["parent/3257",[1140,5.253]],["name/3258",[1042,53.836]],["parent/3258",[1140,5.253]],["name/3259",[1043,53.836]],["parent/3259",[1140,5.253]],["name/3260",[1044,46.984]],["parent/3260",[1140,5.253]],["name/3261",[1045,53.836]],["parent/3261",[1140,5.253]],["name/3262",[1046,53.836]],["parent/3262",[1140,5.253]],["name/3263",[1047,53.836]],["parent/3263",[1140,5.253]],["name/3264",[1048,53.836]],["parent/3264",[1140,5.253]],["name/3265",[127,31.117]],["parent/3265",[1142,8.41]],["name/3266",[8,46.826]],["parent/3266",[1140,5.253]],["name/3267",[11,33.551]],["parent/3267",[1140,5.253]],["name/3268",[1050,53.836]],["parent/3268",[1140,5.253]],["name/3269",[127,31.117]],["parent/3269",[1143,8.41]],["name/3270",[1052,53.836]],["parent/3270",[1140,5.253]],["name/3271",[1053,53.836]],["parent/3271",[1140,5.253]],["name/3272",[1054,53.836]],["parent/3272",[1140,5.253]],["name/3273",[1055,53.836]],["parent/3273",[1140,5.253]],["name/3274",[1056,53.836]],["parent/3274",[1140,5.253]],["name/3275",[1057,53.836]],["parent/3275",[1140,5.253]],["name/3276",[1058,53.836]],["parent/3276",[1140,5.253]],["name/3277",[1059,53.836]],["parent/3277",[1140,5.253]],["name/3278",[1044,46.984]],["parent/3278",[1140,5.253]],["name/3279",[1060,53.836]],["parent/3279",[1140,5.253]],["name/3280",[1061,53.836]],["parent/3280",[1140,5.253]],["name/3281",[1062,53.836]],["parent/3281",[1140,5.253]],["name/3282",[1063,53.836]],["parent/3282",[1140,5.253]],["name/3283",[1064,53.836]],["parent/3283",[1140,5.253]],["name/3284",[1144,84.281]],["parent/3284",[1139,7.565]],["name/3285",[1145,75.808]],["parent/3285",[]],["name/3286",[91,62.309]],["parent/3286",[1145,7.565]],["name/3287",[1031,53.836]],["parent/3287",[1146,5.253]],["name/3288",[1033,46.984]],["parent/3288",[1147,5.341]],["name/3289",[337,39.934]],["parent/3289",[1147,5.341]],["name/3290",[339,39.934]],["parent/3290",[1147,5.341]],["name/3291",[340,40.174]],["parent/3291",[1147,5.341]],["name/3292",[68,40.013]],["parent/3292",[1147,5.341]],["name/3293",[341,40.174]],["parent/3293",[1147,5.341]],["name/3294",[1081,54.837]],["parent/3294",[1147,5.341]],["name/3295",[1082,54.837]],["parent/3295",[1147,5.341]],["name/3296",[1083,54.837]],["parent/3296",[1147,5.341]],["name/3297",[1084,54.837]],["parent/3297",[1147,5.341]],["name/3298",[1085,54.837]],["parent/3298",[1147,5.341]],["name/3299",[1086,55.949]],["parent/3299",[1147,5.341]],["name/3300",[1087,55.949]],["parent/3300",[1147,5.341]],["name/3301",[1088,55.949]],["parent/3301",[1147,5.341]],["name/3302",[1089,55.949]],["parent/3302",[1147,5.341]],["name/3303",[1090,55.949]],["parent/3303",[1147,5.341]],["name/3304",[1091,59.158]],["parent/3304",[1147,5.341]],["name/3305",[1092,59.158]],["parent/3305",[1147,5.341]],["name/3306",[1093,59.158]],["parent/3306",[1147,5.341]],["name/3307",[1094,59.158]],["parent/3307",[1147,5.341]],["name/3308",[1095,59.158]],["parent/3308",[1147,5.341]],["name/3309",[1096,61.595]],["parent/3309",[1147,5.341]],["name/3310",[1097,61.595]],["parent/3310",[1147,5.341]],["name/3311",[1098,61.595]],["parent/3311",[1147,5.341]],["name/3312",[1099,61.595]],["parent/3312",[1147,5.341]],["name/3313",[1100,61.595]],["parent/3313",[1147,5.341]],["name/3314",[1107,69.618]],["parent/3314",[1147,5.341]],["name/3315",[1108,69.618]],["parent/3315",[1147,5.341]],["name/3316",[1109,69.618]],["parent/3316",[1147,5.341]],["name/3317",[1110,69.618]],["parent/3317",[1147,5.341]],["name/3318",[1111,69.618]],["parent/3318",[1147,5.341]],["name/3319",[54,36.379]],["parent/3319",[1147,5.341]],["name/3320",[8,46.826]],["parent/3320",[1146,5.253]],["name/3321",[1035,53.836]],["parent/3321",[1146,5.253]],["name/3322",[1036,53.836]],["parent/3322",[1146,5.253]],["name/3323",[1037,53.836]],["parent/3323",[1146,5.253]],["name/3324",[11,33.551]],["parent/3324",[1146,5.253]],["name/3325",[1038,53.836]],["parent/3325",[1146,5.253]],["name/3326",[1039,53.836]],["parent/3326",[1146,5.253]],["name/3327",[1040,53.836]],["parent/3327",[1146,5.253]],["name/3328",[1041,53.836]],["parent/3328",[1146,5.253]],["name/3329",[1033,46.984]],["parent/3329",[1146,5.253]],["name/3330",[1042,53.836]],["parent/3330",[1146,5.253]],["name/3331",[1043,53.836]],["parent/3331",[1146,5.253]],["name/3332",[1044,46.984]],["parent/3332",[1146,5.253]],["name/3333",[1045,53.836]],["parent/3333",[1146,5.253]],["name/3334",[1046,53.836]],["parent/3334",[1146,5.253]],["name/3335",[1047,53.836]],["parent/3335",[1146,5.253]],["name/3336",[1048,53.836]],["parent/3336",[1146,5.253]],["name/3337",[127,31.117]],["parent/3337",[1148,8.41]],["name/3338",[8,46.826]],["parent/3338",[1146,5.253]],["name/3339",[11,33.551]],["parent/3339",[1146,5.253]],["name/3340",[1050,53.836]],["parent/3340",[1146,5.253]],["name/3341",[127,31.117]],["parent/3341",[1149,8.41]],["name/3342",[1052,53.836]],["parent/3342",[1146,5.253]],["name/3343",[1053,53.836]],["parent/3343",[1146,5.253]],["name/3344",[1054,53.836]],["parent/3344",[1146,5.253]],["name/3345",[1055,53.836]],["parent/3345",[1146,5.253]],["name/3346",[1056,53.836]],["parent/3346",[1146,5.253]],["name/3347",[1057,53.836]],["parent/3347",[1146,5.253]],["name/3348",[1058,53.836]],["parent/3348",[1146,5.253]],["name/3349",[1059,53.836]],["parent/3349",[1146,5.253]],["name/3350",[1044,46.984]],["parent/3350",[1146,5.253]],["name/3351",[1060,53.836]],["parent/3351",[1146,5.253]],["name/3352",[1061,53.836]],["parent/3352",[1146,5.253]],["name/3353",[1062,53.836]],["parent/3353",[1146,5.253]],["name/3354",[1063,53.836]],["parent/3354",[1146,5.253]],["name/3355",[1064,53.836]],["parent/3355",[1146,5.253]],["name/3356",[1150,84.281]],["parent/3356",[1145,7.565]],["name/3357",[1151,75.808]],["parent/3357",[]],["name/3358",[18,49.942]],["parent/3358",[1151,7.565]],["name/3359",[1031,53.836]],["parent/3359",[1152,5.253]],["name/3360",[1033,46.984]],["parent/3360",[1153,6.218]],["name/3361",[337,39.934]],["parent/3361",[1153,6.218]],["name/3362",[339,39.934]],["parent/3362",[1153,6.218]],["name/3363",[340,40.174]],["parent/3363",[1153,6.218]],["name/3364",[68,40.013]],["parent/3364",[1153,6.218]],["name/3365",[341,40.174]],["parent/3365",[1153,6.218]],["name/3366",[1081,54.837]],["parent/3366",[1153,6.218]],["name/3367",[1082,54.837]],["parent/3367",[1153,6.218]],["name/3368",[1083,54.837]],["parent/3368",[1153,6.218]],["name/3369",[1084,54.837]],["parent/3369",[1153,6.218]],["name/3370",[1085,54.837]],["parent/3370",[1153,6.218]],["name/3371",[11,33.551]],["parent/3371",[1153,6.218]],["name/3372",[54,36.379]],["parent/3372",[1153,6.218]],["name/3373",[8,46.826]],["parent/3373",[1152,5.253]],["name/3374",[1035,53.836]],["parent/3374",[1152,5.253]],["name/3375",[1036,53.836]],["parent/3375",[1152,5.253]],["name/3376",[1037,53.836]],["parent/3376",[1152,5.253]],["name/3377",[11,33.551]],["parent/3377",[1152,5.253]],["name/3378",[1038,53.836]],["parent/3378",[1152,5.253]],["name/3379",[1039,53.836]],["parent/3379",[1152,5.253]],["name/3380",[1040,53.836]],["parent/3380",[1152,5.253]],["name/3381",[1041,53.836]],["parent/3381",[1152,5.253]],["name/3382",[1033,46.984]],["parent/3382",[1152,5.253]],["name/3383",[1042,53.836]],["parent/3383",[1152,5.253]],["name/3384",[1043,53.836]],["parent/3384",[1152,5.253]],["name/3385",[1044,46.984]],["parent/3385",[1152,5.253]],["name/3386",[1045,53.836]],["parent/3386",[1152,5.253]],["name/3387",[1046,53.836]],["parent/3387",[1152,5.253]],["name/3388",[1047,53.836]],["parent/3388",[1152,5.253]],["name/3389",[1048,53.836]],["parent/3389",[1152,5.253]],["name/3390",[127,31.117]],["parent/3390",[1154,8.41]],["name/3391",[8,46.826]],["parent/3391",[1152,5.253]],["name/3392",[11,33.551]],["parent/3392",[1152,5.253]],["name/3393",[1050,53.836]],["parent/3393",[1152,5.253]],["name/3394",[127,31.117]],["parent/3394",[1155,8.41]],["name/3395",[1052,53.836]],["parent/3395",[1152,5.253]],["name/3396",[1053,53.836]],["parent/3396",[1152,5.253]],["name/3397",[1054,53.836]],["parent/3397",[1152,5.253]],["name/3398",[1055,53.836]],["parent/3398",[1152,5.253]],["name/3399",[1056,53.836]],["parent/3399",[1152,5.253]],["name/3400",[1057,53.836]],["parent/3400",[1152,5.253]],["name/3401",[1058,53.836]],["parent/3401",[1152,5.253]],["name/3402",[1059,53.836]],["parent/3402",[1152,5.253]],["name/3403",[1044,46.984]],["parent/3403",[1152,5.253]],["name/3404",[1060,53.836]],["parent/3404",[1152,5.253]],["name/3405",[1061,53.836]],["parent/3405",[1152,5.253]],["name/3406",[1062,53.836]],["parent/3406",[1152,5.253]],["name/3407",[1063,53.836]],["parent/3407",[1152,5.253]],["name/3408",[1064,53.836]],["parent/3408",[1152,5.253]],["name/3409",[1156,84.281]],["parent/3409",[1151,7.565]],["name/3410",[1157,75.808]],["parent/3410",[]],["name/3411",[512,68.187]],["parent/3411",[1157,7.565]],["name/3412",[1031,53.836]],["parent/3412",[1158,5.253]],["name/3413",[1033,46.984]],["parent/3413",[1159,6.218]],["name/3414",[337,39.934]],["parent/3414",[1159,6.218]],["name/3415",[339,39.934]],["parent/3415",[1159,6.218]],["name/3416",[340,40.174]],["parent/3416",[1159,6.218]],["name/3417",[68,40.013]],["parent/3417",[1159,6.218]],["name/3418",[341,40.174]],["parent/3418",[1159,6.218]],["name/3419",[1081,54.837]],["parent/3419",[1159,6.218]],["name/3420",[1082,54.837]],["parent/3420",[1159,6.218]],["name/3421",[1083,54.837]],["parent/3421",[1159,6.218]],["name/3422",[1084,54.837]],["parent/3422",[1159,6.218]],["name/3423",[1085,54.837]],["parent/3423",[1159,6.218]],["name/3424",[11,33.551]],["parent/3424",[1159,6.218]],["name/3425",[54,36.379]],["parent/3425",[1159,6.218]],["name/3426",[8,46.826]],["parent/3426",[1158,5.253]],["name/3427",[1035,53.836]],["parent/3427",[1158,5.253]],["name/3428",[1036,53.836]],["parent/3428",[1158,5.253]],["name/3429",[1037,53.836]],["parent/3429",[1158,5.253]],["name/3430",[11,33.551]],["parent/3430",[1158,5.253]],["name/3431",[1038,53.836]],["parent/3431",[1158,5.253]],["name/3432",[1039,53.836]],["parent/3432",[1158,5.253]],["name/3433",[1040,53.836]],["parent/3433",[1158,5.253]],["name/3434",[1041,53.836]],["parent/3434",[1158,5.253]],["name/3435",[1033,46.984]],["parent/3435",[1158,5.253]],["name/3436",[1042,53.836]],["parent/3436",[1158,5.253]],["name/3437",[1043,53.836]],["parent/3437",[1158,5.253]],["name/3438",[1044,46.984]],["parent/3438",[1158,5.253]],["name/3439",[1045,53.836]],["parent/3439",[1158,5.253]],["name/3440",[1046,53.836]],["parent/3440",[1158,5.253]],["name/3441",[1047,53.836]],["parent/3441",[1158,5.253]],["name/3442",[1048,53.836]],["parent/3442",[1158,5.253]],["name/3443",[127,31.117]],["parent/3443",[1160,8.41]],["name/3444",[8,46.826]],["parent/3444",[1158,5.253]],["name/3445",[11,33.551]],["parent/3445",[1158,5.253]],["name/3446",[1050,53.836]],["parent/3446",[1158,5.253]],["name/3447",[127,31.117]],["parent/3447",[1161,8.41]],["name/3448",[1052,53.836]],["parent/3448",[1158,5.253]],["name/3449",[1053,53.836]],["parent/3449",[1158,5.253]],["name/3450",[1054,53.836]],["parent/3450",[1158,5.253]],["name/3451",[1055,53.836]],["parent/3451",[1158,5.253]],["name/3452",[1056,53.836]],["parent/3452",[1158,5.253]],["name/3453",[1057,53.836]],["parent/3453",[1158,5.253]],["name/3454",[1058,53.836]],["parent/3454",[1158,5.253]],["name/3455",[1059,53.836]],["parent/3455",[1158,5.253]],["name/3456",[1044,46.984]],["parent/3456",[1158,5.253]],["name/3457",[1060,53.836]],["parent/3457",[1158,5.253]],["name/3458",[1061,53.836]],["parent/3458",[1158,5.253]],["name/3459",[1062,53.836]],["parent/3459",[1158,5.253]],["name/3460",[1063,53.836]],["parent/3460",[1158,5.253]],["name/3461",[1064,53.836]],["parent/3461",[1158,5.253]],["name/3462",[1162,84.281]],["parent/3462",[1157,7.565]],["name/3463",[1163,75.808]],["parent/3463",[]],["name/3464",[634,71.289]],["parent/3464",[1163,7.565]],["name/3465",[1031,53.836]],["parent/3465",[1164,5.253]],["name/3466",[1033,46.984]],["parent/3466",[1165,5.959]],["name/3467",[337,39.934]],["parent/3467",[1165,5.959]],["name/3468",[339,39.934]],["parent/3468",[1165,5.959]],["name/3469",[340,40.174]],["parent/3469",[1165,5.959]],["name/3470",[68,40.013]],["parent/3470",[1165,5.959]],["name/3471",[341,40.174]],["parent/3471",[1165,5.959]],["name/3472",[1081,54.837]],["parent/3472",[1165,5.959]],["name/3473",[1082,54.837]],["parent/3473",[1165,5.959]],["name/3474",[1083,54.837]],["parent/3474",[1165,5.959]],["name/3475",[1084,54.837]],["parent/3475",[1165,5.959]],["name/3476",[1085,54.837]],["parent/3476",[1165,5.959]],["name/3477",[1086,55.949]],["parent/3477",[1165,5.959]],["name/3478",[1087,55.949]],["parent/3478",[1165,5.959]],["name/3479",[1088,55.949]],["parent/3479",[1165,5.959]],["name/3480",[1089,55.949]],["parent/3480",[1165,5.959]],["name/3481",[1090,55.949]],["parent/3481",[1165,5.959]],["name/3482",[54,36.379]],["parent/3482",[1165,5.959]],["name/3483",[8,46.826]],["parent/3483",[1164,5.253]],["name/3484",[1035,53.836]],["parent/3484",[1164,5.253]],["name/3485",[1036,53.836]],["parent/3485",[1164,5.253]],["name/3486",[1037,53.836]],["parent/3486",[1164,5.253]],["name/3487",[11,33.551]],["parent/3487",[1164,5.253]],["name/3488",[1038,53.836]],["parent/3488",[1164,5.253]],["name/3489",[1039,53.836]],["parent/3489",[1164,5.253]],["name/3490",[1040,53.836]],["parent/3490",[1164,5.253]],["name/3491",[1041,53.836]],["parent/3491",[1164,5.253]],["name/3492",[1033,46.984]],["parent/3492",[1164,5.253]],["name/3493",[1042,53.836]],["parent/3493",[1164,5.253]],["name/3494",[1043,53.836]],["parent/3494",[1164,5.253]],["name/3495",[1044,46.984]],["parent/3495",[1164,5.253]],["name/3496",[1045,53.836]],["parent/3496",[1164,5.253]],["name/3497",[1046,53.836]],["parent/3497",[1164,5.253]],["name/3498",[1047,53.836]],["parent/3498",[1164,5.253]],["name/3499",[1048,53.836]],["parent/3499",[1164,5.253]],["name/3500",[127,31.117]],["parent/3500",[1166,8.41]],["name/3501",[8,46.826]],["parent/3501",[1164,5.253]],["name/3502",[11,33.551]],["parent/3502",[1164,5.253]],["name/3503",[1050,53.836]],["parent/3503",[1164,5.253]],["name/3504",[127,31.117]],["parent/3504",[1167,8.41]],["name/3505",[1052,53.836]],["parent/3505",[1164,5.253]],["name/3506",[1053,53.836]],["parent/3506",[1164,5.253]],["name/3507",[1054,53.836]],["parent/3507",[1164,5.253]],["name/3508",[1055,53.836]],["parent/3508",[1164,5.253]],["name/3509",[1056,53.836]],["parent/3509",[1164,5.253]],["name/3510",[1057,53.836]],["parent/3510",[1164,5.253]],["name/3511",[1058,53.836]],["parent/3511",[1164,5.253]],["name/3512",[1059,53.836]],["parent/3512",[1164,5.253]],["name/3513",[1044,46.984]],["parent/3513",[1164,5.253]],["name/3514",[1060,53.836]],["parent/3514",[1164,5.253]],["name/3515",[1061,53.836]],["parent/3515",[1164,5.253]],["name/3516",[1062,53.836]],["parent/3516",[1164,5.253]],["name/3517",[1063,53.836]],["parent/3517",[1164,5.253]],["name/3518",[1064,53.836]],["parent/3518",[1164,5.253]],["name/3519",[1168,84.281]],["parent/3519",[1163,7.565]],["name/3520",[1169,75.808]],["parent/3520",[]],["name/3521",[565,68.187]],["parent/3521",[1169,7.565]],["name/3522",[1031,53.836]],["parent/3522",[1170,5.253]],["name/3523",[1033,46.984]],["parent/3523",[1171,6.218]],["name/3524",[337,39.934]],["parent/3524",[1171,6.218]],["name/3525",[339,39.934]],["parent/3525",[1171,6.218]],["name/3526",[340,40.174]],["parent/3526",[1171,6.218]],["name/3527",[68,40.013]],["parent/3527",[1171,6.218]],["name/3528",[341,40.174]],["parent/3528",[1171,6.218]],["name/3529",[1081,54.837]],["parent/3529",[1171,6.218]],["name/3530",[1082,54.837]],["parent/3530",[1171,6.218]],["name/3531",[1083,54.837]],["parent/3531",[1171,6.218]],["name/3532",[1084,54.837]],["parent/3532",[1171,6.218]],["name/3533",[1085,54.837]],["parent/3533",[1171,6.218]],["name/3534",[11,33.551]],["parent/3534",[1171,6.218]],["name/3535",[54,36.379]],["parent/3535",[1171,6.218]],["name/3536",[8,46.826]],["parent/3536",[1170,5.253]],["name/3537",[1035,53.836]],["parent/3537",[1170,5.253]],["name/3538",[1036,53.836]],["parent/3538",[1170,5.253]],["name/3539",[1037,53.836]],["parent/3539",[1170,5.253]],["name/3540",[11,33.551]],["parent/3540",[1170,5.253]],["name/3541",[1038,53.836]],["parent/3541",[1170,5.253]],["name/3542",[1039,53.836]],["parent/3542",[1170,5.253]],["name/3543",[1040,53.836]],["parent/3543",[1170,5.253]],["name/3544",[1041,53.836]],["parent/3544",[1170,5.253]],["name/3545",[1033,46.984]],["parent/3545",[1170,5.253]],["name/3546",[1042,53.836]],["parent/3546",[1170,5.253]],["name/3547",[1043,53.836]],["parent/3547",[1170,5.253]],["name/3548",[1044,46.984]],["parent/3548",[1170,5.253]],["name/3549",[1045,53.836]],["parent/3549",[1170,5.253]],["name/3550",[1046,53.836]],["parent/3550",[1170,5.253]],["name/3551",[1047,53.836]],["parent/3551",[1170,5.253]],["name/3552",[1048,53.836]],["parent/3552",[1170,5.253]],["name/3553",[127,31.117]],["parent/3553",[1172,8.41]],["name/3554",[8,46.826]],["parent/3554",[1170,5.253]],["name/3555",[11,33.551]],["parent/3555",[1170,5.253]],["name/3556",[1050,53.836]],["parent/3556",[1170,5.253]],["name/3557",[127,31.117]],["parent/3557",[1173,8.41]],["name/3558",[1052,53.836]],["parent/3558",[1170,5.253]],["name/3559",[1053,53.836]],["parent/3559",[1170,5.253]],["name/3560",[1054,53.836]],["parent/3560",[1170,5.253]],["name/3561",[1055,53.836]],["parent/3561",[1170,5.253]],["name/3562",[1056,53.836]],["parent/3562",[1170,5.253]],["name/3563",[1057,53.836]],["parent/3563",[1170,5.253]],["name/3564",[1058,53.836]],["parent/3564",[1170,5.253]],["name/3565",[1059,53.836]],["parent/3565",[1170,5.253]],["name/3566",[1044,46.984]],["parent/3566",[1170,5.253]],["name/3567",[1060,53.836]],["parent/3567",[1170,5.253]],["name/3568",[1061,53.836]],["parent/3568",[1170,5.253]],["name/3569",[1062,53.836]],["parent/3569",[1170,5.253]],["name/3570",[1063,53.836]],["parent/3570",[1170,5.253]],["name/3571",[1064,53.836]],["parent/3571",[1170,5.253]],["name/3572",[1174,84.281]],["parent/3572",[1169,7.565]],["name/3573",[1175,75.808]],["parent/3573",[]],["name/3574",[633,71.289]],["parent/3574",[1175,7.565]],["name/3575",[1031,53.836]],["parent/3575",[1176,5.253]],["name/3576",[1033,46.984]],["parent/3576",[1177,5.959]],["name/3577",[337,39.934]],["parent/3577",[1177,5.959]],["name/3578",[339,39.934]],["parent/3578",[1177,5.959]],["name/3579",[340,40.174]],["parent/3579",[1177,5.959]],["name/3580",[68,40.013]],["parent/3580",[1177,5.959]],["name/3581",[341,40.174]],["parent/3581",[1177,5.959]],["name/3582",[1081,54.837]],["parent/3582",[1177,5.959]],["name/3583",[1082,54.837]],["parent/3583",[1177,5.959]],["name/3584",[1083,54.837]],["parent/3584",[1177,5.959]],["name/3585",[1084,54.837]],["parent/3585",[1177,5.959]],["name/3586",[1085,54.837]],["parent/3586",[1177,5.959]],["name/3587",[1086,55.949]],["parent/3587",[1177,5.959]],["name/3588",[1087,55.949]],["parent/3588",[1177,5.959]],["name/3589",[1088,55.949]],["parent/3589",[1177,5.959]],["name/3590",[1089,55.949]],["parent/3590",[1177,5.959]],["name/3591",[1090,55.949]],["parent/3591",[1177,5.959]],["name/3592",[54,36.379]],["parent/3592",[1177,5.959]],["name/3593",[8,46.826]],["parent/3593",[1176,5.253]],["name/3594",[1035,53.836]],["parent/3594",[1176,5.253]],["name/3595",[1036,53.836]],["parent/3595",[1176,5.253]],["name/3596",[1037,53.836]],["parent/3596",[1176,5.253]],["name/3597",[11,33.551]],["parent/3597",[1176,5.253]],["name/3598",[1038,53.836]],["parent/3598",[1176,5.253]],["name/3599",[1039,53.836]],["parent/3599",[1176,5.253]],["name/3600",[1040,53.836]],["parent/3600",[1176,5.253]],["name/3601",[1041,53.836]],["parent/3601",[1176,5.253]],["name/3602",[1033,46.984]],["parent/3602",[1176,5.253]],["name/3603",[1042,53.836]],["parent/3603",[1176,5.253]],["name/3604",[1043,53.836]],["parent/3604",[1176,5.253]],["name/3605",[1044,46.984]],["parent/3605",[1176,5.253]],["name/3606",[1045,53.836]],["parent/3606",[1176,5.253]],["name/3607",[1046,53.836]],["parent/3607",[1176,5.253]],["name/3608",[1047,53.836]],["parent/3608",[1176,5.253]],["name/3609",[1048,53.836]],["parent/3609",[1176,5.253]],["name/3610",[127,31.117]],["parent/3610",[1178,8.41]],["name/3611",[8,46.826]],["parent/3611",[1176,5.253]],["name/3612",[11,33.551]],["parent/3612",[1176,5.253]],["name/3613",[1050,53.836]],["parent/3613",[1176,5.253]],["name/3614",[127,31.117]],["parent/3614",[1179,8.41]],["name/3615",[1052,53.836]],["parent/3615",[1176,5.253]],["name/3616",[1053,53.836]],["parent/3616",[1176,5.253]],["name/3617",[1054,53.836]],["parent/3617",[1176,5.253]],["name/3618",[1055,53.836]],["parent/3618",[1176,5.253]],["name/3619",[1056,53.836]],["parent/3619",[1176,5.253]],["name/3620",[1057,53.836]],["parent/3620",[1176,5.253]],["name/3621",[1058,53.836]],["parent/3621",[1176,5.253]],["name/3622",[1059,53.836]],["parent/3622",[1176,5.253]],["name/3623",[1044,46.984]],["parent/3623",[1176,5.253]],["name/3624",[1060,53.836]],["parent/3624",[1176,5.253]],["name/3625",[1061,53.836]],["parent/3625",[1176,5.253]],["name/3626",[1062,53.836]],["parent/3626",[1176,5.253]],["name/3627",[1063,53.836]],["parent/3627",[1176,5.253]],["name/3628",[1064,53.836]],["parent/3628",[1176,5.253]],["name/3629",[1180,84.281]],["parent/3629",[1175,7.565]],["name/3630",[1181,75.808]],["parent/3630",[]],["name/3631",[45,68.187]],["parent/3631",[1181,7.565]],["name/3632",[1031,53.836]],["parent/3632",[1182,5.253]],["name/3633",[1033,46.984]],["parent/3633",[1183,5.959]],["name/3634",[337,39.934]],["parent/3634",[1183,5.959]],["name/3635",[339,39.934]],["parent/3635",[1183,5.959]],["name/3636",[340,40.174]],["parent/3636",[1183,5.959]],["name/3637",[68,40.013]],["parent/3637",[1183,5.959]],["name/3638",[341,40.174]],["parent/3638",[1183,5.959]],["name/3639",[1081,54.837]],["parent/3639",[1183,5.959]],["name/3640",[1082,54.837]],["parent/3640",[1183,5.959]],["name/3641",[1083,54.837]],["parent/3641",[1183,5.959]],["name/3642",[1084,54.837]],["parent/3642",[1183,5.959]],["name/3643",[1085,54.837]],["parent/3643",[1183,5.959]],["name/3644",[1086,55.949]],["parent/3644",[1183,5.959]],["name/3645",[1087,55.949]],["parent/3645",[1183,5.959]],["name/3646",[1088,55.949]],["parent/3646",[1183,5.959]],["name/3647",[1089,55.949]],["parent/3647",[1183,5.959]],["name/3648",[1090,55.949]],["parent/3648",[1183,5.959]],["name/3649",[54,36.379]],["parent/3649",[1183,5.959]],["name/3650",[8,46.826]],["parent/3650",[1182,5.253]],["name/3651",[1035,53.836]],["parent/3651",[1182,5.253]],["name/3652",[1036,53.836]],["parent/3652",[1182,5.253]],["name/3653",[1037,53.836]],["parent/3653",[1182,5.253]],["name/3654",[11,33.551]],["parent/3654",[1182,5.253]],["name/3655",[1038,53.836]],["parent/3655",[1182,5.253]],["name/3656",[1039,53.836]],["parent/3656",[1182,5.253]],["name/3657",[1040,53.836]],["parent/3657",[1182,5.253]],["name/3658",[1041,53.836]],["parent/3658",[1182,5.253]],["name/3659",[1033,46.984]],["parent/3659",[1182,5.253]],["name/3660",[1042,53.836]],["parent/3660",[1182,5.253]],["name/3661",[1043,53.836]],["parent/3661",[1182,5.253]],["name/3662",[1044,46.984]],["parent/3662",[1182,5.253]],["name/3663",[1045,53.836]],["parent/3663",[1182,5.253]],["name/3664",[1046,53.836]],["parent/3664",[1182,5.253]],["name/3665",[1047,53.836]],["parent/3665",[1182,5.253]],["name/3666",[1048,53.836]],["parent/3666",[1182,5.253]],["name/3667",[127,31.117]],["parent/3667",[1184,8.41]],["name/3668",[8,46.826]],["parent/3668",[1182,5.253]],["name/3669",[11,33.551]],["parent/3669",[1182,5.253]],["name/3670",[1050,53.836]],["parent/3670",[1182,5.253]],["name/3671",[127,31.117]],["parent/3671",[1185,8.41]],["name/3672",[1052,53.836]],["parent/3672",[1182,5.253]],["name/3673",[1053,53.836]],["parent/3673",[1182,5.253]],["name/3674",[1054,53.836]],["parent/3674",[1182,5.253]],["name/3675",[1055,53.836]],["parent/3675",[1182,5.253]],["name/3676",[1056,53.836]],["parent/3676",[1182,5.253]],["name/3677",[1057,53.836]],["parent/3677",[1182,5.253]],["name/3678",[1058,53.836]],["parent/3678",[1182,5.253]],["name/3679",[1059,53.836]],["parent/3679",[1182,5.253]],["name/3680",[1044,46.984]],["parent/3680",[1182,5.253]],["name/3681",[1060,53.836]],["parent/3681",[1182,5.253]],["name/3682",[1061,53.836]],["parent/3682",[1182,5.253]],["name/3683",[1062,53.836]],["parent/3683",[1182,5.253]],["name/3684",[1063,53.836]],["parent/3684",[1182,5.253]],["name/3685",[1064,53.836]],["parent/3685",[1182,5.253]],["name/3686",[1186,84.281]],["parent/3686",[1181,7.565]],["name/3687",[1187,75.808]],["parent/3687",[]],["name/3688",[1188,73.295]],["parent/3688",[1187,7.565]],["name/3689",[1031,53.836]],["parent/3689",[1189,5.253]],["name/3690",[1033,46.984]],["parent/3690",[1190,5.472]],["name/3691",[337,39.934]],["parent/3691",[1190,5.472]],["name/3692",[339,39.934]],["parent/3692",[1190,5.472]],["name/3693",[340,40.174]],["parent/3693",[1190,5.472]],["name/3694",[68,40.013]],["parent/3694",[1190,5.472]],["name/3695",[341,40.174]],["parent/3695",[1190,5.472]],["name/3696",[1081,54.837]],["parent/3696",[1190,5.472]],["name/3697",[1082,54.837]],["parent/3697",[1190,5.472]],["name/3698",[1083,54.837]],["parent/3698",[1190,5.472]],["name/3699",[1084,54.837]],["parent/3699",[1190,5.472]],["name/3700",[1085,54.837]],["parent/3700",[1190,5.472]],["name/3701",[1086,55.949]],["parent/3701",[1190,5.472]],["name/3702",[1087,55.949]],["parent/3702",[1190,5.472]],["name/3703",[1088,55.949]],["parent/3703",[1190,5.472]],["name/3704",[1089,55.949]],["parent/3704",[1190,5.472]],["name/3705",[1090,55.949]],["parent/3705",[1190,5.472]],["name/3706",[1091,59.158]],["parent/3706",[1190,5.472]],["name/3707",[1092,59.158]],["parent/3707",[1190,5.472]],["name/3708",[1093,59.158]],["parent/3708",[1190,5.472]],["name/3709",[1094,59.158]],["parent/3709",[1190,5.472]],["name/3710",[1095,59.158]],["parent/3710",[1190,5.472]],["name/3711",[1096,61.595]],["parent/3711",[1190,5.472]],["name/3712",[1097,61.595]],["parent/3712",[1190,5.472]],["name/3713",[1098,61.595]],["parent/3713",[1190,5.472]],["name/3714",[1099,61.595]],["parent/3714",[1190,5.472]],["name/3715",[1100,61.595]],["parent/3715",[1190,5.472]],["name/3716",[11,33.551]],["parent/3716",[1190,5.472]],["name/3717",[54,36.379]],["parent/3717",[1190,5.472]],["name/3718",[8,46.826]],["parent/3718",[1189,5.253]],["name/3719",[1035,53.836]],["parent/3719",[1189,5.253]],["name/3720",[1036,53.836]],["parent/3720",[1189,5.253]],["name/3721",[1037,53.836]],["parent/3721",[1189,5.253]],["name/3722",[11,33.551]],["parent/3722",[1189,5.253]],["name/3723",[1038,53.836]],["parent/3723",[1189,5.253]],["name/3724",[1039,53.836]],["parent/3724",[1189,5.253]],["name/3725",[1040,53.836]],["parent/3725",[1189,5.253]],["name/3726",[1041,53.836]],["parent/3726",[1189,5.253]],["name/3727",[1033,46.984]],["parent/3727",[1189,5.253]],["name/3728",[1042,53.836]],["parent/3728",[1189,5.253]],["name/3729",[1043,53.836]],["parent/3729",[1189,5.253]],["name/3730",[1044,46.984]],["parent/3730",[1189,5.253]],["name/3731",[1045,53.836]],["parent/3731",[1189,5.253]],["name/3732",[1046,53.836]],["parent/3732",[1189,5.253]],["name/3733",[1047,53.836]],["parent/3733",[1189,5.253]],["name/3734",[1048,53.836]],["parent/3734",[1189,5.253]],["name/3735",[127,31.117]],["parent/3735",[1191,8.41]],["name/3736",[8,46.826]],["parent/3736",[1189,5.253]],["name/3737",[11,33.551]],["parent/3737",[1189,5.253]],["name/3738",[1050,53.836]],["parent/3738",[1189,5.253]],["name/3739",[127,31.117]],["parent/3739",[1192,8.41]],["name/3740",[1052,53.836]],["parent/3740",[1189,5.253]],["name/3741",[1053,53.836]],["parent/3741",[1189,5.253]],["name/3742",[1054,53.836]],["parent/3742",[1189,5.253]],["name/3743",[1055,53.836]],["parent/3743",[1189,5.253]],["name/3744",[1056,53.836]],["parent/3744",[1189,5.253]],["name/3745",[1057,53.836]],["parent/3745",[1189,5.253]],["name/3746",[1058,53.836]],["parent/3746",[1189,5.253]],["name/3747",[1059,53.836]],["parent/3747",[1189,5.253]],["name/3748",[1044,46.984]],["parent/3748",[1189,5.253]],["name/3749",[1060,53.836]],["parent/3749",[1189,5.253]],["name/3750",[1061,53.836]],["parent/3750",[1189,5.253]],["name/3751",[1062,53.836]],["parent/3751",[1189,5.253]],["name/3752",[1063,53.836]],["parent/3752",[1189,5.253]],["name/3753",[1064,53.836]],["parent/3753",[1189,5.253]],["name/3754",[1193,84.281]],["parent/3754",[1187,7.565]],["name/3755",[1194,75.808]],["parent/3755",[]],["name/3756",[1195,75.808]],["parent/3756",[1194,7.565]],["name/3757",[1031,53.836]],["parent/3757",[1196,5.253]],["name/3758",[1033,46.984]],["parent/3758",[1197,5.341]],["name/3759",[337,39.934]],["parent/3759",[1197,5.341]],["name/3760",[339,39.934]],["parent/3760",[1197,5.341]],["name/3761",[340,40.174]],["parent/3761",[1197,5.341]],["name/3762",[68,40.013]],["parent/3762",[1197,5.341]],["name/3763",[341,40.174]],["parent/3763",[1197,5.341]],["name/3764",[1081,54.837]],["parent/3764",[1197,5.341]],["name/3765",[1082,54.837]],["parent/3765",[1197,5.341]],["name/3766",[1083,54.837]],["parent/3766",[1197,5.341]],["name/3767",[1084,54.837]],["parent/3767",[1197,5.341]],["name/3768",[1085,54.837]],["parent/3768",[1197,5.341]],["name/3769",[1086,55.949]],["parent/3769",[1197,5.341]],["name/3770",[1087,55.949]],["parent/3770",[1197,5.341]],["name/3771",[1088,55.949]],["parent/3771",[1197,5.341]],["name/3772",[1089,55.949]],["parent/3772",[1197,5.341]],["name/3773",[1090,55.949]],["parent/3773",[1197,5.341]],["name/3774",[1091,59.158]],["parent/3774",[1197,5.341]],["name/3775",[1092,59.158]],["parent/3775",[1197,5.341]],["name/3776",[1093,59.158]],["parent/3776",[1197,5.341]],["name/3777",[1094,59.158]],["parent/3777",[1197,5.341]],["name/3778",[1095,59.158]],["parent/3778",[1197,5.341]],["name/3779",[1096,61.595]],["parent/3779",[1197,5.341]],["name/3780",[1097,61.595]],["parent/3780",[1197,5.341]],["name/3781",[1098,61.595]],["parent/3781",[1197,5.341]],["name/3782",[1099,61.595]],["parent/3782",[1197,5.341]],["name/3783",[1100,61.595]],["parent/3783",[1197,5.341]],["name/3784",[1107,69.618]],["parent/3784",[1197,5.341]],["name/3785",[1108,69.618]],["parent/3785",[1197,5.341]],["name/3786",[1109,69.618]],["parent/3786",[1197,5.341]],["name/3787",[1110,69.618]],["parent/3787",[1197,5.341]],["name/3788",[1111,69.618]],["parent/3788",[1197,5.341]],["name/3789",[54,36.379]],["parent/3789",[1197,5.341]],["name/3790",[8,46.826]],["parent/3790",[1196,5.253]],["name/3791",[1035,53.836]],["parent/3791",[1196,5.253]],["name/3792",[1036,53.836]],["parent/3792",[1196,5.253]],["name/3793",[1037,53.836]],["parent/3793",[1196,5.253]],["name/3794",[11,33.551]],["parent/3794",[1196,5.253]],["name/3795",[1038,53.836]],["parent/3795",[1196,5.253]],["name/3796",[1039,53.836]],["parent/3796",[1196,5.253]],["name/3797",[1040,53.836]],["parent/3797",[1196,5.253]],["name/3798",[1041,53.836]],["parent/3798",[1196,5.253]],["name/3799",[1033,46.984]],["parent/3799",[1196,5.253]],["name/3800",[1042,53.836]],["parent/3800",[1196,5.253]],["name/3801",[1043,53.836]],["parent/3801",[1196,5.253]],["name/3802",[1044,46.984]],["parent/3802",[1196,5.253]],["name/3803",[1045,53.836]],["parent/3803",[1196,5.253]],["name/3804",[1046,53.836]],["parent/3804",[1196,5.253]],["name/3805",[1047,53.836]],["parent/3805",[1196,5.253]],["name/3806",[1048,53.836]],["parent/3806",[1196,5.253]],["name/3807",[127,31.117]],["parent/3807",[1198,8.41]],["name/3808",[8,46.826]],["parent/3808",[1196,5.253]],["name/3809",[11,33.551]],["parent/3809",[1196,5.253]],["name/3810",[1050,53.836]],["parent/3810",[1196,5.253]],["name/3811",[127,31.117]],["parent/3811",[1199,8.41]],["name/3812",[1052,53.836]],["parent/3812",[1196,5.253]],["name/3813",[1053,53.836]],["parent/3813",[1196,5.253]],["name/3814",[1054,53.836]],["parent/3814",[1196,5.253]],["name/3815",[1055,53.836]],["parent/3815",[1196,5.253]],["name/3816",[1056,53.836]],["parent/3816",[1196,5.253]],["name/3817",[1057,53.836]],["parent/3817",[1196,5.253]],["name/3818",[1058,53.836]],["parent/3818",[1196,5.253]],["name/3819",[1059,53.836]],["parent/3819",[1196,5.253]],["name/3820",[1044,46.984]],["parent/3820",[1196,5.253]],["name/3821",[1060,53.836]],["parent/3821",[1196,5.253]],["name/3822",[1061,53.836]],["parent/3822",[1196,5.253]],["name/3823",[1062,53.836]],["parent/3823",[1196,5.253]],["name/3824",[1063,53.836]],["parent/3824",[1196,5.253]],["name/3825",[1064,53.836]],["parent/3825",[1196,5.253]],["name/3826",[1200,84.281]],["parent/3826",[1194,7.565]],["name/3827",[1201,75.808]],["parent/3827",[]],["name/3828",[1202,75.808]],["parent/3828",[1201,7.565]],["name/3829",[1031,53.836]],["parent/3829",[1203,5.253]],["name/3830",[1033,46.984]],["parent/3830",[1204,5.341]],["name/3831",[337,39.934]],["parent/3831",[1204,5.341]],["name/3832",[339,39.934]],["parent/3832",[1204,5.341]],["name/3833",[340,40.174]],["parent/3833",[1204,5.341]],["name/3834",[68,40.013]],["parent/3834",[1204,5.341]],["name/3835",[341,40.174]],["parent/3835",[1204,5.341]],["name/3836",[1081,54.837]],["parent/3836",[1204,5.341]],["name/3837",[1082,54.837]],["parent/3837",[1204,5.341]],["name/3838",[1083,54.837]],["parent/3838",[1204,5.341]],["name/3839",[1084,54.837]],["parent/3839",[1204,5.341]],["name/3840",[1085,54.837]],["parent/3840",[1204,5.341]],["name/3841",[1086,55.949]],["parent/3841",[1204,5.341]],["name/3842",[1087,55.949]],["parent/3842",[1204,5.341]],["name/3843",[1088,55.949]],["parent/3843",[1204,5.341]],["name/3844",[1089,55.949]],["parent/3844",[1204,5.341]],["name/3845",[1090,55.949]],["parent/3845",[1204,5.341]],["name/3846",[1091,59.158]],["parent/3846",[1204,5.341]],["name/3847",[1092,59.158]],["parent/3847",[1204,5.341]],["name/3848",[1093,59.158]],["parent/3848",[1204,5.341]],["name/3849",[1094,59.158]],["parent/3849",[1204,5.341]],["name/3850",[1095,59.158]],["parent/3850",[1204,5.341]],["name/3851",[1096,61.595]],["parent/3851",[1204,5.341]],["name/3852",[1097,61.595]],["parent/3852",[1204,5.341]],["name/3853",[1098,61.595]],["parent/3853",[1204,5.341]],["name/3854",[1099,61.595]],["parent/3854",[1204,5.341]],["name/3855",[1100,61.595]],["parent/3855",[1204,5.341]],["name/3856",[1107,69.618]],["parent/3856",[1204,5.341]],["name/3857",[1108,69.618]],["parent/3857",[1204,5.341]],["name/3858",[1109,69.618]],["parent/3858",[1204,5.341]],["name/3859",[1110,69.618]],["parent/3859",[1204,5.341]],["name/3860",[1111,69.618]],["parent/3860",[1204,5.341]],["name/3861",[54,36.379]],["parent/3861",[1204,5.341]],["name/3862",[8,46.826]],["parent/3862",[1203,5.253]],["name/3863",[1035,53.836]],["parent/3863",[1203,5.253]],["name/3864",[1036,53.836]],["parent/3864",[1203,5.253]],["name/3865",[1037,53.836]],["parent/3865",[1203,5.253]],["name/3866",[11,33.551]],["parent/3866",[1203,5.253]],["name/3867",[1038,53.836]],["parent/3867",[1203,5.253]],["name/3868",[1039,53.836]],["parent/3868",[1203,5.253]],["name/3869",[1040,53.836]],["parent/3869",[1203,5.253]],["name/3870",[1041,53.836]],["parent/3870",[1203,5.253]],["name/3871",[1033,46.984]],["parent/3871",[1203,5.253]],["name/3872",[1042,53.836]],["parent/3872",[1203,5.253]],["name/3873",[1043,53.836]],["parent/3873",[1203,5.253]],["name/3874",[1044,46.984]],["parent/3874",[1203,5.253]],["name/3875",[1045,53.836]],["parent/3875",[1203,5.253]],["name/3876",[1046,53.836]],["parent/3876",[1203,5.253]],["name/3877",[1047,53.836]],["parent/3877",[1203,5.253]],["name/3878",[1048,53.836]],["parent/3878",[1203,5.253]],["name/3879",[127,31.117]],["parent/3879",[1205,8.41]],["name/3880",[8,46.826]],["parent/3880",[1203,5.253]],["name/3881",[11,33.551]],["parent/3881",[1203,5.253]],["name/3882",[1050,53.836]],["parent/3882",[1203,5.253]],["name/3883",[127,31.117]],["parent/3883",[1206,8.41]],["name/3884",[1052,53.836]],["parent/3884",[1203,5.253]],["name/3885",[1053,53.836]],["parent/3885",[1203,5.253]],["name/3886",[1054,53.836]],["parent/3886",[1203,5.253]],["name/3887",[1055,53.836]],["parent/3887",[1203,5.253]],["name/3888",[1056,53.836]],["parent/3888",[1203,5.253]],["name/3889",[1057,53.836]],["parent/3889",[1203,5.253]],["name/3890",[1058,53.836]],["parent/3890",[1203,5.253]],["name/3891",[1059,53.836]],["parent/3891",[1203,5.253]],["name/3892",[1044,46.984]],["parent/3892",[1203,5.253]],["name/3893",[1060,53.836]],["parent/3893",[1203,5.253]],["name/3894",[1061,53.836]],["parent/3894",[1203,5.253]],["name/3895",[1062,53.836]],["parent/3895",[1203,5.253]],["name/3896",[1063,53.836]],["parent/3896",[1203,5.253]],["name/3897",[1064,53.836]],["parent/3897",[1203,5.253]],["name/3898",[1207,84.281]],["parent/3898",[1201,7.565]],["name/3899",[1208,75.808]],["parent/3899",[]],["name/3900",[1209,73.295]],["parent/3900",[1208,7.565]],["name/3901",[1031,53.836]],["parent/3901",[1210,5.253]],["name/3902",[1033,46.984]],["parent/3902",[1211,5.472]],["name/3903",[337,39.934]],["parent/3903",[1211,5.472]],["name/3904",[339,39.934]],["parent/3904",[1211,5.472]],["name/3905",[340,40.174]],["parent/3905",[1211,5.472]],["name/3906",[68,40.013]],["parent/3906",[1211,5.472]],["name/3907",[341,40.174]],["parent/3907",[1211,5.472]],["name/3908",[1081,54.837]],["parent/3908",[1211,5.472]],["name/3909",[1082,54.837]],["parent/3909",[1211,5.472]],["name/3910",[1083,54.837]],["parent/3910",[1211,5.472]],["name/3911",[1084,54.837]],["parent/3911",[1211,5.472]],["name/3912",[1085,54.837]],["parent/3912",[1211,5.472]],["name/3913",[1086,55.949]],["parent/3913",[1211,5.472]],["name/3914",[1087,55.949]],["parent/3914",[1211,5.472]],["name/3915",[1088,55.949]],["parent/3915",[1211,5.472]],["name/3916",[1089,55.949]],["parent/3916",[1211,5.472]],["name/3917",[1090,55.949]],["parent/3917",[1211,5.472]],["name/3918",[1091,59.158]],["parent/3918",[1211,5.472]],["name/3919",[1092,59.158]],["parent/3919",[1211,5.472]],["name/3920",[1093,59.158]],["parent/3920",[1211,5.472]],["name/3921",[1094,59.158]],["parent/3921",[1211,5.472]],["name/3922",[1095,59.158]],["parent/3922",[1211,5.472]],["name/3923",[1096,61.595]],["parent/3923",[1211,5.472]],["name/3924",[1097,61.595]],["parent/3924",[1211,5.472]],["name/3925",[1098,61.595]],["parent/3925",[1211,5.472]],["name/3926",[1099,61.595]],["parent/3926",[1211,5.472]],["name/3927",[1100,61.595]],["parent/3927",[1211,5.472]],["name/3928",[11,33.551]],["parent/3928",[1211,5.472]],["name/3929",[54,36.379]],["parent/3929",[1211,5.472]],["name/3930",[8,46.826]],["parent/3930",[1210,5.253]],["name/3931",[1035,53.836]],["parent/3931",[1210,5.253]],["name/3932",[1036,53.836]],["parent/3932",[1210,5.253]],["name/3933",[1037,53.836]],["parent/3933",[1210,5.253]],["name/3934",[11,33.551]],["parent/3934",[1210,5.253]],["name/3935",[1038,53.836]],["parent/3935",[1210,5.253]],["name/3936",[1039,53.836]],["parent/3936",[1210,5.253]],["name/3937",[1040,53.836]],["parent/3937",[1210,5.253]],["name/3938",[1041,53.836]],["parent/3938",[1210,5.253]],["name/3939",[1033,46.984]],["parent/3939",[1210,5.253]],["name/3940",[1042,53.836]],["parent/3940",[1210,5.253]],["name/3941",[1043,53.836]],["parent/3941",[1210,5.253]],["name/3942",[1044,46.984]],["parent/3942",[1210,5.253]],["name/3943",[1045,53.836]],["parent/3943",[1210,5.253]],["name/3944",[1046,53.836]],["parent/3944",[1210,5.253]],["name/3945",[1047,53.836]],["parent/3945",[1210,5.253]],["name/3946",[1048,53.836]],["parent/3946",[1210,5.253]],["name/3947",[127,31.117]],["parent/3947",[1212,8.41]],["name/3948",[8,46.826]],["parent/3948",[1210,5.253]],["name/3949",[11,33.551]],["parent/3949",[1210,5.253]],["name/3950",[1050,53.836]],["parent/3950",[1210,5.253]],["name/3951",[127,31.117]],["parent/3951",[1213,8.41]],["name/3952",[1052,53.836]],["parent/3952",[1210,5.253]],["name/3953",[1053,53.836]],["parent/3953",[1210,5.253]],["name/3954",[1054,53.836]],["parent/3954",[1210,5.253]],["name/3955",[1055,53.836]],["parent/3955",[1210,5.253]],["name/3956",[1056,53.836]],["parent/3956",[1210,5.253]],["name/3957",[1057,53.836]],["parent/3957",[1210,5.253]],["name/3958",[1058,53.836]],["parent/3958",[1210,5.253]],["name/3959",[1059,53.836]],["parent/3959",[1210,5.253]],["name/3960",[1044,46.984]],["parent/3960",[1210,5.253]],["name/3961",[1060,53.836]],["parent/3961",[1210,5.253]],["name/3962",[1061,53.836]],["parent/3962",[1210,5.253]],["name/3963",[1062,53.836]],["parent/3963",[1210,5.253]],["name/3964",[1063,53.836]],["parent/3964",[1210,5.253]],["name/3965",[1064,53.836]],["parent/3965",[1210,5.253]],["name/3966",[1214,84.281]],["parent/3966",[1208,7.565]],["name/3967",[1215,75.808]],["parent/3967",[]],["name/3968",[636,68.187]],["parent/3968",[1215,7.565]],["name/3969",[1031,53.836]],["parent/3969",[1216,5.253]],["name/3970",[1033,46.984]],["parent/3970",[1217,5.472]],["name/3971",[337,39.934]],["parent/3971",[1217,5.472]],["name/3972",[339,39.934]],["parent/3972",[1217,5.472]],["name/3973",[340,40.174]],["parent/3973",[1217,5.472]],["name/3974",[68,40.013]],["parent/3974",[1217,5.472]],["name/3975",[341,40.174]],["parent/3975",[1217,5.472]],["name/3976",[1081,54.837]],["parent/3976",[1217,5.472]],["name/3977",[1082,54.837]],["parent/3977",[1217,5.472]],["name/3978",[1083,54.837]],["parent/3978",[1217,5.472]],["name/3979",[1084,54.837]],["parent/3979",[1217,5.472]],["name/3980",[1085,54.837]],["parent/3980",[1217,5.472]],["name/3981",[1086,55.949]],["parent/3981",[1217,5.472]],["name/3982",[1087,55.949]],["parent/3982",[1217,5.472]],["name/3983",[1088,55.949]],["parent/3983",[1217,5.472]],["name/3984",[1089,55.949]],["parent/3984",[1217,5.472]],["name/3985",[1090,55.949]],["parent/3985",[1217,5.472]],["name/3986",[1091,59.158]],["parent/3986",[1217,5.472]],["name/3987",[1092,59.158]],["parent/3987",[1217,5.472]],["name/3988",[1093,59.158]],["parent/3988",[1217,5.472]],["name/3989",[1094,59.158]],["parent/3989",[1217,5.472]],["name/3990",[1095,59.158]],["parent/3990",[1217,5.472]],["name/3991",[1096,61.595]],["parent/3991",[1217,5.472]],["name/3992",[1097,61.595]],["parent/3992",[1217,5.472]],["name/3993",[1098,61.595]],["parent/3993",[1217,5.472]],["name/3994",[1099,61.595]],["parent/3994",[1217,5.472]],["name/3995",[1100,61.595]],["parent/3995",[1217,5.472]],["name/3996",[11,33.551]],["parent/3996",[1217,5.472]],["name/3997",[54,36.379]],["parent/3997",[1217,5.472]],["name/3998",[8,46.826]],["parent/3998",[1216,5.253]],["name/3999",[1035,53.836]],["parent/3999",[1216,5.253]],["name/4000",[1036,53.836]],["parent/4000",[1216,5.253]],["name/4001",[1037,53.836]],["parent/4001",[1216,5.253]],["name/4002",[11,33.551]],["parent/4002",[1216,5.253]],["name/4003",[1038,53.836]],["parent/4003",[1216,5.253]],["name/4004",[1039,53.836]],["parent/4004",[1216,5.253]],["name/4005",[1040,53.836]],["parent/4005",[1216,5.253]],["name/4006",[1041,53.836]],["parent/4006",[1216,5.253]],["name/4007",[1033,46.984]],["parent/4007",[1216,5.253]],["name/4008",[1042,53.836]],["parent/4008",[1216,5.253]],["name/4009",[1043,53.836]],["parent/4009",[1216,5.253]],["name/4010",[1044,46.984]],["parent/4010",[1216,5.253]],["name/4011",[1045,53.836]],["parent/4011",[1216,5.253]],["name/4012",[1046,53.836]],["parent/4012",[1216,5.253]],["name/4013",[1047,53.836]],["parent/4013",[1216,5.253]],["name/4014",[1048,53.836]],["parent/4014",[1216,5.253]],["name/4015",[127,31.117]],["parent/4015",[1218,8.41]],["name/4016",[8,46.826]],["parent/4016",[1216,5.253]],["name/4017",[11,33.551]],["parent/4017",[1216,5.253]],["name/4018",[1050,53.836]],["parent/4018",[1216,5.253]],["name/4019",[127,31.117]],["parent/4019",[1219,8.41]],["name/4020",[1052,53.836]],["parent/4020",[1216,5.253]],["name/4021",[1053,53.836]],["parent/4021",[1216,5.253]],["name/4022",[1054,53.836]],["parent/4022",[1216,5.253]],["name/4023",[1055,53.836]],["parent/4023",[1216,5.253]],["name/4024",[1056,53.836]],["parent/4024",[1216,5.253]],["name/4025",[1057,53.836]],["parent/4025",[1216,5.253]],["name/4026",[1058,53.836]],["parent/4026",[1216,5.253]],["name/4027",[1059,53.836]],["parent/4027",[1216,5.253]],["name/4028",[1044,46.984]],["parent/4028",[1216,5.253]],["name/4029",[1060,53.836]],["parent/4029",[1216,5.253]],["name/4030",[1061,53.836]],["parent/4030",[1216,5.253]],["name/4031",[1062,53.836]],["parent/4031",[1216,5.253]],["name/4032",[1063,53.836]],["parent/4032",[1216,5.253]],["name/4033",[1064,53.836]],["parent/4033",[1216,5.253]],["name/4034",[1220,84.281]],["parent/4034",[1215,7.565]],["name/4035",[1221,75.808]],["parent/4035",[]],["name/4036",[93,62.309]],["parent/4036",[1221,7.565]],["name/4037",[1031,53.836]],["parent/4037",[1222,5.253]],["name/4038",[1033,46.984]],["parent/4038",[1223,5.341]],["name/4039",[337,39.934]],["parent/4039",[1223,5.341]],["name/4040",[339,39.934]],["parent/4040",[1223,5.341]],["name/4041",[340,40.174]],["parent/4041",[1223,5.341]],["name/4042",[68,40.013]],["parent/4042",[1223,5.341]],["name/4043",[341,40.174]],["parent/4043",[1223,5.341]],["name/4044",[1081,54.837]],["parent/4044",[1223,5.341]],["name/4045",[1082,54.837]],["parent/4045",[1223,5.341]],["name/4046",[1083,54.837]],["parent/4046",[1223,5.341]],["name/4047",[1084,54.837]],["parent/4047",[1223,5.341]],["name/4048",[1085,54.837]],["parent/4048",[1223,5.341]],["name/4049",[1086,55.949]],["parent/4049",[1223,5.341]],["name/4050",[1087,55.949]],["parent/4050",[1223,5.341]],["name/4051",[1088,55.949]],["parent/4051",[1223,5.341]],["name/4052",[1089,55.949]],["parent/4052",[1223,5.341]],["name/4053",[1090,55.949]],["parent/4053",[1223,5.341]],["name/4054",[1091,59.158]],["parent/4054",[1223,5.341]],["name/4055",[1092,59.158]],["parent/4055",[1223,5.341]],["name/4056",[1093,59.158]],["parent/4056",[1223,5.341]],["name/4057",[1094,59.158]],["parent/4057",[1223,5.341]],["name/4058",[1095,59.158]],["parent/4058",[1223,5.341]],["name/4059",[1096,61.595]],["parent/4059",[1223,5.341]],["name/4060",[1097,61.595]],["parent/4060",[1223,5.341]],["name/4061",[1098,61.595]],["parent/4061",[1223,5.341]],["name/4062",[1099,61.595]],["parent/4062",[1223,5.341]],["name/4063",[1100,61.595]],["parent/4063",[1223,5.341]],["name/4064",[1107,69.618]],["parent/4064",[1223,5.341]],["name/4065",[1108,69.618]],["parent/4065",[1223,5.341]],["name/4066",[1109,69.618]],["parent/4066",[1223,5.341]],["name/4067",[1110,69.618]],["parent/4067",[1223,5.341]],["name/4068",[1111,69.618]],["parent/4068",[1223,5.341]],["name/4069",[54,36.379]],["parent/4069",[1223,5.341]],["name/4070",[8,46.826]],["parent/4070",[1222,5.253]],["name/4071",[1035,53.836]],["parent/4071",[1222,5.253]],["name/4072",[1036,53.836]],["parent/4072",[1222,5.253]],["name/4073",[1037,53.836]],["parent/4073",[1222,5.253]],["name/4074",[11,33.551]],["parent/4074",[1222,5.253]],["name/4075",[1038,53.836]],["parent/4075",[1222,5.253]],["name/4076",[1039,53.836]],["parent/4076",[1222,5.253]],["name/4077",[1040,53.836]],["parent/4077",[1222,5.253]],["name/4078",[1041,53.836]],["parent/4078",[1222,5.253]],["name/4079",[1033,46.984]],["parent/4079",[1222,5.253]],["name/4080",[1042,53.836]],["parent/4080",[1222,5.253]],["name/4081",[1043,53.836]],["parent/4081",[1222,5.253]],["name/4082",[1044,46.984]],["parent/4082",[1222,5.253]],["name/4083",[1045,53.836]],["parent/4083",[1222,5.253]],["name/4084",[1046,53.836]],["parent/4084",[1222,5.253]],["name/4085",[1047,53.836]],["parent/4085",[1222,5.253]],["name/4086",[1048,53.836]],["parent/4086",[1222,5.253]],["name/4087",[127,31.117]],["parent/4087",[1224,8.41]],["name/4088",[8,46.826]],["parent/4088",[1222,5.253]],["name/4089",[11,33.551]],["parent/4089",[1222,5.253]],["name/4090",[1050,53.836]],["parent/4090",[1222,5.253]],["name/4091",[127,31.117]],["parent/4091",[1225,8.41]],["name/4092",[1052,53.836]],["parent/4092",[1222,5.253]],["name/4093",[1053,53.836]],["parent/4093",[1222,5.253]],["name/4094",[1054,53.836]],["parent/4094",[1222,5.253]],["name/4095",[1055,53.836]],["parent/4095",[1222,5.253]],["name/4096",[1056,53.836]],["parent/4096",[1222,5.253]],["name/4097",[1057,53.836]],["parent/4097",[1222,5.253]],["name/4098",[1058,53.836]],["parent/4098",[1222,5.253]],["name/4099",[1059,53.836]],["parent/4099",[1222,5.253]],["name/4100",[1044,46.984]],["parent/4100",[1222,5.253]],["name/4101",[1060,53.836]],["parent/4101",[1222,5.253]],["name/4102",[1061,53.836]],["parent/4102",[1222,5.253]],["name/4103",[1062,53.836]],["parent/4103",[1222,5.253]],["name/4104",[1063,53.836]],["parent/4104",[1222,5.253]],["name/4105",[1064,53.836]],["parent/4105",[1222,5.253]],["name/4106",[1226,84.281]],["parent/4106",[1221,7.565]],["name/4107",[1227,75.808]],["parent/4107",[]],["name/4108",[102,60.302]],["parent/4108",[1227,7.565]],["name/4109",[1031,53.836]],["parent/4109",[1228,5.253]],["name/4110",[1033,46.984]],["parent/4110",[1229,5.903]],["name/4111",[337,39.934]],["parent/4111",[1229,5.903]],["name/4112",[339,39.934]],["parent/4112",[1229,5.903]],["name/4113",[340,40.174]],["parent/4113",[1229,5.903]],["name/4114",[68,40.013]],["parent/4114",[1229,5.903]],["name/4115",[341,40.174]],["parent/4115",[1229,5.903]],["name/4116",[1081,54.837]],["parent/4116",[1229,5.903]],["name/4117",[1082,54.837]],["parent/4117",[1229,5.903]],["name/4118",[1083,54.837]],["parent/4118",[1229,5.903]],["name/4119",[1084,54.837]],["parent/4119",[1229,5.903]],["name/4120",[1085,54.837]],["parent/4120",[1229,5.903]],["name/4121",[1086,55.949]],["parent/4121",[1229,5.903]],["name/4122",[1087,55.949]],["parent/4122",[1229,5.903]],["name/4123",[1088,55.949]],["parent/4123",[1229,5.903]],["name/4124",[1089,55.949]],["parent/4124",[1229,5.903]],["name/4125",[1090,55.949]],["parent/4125",[1229,5.903]],["name/4126",[11,33.551]],["parent/4126",[1229,5.903]],["name/4127",[54,36.379]],["parent/4127",[1229,5.903]],["name/4128",[8,46.826]],["parent/4128",[1228,5.253]],["name/4129",[1035,53.836]],["parent/4129",[1228,5.253]],["name/4130",[1036,53.836]],["parent/4130",[1228,5.253]],["name/4131",[1037,53.836]],["parent/4131",[1228,5.253]],["name/4132",[11,33.551]],["parent/4132",[1228,5.253]],["name/4133",[1038,53.836]],["parent/4133",[1228,5.253]],["name/4134",[1039,53.836]],["parent/4134",[1228,5.253]],["name/4135",[1040,53.836]],["parent/4135",[1228,5.253]],["name/4136",[1041,53.836]],["parent/4136",[1228,5.253]],["name/4137",[1033,46.984]],["parent/4137",[1228,5.253]],["name/4138",[1042,53.836]],["parent/4138",[1228,5.253]],["name/4139",[1043,53.836]],["parent/4139",[1228,5.253]],["name/4140",[1044,46.984]],["parent/4140",[1228,5.253]],["name/4141",[1045,53.836]],["parent/4141",[1228,5.253]],["name/4142",[1046,53.836]],["parent/4142",[1228,5.253]],["name/4143",[1047,53.836]],["parent/4143",[1228,5.253]],["name/4144",[1048,53.836]],["parent/4144",[1228,5.253]],["name/4145",[127,31.117]],["parent/4145",[1230,8.41]],["name/4146",[8,46.826]],["parent/4146",[1228,5.253]],["name/4147",[11,33.551]],["parent/4147",[1228,5.253]],["name/4148",[1050,53.836]],["parent/4148",[1228,5.253]],["name/4149",[127,31.117]],["parent/4149",[1231,8.41]],["name/4150",[1052,53.836]],["parent/4150",[1228,5.253]],["name/4151",[1053,53.836]],["parent/4151",[1228,5.253]],["name/4152",[1054,53.836]],["parent/4152",[1228,5.253]],["name/4153",[1055,53.836]],["parent/4153",[1228,5.253]],["name/4154",[1056,53.836]],["parent/4154",[1228,5.253]],["name/4155",[1057,53.836]],["parent/4155",[1228,5.253]],["name/4156",[1058,53.836]],["parent/4156",[1228,5.253]],["name/4157",[1059,53.836]],["parent/4157",[1228,5.253]],["name/4158",[1044,46.984]],["parent/4158",[1228,5.253]],["name/4159",[1060,53.836]],["parent/4159",[1228,5.253]],["name/4160",[1061,53.836]],["parent/4160",[1228,5.253]],["name/4161",[1062,53.836]],["parent/4161",[1228,5.253]],["name/4162",[1063,53.836]],["parent/4162",[1228,5.253]],["name/4163",[1064,53.836]],["parent/4163",[1228,5.253]],["name/4164",[1232,84.281]],["parent/4164",[1227,7.565]],["name/4165",[1233,75.808]],["parent/4165",[]],["name/4166",[631,68.187]],["parent/4166",[1233,7.565]],["name/4167",[1031,53.836]],["parent/4167",[1234,5.253]],["name/4168",[1033,46.984]],["parent/4168",[1235,5.665]],["name/4169",[337,39.934]],["parent/4169",[1235,5.665]],["name/4170",[339,39.934]],["parent/4170",[1235,5.665]],["name/4171",[340,40.174]],["parent/4171",[1235,5.665]],["name/4172",[68,40.013]],["parent/4172",[1235,5.665]],["name/4173",[341,40.174]],["parent/4173",[1235,5.665]],["name/4174",[1081,54.837]],["parent/4174",[1235,5.665]],["name/4175",[1082,54.837]],["parent/4175",[1235,5.665]],["name/4176",[1083,54.837]],["parent/4176",[1235,5.665]],["name/4177",[1084,54.837]],["parent/4177",[1235,5.665]],["name/4178",[1085,54.837]],["parent/4178",[1235,5.665]],["name/4179",[1086,55.949]],["parent/4179",[1235,5.665]],["name/4180",[1087,55.949]],["parent/4180",[1235,5.665]],["name/4181",[1088,55.949]],["parent/4181",[1235,5.665]],["name/4182",[1089,55.949]],["parent/4182",[1235,5.665]],["name/4183",[1090,55.949]],["parent/4183",[1235,5.665]],["name/4184",[1091,59.158]],["parent/4184",[1235,5.665]],["name/4185",[1092,59.158]],["parent/4185",[1235,5.665]],["name/4186",[1093,59.158]],["parent/4186",[1235,5.665]],["name/4187",[1094,59.158]],["parent/4187",[1235,5.665]],["name/4188",[1095,59.158]],["parent/4188",[1235,5.665]],["name/4189",[11,33.551]],["parent/4189",[1235,5.665]],["name/4190",[54,36.379]],["parent/4190",[1235,5.665]],["name/4191",[8,46.826]],["parent/4191",[1234,5.253]],["name/4192",[1035,53.836]],["parent/4192",[1234,5.253]],["name/4193",[1036,53.836]],["parent/4193",[1234,5.253]],["name/4194",[1037,53.836]],["parent/4194",[1234,5.253]],["name/4195",[11,33.551]],["parent/4195",[1234,5.253]],["name/4196",[1038,53.836]],["parent/4196",[1234,5.253]],["name/4197",[1039,53.836]],["parent/4197",[1234,5.253]],["name/4198",[1040,53.836]],["parent/4198",[1234,5.253]],["name/4199",[1041,53.836]],["parent/4199",[1234,5.253]],["name/4200",[1033,46.984]],["parent/4200",[1234,5.253]],["name/4201",[1042,53.836]],["parent/4201",[1234,5.253]],["name/4202",[1043,53.836]],["parent/4202",[1234,5.253]],["name/4203",[1044,46.984]],["parent/4203",[1234,5.253]],["name/4204",[1045,53.836]],["parent/4204",[1234,5.253]],["name/4205",[1046,53.836]],["parent/4205",[1234,5.253]],["name/4206",[1047,53.836]],["parent/4206",[1234,5.253]],["name/4207",[1048,53.836]],["parent/4207",[1234,5.253]],["name/4208",[127,31.117]],["parent/4208",[1236,8.41]],["name/4209",[8,46.826]],["parent/4209",[1234,5.253]],["name/4210",[11,33.551]],["parent/4210",[1234,5.253]],["name/4211",[1050,53.836]],["parent/4211",[1234,5.253]],["name/4212",[127,31.117]],["parent/4212",[1237,8.41]],["name/4213",[1052,53.836]],["parent/4213",[1234,5.253]],["name/4214",[1053,53.836]],["parent/4214",[1234,5.253]],["name/4215",[1054,53.836]],["parent/4215",[1234,5.253]],["name/4216",[1055,53.836]],["parent/4216",[1234,5.253]],["name/4217",[1056,53.836]],["parent/4217",[1234,5.253]],["name/4218",[1057,53.836]],["parent/4218",[1234,5.253]],["name/4219",[1058,53.836]],["parent/4219",[1234,5.253]],["name/4220",[1059,53.836]],["parent/4220",[1234,5.253]],["name/4221",[1044,46.984]],["parent/4221",[1234,5.253]],["name/4222",[1060,53.836]],["parent/4222",[1234,5.253]],["name/4223",[1061,53.836]],["parent/4223",[1234,5.253]],["name/4224",[1062,53.836]],["parent/4224",[1234,5.253]],["name/4225",[1063,53.836]],["parent/4225",[1234,5.253]],["name/4226",[1064,53.836]],["parent/4226",[1234,5.253]],["name/4227",[1238,84.281]],["parent/4227",[1233,7.565]],["name/4228",[1239,75.808]],["parent/4228",[]],["name/4229",[632,71.289]],["parent/4229",[1239,7.565]],["name/4230",[1031,53.836]],["parent/4230",[1240,5.253]],["name/4231",[1033,46.984]],["parent/4231",[1241,5.508]],["name/4232",[337,39.934]],["parent/4232",[1241,5.508]],["name/4233",[339,39.934]],["parent/4233",[1241,5.508]],["name/4234",[340,40.174]],["parent/4234",[1241,5.508]],["name/4235",[68,40.013]],["parent/4235",[1241,5.508]],["name/4236",[341,40.174]],["parent/4236",[1241,5.508]],["name/4237",[1081,54.837]],["parent/4237",[1241,5.508]],["name/4238",[1082,54.837]],["parent/4238",[1241,5.508]],["name/4239",[1083,54.837]],["parent/4239",[1241,5.508]],["name/4240",[1084,54.837]],["parent/4240",[1241,5.508]],["name/4241",[1085,54.837]],["parent/4241",[1241,5.508]],["name/4242",[1086,55.949]],["parent/4242",[1241,5.508]],["name/4243",[1087,55.949]],["parent/4243",[1241,5.508]],["name/4244",[1088,55.949]],["parent/4244",[1241,5.508]],["name/4245",[1089,55.949]],["parent/4245",[1241,5.508]],["name/4246",[1090,55.949]],["parent/4246",[1241,5.508]],["name/4247",[1091,59.158]],["parent/4247",[1241,5.508]],["name/4248",[1092,59.158]],["parent/4248",[1241,5.508]],["name/4249",[1093,59.158]],["parent/4249",[1241,5.508]],["name/4250",[1094,59.158]],["parent/4250",[1241,5.508]],["name/4251",[1095,59.158]],["parent/4251",[1241,5.508]],["name/4252",[1096,61.595]],["parent/4252",[1241,5.508]],["name/4253",[1097,61.595]],["parent/4253",[1241,5.508]],["name/4254",[1098,61.595]],["parent/4254",[1241,5.508]],["name/4255",[1099,61.595]],["parent/4255",[1241,5.508]],["name/4256",[1100,61.595]],["parent/4256",[1241,5.508]],["name/4257",[54,36.379]],["parent/4257",[1241,5.508]],["name/4258",[8,46.826]],["parent/4258",[1240,5.253]],["name/4259",[1035,53.836]],["parent/4259",[1240,5.253]],["name/4260",[1036,53.836]],["parent/4260",[1240,5.253]],["name/4261",[1037,53.836]],["parent/4261",[1240,5.253]],["name/4262",[11,33.551]],["parent/4262",[1240,5.253]],["name/4263",[1038,53.836]],["parent/4263",[1240,5.253]],["name/4264",[1039,53.836]],["parent/4264",[1240,5.253]],["name/4265",[1040,53.836]],["parent/4265",[1240,5.253]],["name/4266",[1041,53.836]],["parent/4266",[1240,5.253]],["name/4267",[1033,46.984]],["parent/4267",[1240,5.253]],["name/4268",[1042,53.836]],["parent/4268",[1240,5.253]],["name/4269",[1043,53.836]],["parent/4269",[1240,5.253]],["name/4270",[1044,46.984]],["parent/4270",[1240,5.253]],["name/4271",[1045,53.836]],["parent/4271",[1240,5.253]],["name/4272",[1046,53.836]],["parent/4272",[1240,5.253]],["name/4273",[1047,53.836]],["parent/4273",[1240,5.253]],["name/4274",[1048,53.836]],["parent/4274",[1240,5.253]],["name/4275",[127,31.117]],["parent/4275",[1242,8.41]],["name/4276",[8,46.826]],["parent/4276",[1240,5.253]],["name/4277",[11,33.551]],["parent/4277",[1240,5.253]],["name/4278",[1050,53.836]],["parent/4278",[1240,5.253]],["name/4279",[127,31.117]],["parent/4279",[1243,8.41]],["name/4280",[1052,53.836]],["parent/4280",[1240,5.253]],["name/4281",[1053,53.836]],["parent/4281",[1240,5.253]],["name/4282",[1054,53.836]],["parent/4282",[1240,5.253]],["name/4283",[1055,53.836]],["parent/4283",[1240,5.253]],["name/4284",[1056,53.836]],["parent/4284",[1240,5.253]],["name/4285",[1057,53.836]],["parent/4285",[1240,5.253]],["name/4286",[1058,53.836]],["parent/4286",[1240,5.253]],["name/4287",[1059,53.836]],["parent/4287",[1240,5.253]],["name/4288",[1044,46.984]],["parent/4288",[1240,5.253]],["name/4289",[1060,53.836]],["parent/4289",[1240,5.253]],["name/4290",[1061,53.836]],["parent/4290",[1240,5.253]],["name/4291",[1062,53.836]],["parent/4291",[1240,5.253]],["name/4292",[1063,53.836]],["parent/4292",[1240,5.253]],["name/4293",[1064,53.836]],["parent/4293",[1240,5.253]],["name/4294",[1244,84.281]],["parent/4294",[1239,7.565]],["name/4295",[1245,75.808]],["parent/4295",[]],["name/4296",[46,68.187]],["parent/4296",[1245,7.565]],["name/4297",[1031,53.836]],["parent/4297",[1246,5.253]],["name/4298",[1033,46.984]],["parent/4298",[1247,5.708]],["name/4299",[337,39.934]],["parent/4299",[1247,5.708]],["name/4300",[339,39.934]],["parent/4300",[1247,5.708]],["name/4301",[340,40.174]],["parent/4301",[1247,5.708]],["name/4302",[68,40.013]],["parent/4302",[1247,5.708]],["name/4303",[341,40.174]],["parent/4303",[1247,5.708]],["name/4304",[1081,54.837]],["parent/4304",[1247,5.708]],["name/4305",[1082,54.837]],["parent/4305",[1247,5.708]],["name/4306",[1083,54.837]],["parent/4306",[1247,5.708]],["name/4307",[1084,54.837]],["parent/4307",[1247,5.708]],["name/4308",[1085,54.837]],["parent/4308",[1247,5.708]],["name/4309",[1086,55.949]],["parent/4309",[1247,5.708]],["name/4310",[1087,55.949]],["parent/4310",[1247,5.708]],["name/4311",[1088,55.949]],["parent/4311",[1247,5.708]],["name/4312",[1089,55.949]],["parent/4312",[1247,5.708]],["name/4313",[1090,55.949]],["parent/4313",[1247,5.708]],["name/4314",[1091,59.158]],["parent/4314",[1247,5.708]],["name/4315",[1092,59.158]],["parent/4315",[1247,5.708]],["name/4316",[1093,59.158]],["parent/4316",[1247,5.708]],["name/4317",[1094,59.158]],["parent/4317",[1247,5.708]],["name/4318",[1095,59.158]],["parent/4318",[1247,5.708]],["name/4319",[54,36.379]],["parent/4319",[1247,5.708]],["name/4320",[8,46.826]],["parent/4320",[1246,5.253]],["name/4321",[1035,53.836]],["parent/4321",[1246,5.253]],["name/4322",[1036,53.836]],["parent/4322",[1246,5.253]],["name/4323",[1037,53.836]],["parent/4323",[1246,5.253]],["name/4324",[11,33.551]],["parent/4324",[1246,5.253]],["name/4325",[1038,53.836]],["parent/4325",[1246,5.253]],["name/4326",[1039,53.836]],["parent/4326",[1246,5.253]],["name/4327",[1040,53.836]],["parent/4327",[1246,5.253]],["name/4328",[1041,53.836]],["parent/4328",[1246,5.253]],["name/4329",[1033,46.984]],["parent/4329",[1246,5.253]],["name/4330",[1042,53.836]],["parent/4330",[1246,5.253]],["name/4331",[1043,53.836]],["parent/4331",[1246,5.253]],["name/4332",[1044,46.984]],["parent/4332",[1246,5.253]],["name/4333",[1045,53.836]],["parent/4333",[1246,5.253]],["name/4334",[1046,53.836]],["parent/4334",[1246,5.253]],["name/4335",[1047,53.836]],["parent/4335",[1246,5.253]],["name/4336",[1048,53.836]],["parent/4336",[1246,5.253]],["name/4337",[127,31.117]],["parent/4337",[1248,8.41]],["name/4338",[8,46.826]],["parent/4338",[1246,5.253]],["name/4339",[11,33.551]],["parent/4339",[1246,5.253]],["name/4340",[1050,53.836]],["parent/4340",[1246,5.253]],["name/4341",[127,31.117]],["parent/4341",[1249,8.41]],["name/4342",[1052,53.836]],["parent/4342",[1246,5.253]],["name/4343",[1053,53.836]],["parent/4343",[1246,5.253]],["name/4344",[1054,53.836]],["parent/4344",[1246,5.253]],["name/4345",[1055,53.836]],["parent/4345",[1246,5.253]],["name/4346",[1056,53.836]],["parent/4346",[1246,5.253]],["name/4347",[1057,53.836]],["parent/4347",[1246,5.253]],["name/4348",[1058,53.836]],["parent/4348",[1246,5.253]],["name/4349",[1059,53.836]],["parent/4349",[1246,5.253]],["name/4350",[1044,46.984]],["parent/4350",[1246,5.253]],["name/4351",[1060,53.836]],["parent/4351",[1246,5.253]],["name/4352",[1061,53.836]],["parent/4352",[1246,5.253]],["name/4353",[1062,53.836]],["parent/4353",[1246,5.253]],["name/4354",[1063,53.836]],["parent/4354",[1246,5.253]],["name/4355",[1064,53.836]],["parent/4355",[1246,5.253]],["name/4356",[1250,84.281]],["parent/4356",[1245,7.565]],["name/4357",[1251,75.808]],["parent/4357",[]],["name/4358",[16,55.949]],["parent/4358",[1251,7.565]],["name/4359",[1031,53.836]],["parent/4359",[1252,5.253]],["name/4360",[1033,46.984]],["parent/4360",[1253,5.472]],["name/4361",[337,39.934]],["parent/4361",[1253,5.472]],["name/4362",[339,39.934]],["parent/4362",[1253,5.472]],["name/4363",[340,40.174]],["parent/4363",[1253,5.472]],["name/4364",[68,40.013]],["parent/4364",[1253,5.472]],["name/4365",[341,40.174]],["parent/4365",[1253,5.472]],["name/4366",[1081,54.837]],["parent/4366",[1253,5.472]],["name/4367",[1082,54.837]],["parent/4367",[1253,5.472]],["name/4368",[1083,54.837]],["parent/4368",[1253,5.472]],["name/4369",[1084,54.837]],["parent/4369",[1253,5.472]],["name/4370",[1085,54.837]],["parent/4370",[1253,5.472]],["name/4371",[1086,55.949]],["parent/4371",[1253,5.472]],["name/4372",[1087,55.949]],["parent/4372",[1253,5.472]],["name/4373",[1088,55.949]],["parent/4373",[1253,5.472]],["name/4374",[1089,55.949]],["parent/4374",[1253,5.472]],["name/4375",[1090,55.949]],["parent/4375",[1253,5.472]],["name/4376",[1091,59.158]],["parent/4376",[1253,5.472]],["name/4377",[1092,59.158]],["parent/4377",[1253,5.472]],["name/4378",[1093,59.158]],["parent/4378",[1253,5.472]],["name/4379",[1094,59.158]],["parent/4379",[1253,5.472]],["name/4380",[1095,59.158]],["parent/4380",[1253,5.472]],["name/4381",[1096,61.595]],["parent/4381",[1253,5.472]],["name/4382",[1097,61.595]],["parent/4382",[1253,5.472]],["name/4383",[1098,61.595]],["parent/4383",[1253,5.472]],["name/4384",[1099,61.595]],["parent/4384",[1253,5.472]],["name/4385",[1100,61.595]],["parent/4385",[1253,5.472]],["name/4386",[11,33.551]],["parent/4386",[1253,5.472]],["name/4387",[54,36.379]],["parent/4387",[1253,5.472]],["name/4388",[8,46.826]],["parent/4388",[1252,5.253]],["name/4389",[1035,53.836]],["parent/4389",[1252,5.253]],["name/4390",[1036,53.836]],["parent/4390",[1252,5.253]],["name/4391",[1037,53.836]],["parent/4391",[1252,5.253]],["name/4392",[11,33.551]],["parent/4392",[1252,5.253]],["name/4393",[1038,53.836]],["parent/4393",[1252,5.253]],["name/4394",[1039,53.836]],["parent/4394",[1252,5.253]],["name/4395",[1040,53.836]],["parent/4395",[1252,5.253]],["name/4396",[1041,53.836]],["parent/4396",[1252,5.253]],["name/4397",[1033,46.984]],["parent/4397",[1252,5.253]],["name/4398",[1042,53.836]],["parent/4398",[1252,5.253]],["name/4399",[1043,53.836]],["parent/4399",[1252,5.253]],["name/4400",[1044,46.984]],["parent/4400",[1252,5.253]],["name/4401",[1045,53.836]],["parent/4401",[1252,5.253]],["name/4402",[1046,53.836]],["parent/4402",[1252,5.253]],["name/4403",[1047,53.836]],["parent/4403",[1252,5.253]],["name/4404",[1048,53.836]],["parent/4404",[1252,5.253]],["name/4405",[127,31.117]],["parent/4405",[1254,8.41]],["name/4406",[8,46.826]],["parent/4406",[1252,5.253]],["name/4407",[11,33.551]],["parent/4407",[1252,5.253]],["name/4408",[1050,53.836]],["parent/4408",[1252,5.253]],["name/4409",[127,31.117]],["parent/4409",[1255,8.41]],["name/4410",[1052,53.836]],["parent/4410",[1252,5.253]],["name/4411",[1053,53.836]],["parent/4411",[1252,5.253]],["name/4412",[1054,53.836]],["parent/4412",[1252,5.253]],["name/4413",[1055,53.836]],["parent/4413",[1252,5.253]],["name/4414",[1056,53.836]],["parent/4414",[1252,5.253]],["name/4415",[1057,53.836]],["parent/4415",[1252,5.253]],["name/4416",[1058,53.836]],["parent/4416",[1252,5.253]],["name/4417",[1059,53.836]],["parent/4417",[1252,5.253]],["name/4418",[1044,46.984]],["parent/4418",[1252,5.253]],["name/4419",[1060,53.836]],["parent/4419",[1252,5.253]],["name/4420",[1061,53.836]],["parent/4420",[1252,5.253]],["name/4421",[1062,53.836]],["parent/4421",[1252,5.253]],["name/4422",[1063,53.836]],["parent/4422",[1252,5.253]],["name/4423",[1064,53.836]],["parent/4423",[1252,5.253]],["name/4424",[1256,84.281]],["parent/4424",[1251,7.565]],["name/4425",[1257,75.808]],["parent/4425",[]],["name/4426",[635,71.289]],["parent/4426",[1257,7.565]],["name/4427",[1031,53.836]],["parent/4427",[1258,5.253]],["name/4428",[1033,46.984]],["parent/4428",[1259,4.962]],["name/4429",[337,39.934]],["parent/4429",[1259,4.962]],["name/4430",[339,39.934]],["parent/4430",[1259,4.962]],["name/4431",[340,40.174]],["parent/4431",[1259,4.962]],["name/4432",[68,40.013]],["parent/4432",[1259,4.962]],["name/4433",[341,40.174]],["parent/4433",[1259,4.962]],["name/4434",[1081,54.837]],["parent/4434",[1259,4.962]],["name/4435",[1082,54.837]],["parent/4435",[1259,4.962]],["name/4436",[1083,54.837]],["parent/4436",[1259,4.962]],["name/4437",[1084,54.837]],["parent/4437",[1259,4.962]],["name/4438",[1085,54.837]],["parent/4438",[1259,4.962]],["name/4439",[1086,55.949]],["parent/4439",[1259,4.962]],["name/4440",[1087,55.949]],["parent/4440",[1259,4.962]],["name/4441",[1088,55.949]],["parent/4441",[1259,4.962]],["name/4442",[1089,55.949]],["parent/4442",[1259,4.962]],["name/4443",[1090,55.949]],["parent/4443",[1259,4.962]],["name/4444",[1091,59.158]],["parent/4444",[1259,4.962]],["name/4445",[1092,59.158]],["parent/4445",[1259,4.962]],["name/4446",[1093,59.158]],["parent/4446",[1259,4.962]],["name/4447",[1094,59.158]],["parent/4447",[1259,4.962]],["name/4448",[1095,59.158]],["parent/4448",[1259,4.962]],["name/4449",[1096,61.595]],["parent/4449",[1259,4.962]],["name/4450",[1097,61.595]],["parent/4450",[1259,4.962]],["name/4451",[1098,61.595]],["parent/4451",[1259,4.962]],["name/4452",[1099,61.595]],["parent/4452",[1259,4.962]],["name/4453",[1100,61.595]],["parent/4453",[1259,4.962]],["name/4454",[1107,69.618]],["parent/4454",[1259,4.962]],["name/4455",[1108,69.618]],["parent/4455",[1259,4.962]],["name/4456",[1109,69.618]],["parent/4456",[1259,4.962]],["name/4457",[1110,69.618]],["parent/4457",[1259,4.962]],["name/4458",[1111,69.618]],["parent/4458",[1259,4.962]],["name/4459",[1260,84.281]],["parent/4459",[1259,4.962]],["name/4460",[1261,84.281]],["parent/4460",[1259,4.962]],["name/4461",[1262,84.281]],["parent/4461",[1259,4.962]],["name/4462",[1263,84.281]],["parent/4462",[1259,4.962]],["name/4463",[1264,84.281]],["parent/4463",[1259,4.962]],["name/4464",[1265,84.281]],["parent/4464",[1259,4.962]],["name/4465",[1266,84.281]],["parent/4465",[1259,4.962]],["name/4466",[1267,84.281]],["parent/4466",[1259,4.962]],["name/4467",[1268,84.281]],["parent/4467",[1259,4.962]],["name/4468",[1269,84.281]],["parent/4468",[1259,4.962]],["name/4469",[1270,84.281]],["parent/4469",[1259,4.962]],["name/4470",[1271,84.281]],["parent/4470",[1259,4.962]],["name/4471",[1272,84.281]],["parent/4471",[1259,4.962]],["name/4472",[1273,84.281]],["parent/4472",[1259,4.962]],["name/4473",[1274,84.281]],["parent/4473",[1259,4.962]],["name/4474",[54,36.379]],["parent/4474",[1259,4.962]],["name/4475",[8,46.826]],["parent/4475",[1258,5.253]],["name/4476",[1035,53.836]],["parent/4476",[1258,5.253]],["name/4477",[1036,53.836]],["parent/4477",[1258,5.253]],["name/4478",[1037,53.836]],["parent/4478",[1258,5.253]],["name/4479",[11,33.551]],["parent/4479",[1258,5.253]],["name/4480",[1038,53.836]],["parent/4480",[1258,5.253]],["name/4481",[1039,53.836]],["parent/4481",[1258,5.253]],["name/4482",[1040,53.836]],["parent/4482",[1258,5.253]],["name/4483",[1041,53.836]],["parent/4483",[1258,5.253]],["name/4484",[1033,46.984]],["parent/4484",[1258,5.253]],["name/4485",[1042,53.836]],["parent/4485",[1258,5.253]],["name/4486",[1043,53.836]],["parent/4486",[1258,5.253]],["name/4487",[1044,46.984]],["parent/4487",[1258,5.253]],["name/4488",[1045,53.836]],["parent/4488",[1258,5.253]],["name/4489",[1046,53.836]],["parent/4489",[1258,5.253]],["name/4490",[1047,53.836]],["parent/4490",[1258,5.253]],["name/4491",[1048,53.836]],["parent/4491",[1258,5.253]],["name/4492",[127,31.117]],["parent/4492",[1275,8.41]],["name/4493",[8,46.826]],["parent/4493",[1258,5.253]],["name/4494",[11,33.551]],["parent/4494",[1258,5.253]],["name/4495",[1050,53.836]],["parent/4495",[1258,5.253]],["name/4496",[127,31.117]],["parent/4496",[1276,8.41]],["name/4497",[1052,53.836]],["parent/4497",[1258,5.253]],["name/4498",[1053,53.836]],["parent/4498",[1258,5.253]],["name/4499",[1054,53.836]],["parent/4499",[1258,5.253]],["name/4500",[1055,53.836]],["parent/4500",[1258,5.253]],["name/4501",[1056,53.836]],["parent/4501",[1258,5.253]],["name/4502",[1057,53.836]],["parent/4502",[1258,5.253]],["name/4503",[1058,53.836]],["parent/4503",[1258,5.253]],["name/4504",[1059,53.836]],["parent/4504",[1258,5.253]],["name/4505",[1044,46.984]],["parent/4505",[1258,5.253]],["name/4506",[1060,53.836]],["parent/4506",[1258,5.253]],["name/4507",[1061,53.836]],["parent/4507",[1258,5.253]],["name/4508",[1062,53.836]],["parent/4508",[1258,5.253]],["name/4509",[1063,53.836]],["parent/4509",[1258,5.253]],["name/4510",[1064,53.836]],["parent/4510",[1258,5.253]],["name/4511",[1277,84.281]],["parent/4511",[1257,7.565]],["name/4512",[1278,75.808]],["parent/4512",[]],["name/4513",[55,58.632]],["parent/4513",[1278,7.565]],["name/4514",[1031,53.836]],["parent/4514",[1279,5.253]],["name/4515",[1033,46.984]],["parent/4515",[1280,5.903]],["name/4516",[337,39.934]],["parent/4516",[1280,5.903]],["name/4517",[339,39.934]],["parent/4517",[1280,5.903]],["name/4518",[340,40.174]],["parent/4518",[1280,5.903]],["name/4519",[68,40.013]],["parent/4519",[1280,5.903]],["name/4520",[341,40.174]],["parent/4520",[1280,5.903]],["name/4521",[1081,54.837]],["parent/4521",[1280,5.903]],["name/4522",[1082,54.837]],["parent/4522",[1280,5.903]],["name/4523",[1083,54.837]],["parent/4523",[1280,5.903]],["name/4524",[1084,54.837]],["parent/4524",[1280,5.903]],["name/4525",[1085,54.837]],["parent/4525",[1280,5.903]],["name/4526",[1086,55.949]],["parent/4526",[1280,5.903]],["name/4527",[1087,55.949]],["parent/4527",[1280,5.903]],["name/4528",[1088,55.949]],["parent/4528",[1280,5.903]],["name/4529",[1089,55.949]],["parent/4529",[1280,5.903]],["name/4530",[1090,55.949]],["parent/4530",[1280,5.903]],["name/4531",[11,33.551]],["parent/4531",[1280,5.903]],["name/4532",[54,36.379]],["parent/4532",[1280,5.903]],["name/4533",[8,46.826]],["parent/4533",[1279,5.253]],["name/4534",[1035,53.836]],["parent/4534",[1279,5.253]],["name/4535",[1036,53.836]],["parent/4535",[1279,5.253]],["name/4536",[1037,53.836]],["parent/4536",[1279,5.253]],["name/4537",[11,33.551]],["parent/4537",[1279,5.253]],["name/4538",[1038,53.836]],["parent/4538",[1279,5.253]],["name/4539",[1039,53.836]],["parent/4539",[1279,5.253]],["name/4540",[1040,53.836]],["parent/4540",[1279,5.253]],["name/4541",[1041,53.836]],["parent/4541",[1279,5.253]],["name/4542",[1033,46.984]],["parent/4542",[1279,5.253]],["name/4543",[1042,53.836]],["parent/4543",[1279,5.253]],["name/4544",[1043,53.836]],["parent/4544",[1279,5.253]],["name/4545",[1044,46.984]],["parent/4545",[1279,5.253]],["name/4546",[1045,53.836]],["parent/4546",[1279,5.253]],["name/4547",[1046,53.836]],["parent/4547",[1279,5.253]],["name/4548",[1047,53.836]],["parent/4548",[1279,5.253]],["name/4549",[1048,53.836]],["parent/4549",[1279,5.253]],["name/4550",[127,31.117]],["parent/4550",[1281,8.41]],["name/4551",[8,46.826]],["parent/4551",[1279,5.253]],["name/4552",[11,33.551]],["parent/4552",[1279,5.253]],["name/4553",[1050,53.836]],["parent/4553",[1279,5.253]],["name/4554",[127,31.117]],["parent/4554",[1282,8.41]],["name/4555",[1052,53.836]],["parent/4555",[1279,5.253]],["name/4556",[1053,53.836]],["parent/4556",[1279,5.253]],["name/4557",[1054,53.836]],["parent/4557",[1279,5.253]],["name/4558",[1055,53.836]],["parent/4558",[1279,5.253]],["name/4559",[1056,53.836]],["parent/4559",[1279,5.253]],["name/4560",[1057,53.836]],["parent/4560",[1279,5.253]],["name/4561",[1058,53.836]],["parent/4561",[1279,5.253]],["name/4562",[1059,53.836]],["parent/4562",[1279,5.253]],["name/4563",[1044,46.984]],["parent/4563",[1279,5.253]],["name/4564",[1060,53.836]],["parent/4564",[1279,5.253]],["name/4565",[1061,53.836]],["parent/4565",[1279,5.253]],["name/4566",[1062,53.836]],["parent/4566",[1279,5.253]],["name/4567",[1063,53.836]],["parent/4567",[1279,5.253]],["name/4568",[1064,53.836]],["parent/4568",[1279,5.253]],["name/4569",[1283,84.281]],["parent/4569",[1278,7.565]],["name/4570",[1284,75.808]],["parent/4570",[]],["name/4571",[624,71.289]],["parent/4571",[1284,7.565]],["name/4572",[1031,53.836]],["parent/4572",[1285,5.253]],["name/4573",[1033,46.984]],["parent/4573",[1286,5.508]],["name/4574",[337,39.934]],["parent/4574",[1286,5.508]],["name/4575",[339,39.934]],["parent/4575",[1286,5.508]],["name/4576",[340,40.174]],["parent/4576",[1286,5.508]],["name/4577",[68,40.013]],["parent/4577",[1286,5.508]],["name/4578",[341,40.174]],["parent/4578",[1286,5.508]],["name/4579",[1081,54.837]],["parent/4579",[1286,5.508]],["name/4580",[1082,54.837]],["parent/4580",[1286,5.508]],["name/4581",[1083,54.837]],["parent/4581",[1286,5.508]],["name/4582",[1084,54.837]],["parent/4582",[1286,5.508]],["name/4583",[1085,54.837]],["parent/4583",[1286,5.508]],["name/4584",[1086,55.949]],["parent/4584",[1286,5.508]],["name/4585",[1087,55.949]],["parent/4585",[1286,5.508]],["name/4586",[1088,55.949]],["parent/4586",[1286,5.508]],["name/4587",[1089,55.949]],["parent/4587",[1286,5.508]],["name/4588",[1090,55.949]],["parent/4588",[1286,5.508]],["name/4589",[1091,59.158]],["parent/4589",[1286,5.508]],["name/4590",[1092,59.158]],["parent/4590",[1286,5.508]],["name/4591",[1093,59.158]],["parent/4591",[1286,5.508]],["name/4592",[1094,59.158]],["parent/4592",[1286,5.508]],["name/4593",[1095,59.158]],["parent/4593",[1286,5.508]],["name/4594",[1096,61.595]],["parent/4594",[1286,5.508]],["name/4595",[1097,61.595]],["parent/4595",[1286,5.508]],["name/4596",[1098,61.595]],["parent/4596",[1286,5.508]],["name/4597",[1099,61.595]],["parent/4597",[1286,5.508]],["name/4598",[1100,61.595]],["parent/4598",[1286,5.508]],["name/4599",[54,36.379]],["parent/4599",[1286,5.508]],["name/4600",[8,46.826]],["parent/4600",[1285,5.253]],["name/4601",[1035,53.836]],["parent/4601",[1285,5.253]],["name/4602",[1036,53.836]],["parent/4602",[1285,5.253]],["name/4603",[1037,53.836]],["parent/4603",[1285,5.253]],["name/4604",[11,33.551]],["parent/4604",[1285,5.253]],["name/4605",[1038,53.836]],["parent/4605",[1285,5.253]],["name/4606",[1039,53.836]],["parent/4606",[1285,5.253]],["name/4607",[1040,53.836]],["parent/4607",[1285,5.253]],["name/4608",[1041,53.836]],["parent/4608",[1285,5.253]],["name/4609",[1033,46.984]],["parent/4609",[1285,5.253]],["name/4610",[1042,53.836]],["parent/4610",[1285,5.253]],["name/4611",[1043,53.836]],["parent/4611",[1285,5.253]],["name/4612",[1044,46.984]],["parent/4612",[1285,5.253]],["name/4613",[1045,53.836]],["parent/4613",[1285,5.253]],["name/4614",[1046,53.836]],["parent/4614",[1285,5.253]],["name/4615",[1047,53.836]],["parent/4615",[1285,5.253]],["name/4616",[1048,53.836]],["parent/4616",[1285,5.253]],["name/4617",[127,31.117]],["parent/4617",[1287,8.41]],["name/4618",[8,46.826]],["parent/4618",[1285,5.253]],["name/4619",[11,33.551]],["parent/4619",[1285,5.253]],["name/4620",[1050,53.836]],["parent/4620",[1285,5.253]],["name/4621",[127,31.117]],["parent/4621",[1288,8.41]],["name/4622",[1052,53.836]],["parent/4622",[1285,5.253]],["name/4623",[1053,53.836]],["parent/4623",[1285,5.253]],["name/4624",[1054,53.836]],["parent/4624",[1285,5.253]],["name/4625",[1055,53.836]],["parent/4625",[1285,5.253]],["name/4626",[1056,53.836]],["parent/4626",[1285,5.253]],["name/4627",[1057,53.836]],["parent/4627",[1285,5.253]],["name/4628",[1058,53.836]],["parent/4628",[1285,5.253]],["name/4629",[1059,53.836]],["parent/4629",[1285,5.253]],["name/4630",[1044,46.984]],["parent/4630",[1285,5.253]],["name/4631",[1060,53.836]],["parent/4631",[1285,5.253]],["name/4632",[1061,53.836]],["parent/4632",[1285,5.253]],["name/4633",[1062,53.836]],["parent/4633",[1285,5.253]],["name/4634",[1063,53.836]],["parent/4634",[1285,5.253]],["name/4635",[1064,53.836]],["parent/4635",[1285,5.253]],["name/4636",[1289,84.281]],["parent/4636",[1284,7.565]],["name/4637",[1290,39.777]],["parent/4637",[]],["name/4638",[10,79.173]],["parent/4638",[1290,3.969]],["name/4639",[11,33.551]],["parent/4639",[1291,7.901]],["name/4640",[13,69.618]],["parent/4640",[1291,7.901]],["name/4641",[14,79.173]],["parent/4641",[1290,3.969]],["name/4642",[11,33.551]],["parent/4642",[1292,6.147]],["name/4643",[16,55.949]],["parent/4643",[1292,6.147]],["name/4644",[17,52.363]],["parent/4644",[1292,6.147]],["name/4645",[18,49.942]],["parent/4645",[1292,6.147]],["name/4646",[19,57.656]],["parent/4646",[1292,6.147]],["name/4647",[20,59.158]],["parent/4647",[1292,6.147]],["name/4648",[21,63.079]],["parent/4648",[1292,6.147]],["name/4649",[22,63.079]],["parent/4649",[1292,6.147]],["name/4650",[23,59.158]],["parent/4650",[1292,6.147]],["name/4651",[24,59.158]],["parent/4651",[1292,6.147]],["name/4652",[25,59.158]],["parent/4652",[1292,6.147]],["name/4653",[1293,75.808]],["parent/4653",[1292,6.147]],["name/4654",[27,63.079]],["parent/4654",[1292,6.147]],["name/4655",[28,63.079]],["parent/4655",[1292,6.147]],["name/4656",[51,79.173]],["parent/4656",[1290,3.969]],["name/4657",[11,33.551]],["parent/4657",[1294,6.218]],["name/4658",[53,62.309]],["parent/4658",[1294,6.218]],["name/4659",[17,52.363]],["parent/4659",[1294,6.218]],["name/4660",[54,36.379]],["parent/4660",[1294,6.218]],["name/4661",[55,58.632]],["parent/4661",[1294,6.218]],["name/4662",[18,49.942]],["parent/4662",[1294,6.218]],["name/4663",[56,69.618]],["parent/4663",[1294,6.218]],["name/4664",[57,69.618]],["parent/4664",[1294,6.218]],["name/4665",[58,56.349]],["parent/4665",[1294,6.218]],["name/4666",[59,56.349]],["parent/4666",[1294,6.218]],["name/4667",[60,56.349]],["parent/4667",[1294,6.218]],["name/4668",[61,69.618]],["parent/4668",[1294,6.218]],["name/4669",[62,63.079]],["parent/4669",[1294,6.218]],["name/4670",[63,79.173]],["parent/4670",[1290,3.969]],["name/4671",[11,33.551]],["parent/4671",[1295,7.314]],["name/4672",[55,58.632]],["parent/4672",[1295,7.314]],["name/4673",[18,49.942]],["parent/4673",[1295,7.314]],["name/4674",[62,63.079]],["parent/4674",[1295,7.314]],["name/4675",[66,79.173]],["parent/4675",[1290,3.969]],["name/4676",[11,33.551]],["parent/4676",[1296,6.218]],["name/4677",[16,55.949]],["parent/4677",[1296,6.218]],["name/4678",[17,52.363]],["parent/4678",[1296,6.218]],["name/4679",[18,49.942]],["parent/4679",[1296,6.218]],["name/4680",[23,59.158]],["parent/4680",[1296,6.218]],["name/4681",[19,57.656]],["parent/4681",[1296,6.218]],["name/4682",[20,59.158]],["parent/4682",[1296,6.218]],["name/4683",[21,63.079]],["parent/4683",[1296,6.218]],["name/4684",[22,63.079]],["parent/4684",[1296,6.218]],["name/4685",[24,59.158]],["parent/4685",[1296,6.218]],["name/4686",[25,59.158]],["parent/4686",[1296,6.218]],["name/4687",[27,63.079]],["parent/4687",[1296,6.218]],["name/4688",[28,63.079]],["parent/4688",[1296,6.218]],["name/4689",[68,40.013]],["parent/4689",[1290,3.969]],["name/4690",[69,79.173]],["parent/4690",[1297,7.901]],["name/4691",[71,79.173]],["parent/4691",[1297,7.901]],["name/4692",[72,79.173]],["parent/4692",[1290,3.969]],["name/4693",[11,33.551]],["parent/4693",[1298,6.218]],["name/4694",[31,55.194]],["parent/4694",[1298,6.218]],["name/4695",[1299,75.808]],["parent/4695",[1298,6.218]],["name/4696",[74,63.079]],["parent/4696",[1298,6.218]],["name/4697",[75,63.079]],["parent/4697",[1298,6.218]],["name/4698",[58,56.349]],["parent/4698",[1298,6.218]],["name/4699",[59,56.349]],["parent/4699",[1298,6.218]],["name/4700",[76,59.158]],["parent/4700",[1298,6.218]],["name/4701",[60,56.349]],["parent/4701",[1298,6.218]],["name/4702",[1300,75.808]],["parent/4702",[1298,6.218]],["name/4703",[1301,75.808]],["parent/4703",[1298,6.218]],["name/4704",[1302,65.823]],["parent/4704",[1298,6.218]],["name/4705",[1303,69.618]],["parent/4705",[1298,6.218]],["name/4706",[79,79.173]],["parent/4706",[1290,3.969]],["name/4707",[11,33.551]],["parent/4707",[1304,6.469]],["name/4708",[1305,75.808]],["parent/4708",[1304,6.469]],["name/4709",[18,49.942]],["parent/4709",[1304,6.469]],["name/4710",[58,56.349]],["parent/4710",[1304,6.469]],["name/4711",[59,56.349]],["parent/4711",[1304,6.469]],["name/4712",[60,56.349]],["parent/4712",[1304,6.469]],["name/4713",[1306,75.808]],["parent/4713",[1304,6.469]],["name/4714",[1307,75.808]],["parent/4714",[1304,6.469]],["name/4715",[1308,75.808]],["parent/4715",[1304,6.469]],["name/4716",[1309,75.808]],["parent/4716",[1304,6.469]],["name/4717",[81,79.173]],["parent/4717",[1290,3.969]],["name/4718",[11,33.551]],["parent/4718",[1310,5.851]],["name/4719",[74,63.079]],["parent/4719",[1310,5.851]],["name/4720",[75,63.079]],["parent/4720",[1310,5.851]],["name/4721",[58,56.349]],["parent/4721",[1310,5.851]],["name/4722",[59,56.349]],["parent/4722",[1310,5.851]],["name/4723",[76,59.158]],["parent/4723",[1310,5.851]],["name/4724",[84,69.618]],["parent/4724",[1310,5.851]],["name/4725",[60,56.349]],["parent/4725",[1310,5.851]],["name/4726",[85,69.618]],["parent/4726",[1310,5.851]],["name/4727",[86,69.618]],["parent/4727",[1310,5.851]],["name/4728",[87,69.618]],["parent/4728",[1310,5.851]],["name/4729",[77,63.079]],["parent/4729",[1310,5.851]],["name/4730",[78,63.079]],["parent/4730",[1310,5.851]],["name/4731",[34,54.159]],["parent/4731",[1310,5.851]],["name/4732",[42,59.158]],["parent/4732",[1310,5.851]],["name/4733",[38,51.573]],["parent/4733",[1310,5.851]],["name/4734",[1311,75.808]],["parent/4734",[1310,5.851]],["name/4735",[1312,75.808]],["parent/4735",[1310,5.851]],["name/4736",[88,69.618]],["parent/4736",[1310,5.851]],["name/4737",[94,79.173]],["parent/4737",[1290,3.969]],["name/4738",[11,33.551]],["parent/4738",[1313,6.295]],["name/4739",[16,55.949]],["parent/4739",[1313,6.295]],["name/4740",[17,52.363]],["parent/4740",[1313,6.295]],["name/4741",[18,49.942]],["parent/4741",[1313,6.295]],["name/4742",[20,59.158]],["parent/4742",[1313,6.295]],["name/4743",[96,69.618]],["parent/4743",[1313,6.295]],["name/4744",[97,69.618]],["parent/4744",[1313,6.295]],["name/4745",[98,69.618]],["parent/4745",[1313,6.295]],["name/4746",[99,69.618]],["parent/4746",[1313,6.295]],["name/4747",[23,59.158]],["parent/4747",[1313,6.295]],["name/4748",[24,59.158]],["parent/4748",[1313,6.295]],["name/4749",[25,59.158]],["parent/4749",[1313,6.295]],["name/4750",[100,79.173]],["parent/4750",[1290,3.969]],["name/4751",[11,33.551]],["parent/4751",[1314,6.218]],["name/4752",[31,55.194]],["parent/4752",[1314,6.218]],["name/4753",[102,60.302]],["parent/4753",[1314,6.218]],["name/4754",[1315,75.808]],["parent/4754",[1314,6.218]],["name/4755",[1316,69.618]],["parent/4755",[1314,6.218]],["name/4756",[1302,65.823]],["parent/4756",[1314,6.218]],["name/4757",[1303,69.618]],["parent/4757",[1314,6.218]],["name/4758",[1317,75.808]],["parent/4758",[1314,6.218]],["name/4759",[1318,65.823]],["parent/4759",[1314,6.218]],["name/4760",[1319,65.823]],["parent/4760",[1314,6.218]],["name/4761",[104,65.823]],["parent/4761",[1314,6.218]],["name/4762",[1320,69.618]],["parent/4762",[1314,6.218]],["name/4763",[1321,69.618]],["parent/4763",[1314,6.218]],["name/4764",[107,79.173]],["parent/4764",[1290,3.969]],["name/4765",[11,33.551]],["parent/4765",[1322,6.295]],["name/4766",[109,69.618]],["parent/4766",[1322,6.295]],["name/4767",[83,65.823]],["parent/4767",[1322,6.295]],["name/4768",[110,69.618]],["parent/4768",[1322,6.295]],["name/4769",[76,59.158]],["parent/4769",[1322,6.295]],["name/4770",[1323,75.808]],["parent/4770",[1322,6.295]],["name/4771",[1324,75.808]],["parent/4771",[1322,6.295]],["name/4772",[42,59.158]],["parent/4772",[1322,6.295]],["name/4773",[38,51.573]],["parent/4773",[1322,6.295]],["name/4774",[1325,75.808]],["parent/4774",[1322,6.295]],["name/4775",[111,69.618]],["parent/4775",[1322,6.295]],["name/4776",[1321,69.618]],["parent/4776",[1322,6.295]],["name/4777",[116,79.173]],["parent/4777",[1290,3.969]],["name/4778",[11,33.551]],["parent/4778",[1326,6.947]],["name/4779",[118,69.618]],["parent/4779",[1326,6.947]],["name/4780",[17,52.363]],["parent/4780",[1326,6.947]],["name/4781",[91,62.309]],["parent/4781",[1326,6.947]],["name/4782",[92,62.309]],["parent/4782",[1326,6.947]],["name/4783",[93,62.309]],["parent/4783",[1326,6.947]],["name/4784",[1327,84.281]],["parent/4784",[1290,3.969]],["name/4785",[11,33.551]],["parent/4785",[1328,6.295]],["name/4786",[31,55.194]],["parent/4786",[1328,6.295]],["name/4787",[1316,69.618]],["parent/4787",[1328,6.295]],["name/4788",[1302,65.823]],["parent/4788",[1328,6.295]],["name/4789",[1329,75.808]],["parent/4789",[1328,6.295]],["name/4790",[1330,69.618]],["parent/4790",[1328,6.295]],["name/4791",[1318,65.823]],["parent/4791",[1328,6.295]],["name/4792",[1331,69.618]],["parent/4792",[1328,6.295]],["name/4793",[1319,65.823]],["parent/4793",[1328,6.295]],["name/4794",[1320,69.618]],["parent/4794",[1328,6.295]],["name/4795",[1332,69.618]],["parent/4795",[1328,6.295]],["name/4796",[38,51.573]],["parent/4796",[1328,6.295]],["name/4797",[1333,84.281]],["parent/4797",[1290,3.969]],["name/4798",[11,33.551]],["parent/4798",[1334,6.569]],["name/4799",[41,69.618]],["parent/4799",[1334,6.569]],["name/4800",[1331,69.618]],["parent/4800",[1334,6.569]],["name/4801",[1330,69.618]],["parent/4801",[1334,6.569]],["name/4802",[42,59.158]],["parent/4802",[1334,6.569]],["name/4803",[1319,65.823]],["parent/4803",[1334,6.569]],["name/4804",[1318,65.823]],["parent/4804",[1334,6.569]],["name/4805",[38,51.573]],["parent/4805",[1334,6.569]],["name/4806",[1332,69.618]],["parent/4806",[1334,6.569]],["name/4807",[119,79.173]],["parent/4807",[1290,3.969]],["name/4808",[11,33.551]],["parent/4808",[1335,7.565]],["name/4809",[89,63.913]],["parent/4809",[1335,7.565]],["name/4810",[1336,75.808]],["parent/4810",[1335,7.565]],["name/4811",[121,79.173]],["parent/4811",[1290,3.969]],["name/4812",[122,79.173]],["parent/4812",[1337,7.901]],["name/4813",[124,79.173]],["parent/4813",[1337,7.901]],["name/4814",[125,79.173]],["parent/4814",[1290,3.969]],["name/4815",[126,79.173]],["parent/4815",[1290,3.969]],["name/4816",[127,31.117]],["parent/4816",[1338,8.41]],["name/4817",[129,79.173]],["parent/4817",[1290,3.969]],["name/4818",[130,79.173]],["parent/4818",[1290,3.969]],["name/4819",[131,79.173]],["parent/4819",[1290,3.969]],["name/4820",[127,31.117]],["parent/4820",[1339,8.41]],["name/4821",[11,33.551]],["parent/4821",[1340,6.68]],["name/4822",[134,79.173]],["parent/4822",[1340,6.68]],["name/4823",[135,79.173]],["parent/4823",[1340,6.68]],["name/4824",[136,79.173]],["parent/4824",[1340,6.68]],["name/4825",[137,79.173]],["parent/4825",[1340,6.68]],["name/4826",[138,79.173]],["parent/4826",[1340,6.68]],["name/4827",[139,79.173]],["parent/4827",[1340,6.68]],["name/4828",[140,79.173]],["parent/4828",[1340,6.68]],["name/4829",[141,79.173]],["parent/4829",[1290,3.969]],["name/4830",[127,31.117]],["parent/4830",[1341,8.41]],["name/4831",[143,73.295]],["parent/4831",[1342,7.901]],["name/4832",[145,73.295]],["parent/4832",[1342,7.901]],["name/4833",[146,68.187]],["parent/4833",[1290,3.969]],["name/4834",[127,31.117]],["parent/4834",[1343,8.41]],["name/4835",[148,51.323]],["parent/4835",[1344,7.565]],["name/4836",[11,33.551]],["parent/4836",[1344,7.565]],["name/4837",[13,69.618]],["parent/4837",[1344,7.565]],["name/4838",[150,79.173]],["parent/4838",[1290,3.969]],["name/4839",[127,31.117]],["parent/4839",[1345,8.41]],["name/4840",[11,33.551]],["parent/4840",[1346,6.018]],["name/4841",[153,53.524]],["parent/4841",[1346,6.018]],["name/4842",[154,53.524]],["parent/4842",[1346,6.018]],["name/4843",[155,53.524]],["parent/4843",[1346,6.018]],["name/4844",[156,53.524]],["parent/4844",[1346,6.018]],["name/4845",[157,53.524]],["parent/4845",[1346,6.018]],["name/4846",[158,53.524]],["parent/4846",[1346,6.018]],["name/4847",[159,53.524]],["parent/4847",[1346,6.018]],["name/4848",[13,69.618]],["parent/4848",[1346,6.018]],["name/4849",[160,79.173]],["parent/4849",[1346,6.018]],["name/4850",[161,79.173]],["parent/4850",[1346,6.018]],["name/4851",[162,79.173]],["parent/4851",[1346,6.018]],["name/4852",[163,79.173]],["parent/4852",[1346,6.018]],["name/4853",[164,79.173]],["parent/4853",[1346,6.018]],["name/4854",[165,79.173]],["parent/4854",[1346,6.018]],["name/4855",[166,79.173]],["parent/4855",[1346,6.018]],["name/4856",[167,68.187]],["parent/4856",[1290,3.969]],["name/4857",[127,31.117]],["parent/4857",[1347,8.41]],["name/4858",[148,51.323]],["parent/4858",[1348,6.08]],["name/4859",[11,33.551]],["parent/4859",[1348,6.08]],["name/4860",[16,55.949]],["parent/4860",[1348,6.08]],["name/4861",[17,52.363]],["parent/4861",[1348,6.08]],["name/4862",[18,49.942]],["parent/4862",[1348,6.08]],["name/4863",[19,57.656]],["parent/4863",[1348,6.08]],["name/4864",[20,59.158]],["parent/4864",[1348,6.08]],["name/4865",[21,63.079]],["parent/4865",[1348,6.08]],["name/4866",[22,63.079]],["parent/4866",[1348,6.08]],["name/4867",[23,59.158]],["parent/4867",[1348,6.08]],["name/4868",[24,59.158]],["parent/4868",[1348,6.08]],["name/4869",[25,59.158]],["parent/4869",[1348,6.08]],["name/4870",[1293,75.808]],["parent/4870",[1348,6.08]],["name/4871",[27,63.079]],["parent/4871",[1348,6.08]],["name/4872",[28,63.079]],["parent/4872",[1348,6.08]],["name/4873",[170,79.173]],["parent/4873",[1290,3.969]],["name/4874",[127,31.117]],["parent/4874",[1349,8.41]],["name/4875",[11,33.551]],["parent/4875",[1350,4.084]],["name/4876",[153,53.524]],["parent/4876",[1350,4.084]],["name/4877",[154,53.524]],["parent/4877",[1350,4.084]],["name/4878",[155,53.524]],["parent/4878",[1350,4.084]],["name/4879",[156,53.524]],["parent/4879",[1350,4.084]],["name/4880",[157,53.524]],["parent/4880",[1350,4.084]],["name/4881",[158,53.524]],["parent/4881",[1350,4.084]],["name/4882",[159,53.524]],["parent/4882",[1350,4.084]],["name/4883",[16,55.949]],["parent/4883",[1350,4.084]],["name/4884",[173,69.618]],["parent/4884",[1350,4.084]],["name/4885",[174,69.618]],["parent/4885",[1350,4.084]],["name/4886",[175,69.618]],["parent/4886",[1350,4.084]],["name/4887",[176,69.618]],["parent/4887",[1350,4.084]],["name/4888",[177,69.618]],["parent/4888",[1350,4.084]],["name/4889",[178,69.618]],["parent/4889",[1350,4.084]],["name/4890",[179,69.618]],["parent/4890",[1350,4.084]],["name/4891",[180,69.618]],["parent/4891",[1350,4.084]],["name/4892",[181,69.618]],["parent/4892",[1350,4.084]],["name/4893",[182,69.618]],["parent/4893",[1350,4.084]],["name/4894",[183,69.618]],["parent/4894",[1350,4.084]],["name/4895",[184,69.618]],["parent/4895",[1350,4.084]],["name/4896",[185,69.618]],["parent/4896",[1350,4.084]],["name/4897",[17,52.363]],["parent/4897",[1350,4.084]],["name/4898",[186,63.079]],["parent/4898",[1350,4.084]],["name/4899",[187,63.079]],["parent/4899",[1350,4.084]],["name/4900",[188,63.079]],["parent/4900",[1350,4.084]],["name/4901",[189,63.079]],["parent/4901",[1350,4.084]],["name/4902",[190,63.079]],["parent/4902",[1350,4.084]],["name/4903",[191,63.079]],["parent/4903",[1350,4.084]],["name/4904",[192,63.079]],["parent/4904",[1350,4.084]],["name/4905",[18,49.942]],["parent/4905",[1350,4.084]],["name/4906",[193,62.309]],["parent/4906",[1350,4.084]],["name/4907",[194,62.309]],["parent/4907",[1350,4.084]],["name/4908",[195,62.309]],["parent/4908",[1350,4.084]],["name/4909",[196,62.309]],["parent/4909",[1350,4.084]],["name/4910",[197,62.309]],["parent/4910",[1350,4.084]],["name/4911",[198,62.309]],["parent/4911",[1350,4.084]],["name/4912",[199,62.309]],["parent/4912",[1350,4.084]],["name/4913",[200,62.309]],["parent/4913",[1350,4.084]],["name/4914",[201,62.309]],["parent/4914",[1350,4.084]],["name/4915",[202,62.309]],["parent/4915",[1350,4.084]],["name/4916",[203,62.309]],["parent/4916",[1350,4.084]],["name/4917",[204,62.309]],["parent/4917",[1350,4.084]],["name/4918",[205,62.309]],["parent/4918",[1350,4.084]],["name/4919",[19,57.656]],["parent/4919",[1350,4.084]],["name/4920",[206,68.187]],["parent/4920",[1350,4.084]],["name/4921",[207,68.187]],["parent/4921",[1350,4.084]],["name/4922",[208,68.187]],["parent/4922",[1350,4.084]],["name/4923",[209,68.187]],["parent/4923",[1350,4.084]],["name/4924",[210,68.187]],["parent/4924",[1350,4.084]],["name/4925",[211,68.187]],["parent/4925",[1350,4.084]],["name/4926",[212,68.187]],["parent/4926",[1350,4.084]],["name/4927",[20,59.158]],["parent/4927",[1350,4.084]],["name/4928",[213,69.618]],["parent/4928",[1350,4.084]],["name/4929",[214,69.618]],["parent/4929",[1350,4.084]],["name/4930",[215,69.618]],["parent/4930",[1350,4.084]],["name/4931",[216,69.618]],["parent/4931",[1350,4.084]],["name/4932",[217,69.618]],["parent/4932",[1350,4.084]],["name/4933",[21,63.079]],["parent/4933",[1350,4.084]],["name/4934",[218,73.295]],["parent/4934",[1350,4.084]],["name/4935",[219,73.295]],["parent/4935",[1350,4.084]],["name/4936",[220,73.295]],["parent/4936",[1350,4.084]],["name/4937",[221,73.295]],["parent/4937",[1350,4.084]],["name/4938",[222,73.295]],["parent/4938",[1350,4.084]],["name/4939",[223,73.295]],["parent/4939",[1350,4.084]],["name/4940",[224,73.295]],["parent/4940",[1350,4.084]],["name/4941",[22,63.079]],["parent/4941",[1350,4.084]],["name/4942",[225,73.295]],["parent/4942",[1350,4.084]],["name/4943",[226,73.295]],["parent/4943",[1350,4.084]],["name/4944",[227,73.295]],["parent/4944",[1350,4.084]],["name/4945",[228,73.295]],["parent/4945",[1350,4.084]],["name/4946",[229,73.295]],["parent/4946",[1350,4.084]],["name/4947",[230,73.295]],["parent/4947",[1350,4.084]],["name/4948",[231,73.295]],["parent/4948",[1350,4.084]],["name/4949",[23,59.158]],["parent/4949",[1350,4.084]],["name/4950",[232,69.618]],["parent/4950",[1350,4.084]],["name/4951",[233,69.618]],["parent/4951",[1350,4.084]],["name/4952",[234,69.618]],["parent/4952",[1350,4.084]],["name/4953",[235,69.618]],["parent/4953",[1350,4.084]],["name/4954",[236,69.618]],["parent/4954",[1350,4.084]],["name/4955",[24,59.158]],["parent/4955",[1350,4.084]],["name/4956",[237,69.618]],["parent/4956",[1350,4.084]],["name/4957",[238,69.618]],["parent/4957",[1350,4.084]],["name/4958",[239,69.618]],["parent/4958",[1350,4.084]],["name/4959",[240,69.618]],["parent/4959",[1350,4.084]],["name/4960",[241,69.618]],["parent/4960",[1350,4.084]],["name/4961",[242,69.618]],["parent/4961",[1350,4.084]],["name/4962",[243,69.618]],["parent/4962",[1350,4.084]],["name/4963",[25,59.158]],["parent/4963",[1350,4.084]],["name/4964",[244,69.618]],["parent/4964",[1350,4.084]],["name/4965",[245,69.618]],["parent/4965",[1350,4.084]],["name/4966",[246,69.618]],["parent/4966",[1350,4.084]],["name/4967",[247,69.618]],["parent/4967",[1350,4.084]],["name/4968",[248,69.618]],["parent/4968",[1350,4.084]],["name/4969",[249,69.618]],["parent/4969",[1350,4.084]],["name/4970",[250,69.618]],["parent/4970",[1350,4.084]],["name/4971",[1293,75.808]],["parent/4971",[1350,4.084]],["name/4972",[1351,84.281]],["parent/4972",[1350,4.084]],["name/4973",[1352,84.281]],["parent/4973",[1350,4.084]],["name/4974",[1353,84.281]],["parent/4974",[1350,4.084]],["name/4975",[27,63.079]],["parent/4975",[1350,4.084]],["name/4976",[254,73.295]],["parent/4976",[1350,4.084]],["name/4977",[255,73.295]],["parent/4977",[1350,4.084]],["name/4978",[256,73.295]],["parent/4978",[1350,4.084]],["name/4979",[257,73.295]],["parent/4979",[1350,4.084]],["name/4980",[258,73.295]],["parent/4980",[1350,4.084]],["name/4981",[28,63.079]],["parent/4981",[1350,4.084]],["name/4982",[259,73.295]],["parent/4982",[1350,4.084]],["name/4983",[260,73.295]],["parent/4983",[1350,4.084]],["name/4984",[261,73.295]],["parent/4984",[1350,4.084]],["name/4985",[262,73.295]],["parent/4985",[1350,4.084]],["name/4986",[263,73.295]],["parent/4986",[1350,4.084]],["name/4987",[264,73.295]],["parent/4987",[1350,4.084]],["name/4988",[265,73.295]],["parent/4988",[1350,4.084]],["name/4989",[53,62.309]],["parent/4989",[1290,3.969]],["name/4990",[127,31.117]],["parent/4990",[1354,8.41]],["name/4991",[148,51.323]],["parent/4991",[1355,7.114]],["name/4992",[11,33.551]],["parent/4992",[1355,7.114]],["name/4993",[55,58.632]],["parent/4993",[1355,7.114]],["name/4994",[18,49.942]],["parent/4994",[1355,7.114]],["name/4995",[62,63.079]],["parent/4995",[1355,7.114]],["name/4996",[392,68.187]],["parent/4996",[1290,3.969]],["name/4997",[127,31.117]],["parent/4997",[1356,8.41]],["name/4998",[148,51.323]],["parent/4998",[1357,6.147]],["name/4999",[11,33.551]],["parent/4999",[1357,6.147]],["name/5000",[53,62.309]],["parent/5000",[1357,6.147]],["name/5001",[17,52.363]],["parent/5001",[1357,6.147]],["name/5002",[54,36.379]],["parent/5002",[1357,6.147]],["name/5003",[55,58.632]],["parent/5003",[1357,6.147]],["name/5004",[18,49.942]],["parent/5004",[1357,6.147]],["name/5005",[56,69.618]],["parent/5005",[1357,6.147]],["name/5006",[57,69.618]],["parent/5006",[1357,6.147]],["name/5007",[58,56.349]],["parent/5007",[1357,6.147]],["name/5008",[59,56.349]],["parent/5008",[1357,6.147]],["name/5009",[60,56.349]],["parent/5009",[1357,6.147]],["name/5010",[61,69.618]],["parent/5010",[1357,6.147]],["name/5011",[62,63.079]],["parent/5011",[1357,6.147]],["name/5012",[395,79.173]],["parent/5012",[1290,3.969]],["name/5013",[127,31.117]],["parent/5013",[1358,8.41]],["name/5014",[11,33.551]],["parent/5014",[1359,4.017]],["name/5015",[153,53.524]],["parent/5015",[1359,4.017]],["name/5016",[154,53.524]],["parent/5016",[1359,4.017]],["name/5017",[155,53.524]],["parent/5017",[1359,4.017]],["name/5018",[156,53.524]],["parent/5018",[1359,4.017]],["name/5019",[157,53.524]],["parent/5019",[1359,4.017]],["name/5020",[158,53.524]],["parent/5020",[1359,4.017]],["name/5021",[159,53.524]],["parent/5021",[1359,4.017]],["name/5022",[53,62.309]],["parent/5022",[1359,4.017]],["name/5023",[398,79.173]],["parent/5023",[1359,4.017]],["name/5024",[399,79.173]],["parent/5024",[1359,4.017]],["name/5025",[400,79.173]],["parent/5025",[1359,4.017]],["name/5026",[401,79.173]],["parent/5026",[1359,4.017]],["name/5027",[402,79.173]],["parent/5027",[1359,4.017]],["name/5028",[403,79.173]],["parent/5028",[1359,4.017]],["name/5029",[404,79.173]],["parent/5029",[1359,4.017]],["name/5030",[405,79.173]],["parent/5030",[1359,4.017]],["name/5031",[406,79.173]],["parent/5031",[1359,4.017]],["name/5032",[407,79.173]],["parent/5032",[1359,4.017]],["name/5033",[408,79.173]],["parent/5033",[1359,4.017]],["name/5034",[409,79.173]],["parent/5034",[1359,4.017]],["name/5035",[410,79.173]],["parent/5035",[1359,4.017]],["name/5036",[17,52.363]],["parent/5036",[1359,4.017]],["name/5037",[186,63.079]],["parent/5037",[1359,4.017]],["name/5038",[187,63.079]],["parent/5038",[1359,4.017]],["name/5039",[188,63.079]],["parent/5039",[1359,4.017]],["name/5040",[189,63.079]],["parent/5040",[1359,4.017]],["name/5041",[190,63.079]],["parent/5041",[1359,4.017]],["name/5042",[191,63.079]],["parent/5042",[1359,4.017]],["name/5043",[192,63.079]],["parent/5043",[1359,4.017]],["name/5044",[54,36.379]],["parent/5044",[1359,4.017]],["name/5045",[411,73.295]],["parent/5045",[1359,4.017]],["name/5046",[412,73.295]],["parent/5046",[1359,4.017]],["name/5047",[413,73.295]],["parent/5047",[1359,4.017]],["name/5048",[414,73.295]],["parent/5048",[1359,4.017]],["name/5049",[415,73.295]],["parent/5049",[1359,4.017]],["name/5050",[416,73.295]],["parent/5050",[1359,4.017]],["name/5051",[417,73.295]],["parent/5051",[1359,4.017]],["name/5052",[55,58.632]],["parent/5052",[1359,4.017]],["name/5053",[418,73.295]],["parent/5053",[1359,4.017]],["name/5054",[419,73.295]],["parent/5054",[1359,4.017]],["name/5055",[420,73.295]],["parent/5055",[1359,4.017]],["name/5056",[421,73.295]],["parent/5056",[1359,4.017]],["name/5057",[422,73.295]],["parent/5057",[1359,4.017]],["name/5058",[423,73.295]],["parent/5058",[1359,4.017]],["name/5059",[424,73.295]],["parent/5059",[1359,4.017]],["name/5060",[425,73.295]],["parent/5060",[1359,4.017]],["name/5061",[426,73.295]],["parent/5061",[1359,4.017]],["name/5062",[427,73.295]],["parent/5062",[1359,4.017]],["name/5063",[428,73.295]],["parent/5063",[1359,4.017]],["name/5064",[429,73.295]],["parent/5064",[1359,4.017]],["name/5065",[430,73.295]],["parent/5065",[1359,4.017]],["name/5066",[18,49.942]],["parent/5066",[1359,4.017]],["name/5067",[193,62.309]],["parent/5067",[1359,4.017]],["name/5068",[194,62.309]],["parent/5068",[1359,4.017]],["name/5069",[195,62.309]],["parent/5069",[1359,4.017]],["name/5070",[196,62.309]],["parent/5070",[1359,4.017]],["name/5071",[197,62.309]],["parent/5071",[1359,4.017]],["name/5072",[198,62.309]],["parent/5072",[1359,4.017]],["name/5073",[199,62.309]],["parent/5073",[1359,4.017]],["name/5074",[200,62.309]],["parent/5074",[1359,4.017]],["name/5075",[201,62.309]],["parent/5075",[1359,4.017]],["name/5076",[202,62.309]],["parent/5076",[1359,4.017]],["name/5077",[203,62.309]],["parent/5077",[1359,4.017]],["name/5078",[204,62.309]],["parent/5078",[1359,4.017]],["name/5079",[205,62.309]],["parent/5079",[1359,4.017]],["name/5080",[56,69.618]],["parent/5080",[1359,4.017]],["name/5081",[431,79.173]],["parent/5081",[1359,4.017]],["name/5082",[432,79.173]],["parent/5082",[1359,4.017]],["name/5083",[433,79.173]],["parent/5083",[1359,4.017]],["name/5084",[434,79.173]],["parent/5084",[1359,4.017]],["name/5085",[435,79.173]],["parent/5085",[1359,4.017]],["name/5086",[436,79.173]],["parent/5086",[1359,4.017]],["name/5087",[437,79.173]],["parent/5087",[1359,4.017]],["name/5088",[57,69.618]],["parent/5088",[1359,4.017]],["name/5089",[438,79.173]],["parent/5089",[1359,4.017]],["name/5090",[439,79.173]],["parent/5090",[1359,4.017]],["name/5091",[440,79.173]],["parent/5091",[1359,4.017]],["name/5092",[441,79.173]],["parent/5092",[1359,4.017]],["name/5093",[442,79.173]],["parent/5093",[1359,4.017]],["name/5094",[443,79.173]],["parent/5094",[1359,4.017]],["name/5095",[444,79.173]],["parent/5095",[1359,4.017]],["name/5096",[58,56.349]],["parent/5096",[1359,4.017]],["name/5097",[445,66.935]],["parent/5097",[1359,4.017]],["name/5098",[446,66.935]],["parent/5098",[1359,4.017]],["name/5099",[447,66.935]],["parent/5099",[1359,4.017]],["name/5100",[448,66.935]],["parent/5100",[1359,4.017]],["name/5101",[449,66.935]],["parent/5101",[1359,4.017]],["name/5102",[450,66.935]],["parent/5102",[1359,4.017]],["name/5103",[451,66.935]],["parent/5103",[1359,4.017]],["name/5104",[59,56.349]],["parent/5104",[1359,4.017]],["name/5105",[452,66.935]],["parent/5105",[1359,4.017]],["name/5106",[453,66.935]],["parent/5106",[1359,4.017]],["name/5107",[454,66.935]],["parent/5107",[1359,4.017]],["name/5108",[455,66.935]],["parent/5108",[1359,4.017]],["name/5109",[456,66.935]],["parent/5109",[1359,4.017]],["name/5110",[457,66.935]],["parent/5110",[1359,4.017]],["name/5111",[458,66.935]],["parent/5111",[1359,4.017]],["name/5112",[60,56.349]],["parent/5112",[1359,4.017]],["name/5113",[459,66.935]],["parent/5113",[1359,4.017]],["name/5114",[460,66.935]],["parent/5114",[1359,4.017]],["name/5115",[461,66.935]],["parent/5115",[1359,4.017]],["name/5116",[462,66.935]],["parent/5116",[1359,4.017]],["name/5117",[463,66.935]],["parent/5117",[1359,4.017]],["name/5118",[464,66.935]],["parent/5118",[1359,4.017]],["name/5119",[465,66.935]],["parent/5119",[1359,4.017]],["name/5120",[61,69.618]],["parent/5120",[1359,4.017]],["name/5121",[466,79.173]],["parent/5121",[1359,4.017]],["name/5122",[467,79.173]],["parent/5122",[1359,4.017]],["name/5123",[468,79.173]],["parent/5123",[1359,4.017]],["name/5124",[469,79.173]],["parent/5124",[1359,4.017]],["name/5125",[470,79.173]],["parent/5125",[1359,4.017]],["name/5126",[471,79.173]],["parent/5126",[1359,4.017]],["name/5127",[472,79.173]],["parent/5127",[1359,4.017]],["name/5128",[62,63.079]],["parent/5128",[1359,4.017]],["name/5129",[473,73.295]],["parent/5129",[1359,4.017]],["name/5130",[474,73.295]],["parent/5130",[1359,4.017]],["name/5131",[475,73.295]],["parent/5131",[1359,4.017]],["name/5132",[476,73.295]],["parent/5132",[1359,4.017]],["name/5133",[477,73.295]],["parent/5133",[1359,4.017]],["name/5134",[478,73.295]],["parent/5134",[1359,4.017]],["name/5135",[479,73.295]],["parent/5135",[1359,4.017]],["name/5136",[480,79.173]],["parent/5136",[1290,3.969]],["name/5137",[127,31.117]],["parent/5137",[1360,8.41]],["name/5138",[11,33.551]],["parent/5138",[1361,5.028]],["name/5139",[153,53.524]],["parent/5139",[1361,5.028]],["name/5140",[154,53.524]],["parent/5140",[1361,5.028]],["name/5141",[155,53.524]],["parent/5141",[1361,5.028]],["name/5142",[156,53.524]],["parent/5142",[1361,5.028]],["name/5143",[157,53.524]],["parent/5143",[1361,5.028]],["name/5144",[158,53.524]],["parent/5144",[1361,5.028]],["name/5145",[159,53.524]],["parent/5145",[1361,5.028]],["name/5146",[55,58.632]],["parent/5146",[1361,5.028]],["name/5147",[418,73.295]],["parent/5147",[1361,5.028]],["name/5148",[419,73.295]],["parent/5148",[1361,5.028]],["name/5149",[420,73.295]],["parent/5149",[1361,5.028]],["name/5150",[421,73.295]],["parent/5150",[1361,5.028]],["name/5151",[422,73.295]],["parent/5151",[1361,5.028]],["name/5152",[423,73.295]],["parent/5152",[1361,5.028]],["name/5153",[424,73.295]],["parent/5153",[1361,5.028]],["name/5154",[425,73.295]],["parent/5154",[1361,5.028]],["name/5155",[426,73.295]],["parent/5155",[1361,5.028]],["name/5156",[427,73.295]],["parent/5156",[1361,5.028]],["name/5157",[428,73.295]],["parent/5157",[1361,5.028]],["name/5158",[429,73.295]],["parent/5158",[1361,5.028]],["name/5159",[430,73.295]],["parent/5159",[1361,5.028]],["name/5160",[18,49.942]],["parent/5160",[1361,5.028]],["name/5161",[193,62.309]],["parent/5161",[1361,5.028]],["name/5162",[194,62.309]],["parent/5162",[1361,5.028]],["name/5163",[195,62.309]],["parent/5163",[1361,5.028]],["name/5164",[196,62.309]],["parent/5164",[1361,5.028]],["name/5165",[197,62.309]],["parent/5165",[1361,5.028]],["name/5166",[198,62.309]],["parent/5166",[1361,5.028]],["name/5167",[199,62.309]],["parent/5167",[1361,5.028]],["name/5168",[200,62.309]],["parent/5168",[1361,5.028]],["name/5169",[201,62.309]],["parent/5169",[1361,5.028]],["name/5170",[202,62.309]],["parent/5170",[1361,5.028]],["name/5171",[203,62.309]],["parent/5171",[1361,5.028]],["name/5172",[204,62.309]],["parent/5172",[1361,5.028]],["name/5173",[205,62.309]],["parent/5173",[1361,5.028]],["name/5174",[62,63.079]],["parent/5174",[1361,5.028]],["name/5175",[473,73.295]],["parent/5175",[1361,5.028]],["name/5176",[474,73.295]],["parent/5176",[1361,5.028]],["name/5177",[475,73.295]],["parent/5177",[1361,5.028]],["name/5178",[476,73.295]],["parent/5178",[1361,5.028]],["name/5179",[477,73.295]],["parent/5179",[1361,5.028]],["name/5180",[478,73.295]],["parent/5180",[1361,5.028]],["name/5181",[479,73.295]],["parent/5181",[1361,5.028]],["name/5182",[483,68.187]],["parent/5182",[1290,3.969]],["name/5183",[127,31.117]],["parent/5183",[1362,8.41]],["name/5184",[148,51.323]],["parent/5184",[1363,6.147]],["name/5185",[11,33.551]],["parent/5185",[1363,6.147]],["name/5186",[16,55.949]],["parent/5186",[1363,6.147]],["name/5187",[17,52.363]],["parent/5187",[1363,6.147]],["name/5188",[18,49.942]],["parent/5188",[1363,6.147]],["name/5189",[23,59.158]],["parent/5189",[1363,6.147]],["name/5190",[19,57.656]],["parent/5190",[1363,6.147]],["name/5191",[20,59.158]],["parent/5191",[1363,6.147]],["name/5192",[21,63.079]],["parent/5192",[1363,6.147]],["name/5193",[22,63.079]],["parent/5193",[1363,6.147]],["name/5194",[24,59.158]],["parent/5194",[1363,6.147]],["name/5195",[25,59.158]],["parent/5195",[1363,6.147]],["name/5196",[27,63.079]],["parent/5196",[1363,6.147]],["name/5197",[28,63.079]],["parent/5197",[1363,6.147]],["name/5198",[486,79.173]],["parent/5198",[1290,3.969]],["name/5199",[127,31.117]],["parent/5199",[1364,8.41]],["name/5200",[11,33.551]],["parent/5200",[1365,4.12]],["name/5201",[153,53.524]],["parent/5201",[1365,4.12]],["name/5202",[154,53.524]],["parent/5202",[1365,4.12]],["name/5203",[155,53.524]],["parent/5203",[1365,4.12]],["name/5204",[156,53.524]],["parent/5204",[1365,4.12]],["name/5205",[157,53.524]],["parent/5205",[1365,4.12]],["name/5206",[158,53.524]],["parent/5206",[1365,4.12]],["name/5207",[159,53.524]],["parent/5207",[1365,4.12]],["name/5208",[16,55.949]],["parent/5208",[1365,4.12]],["name/5209",[173,69.618]],["parent/5209",[1365,4.12]],["name/5210",[174,69.618]],["parent/5210",[1365,4.12]],["name/5211",[175,69.618]],["parent/5211",[1365,4.12]],["name/5212",[176,69.618]],["parent/5212",[1365,4.12]],["name/5213",[177,69.618]],["parent/5213",[1365,4.12]],["name/5214",[178,69.618]],["parent/5214",[1365,4.12]],["name/5215",[179,69.618]],["parent/5215",[1365,4.12]],["name/5216",[180,69.618]],["parent/5216",[1365,4.12]],["name/5217",[181,69.618]],["parent/5217",[1365,4.12]],["name/5218",[182,69.618]],["parent/5218",[1365,4.12]],["name/5219",[183,69.618]],["parent/5219",[1365,4.12]],["name/5220",[184,69.618]],["parent/5220",[1365,4.12]],["name/5221",[185,69.618]],["parent/5221",[1365,4.12]],["name/5222",[17,52.363]],["parent/5222",[1365,4.12]],["name/5223",[186,63.079]],["parent/5223",[1365,4.12]],["name/5224",[187,63.079]],["parent/5224",[1365,4.12]],["name/5225",[188,63.079]],["parent/5225",[1365,4.12]],["name/5226",[189,63.079]],["parent/5226",[1365,4.12]],["name/5227",[190,63.079]],["parent/5227",[1365,4.12]],["name/5228",[191,63.079]],["parent/5228",[1365,4.12]],["name/5229",[192,63.079]],["parent/5229",[1365,4.12]],["name/5230",[18,49.942]],["parent/5230",[1365,4.12]],["name/5231",[193,62.309]],["parent/5231",[1365,4.12]],["name/5232",[194,62.309]],["parent/5232",[1365,4.12]],["name/5233",[195,62.309]],["parent/5233",[1365,4.12]],["name/5234",[196,62.309]],["parent/5234",[1365,4.12]],["name/5235",[197,62.309]],["parent/5235",[1365,4.12]],["name/5236",[198,62.309]],["parent/5236",[1365,4.12]],["name/5237",[199,62.309]],["parent/5237",[1365,4.12]],["name/5238",[200,62.309]],["parent/5238",[1365,4.12]],["name/5239",[201,62.309]],["parent/5239",[1365,4.12]],["name/5240",[202,62.309]],["parent/5240",[1365,4.12]],["name/5241",[203,62.309]],["parent/5241",[1365,4.12]],["name/5242",[204,62.309]],["parent/5242",[1365,4.12]],["name/5243",[205,62.309]],["parent/5243",[1365,4.12]],["name/5244",[23,59.158]],["parent/5244",[1365,4.12]],["name/5245",[232,69.618]],["parent/5245",[1365,4.12]],["name/5246",[233,69.618]],["parent/5246",[1365,4.12]],["name/5247",[234,69.618]],["parent/5247",[1365,4.12]],["name/5248",[235,69.618]],["parent/5248",[1365,4.12]],["name/5249",[236,69.618]],["parent/5249",[1365,4.12]],["name/5250",[19,57.656]],["parent/5250",[1365,4.12]],["name/5251",[206,68.187]],["parent/5251",[1365,4.12]],["name/5252",[207,68.187]],["parent/5252",[1365,4.12]],["name/5253",[208,68.187]],["parent/5253",[1365,4.12]],["name/5254",[209,68.187]],["parent/5254",[1365,4.12]],["name/5255",[210,68.187]],["parent/5255",[1365,4.12]],["name/5256",[211,68.187]],["parent/5256",[1365,4.12]],["name/5257",[212,68.187]],["parent/5257",[1365,4.12]],["name/5258",[20,59.158]],["parent/5258",[1365,4.12]],["name/5259",[213,69.618]],["parent/5259",[1365,4.12]],["name/5260",[214,69.618]],["parent/5260",[1365,4.12]],["name/5261",[215,69.618]],["parent/5261",[1365,4.12]],["name/5262",[216,69.618]],["parent/5262",[1365,4.12]],["name/5263",[217,69.618]],["parent/5263",[1365,4.12]],["name/5264",[21,63.079]],["parent/5264",[1365,4.12]],["name/5265",[218,73.295]],["parent/5265",[1365,4.12]],["name/5266",[219,73.295]],["parent/5266",[1365,4.12]],["name/5267",[220,73.295]],["parent/5267",[1365,4.12]],["name/5268",[221,73.295]],["parent/5268",[1365,4.12]],["name/5269",[222,73.295]],["parent/5269",[1365,4.12]],["name/5270",[223,73.295]],["parent/5270",[1365,4.12]],["name/5271",[224,73.295]],["parent/5271",[1365,4.12]],["name/5272",[22,63.079]],["parent/5272",[1365,4.12]],["name/5273",[225,73.295]],["parent/5273",[1365,4.12]],["name/5274",[226,73.295]],["parent/5274",[1365,4.12]],["name/5275",[227,73.295]],["parent/5275",[1365,4.12]],["name/5276",[228,73.295]],["parent/5276",[1365,4.12]],["name/5277",[229,73.295]],["parent/5277",[1365,4.12]],["name/5278",[230,73.295]],["parent/5278",[1365,4.12]],["name/5279",[231,73.295]],["parent/5279",[1365,4.12]],["name/5280",[24,59.158]],["parent/5280",[1365,4.12]],["name/5281",[237,69.618]],["parent/5281",[1365,4.12]],["name/5282",[238,69.618]],["parent/5282",[1365,4.12]],["name/5283",[239,69.618]],["parent/5283",[1365,4.12]],["name/5284",[240,69.618]],["parent/5284",[1365,4.12]],["name/5285",[241,69.618]],["parent/5285",[1365,4.12]],["name/5286",[242,69.618]],["parent/5286",[1365,4.12]],["name/5287",[243,69.618]],["parent/5287",[1365,4.12]],["name/5288",[25,59.158]],["parent/5288",[1365,4.12]],["name/5289",[244,69.618]],["parent/5289",[1365,4.12]],["name/5290",[245,69.618]],["parent/5290",[1365,4.12]],["name/5291",[246,69.618]],["parent/5291",[1365,4.12]],["name/5292",[247,69.618]],["parent/5292",[1365,4.12]],["name/5293",[248,69.618]],["parent/5293",[1365,4.12]],["name/5294",[249,69.618]],["parent/5294",[1365,4.12]],["name/5295",[250,69.618]],["parent/5295",[1365,4.12]],["name/5296",[27,63.079]],["parent/5296",[1365,4.12]],["name/5297",[254,73.295]],["parent/5297",[1365,4.12]],["name/5298",[255,73.295]],["parent/5298",[1365,4.12]],["name/5299",[256,73.295]],["parent/5299",[1365,4.12]],["name/5300",[257,73.295]],["parent/5300",[1365,4.12]],["name/5301",[258,73.295]],["parent/5301",[1365,4.12]],["name/5302",[28,63.079]],["parent/5302",[1365,4.12]],["name/5303",[259,73.295]],["parent/5303",[1365,4.12]],["name/5304",[260,73.295]],["parent/5304",[1365,4.12]],["name/5305",[261,73.295]],["parent/5305",[1365,4.12]],["name/5306",[262,73.295]],["parent/5306",[1365,4.12]],["name/5307",[263,73.295]],["parent/5307",[1365,4.12]],["name/5308",[264,73.295]],["parent/5308",[1365,4.12]],["name/5309",[265,73.295]],["parent/5309",[1365,4.12]],["name/5310",[18,49.942]],["parent/5310",[1290,3.969]],["name/5311",[127,31.117]],["parent/5311",[1366,8.41]],["name/5312",[148,51.323]],["parent/5312",[1367,5.801]],["name/5313",[11,33.551]],["parent/5313",[1367,5.801]],["name/5314",[74,63.079]],["parent/5314",[1367,5.801]],["name/5315",[75,63.079]],["parent/5315",[1367,5.801]],["name/5316",[58,56.349]],["parent/5316",[1367,5.801]],["name/5317",[59,56.349]],["parent/5317",[1367,5.801]],["name/5318",[76,59.158]],["parent/5318",[1367,5.801]],["name/5319",[84,69.618]],["parent/5319",[1367,5.801]],["name/5320",[60,56.349]],["parent/5320",[1367,5.801]],["name/5321",[85,69.618]],["parent/5321",[1367,5.801]],["name/5322",[86,69.618]],["parent/5322",[1367,5.801]],["name/5323",[87,69.618]],["parent/5323",[1367,5.801]],["name/5324",[77,63.079]],["parent/5324",[1367,5.801]],["name/5325",[78,63.079]],["parent/5325",[1367,5.801]],["name/5326",[34,54.159]],["parent/5326",[1367,5.801]],["name/5327",[42,59.158]],["parent/5327",[1367,5.801]],["name/5328",[38,51.573]],["parent/5328",[1367,5.801]],["name/5329",[1311,75.808]],["parent/5329",[1367,5.801]],["name/5330",[1312,75.808]],["parent/5330",[1367,5.801]],["name/5331",[88,69.618]],["parent/5331",[1367,5.801]],["name/5332",[512,68.187]],["parent/5332",[1290,3.969]],["name/5333",[127,31.117]],["parent/5333",[1368,8.41]],["name/5334",[148,51.323]],["parent/5334",[1369,6.147]],["name/5335",[11,33.551]],["parent/5335",[1369,6.147]],["name/5336",[31,55.194]],["parent/5336",[1369,6.147]],["name/5337",[1299,75.808]],["parent/5337",[1369,6.147]],["name/5338",[74,63.079]],["parent/5338",[1369,6.147]],["name/5339",[75,63.079]],["parent/5339",[1369,6.147]],["name/5340",[58,56.349]],["parent/5340",[1369,6.147]],["name/5341",[59,56.349]],["parent/5341",[1369,6.147]],["name/5342",[76,59.158]],["parent/5342",[1369,6.147]],["name/5343",[60,56.349]],["parent/5343",[1369,6.147]],["name/5344",[1300,75.808]],["parent/5344",[1369,6.147]],["name/5345",[1301,75.808]],["parent/5345",[1369,6.147]],["name/5346",[1302,65.823]],["parent/5346",[1369,6.147]],["name/5347",[1303,69.618]],["parent/5347",[1369,6.147]],["name/5348",[515,79.173]],["parent/5348",[1290,3.969]],["name/5349",[127,31.117]],["parent/5349",[1370,8.41]],["name/5350",[11,33.551]],["parent/5350",[1371,4.084]],["name/5351",[153,53.524]],["parent/5351",[1371,4.084]],["name/5352",[154,53.524]],["parent/5352",[1371,4.084]],["name/5353",[155,53.524]],["parent/5353",[1371,4.084]],["name/5354",[156,53.524]],["parent/5354",[1371,4.084]],["name/5355",[157,53.524]],["parent/5355",[1371,4.084]],["name/5356",[158,53.524]],["parent/5356",[1371,4.084]],["name/5357",[159,53.524]],["parent/5357",[1371,4.084]],["name/5358",[31,55.194]],["parent/5358",[1371,4.084]],["name/5359",[271,65.823]],["parent/5359",[1371,4.084]],["name/5360",[272,65.823]],["parent/5360",[1371,4.084]],["name/5361",[273,65.823]],["parent/5361",[1371,4.084]],["name/5362",[274,65.823]],["parent/5362",[1371,4.084]],["name/5363",[275,65.823]],["parent/5363",[1371,4.084]],["name/5364",[276,65.823]],["parent/5364",[1371,4.084]],["name/5365",[277,65.823]],["parent/5365",[1371,4.084]],["name/5366",[1299,75.808]],["parent/5366",[1371,4.084]],["name/5367",[1372,84.281]],["parent/5367",[1371,4.084]],["name/5368",[1373,84.281]],["parent/5368",[1371,4.084]],["name/5369",[1374,84.281]],["parent/5369",[1371,4.084]],["name/5370",[1375,84.281]],["parent/5370",[1371,4.084]],["name/5371",[1376,84.281]],["parent/5371",[1371,4.084]],["name/5372",[74,63.079]],["parent/5372",[1371,4.084]],["name/5373",[518,73.295]],["parent/5373",[1371,4.084]],["name/5374",[519,73.295]],["parent/5374",[1371,4.084]],["name/5375",[520,73.295]],["parent/5375",[1371,4.084]],["name/5376",[521,73.295]],["parent/5376",[1371,4.084]],["name/5377",[522,73.295]],["parent/5377",[1371,4.084]],["name/5378",[523,73.295]],["parent/5378",[1371,4.084]],["name/5379",[524,73.295]],["parent/5379",[1371,4.084]],["name/5380",[525,73.295]],["parent/5380",[1371,4.084]],["name/5381",[526,73.295]],["parent/5381",[1371,4.084]],["name/5382",[527,73.295]],["parent/5382",[1371,4.084]],["name/5383",[528,73.295]],["parent/5383",[1371,4.084]],["name/5384",[529,73.295]],["parent/5384",[1371,4.084]],["name/5385",[530,73.295]],["parent/5385",[1371,4.084]],["name/5386",[75,63.079]],["parent/5386",[1371,4.084]],["name/5387",[531,73.295]],["parent/5387",[1371,4.084]],["name/5388",[532,73.295]],["parent/5388",[1371,4.084]],["name/5389",[533,73.295]],["parent/5389",[1371,4.084]],["name/5390",[534,73.295]],["parent/5390",[1371,4.084]],["name/5391",[535,73.295]],["parent/5391",[1371,4.084]],["name/5392",[536,73.295]],["parent/5392",[1371,4.084]],["name/5393",[537,73.295]],["parent/5393",[1371,4.084]],["name/5394",[538,73.295]],["parent/5394",[1371,4.084]],["name/5395",[539,73.295]],["parent/5395",[1371,4.084]],["name/5396",[540,73.295]],["parent/5396",[1371,4.084]],["name/5397",[541,73.295]],["parent/5397",[1371,4.084]],["name/5398",[542,73.295]],["parent/5398",[1371,4.084]],["name/5399",[543,73.295]],["parent/5399",[1371,4.084]],["name/5400",[58,56.349]],["parent/5400",[1371,4.084]],["name/5401",[445,66.935]],["parent/5401",[1371,4.084]],["name/5402",[446,66.935]],["parent/5402",[1371,4.084]],["name/5403",[447,66.935]],["parent/5403",[1371,4.084]],["name/5404",[448,66.935]],["parent/5404",[1371,4.084]],["name/5405",[449,66.935]],["parent/5405",[1371,4.084]],["name/5406",[450,66.935]],["parent/5406",[1371,4.084]],["name/5407",[451,66.935]],["parent/5407",[1371,4.084]],["name/5408",[59,56.349]],["parent/5408",[1371,4.084]],["name/5409",[452,66.935]],["parent/5409",[1371,4.084]],["name/5410",[453,66.935]],["parent/5410",[1371,4.084]],["name/5411",[454,66.935]],["parent/5411",[1371,4.084]],["name/5412",[455,66.935]],["parent/5412",[1371,4.084]],["name/5413",[456,66.935]],["parent/5413",[1371,4.084]],["name/5414",[457,66.935]],["parent/5414",[1371,4.084]],["name/5415",[458,66.935]],["parent/5415",[1371,4.084]],["name/5416",[76,59.158]],["parent/5416",[1371,4.084]],["name/5417",[544,69.618]],["parent/5417",[1371,4.084]],["name/5418",[545,69.618]],["parent/5418",[1371,4.084]],["name/5419",[546,69.618]],["parent/5419",[1371,4.084]],["name/5420",[547,69.618]],["parent/5420",[1371,4.084]],["name/5421",[548,69.618]],["parent/5421",[1371,4.084]],["name/5422",[549,69.618]],["parent/5422",[1371,4.084]],["name/5423",[550,69.618]],["parent/5423",[1371,4.084]],["name/5424",[60,56.349]],["parent/5424",[1371,4.084]],["name/5425",[459,66.935]],["parent/5425",[1371,4.084]],["name/5426",[460,66.935]],["parent/5426",[1371,4.084]],["name/5427",[461,66.935]],["parent/5427",[1371,4.084]],["name/5428",[462,66.935]],["parent/5428",[1371,4.084]],["name/5429",[463,66.935]],["parent/5429",[1371,4.084]],["name/5430",[464,66.935]],["parent/5430",[1371,4.084]],["name/5431",[465,66.935]],["parent/5431",[1371,4.084]],["name/5432",[1300,75.808]],["parent/5432",[1371,4.084]],["name/5433",[1377,84.281]],["parent/5433",[1371,4.084]],["name/5434",[1378,84.281]],["parent/5434",[1371,4.084]],["name/5435",[1379,84.281]],["parent/5435",[1371,4.084]],["name/5436",[1380,84.281]],["parent/5436",[1371,4.084]],["name/5437",[1381,84.281]],["parent/5437",[1371,4.084]],["name/5438",[1382,84.281]],["parent/5438",[1371,4.084]],["name/5439",[1383,84.281]],["parent/5439",[1371,4.084]],["name/5440",[1301,75.808]],["parent/5440",[1371,4.084]],["name/5441",[1384,84.281]],["parent/5441",[1371,4.084]],["name/5442",[1385,84.281]],["parent/5442",[1371,4.084]],["name/5443",[1386,84.281]],["parent/5443",[1371,4.084]],["name/5444",[1387,84.281]],["parent/5444",[1371,4.084]],["name/5445",[1388,84.281]],["parent/5445",[1371,4.084]],["name/5446",[1389,84.281]],["parent/5446",[1371,4.084]],["name/5447",[1390,84.281]],["parent/5447",[1371,4.084]],["name/5448",[1302,65.823]],["parent/5448",[1371,4.084]],["name/5449",[1391,75.808]],["parent/5449",[1371,4.084]],["name/5450",[1392,75.808]],["parent/5450",[1371,4.084]],["name/5451",[1393,75.808]],["parent/5451",[1371,4.084]],["name/5452",[1394,75.808]],["parent/5452",[1371,4.084]],["name/5453",[1395,75.808]],["parent/5453",[1371,4.084]],["name/5454",[1396,75.808]],["parent/5454",[1371,4.084]],["name/5455",[1397,75.808]],["parent/5455",[1371,4.084]],["name/5456",[1303,69.618]],["parent/5456",[1371,4.084]],["name/5457",[1398,79.173]],["parent/5457",[1371,4.084]],["name/5458",[1399,79.173]],["parent/5458",[1371,4.084]],["name/5459",[1400,79.173]],["parent/5459",[1371,4.084]],["name/5460",[1401,79.173]],["parent/5460",[1371,4.084]],["name/5461",[1402,79.173]],["parent/5461",[1371,4.084]],["name/5462",[1403,79.173]],["parent/5462",[1371,4.084]],["name/5463",[1404,79.173]],["parent/5463",[1371,4.084]],["name/5464",[565,68.187]],["parent/5464",[1290,3.969]],["name/5465",[127,31.117]],["parent/5465",[1405,8.41]],["name/5466",[148,51.323]],["parent/5466",[1406,6.378]],["name/5467",[11,33.551]],["parent/5467",[1406,6.378]],["name/5468",[1305,75.808]],["parent/5468",[1406,6.378]],["name/5469",[18,49.942]],["parent/5469",[1406,6.378]],["name/5470",[58,56.349]],["parent/5470",[1406,6.378]],["name/5471",[59,56.349]],["parent/5471",[1406,6.378]],["name/5472",[60,56.349]],["parent/5472",[1406,6.378]],["name/5473",[1306,75.808]],["parent/5473",[1406,6.378]],["name/5474",[1307,75.808]],["parent/5474",[1406,6.378]],["name/5475",[1308,75.808]],["parent/5475",[1406,6.378]],["name/5476",[1309,75.808]],["parent/5476",[1406,6.378]],["name/5477",[568,79.173]],["parent/5477",[1290,3.969]],["name/5478",[127,31.117]],["parent/5478",[1407,8.41]],["name/5479",[11,33.551]],["parent/5479",[1408,4.364]],["name/5480",[153,53.524]],["parent/5480",[1408,4.364]],["name/5481",[154,53.524]],["parent/5481",[1408,4.364]],["name/5482",[155,53.524]],["parent/5482",[1408,4.364]],["name/5483",[156,53.524]],["parent/5483",[1408,4.364]],["name/5484",[157,53.524]],["parent/5484",[1408,4.364]],["name/5485",[158,53.524]],["parent/5485",[1408,4.364]],["name/5486",[159,53.524]],["parent/5486",[1408,4.364]],["name/5487",[1305,75.808]],["parent/5487",[1408,4.364]],["name/5488",[1409,84.281]],["parent/5488",[1408,4.364]],["name/5489",[1410,84.281]],["parent/5489",[1408,4.364]],["name/5490",[1411,84.281]],["parent/5490",[1408,4.364]],["name/5491",[1412,84.281]],["parent/5491",[1408,4.364]],["name/5492",[1413,84.281]],["parent/5492",[1408,4.364]],["name/5493",[1414,84.281]],["parent/5493",[1408,4.364]],["name/5494",[1415,84.281]],["parent/5494",[1408,4.364]],["name/5495",[18,49.942]],["parent/5495",[1408,4.364]],["name/5496",[193,62.309]],["parent/5496",[1408,4.364]],["name/5497",[194,62.309]],["parent/5497",[1408,4.364]],["name/5498",[195,62.309]],["parent/5498",[1408,4.364]],["name/5499",[196,62.309]],["parent/5499",[1408,4.364]],["name/5500",[197,62.309]],["parent/5500",[1408,4.364]],["name/5501",[198,62.309]],["parent/5501",[1408,4.364]],["name/5502",[199,62.309]],["parent/5502",[1408,4.364]],["name/5503",[200,62.309]],["parent/5503",[1408,4.364]],["name/5504",[201,62.309]],["parent/5504",[1408,4.364]],["name/5505",[202,62.309]],["parent/5505",[1408,4.364]],["name/5506",[203,62.309]],["parent/5506",[1408,4.364]],["name/5507",[204,62.309]],["parent/5507",[1408,4.364]],["name/5508",[205,62.309]],["parent/5508",[1408,4.364]],["name/5509",[58,56.349]],["parent/5509",[1408,4.364]],["name/5510",[445,66.935]],["parent/5510",[1408,4.364]],["name/5511",[446,66.935]],["parent/5511",[1408,4.364]],["name/5512",[447,66.935]],["parent/5512",[1408,4.364]],["name/5513",[448,66.935]],["parent/5513",[1408,4.364]],["name/5514",[449,66.935]],["parent/5514",[1408,4.364]],["name/5515",[450,66.935]],["parent/5515",[1408,4.364]],["name/5516",[451,66.935]],["parent/5516",[1408,4.364]],["name/5517",[59,56.349]],["parent/5517",[1408,4.364]],["name/5518",[452,66.935]],["parent/5518",[1408,4.364]],["name/5519",[453,66.935]],["parent/5519",[1408,4.364]],["name/5520",[454,66.935]],["parent/5520",[1408,4.364]],["name/5521",[455,66.935]],["parent/5521",[1408,4.364]],["name/5522",[456,66.935]],["parent/5522",[1408,4.364]],["name/5523",[457,66.935]],["parent/5523",[1408,4.364]],["name/5524",[458,66.935]],["parent/5524",[1408,4.364]],["name/5525",[60,56.349]],["parent/5525",[1408,4.364]],["name/5526",[459,66.935]],["parent/5526",[1408,4.364]],["name/5527",[460,66.935]],["parent/5527",[1408,4.364]],["name/5528",[461,66.935]],["parent/5528",[1408,4.364]],["name/5529",[462,66.935]],["parent/5529",[1408,4.364]],["name/5530",[463,66.935]],["parent/5530",[1408,4.364]],["name/5531",[464,66.935]],["parent/5531",[1408,4.364]],["name/5532",[465,66.935]],["parent/5532",[1408,4.364]],["name/5533",[1306,75.808]],["parent/5533",[1408,4.364]],["name/5534",[1416,84.281]],["parent/5534",[1408,4.364]],["name/5535",[1417,84.281]],["parent/5535",[1408,4.364]],["name/5536",[1418,84.281]],["parent/5536",[1408,4.364]],["name/5537",[1419,84.281]],["parent/5537",[1408,4.364]],["name/5538",[1420,84.281]],["parent/5538",[1408,4.364]],["name/5539",[1421,84.281]],["parent/5539",[1408,4.364]],["name/5540",[1422,84.281]],["parent/5540",[1408,4.364]],["name/5541",[1307,75.808]],["parent/5541",[1408,4.364]],["name/5542",[1423,84.281]],["parent/5542",[1408,4.364]],["name/5543",[1424,84.281]],["parent/5543",[1408,4.364]],["name/5544",[1425,84.281]],["parent/5544",[1408,4.364]],["name/5545",[1426,84.281]],["parent/5545",[1408,4.364]],["name/5546",[1427,84.281]],["parent/5546",[1408,4.364]],["name/5547",[1428,84.281]],["parent/5547",[1408,4.364]],["name/5548",[1429,84.281]],["parent/5548",[1408,4.364]],["name/5549",[1308,75.808]],["parent/5549",[1408,4.364]],["name/5550",[1430,84.281]],["parent/5550",[1408,4.364]],["name/5551",[1431,84.281]],["parent/5551",[1408,4.364]],["name/5552",[1432,84.281]],["parent/5552",[1408,4.364]],["name/5553",[1433,84.281]],["parent/5553",[1408,4.364]],["name/5554",[1434,84.281]],["parent/5554",[1408,4.364]],["name/5555",[1435,84.281]],["parent/5555",[1408,4.364]],["name/5556",[1436,84.281]],["parent/5556",[1408,4.364]],["name/5557",[1309,75.808]],["parent/5557",[1408,4.364]],["name/5558",[1437,84.281]],["parent/5558",[1408,4.364]],["name/5559",[1438,84.281]],["parent/5559",[1408,4.364]],["name/5560",[1439,84.281]],["parent/5560",[1408,4.364]],["name/5561",[1440,84.281]],["parent/5561",[1408,4.364]],["name/5562",[1441,84.281]],["parent/5562",[1408,4.364]],["name/5563",[1442,84.281]],["parent/5563",[1408,4.364]],["name/5564",[1443,84.281]],["parent/5564",[1408,4.364]],["name/5565",[571,79.173]],["parent/5565",[1290,3.969]],["name/5566",[127,31.117]],["parent/5566",[1444,8.41]],["name/5567",[11,33.551]],["parent/5567",[1445,3.723]],["name/5568",[153,53.524]],["parent/5568",[1445,3.723]],["name/5569",[154,53.524]],["parent/5569",[1445,3.723]],["name/5570",[155,53.524]],["parent/5570",[1445,3.723]],["name/5571",[156,53.524]],["parent/5571",[1445,3.723]],["name/5572",[157,53.524]],["parent/5572",[1445,3.723]],["name/5573",[158,53.524]],["parent/5573",[1445,3.723]],["name/5574",[159,53.524]],["parent/5574",[1445,3.723]],["name/5575",[74,63.079]],["parent/5575",[1445,3.723]],["name/5576",[518,73.295]],["parent/5576",[1445,3.723]],["name/5577",[519,73.295]],["parent/5577",[1445,3.723]],["name/5578",[520,73.295]],["parent/5578",[1445,3.723]],["name/5579",[521,73.295]],["parent/5579",[1445,3.723]],["name/5580",[522,73.295]],["parent/5580",[1445,3.723]],["name/5581",[523,73.295]],["parent/5581",[1445,3.723]],["name/5582",[524,73.295]],["parent/5582",[1445,3.723]],["name/5583",[525,73.295]],["parent/5583",[1445,3.723]],["name/5584",[526,73.295]],["parent/5584",[1445,3.723]],["name/5585",[527,73.295]],["parent/5585",[1445,3.723]],["name/5586",[528,73.295]],["parent/5586",[1445,3.723]],["name/5587",[529,73.295]],["parent/5587",[1445,3.723]],["name/5588",[530,73.295]],["parent/5588",[1445,3.723]],["name/5589",[75,63.079]],["parent/5589",[1445,3.723]],["name/5590",[531,73.295]],["parent/5590",[1445,3.723]],["name/5591",[532,73.295]],["parent/5591",[1445,3.723]],["name/5592",[533,73.295]],["parent/5592",[1445,3.723]],["name/5593",[534,73.295]],["parent/5593",[1445,3.723]],["name/5594",[535,73.295]],["parent/5594",[1445,3.723]],["name/5595",[536,73.295]],["parent/5595",[1445,3.723]],["name/5596",[537,73.295]],["parent/5596",[1445,3.723]],["name/5597",[538,73.295]],["parent/5597",[1445,3.723]],["name/5598",[539,73.295]],["parent/5598",[1445,3.723]],["name/5599",[540,73.295]],["parent/5599",[1445,3.723]],["name/5600",[541,73.295]],["parent/5600",[1445,3.723]],["name/5601",[542,73.295]],["parent/5601",[1445,3.723]],["name/5602",[543,73.295]],["parent/5602",[1445,3.723]],["name/5603",[58,56.349]],["parent/5603",[1445,3.723]],["name/5604",[445,66.935]],["parent/5604",[1445,3.723]],["name/5605",[446,66.935]],["parent/5605",[1445,3.723]],["name/5606",[447,66.935]],["parent/5606",[1445,3.723]],["name/5607",[448,66.935]],["parent/5607",[1445,3.723]],["name/5608",[449,66.935]],["parent/5608",[1445,3.723]],["name/5609",[450,66.935]],["parent/5609",[1445,3.723]],["name/5610",[451,66.935]],["parent/5610",[1445,3.723]],["name/5611",[59,56.349]],["parent/5611",[1445,3.723]],["name/5612",[452,66.935]],["parent/5612",[1445,3.723]],["name/5613",[453,66.935]],["parent/5613",[1445,3.723]],["name/5614",[454,66.935]],["parent/5614",[1445,3.723]],["name/5615",[455,66.935]],["parent/5615",[1445,3.723]],["name/5616",[456,66.935]],["parent/5616",[1445,3.723]],["name/5617",[457,66.935]],["parent/5617",[1445,3.723]],["name/5618",[458,66.935]],["parent/5618",[1445,3.723]],["name/5619",[76,59.158]],["parent/5619",[1445,3.723]],["name/5620",[544,69.618]],["parent/5620",[1445,3.723]],["name/5621",[545,69.618]],["parent/5621",[1445,3.723]],["name/5622",[546,69.618]],["parent/5622",[1445,3.723]],["name/5623",[547,69.618]],["parent/5623",[1445,3.723]],["name/5624",[548,69.618]],["parent/5624",[1445,3.723]],["name/5625",[549,69.618]],["parent/5625",[1445,3.723]],["name/5626",[550,69.618]],["parent/5626",[1445,3.723]],["name/5627",[84,69.618]],["parent/5627",[1445,3.723]],["name/5628",[587,79.173]],["parent/5628",[1445,3.723]],["name/5629",[588,79.173]],["parent/5629",[1445,3.723]],["name/5630",[589,79.173]],["parent/5630",[1445,3.723]],["name/5631",[590,79.173]],["parent/5631",[1445,3.723]],["name/5632",[591,79.173]],["parent/5632",[1445,3.723]],["name/5633",[592,79.173]],["parent/5633",[1445,3.723]],["name/5634",[593,79.173]],["parent/5634",[1445,3.723]],["name/5635",[60,56.349]],["parent/5635",[1445,3.723]],["name/5636",[459,66.935]],["parent/5636",[1445,3.723]],["name/5637",[460,66.935]],["parent/5637",[1445,3.723]],["name/5638",[461,66.935]],["parent/5638",[1445,3.723]],["name/5639",[462,66.935]],["parent/5639",[1445,3.723]],["name/5640",[463,66.935]],["parent/5640",[1445,3.723]],["name/5641",[464,66.935]],["parent/5641",[1445,3.723]],["name/5642",[465,66.935]],["parent/5642",[1445,3.723]],["name/5643",[85,69.618]],["parent/5643",[1445,3.723]],["name/5644",[594,79.173]],["parent/5644",[1445,3.723]],["name/5645",[595,79.173]],["parent/5645",[1445,3.723]],["name/5646",[596,79.173]],["parent/5646",[1445,3.723]],["name/5647",[597,79.173]],["parent/5647",[1445,3.723]],["name/5648",[598,79.173]],["parent/5648",[1445,3.723]],["name/5649",[599,79.173]],["parent/5649",[1445,3.723]],["name/5650",[600,79.173]],["parent/5650",[1445,3.723]],["name/5651",[86,69.618]],["parent/5651",[1445,3.723]],["name/5652",[601,79.173]],["parent/5652",[1445,3.723]],["name/5653",[602,79.173]],["parent/5653",[1445,3.723]],["name/5654",[603,79.173]],["parent/5654",[1445,3.723]],["name/5655",[604,79.173]],["parent/5655",[1445,3.723]],["name/5656",[605,79.173]],["parent/5656",[1445,3.723]],["name/5657",[606,79.173]],["parent/5657",[1445,3.723]],["name/5658",[607,79.173]],["parent/5658",[1445,3.723]],["name/5659",[87,69.618]],["parent/5659",[1445,3.723]],["name/5660",[608,79.173]],["parent/5660",[1445,3.723]],["name/5661",[609,79.173]],["parent/5661",[1445,3.723]],["name/5662",[610,79.173]],["parent/5662",[1445,3.723]],["name/5663",[611,79.173]],["parent/5663",[1445,3.723]],["name/5664",[612,79.173]],["parent/5664",[1445,3.723]],["name/5665",[613,79.173]],["parent/5665",[1445,3.723]],["name/5666",[614,79.173]],["parent/5666",[1445,3.723]],["name/5667",[77,63.079]],["parent/5667",[1445,3.723]],["name/5668",[551,73.295]],["parent/5668",[1445,3.723]],["name/5669",[552,73.295]],["parent/5669",[1445,3.723]],["name/5670",[553,73.295]],["parent/5670",[1445,3.723]],["name/5671",[554,73.295]],["parent/5671",[1445,3.723]],["name/5672",[555,73.295]],["parent/5672",[1445,3.723]],["name/5673",[556,73.295]],["parent/5673",[1445,3.723]],["name/5674",[557,73.295]],["parent/5674",[1445,3.723]],["name/5675",[78,63.079]],["parent/5675",[1445,3.723]],["name/5676",[558,73.295]],["parent/5676",[1445,3.723]],["name/5677",[559,73.295]],["parent/5677",[1445,3.723]],["name/5678",[560,73.295]],["parent/5678",[1445,3.723]],["name/5679",[561,73.295]],["parent/5679",[1445,3.723]],["name/5680",[562,73.295]],["parent/5680",[1445,3.723]],["name/5681",[563,73.295]],["parent/5681",[1445,3.723]],["name/5682",[564,73.295]],["parent/5682",[1445,3.723]],["name/5683",[34,54.159]],["parent/5683",[1445,3.723]],["name/5684",[298,64.822]],["parent/5684",[1445,3.723]],["name/5685",[299,64.822]],["parent/5685",[1445,3.723]],["name/5686",[300,64.822]],["parent/5686",[1445,3.723]],["name/5687",[301,64.822]],["parent/5687",[1445,3.723]],["name/5688",[302,64.822]],["parent/5688",[1445,3.723]],["name/5689",[303,64.822]],["parent/5689",[1445,3.723]],["name/5690",[304,64.822]],["parent/5690",[1445,3.723]],["name/5691",[42,59.158]],["parent/5691",[1445,3.723]],["name/5692",[361,69.618]],["parent/5692",[1445,3.723]],["name/5693",[362,69.618]],["parent/5693",[1445,3.723]],["name/5694",[363,69.618]],["parent/5694",[1445,3.723]],["name/5695",[364,69.618]],["parent/5695",[1445,3.723]],["name/5696",[365,69.618]],["parent/5696",[1445,3.723]],["name/5697",[366,69.618]],["parent/5697",[1445,3.723]],["name/5698",[367,69.618]],["parent/5698",[1445,3.723]],["name/5699",[38,51.573]],["parent/5699",[1445,3.723]],["name/5700",[326,62.309]],["parent/5700",[1445,3.723]],["name/5701",[327,62.309]],["parent/5701",[1445,3.723]],["name/5702",[328,62.309]],["parent/5702",[1445,3.723]],["name/5703",[329,62.309]],["parent/5703",[1445,3.723]],["name/5704",[330,62.309]],["parent/5704",[1445,3.723]],["name/5705",[331,62.309]],["parent/5705",[1445,3.723]],["name/5706",[332,62.309]],["parent/5706",[1445,3.723]],["name/5707",[1311,75.808]],["parent/5707",[1445,3.723]],["name/5708",[1446,84.281]],["parent/5708",[1445,3.723]],["name/5709",[1447,84.281]],["parent/5709",[1445,3.723]],["name/5710",[1448,84.281]],["parent/5710",[1445,3.723]],["name/5711",[1449,84.281]],["parent/5711",[1445,3.723]],["name/5712",[1450,84.281]],["parent/5712",[1445,3.723]],["name/5713",[1451,84.281]],["parent/5713",[1445,3.723]],["name/5714",[1452,84.281]],["parent/5714",[1445,3.723]],["name/5715",[1312,75.808]],["parent/5715",[1445,3.723]],["name/5716",[1453,84.281]],["parent/5716",[1445,3.723]],["name/5717",[1454,84.281]],["parent/5717",[1445,3.723]],["name/5718",[1455,84.281]],["parent/5718",[1445,3.723]],["name/5719",[1456,84.281]],["parent/5719",[1445,3.723]],["name/5720",[1457,84.281]],["parent/5720",[1445,3.723]],["name/5721",[1458,84.281]],["parent/5721",[1445,3.723]],["name/5722",[1459,84.281]],["parent/5722",[1445,3.723]],["name/5723",[88,69.618]],["parent/5723",[1445,3.723]],["name/5724",[615,79.173]],["parent/5724",[1445,3.723]],["name/5725",[616,79.173]],["parent/5725",[1445,3.723]],["name/5726",[617,79.173]],["parent/5726",[1445,3.723]],["name/5727",[618,79.173]],["parent/5727",[1445,3.723]],["name/5728",[619,79.173]],["parent/5728",[1445,3.723]],["name/5729",[620,79.173]],["parent/5729",[1445,3.723]],["name/5730",[621,79.173]],["parent/5730",[1445,3.723]],["name/5731",[4,75.808]],["parent/5731",[1290,3.969]],["name/5732",[127,31.117]],["parent/5732",[1460,8.41]],["name/5733",[148,51.323]],["parent/5733",[1461,5.341]],["name/5734",[1209,73.295]],["parent/5734",[1461,5.341]],["name/5735",[1202,75.808]],["parent/5735",[1461,5.341]],["name/5736",[102,60.302]],["parent/5736",[1461,5.341]],["name/5737",[46,68.187]],["parent/5737",[1461,5.341]],["name/5738",[18,49.942]],["parent/5738",[1461,5.341]],["name/5739",[45,68.187]],["parent/5739",[1461,5.341]],["name/5740",[55,58.632]],["parent/5740",[1461,5.341]],["name/5741",[624,71.289]],["parent/5741",[1461,5.341]],["name/5742",[53,62.309]],["parent/5742",[1461,5.341]],["name/5743",[89,63.913]],["parent/5743",[1461,5.341]],["name/5744",[392,68.187]],["parent/5744",[1461,5.341]],["name/5745",[90,68.187]],["parent/5745",[1461,5.341]],["name/5746",[16,55.949]],["parent/5746",[1461,5.341]],["name/5747",[635,71.289]],["parent/5747",[1461,5.341]],["name/5748",[483,68.187]],["parent/5748",[1461,5.341]],["name/5749",[91,62.309]],["parent/5749",[1461,5.341]],["name/5750",[167,68.187]],["parent/5750",[1461,5.341]],["name/5751",[92,62.309]],["parent/5751",[1461,5.341]],["name/5752",[636,68.187]],["parent/5752",[1461,5.341]],["name/5753",[93,62.309]],["parent/5753",[1461,5.341]],["name/5754",[146,68.187]],["parent/5754",[1461,5.341]],["name/5755",[625,71.289]],["parent/5755",[1461,5.341]],["name/5756",[1188,73.295]],["parent/5756",[1461,5.341]],["name/5757",[1195,75.808]],["parent/5757",[1461,5.341]],["name/5758",[565,68.187]],["parent/5758",[1461,5.341]],["name/5759",[633,71.289]],["parent/5759",[1461,5.341]],["name/5760",[512,68.187]],["parent/5760",[1461,5.341]],["name/5761",[634,71.289]],["parent/5761",[1461,5.341]],["name/5762",[631,68.187]],["parent/5762",[1461,5.341]],["name/5763",[632,71.289]],["parent/5763",[1461,5.341]],["name/5764",[640,71.289]],["parent/5764",[1461,5.341]],["name/5765",[1462,84.281]],["parent/5765",[1290,3.969]],["name/5766",[127,31.117]],["parent/5766",[1463,8.41]],["name/5767",[11,33.551]],["parent/5767",[1464,7.901]],["name/5768",[54,36.379]],["parent/5768",[1464,7.901]],["name/5769",[1465,84.281]],["parent/5769",[1290,3.969]],["name/5770",[127,31.117]],["parent/5770",[1466,8.41]],["name/5771",[337,39.934]],["parent/5771",[1467,6.947]],["name/5772",[339,39.934]],["parent/5772",[1467,6.947]],["name/5773",[340,40.174]],["parent/5773",[1467,6.947]],["name/5774",[68,40.013]],["parent/5774",[1467,6.947]],["name/5775",[341,40.174]],["parent/5775",[1467,6.947]],["name/5776",[54,36.379]],["parent/5776",[1467,6.947]],["name/5777",[671,79.173]],["parent/5777",[1290,3.969]],["name/5778",[127,31.117]],["parent/5778",[1468,8.41]],["name/5779",[11,33.551]],["parent/5779",[1469,7.901]],["name/5780",[54,36.379]],["parent/5780",[1469,7.901]],["name/5781",[674,79.173]],["parent/5781",[1290,3.969]],["name/5782",[127,31.117]],["parent/5782",[1470,8.41]],["name/5783",[337,39.934]],["parent/5783",[1471,6.947]],["name/5784",[339,39.934]],["parent/5784",[1471,6.947]],["name/5785",[340,40.174]],["parent/5785",[1471,6.947]],["name/5786",[68,40.013]],["parent/5786",[1471,6.947]],["name/5787",[341,40.174]],["parent/5787",[1471,6.947]],["name/5788",[54,36.379]],["parent/5788",[1471,6.947]],["name/5789",[689,79.173]],["parent/5789",[1290,3.969]],["name/5790",[127,31.117]],["parent/5790",[1472,8.41]],["name/5791",[11,33.551]],["parent/5791",[1473,7.901]],["name/5792",[54,36.379]],["parent/5792",[1473,7.901]],["name/5793",[692,79.173]],["parent/5793",[1290,3.969]],["name/5794",[127,31.117]],["parent/5794",[1474,8.41]],["name/5795",[337,39.934]],["parent/5795",[1475,6.947]],["name/5796",[339,39.934]],["parent/5796",[1475,6.947]],["name/5797",[340,40.174]],["parent/5797",[1475,6.947]],["name/5798",[68,40.013]],["parent/5798",[1475,6.947]],["name/5799",[341,40.174]],["parent/5799",[1475,6.947]],["name/5800",[54,36.379]],["parent/5800",[1475,6.947]],["name/5801",[641,79.173]],["parent/5801",[1290,3.969]],["name/5802",[127,31.117]],["parent/5802",[1476,8.41]],["name/5803",[11,33.551]],["parent/5803",[1477,7.901]],["name/5804",[54,36.379]],["parent/5804",[1477,7.901]],["name/5805",[644,79.173]],["parent/5805",[1290,3.969]],["name/5806",[127,31.117]],["parent/5806",[1478,8.41]],["name/5807",[337,39.934]],["parent/5807",[1479,6.947]],["name/5808",[339,39.934]],["parent/5808",[1479,6.947]],["name/5809",[340,40.174]],["parent/5809",[1479,6.947]],["name/5810",[68,40.013]],["parent/5810",[1479,6.947]],["name/5811",[341,40.174]],["parent/5811",[1479,6.947]],["name/5812",[54,36.379]],["parent/5812",[1479,6.947]],["name/5813",[707,79.173]],["parent/5813",[1290,3.969]],["name/5814",[127,31.117]],["parent/5814",[1480,8.41]],["name/5815",[11,33.551]],["parent/5815",[1481,7.901]],["name/5816",[54,36.379]],["parent/5816",[1481,7.901]],["name/5817",[710,79.173]],["parent/5817",[1290,3.969]],["name/5818",[127,31.117]],["parent/5818",[1482,8.41]],["name/5819",[337,39.934]],["parent/5819",[1483,6.947]],["name/5820",[339,39.934]],["parent/5820",[1483,6.947]],["name/5821",[340,40.174]],["parent/5821",[1483,6.947]],["name/5822",[68,40.013]],["parent/5822",[1483,6.947]],["name/5823",[341,40.174]],["parent/5823",[1483,6.947]],["name/5824",[54,36.379]],["parent/5824",[1483,6.947]],["name/5825",[713,79.173]],["parent/5825",[1290,3.969]],["name/5826",[127,31.117]],["parent/5826",[1484,8.41]],["name/5827",[11,33.551]],["parent/5827",[1485,7.901]],["name/5828",[54,36.379]],["parent/5828",[1485,7.901]],["name/5829",[716,79.173]],["parent/5829",[1290,3.969]],["name/5830",[127,31.117]],["parent/5830",[1486,8.41]],["name/5831",[337,39.934]],["parent/5831",[1487,6.947]],["name/5832",[339,39.934]],["parent/5832",[1487,6.947]],["name/5833",[340,40.174]],["parent/5833",[1487,6.947]],["name/5834",[68,40.013]],["parent/5834",[1487,6.947]],["name/5835",[341,40.174]],["parent/5835",[1487,6.947]],["name/5836",[54,36.379]],["parent/5836",[1487,6.947]],["name/5837",[719,79.173]],["parent/5837",[1290,3.969]],["name/5838",[127,31.117]],["parent/5838",[1488,8.41]],["name/5839",[11,33.551]],["parent/5839",[1489,7.901]],["name/5840",[54,36.379]],["parent/5840",[1489,7.901]],["name/5841",[722,79.173]],["parent/5841",[1290,3.969]],["name/5842",[127,31.117]],["parent/5842",[1490,8.41]],["name/5843",[337,39.934]],["parent/5843",[1491,6.947]],["name/5844",[339,39.934]],["parent/5844",[1491,6.947]],["name/5845",[340,40.174]],["parent/5845",[1491,6.947]],["name/5846",[68,40.013]],["parent/5846",[1491,6.947]],["name/5847",[341,40.174]],["parent/5847",[1491,6.947]],["name/5848",[54,36.379]],["parent/5848",[1491,6.947]],["name/5849",[725,79.173]],["parent/5849",[1290,3.969]],["name/5850",[127,31.117]],["parent/5850",[1492,8.41]],["name/5851",[11,33.551]],["parent/5851",[1493,7.901]],["name/5852",[54,36.379]],["parent/5852",[1493,7.901]],["name/5853",[728,79.173]],["parent/5853",[1290,3.969]],["name/5854",[127,31.117]],["parent/5854",[1494,8.41]],["name/5855",[337,39.934]],["parent/5855",[1495,6.947]],["name/5856",[339,39.934]],["parent/5856",[1495,6.947]],["name/5857",[340,40.174]],["parent/5857",[1495,6.947]],["name/5858",[68,40.013]],["parent/5858",[1495,6.947]],["name/5859",[341,40.174]],["parent/5859",[1495,6.947]],["name/5860",[54,36.379]],["parent/5860",[1495,6.947]],["name/5861",[731,79.173]],["parent/5861",[1290,3.969]],["name/5862",[127,31.117]],["parent/5862",[1496,8.41]],["name/5863",[11,33.551]],["parent/5863",[1497,7.901]],["name/5864",[54,36.379]],["parent/5864",[1497,7.901]],["name/5865",[734,79.173]],["parent/5865",[1290,3.969]],["name/5866",[127,31.117]],["parent/5866",[1498,8.41]],["name/5867",[337,39.934]],["parent/5867",[1499,6.947]],["name/5868",[339,39.934]],["parent/5868",[1499,6.947]],["name/5869",[340,40.174]],["parent/5869",[1499,6.947]],["name/5870",[68,40.013]],["parent/5870",[1499,6.947]],["name/5871",[341,40.174]],["parent/5871",[1499,6.947]],["name/5872",[54,36.379]],["parent/5872",[1499,6.947]],["name/5873",[737,79.173]],["parent/5873",[1290,3.969]],["name/5874",[127,31.117]],["parent/5874",[1500,8.41]],["name/5875",[11,33.551]],["parent/5875",[1501,7.901]],["name/5876",[54,36.379]],["parent/5876",[1501,7.901]],["name/5877",[740,79.173]],["parent/5877",[1290,3.969]],["name/5878",[127,31.117]],["parent/5878",[1502,8.41]],["name/5879",[337,39.934]],["parent/5879",[1503,6.947]],["name/5880",[339,39.934]],["parent/5880",[1503,6.947]],["name/5881",[340,40.174]],["parent/5881",[1503,6.947]],["name/5882",[68,40.013]],["parent/5882",[1503,6.947]],["name/5883",[341,40.174]],["parent/5883",[1503,6.947]],["name/5884",[54,36.379]],["parent/5884",[1503,6.947]],["name/5885",[647,79.173]],["parent/5885",[1290,3.969]],["name/5886",[127,31.117]],["parent/5886",[1504,8.41]],["name/5887",[11,33.551]],["parent/5887",[1505,7.901]],["name/5888",[54,36.379]],["parent/5888",[1505,7.901]],["name/5889",[650,79.173]],["parent/5889",[1290,3.969]],["name/5890",[127,31.117]],["parent/5890",[1506,8.41]],["name/5891",[337,39.934]],["parent/5891",[1507,6.947]],["name/5892",[339,39.934]],["parent/5892",[1507,6.947]],["name/5893",[340,40.174]],["parent/5893",[1507,6.947]],["name/5894",[68,40.013]],["parent/5894",[1507,6.947]],["name/5895",[341,40.174]],["parent/5895",[1507,6.947]],["name/5896",[54,36.379]],["parent/5896",[1507,6.947]],["name/5897",[1508,84.281]],["parent/5897",[1290,3.969]],["name/5898",[127,31.117]],["parent/5898",[1509,8.41]],["name/5899",[11,33.551]],["parent/5899",[1510,7.901]],["name/5900",[54,36.379]],["parent/5900",[1510,7.901]],["name/5901",[1511,84.281]],["parent/5901",[1290,3.969]],["name/5902",[127,31.117]],["parent/5902",[1512,8.41]],["name/5903",[337,39.934]],["parent/5903",[1513,6.947]],["name/5904",[339,39.934]],["parent/5904",[1513,6.947]],["name/5905",[340,40.174]],["parent/5905",[1513,6.947]],["name/5906",[68,40.013]],["parent/5906",[1513,6.947]],["name/5907",[341,40.174]],["parent/5907",[1513,6.947]],["name/5908",[54,36.379]],["parent/5908",[1513,6.947]],["name/5909",[695,79.173]],["parent/5909",[1290,3.969]],["name/5910",[127,31.117]],["parent/5910",[1514,8.41]],["name/5911",[11,33.551]],["parent/5911",[1515,7.901]],["name/5912",[54,36.379]],["parent/5912",[1515,7.901]],["name/5913",[698,79.173]],["parent/5913",[1290,3.969]],["name/5914",[127,31.117]],["parent/5914",[1516,8.41]],["name/5915",[337,39.934]],["parent/5915",[1517,6.947]],["name/5916",[339,39.934]],["parent/5916",[1517,6.947]],["name/5917",[340,40.174]],["parent/5917",[1517,6.947]],["name/5918",[68,40.013]],["parent/5918",[1517,6.947]],["name/5919",[341,40.174]],["parent/5919",[1517,6.947]],["name/5920",[54,36.379]],["parent/5920",[1517,6.947]],["name/5921",[701,79.173]],["parent/5921",[1290,3.969]],["name/5922",[127,31.117]],["parent/5922",[1518,8.41]],["name/5923",[11,33.551]],["parent/5923",[1519,7.901]],["name/5924",[54,36.379]],["parent/5924",[1519,7.901]],["name/5925",[704,79.173]],["parent/5925",[1290,3.969]],["name/5926",[127,31.117]],["parent/5926",[1520,8.41]],["name/5927",[337,39.934]],["parent/5927",[1521,6.947]],["name/5928",[339,39.934]],["parent/5928",[1521,6.947]],["name/5929",[340,40.174]],["parent/5929",[1521,6.947]],["name/5930",[68,40.013]],["parent/5930",[1521,6.947]],["name/5931",[341,40.174]],["parent/5931",[1521,6.947]],["name/5932",[54,36.379]],["parent/5932",[1521,6.947]],["name/5933",[683,79.173]],["parent/5933",[1290,3.969]],["name/5934",[127,31.117]],["parent/5934",[1522,8.41]],["name/5935",[11,33.551]],["parent/5935",[1523,7.901]],["name/5936",[54,36.379]],["parent/5936",[1523,7.901]],["name/5937",[686,79.173]],["parent/5937",[1290,3.969]],["name/5938",[127,31.117]],["parent/5938",[1524,8.41]],["name/5939",[337,39.934]],["parent/5939",[1525,6.947]],["name/5940",[339,39.934]],["parent/5940",[1525,6.947]],["name/5941",[340,40.174]],["parent/5941",[1525,6.947]],["name/5942",[68,40.013]],["parent/5942",[1525,6.947]],["name/5943",[341,40.174]],["parent/5943",[1525,6.947]],["name/5944",[54,36.379]],["parent/5944",[1525,6.947]],["name/5945",[753,79.173]],["parent/5945",[1290,3.969]],["name/5946",[127,31.117]],["parent/5946",[1526,8.41]],["name/5947",[54,36.379]],["parent/5947",[1527,8.41]],["name/5948",[756,79.173]],["parent/5948",[1290,3.969]],["name/5949",[127,31.117]],["parent/5949",[1528,8.41]],["name/5950",[148,51.323]],["parent/5950",[1529,5.341]],["name/5951",[1209,73.295]],["parent/5951",[1529,5.341]],["name/5952",[1202,75.808]],["parent/5952",[1529,5.341]],["name/5953",[102,60.302]],["parent/5953",[1529,5.341]],["name/5954",[46,68.187]],["parent/5954",[1529,5.341]],["name/5955",[18,49.942]],["parent/5955",[1529,5.341]],["name/5956",[45,68.187]],["parent/5956",[1529,5.341]],["name/5957",[55,58.632]],["parent/5957",[1529,5.341]],["name/5958",[624,71.289]],["parent/5958",[1529,5.341]],["name/5959",[53,62.309]],["parent/5959",[1529,5.341]],["name/5960",[89,63.913]],["parent/5960",[1529,5.341]],["name/5961",[392,68.187]],["parent/5961",[1529,5.341]],["name/5962",[90,68.187]],["parent/5962",[1529,5.341]],["name/5963",[16,55.949]],["parent/5963",[1529,5.341]],["name/5964",[635,71.289]],["parent/5964",[1529,5.341]],["name/5965",[483,68.187]],["parent/5965",[1529,5.341]],["name/5966",[91,62.309]],["parent/5966",[1529,5.341]],["name/5967",[167,68.187]],["parent/5967",[1529,5.341]],["name/5968",[92,62.309]],["parent/5968",[1529,5.341]],["name/5969",[636,68.187]],["parent/5969",[1529,5.341]],["name/5970",[93,62.309]],["parent/5970",[1529,5.341]],["name/5971",[146,68.187]],["parent/5971",[1529,5.341]],["name/5972",[625,71.289]],["parent/5972",[1529,5.341]],["name/5973",[1188,73.295]],["parent/5973",[1529,5.341]],["name/5974",[1195,75.808]],["parent/5974",[1529,5.341]],["name/5975",[565,68.187]],["parent/5975",[1529,5.341]],["name/5976",[633,71.289]],["parent/5976",[1529,5.341]],["name/5977",[512,68.187]],["parent/5977",[1529,5.341]],["name/5978",[634,71.289]],["parent/5978",[1529,5.341]],["name/5979",[631,68.187]],["parent/5979",[1529,5.341]],["name/5980",[632,71.289]],["parent/5980",[1529,5.341]],["name/5981",[640,71.289]],["parent/5981",[1529,5.341]],["name/5982",[1530,84.281]],["parent/5982",[1290,3.969]],["name/5983",[127,31.117]],["parent/5983",[1531,8.41]],["name/5984",[11,33.551]],["parent/5984",[1532,7.901]],["name/5985",[54,36.379]],["parent/5985",[1532,7.901]],["name/5986",[1533,84.281]],["parent/5986",[1290,3.969]],["name/5987",[127,31.117]],["parent/5987",[1534,8.41]],["name/5988",[337,39.934]],["parent/5988",[1535,6.947]],["name/5989",[339,39.934]],["parent/5989",[1535,6.947]],["name/5990",[340,40.174]],["parent/5990",[1535,6.947]],["name/5991",[68,40.013]],["parent/5991",[1535,6.947]],["name/5992",[341,40.174]],["parent/5992",[1535,6.947]],["name/5993",[54,36.379]],["parent/5993",[1535,6.947]],["name/5994",[789,79.173]],["parent/5994",[1290,3.969]],["name/5995",[127,31.117]],["parent/5995",[1536,8.41]],["name/5996",[11,33.551]],["parent/5996",[1537,7.901]],["name/5997",[54,36.379]],["parent/5997",[1537,7.901]],["name/5998",[792,79.173]],["parent/5998",[1290,3.969]],["name/5999",[127,31.117]],["parent/5999",[1538,8.41]],["name/6000",[337,39.934]],["parent/6000",[1539,6.947]],["name/6001",[339,39.934]],["parent/6001",[1539,6.947]],["name/6002",[340,40.174]],["parent/6002",[1539,6.947]],["name/6003",[68,40.013]],["parent/6003",[1539,6.947]],["name/6004",[341,40.174]],["parent/6004",[1539,6.947]],["name/6005",[54,36.379]],["parent/6005",[1539,6.947]],["name/6006",[807,79.173]],["parent/6006",[1290,3.969]],["name/6007",[127,31.117]],["parent/6007",[1540,8.41]],["name/6008",[11,33.551]],["parent/6008",[1541,7.901]],["name/6009",[54,36.379]],["parent/6009",[1541,7.901]],["name/6010",[810,79.173]],["parent/6010",[1290,3.969]],["name/6011",[127,31.117]],["parent/6011",[1542,8.41]],["name/6012",[337,39.934]],["parent/6012",[1543,6.947]],["name/6013",[339,39.934]],["parent/6013",[1543,6.947]],["name/6014",[340,40.174]],["parent/6014",[1543,6.947]],["name/6015",[68,40.013]],["parent/6015",[1543,6.947]],["name/6016",[341,40.174]],["parent/6016",[1543,6.947]],["name/6017",[54,36.379]],["parent/6017",[1543,6.947]],["name/6018",[759,79.173]],["parent/6018",[1290,3.969]],["name/6019",[127,31.117]],["parent/6019",[1544,8.41]],["name/6020",[11,33.551]],["parent/6020",[1545,7.901]],["name/6021",[54,36.379]],["parent/6021",[1545,7.901]],["name/6022",[762,79.173]],["parent/6022",[1290,3.969]],["name/6023",[127,31.117]],["parent/6023",[1546,8.41]],["name/6024",[337,39.934]],["parent/6024",[1547,6.947]],["name/6025",[339,39.934]],["parent/6025",[1547,6.947]],["name/6026",[340,40.174]],["parent/6026",[1547,6.947]],["name/6027",[68,40.013]],["parent/6027",[1547,6.947]],["name/6028",[341,40.174]],["parent/6028",[1547,6.947]],["name/6029",[54,36.379]],["parent/6029",[1547,6.947]],["name/6030",[825,79.173]],["parent/6030",[1290,3.969]],["name/6031",[127,31.117]],["parent/6031",[1548,8.41]],["name/6032",[11,33.551]],["parent/6032",[1549,7.901]],["name/6033",[54,36.379]],["parent/6033",[1549,7.901]],["name/6034",[828,79.173]],["parent/6034",[1290,3.969]],["name/6035",[127,31.117]],["parent/6035",[1550,8.41]],["name/6036",[337,39.934]],["parent/6036",[1551,6.947]],["name/6037",[339,39.934]],["parent/6037",[1551,6.947]],["name/6038",[340,40.174]],["parent/6038",[1551,6.947]],["name/6039",[68,40.013]],["parent/6039",[1551,6.947]],["name/6040",[341,40.174]],["parent/6040",[1551,6.947]],["name/6041",[54,36.379]],["parent/6041",[1551,6.947]],["name/6042",[831,79.173]],["parent/6042",[1290,3.969]],["name/6043",[127,31.117]],["parent/6043",[1552,8.41]],["name/6044",[11,33.551]],["parent/6044",[1553,7.901]],["name/6045",[54,36.379]],["parent/6045",[1553,7.901]],["name/6046",[834,79.173]],["parent/6046",[1290,3.969]],["name/6047",[127,31.117]],["parent/6047",[1554,8.41]],["name/6048",[337,39.934]],["parent/6048",[1555,6.947]],["name/6049",[339,39.934]],["parent/6049",[1555,6.947]],["name/6050",[340,40.174]],["parent/6050",[1555,6.947]],["name/6051",[68,40.013]],["parent/6051",[1555,6.947]],["name/6052",[341,40.174]],["parent/6052",[1555,6.947]],["name/6053",[54,36.379]],["parent/6053",[1555,6.947]],["name/6054",[837,79.173]],["parent/6054",[1290,3.969]],["name/6055",[127,31.117]],["parent/6055",[1556,8.41]],["name/6056",[11,33.551]],["parent/6056",[1557,7.901]],["name/6057",[54,36.379]],["parent/6057",[1557,7.901]],["name/6058",[840,79.173]],["parent/6058",[1290,3.969]],["name/6059",[127,31.117]],["parent/6059",[1558,8.41]],["name/6060",[337,39.934]],["parent/6060",[1559,6.947]],["name/6061",[339,39.934]],["parent/6061",[1559,6.947]],["name/6062",[340,40.174]],["parent/6062",[1559,6.947]],["name/6063",[68,40.013]],["parent/6063",[1559,6.947]],["name/6064",[341,40.174]],["parent/6064",[1559,6.947]],["name/6065",[54,36.379]],["parent/6065",[1559,6.947]],["name/6066",[843,79.173]],["parent/6066",[1290,3.969]],["name/6067",[127,31.117]],["parent/6067",[1560,8.41]],["name/6068",[11,33.551]],["parent/6068",[1561,7.901]],["name/6069",[54,36.379]],["parent/6069",[1561,7.901]],["name/6070",[846,79.173]],["parent/6070",[1290,3.969]],["name/6071",[127,31.117]],["parent/6071",[1562,8.41]],["name/6072",[337,39.934]],["parent/6072",[1563,6.947]],["name/6073",[339,39.934]],["parent/6073",[1563,6.947]],["name/6074",[340,40.174]],["parent/6074",[1563,6.947]],["name/6075",[68,40.013]],["parent/6075",[1563,6.947]],["name/6076",[341,40.174]],["parent/6076",[1563,6.947]],["name/6077",[54,36.379]],["parent/6077",[1563,6.947]],["name/6078",[849,79.173]],["parent/6078",[1290,3.969]],["name/6079",[127,31.117]],["parent/6079",[1564,8.41]],["name/6080",[11,33.551]],["parent/6080",[1565,7.901]],["name/6081",[54,36.379]],["parent/6081",[1565,7.901]],["name/6082",[852,79.173]],["parent/6082",[1290,3.969]],["name/6083",[127,31.117]],["parent/6083",[1566,8.41]],["name/6084",[337,39.934]],["parent/6084",[1567,6.947]],["name/6085",[339,39.934]],["parent/6085",[1567,6.947]],["name/6086",[340,40.174]],["parent/6086",[1567,6.947]],["name/6087",[68,40.013]],["parent/6087",[1567,6.947]],["name/6088",[341,40.174]],["parent/6088",[1567,6.947]],["name/6089",[54,36.379]],["parent/6089",[1567,6.947]],["name/6090",[855,79.173]],["parent/6090",[1290,3.969]],["name/6091",[127,31.117]],["parent/6091",[1568,8.41]],["name/6092",[11,33.551]],["parent/6092",[1569,7.901]],["name/6093",[54,36.379]],["parent/6093",[1569,7.901]],["name/6094",[858,79.173]],["parent/6094",[1290,3.969]],["name/6095",[127,31.117]],["parent/6095",[1570,8.41]],["name/6096",[337,39.934]],["parent/6096",[1571,6.947]],["name/6097",[339,39.934]],["parent/6097",[1571,6.947]],["name/6098",[340,40.174]],["parent/6098",[1571,6.947]],["name/6099",[68,40.013]],["parent/6099",[1571,6.947]],["name/6100",[341,40.174]],["parent/6100",[1571,6.947]],["name/6101",[54,36.379]],["parent/6101",[1571,6.947]],["name/6102",[765,79.173]],["parent/6102",[1290,3.969]],["name/6103",[127,31.117]],["parent/6103",[1572,8.41]],["name/6104",[11,33.551]],["parent/6104",[1573,7.901]],["name/6105",[54,36.379]],["parent/6105",[1573,7.901]],["name/6106",[768,79.173]],["parent/6106",[1290,3.969]],["name/6107",[127,31.117]],["parent/6107",[1574,8.41]],["name/6108",[337,39.934]],["parent/6108",[1575,6.947]],["name/6109",[339,39.934]],["parent/6109",[1575,6.947]],["name/6110",[340,40.174]],["parent/6110",[1575,6.947]],["name/6111",[68,40.013]],["parent/6111",[1575,6.947]],["name/6112",[341,40.174]],["parent/6112",[1575,6.947]],["name/6113",[54,36.379]],["parent/6113",[1575,6.947]],["name/6114",[1576,84.281]],["parent/6114",[1290,3.969]],["name/6115",[127,31.117]],["parent/6115",[1577,8.41]],["name/6116",[11,33.551]],["parent/6116",[1578,7.901]],["name/6117",[54,36.379]],["parent/6117",[1578,7.901]],["name/6118",[1579,84.281]],["parent/6118",[1290,3.969]],["name/6119",[127,31.117]],["parent/6119",[1580,8.41]],["name/6120",[337,39.934]],["parent/6120",[1581,6.947]],["name/6121",[339,39.934]],["parent/6121",[1581,6.947]],["name/6122",[340,40.174]],["parent/6122",[1581,6.947]],["name/6123",[68,40.013]],["parent/6123",[1581,6.947]],["name/6124",[341,40.174]],["parent/6124",[1581,6.947]],["name/6125",[54,36.379]],["parent/6125",[1581,6.947]],["name/6126",[813,79.173]],["parent/6126",[1290,3.969]],["name/6127",[127,31.117]],["parent/6127",[1582,8.41]],["name/6128",[11,33.551]],["parent/6128",[1583,7.901]],["name/6129",[54,36.379]],["parent/6129",[1583,7.901]],["name/6130",[816,79.173]],["parent/6130",[1290,3.969]],["name/6131",[127,31.117]],["parent/6131",[1584,8.41]],["name/6132",[337,39.934]],["parent/6132",[1585,6.947]],["name/6133",[339,39.934]],["parent/6133",[1585,6.947]],["name/6134",[340,40.174]],["parent/6134",[1585,6.947]],["name/6135",[68,40.013]],["parent/6135",[1585,6.947]],["name/6136",[341,40.174]],["parent/6136",[1585,6.947]],["name/6137",[54,36.379]],["parent/6137",[1585,6.947]],["name/6138",[819,79.173]],["parent/6138",[1290,3.969]],["name/6139",[127,31.117]],["parent/6139",[1586,8.41]],["name/6140",[11,33.551]],["parent/6140",[1587,7.901]],["name/6141",[54,36.379]],["parent/6141",[1587,7.901]],["name/6142",[822,79.173]],["parent/6142",[1290,3.969]],["name/6143",[127,31.117]],["parent/6143",[1588,8.41]],["name/6144",[337,39.934]],["parent/6144",[1589,6.947]],["name/6145",[339,39.934]],["parent/6145",[1589,6.947]],["name/6146",[340,40.174]],["parent/6146",[1589,6.947]],["name/6147",[68,40.013]],["parent/6147",[1589,6.947]],["name/6148",[341,40.174]],["parent/6148",[1589,6.947]],["name/6149",[54,36.379]],["parent/6149",[1589,6.947]],["name/6150",[801,79.173]],["parent/6150",[1290,3.969]],["name/6151",[127,31.117]],["parent/6151",[1590,8.41]],["name/6152",[11,33.551]],["parent/6152",[1591,7.901]],["name/6153",[54,36.379]],["parent/6153",[1591,7.901]],["name/6154",[804,79.173]],["parent/6154",[1290,3.969]],["name/6155",[127,31.117]],["parent/6155",[1592,8.41]],["name/6156",[337,39.934]],["parent/6156",[1593,6.947]],["name/6157",[339,39.934]],["parent/6157",[1593,6.947]],["name/6158",[340,40.174]],["parent/6158",[1593,6.947]],["name/6159",[68,40.013]],["parent/6159",[1593,6.947]],["name/6160",[341,40.174]],["parent/6160",[1593,6.947]],["name/6161",[54,36.379]],["parent/6161",[1593,6.947]],["name/6162",[861,79.173]],["parent/6162",[1290,3.969]],["name/6163",[127,31.117]],["parent/6163",[1594,8.41]],["name/6164",[54,36.379]],["parent/6164",[1595,8.41]],["name/6165",[636,68.187]],["parent/6165",[1290,3.969]],["name/6166",[127,31.117]],["parent/6166",[1596,8.41]],["name/6167",[148,51.323]],["parent/6167",[1597,6.218]],["name/6168",[11,33.551]],["parent/6168",[1597,6.218]],["name/6169",[16,55.949]],["parent/6169",[1597,6.218]],["name/6170",[17,52.363]],["parent/6170",[1597,6.218]],["name/6171",[18,49.942]],["parent/6171",[1597,6.218]],["name/6172",[20,59.158]],["parent/6172",[1597,6.218]],["name/6173",[96,69.618]],["parent/6173",[1597,6.218]],["name/6174",[97,69.618]],["parent/6174",[1597,6.218]],["name/6175",[98,69.618]],["parent/6175",[1597,6.218]],["name/6176",[99,69.618]],["parent/6176",[1597,6.218]],["name/6177",[23,59.158]],["parent/6177",[1597,6.218]],["name/6178",[24,59.158]],["parent/6178",[1597,6.218]],["name/6179",[25,59.158]],["parent/6179",[1597,6.218]],["name/6180",[866,79.173]],["parent/6180",[1290,3.969]],["name/6181",[127,31.117]],["parent/6181",[1598,8.41]],["name/6182",[11,33.551]],["parent/6182",[1599,4.176]],["name/6183",[153,53.524]],["parent/6183",[1599,4.176]],["name/6184",[154,53.524]],["parent/6184",[1599,4.176]],["name/6185",[155,53.524]],["parent/6185",[1599,4.176]],["name/6186",[156,53.524]],["parent/6186",[1599,4.176]],["name/6187",[157,53.524]],["parent/6187",[1599,4.176]],["name/6188",[158,53.524]],["parent/6188",[1599,4.176]],["name/6189",[159,53.524]],["parent/6189",[1599,4.176]],["name/6190",[16,55.949]],["parent/6190",[1599,4.176]],["name/6191",[173,69.618]],["parent/6191",[1599,4.176]],["name/6192",[174,69.618]],["parent/6192",[1599,4.176]],["name/6193",[175,69.618]],["parent/6193",[1599,4.176]],["name/6194",[176,69.618]],["parent/6194",[1599,4.176]],["name/6195",[177,69.618]],["parent/6195",[1599,4.176]],["name/6196",[178,69.618]],["parent/6196",[1599,4.176]],["name/6197",[179,69.618]],["parent/6197",[1599,4.176]],["name/6198",[180,69.618]],["parent/6198",[1599,4.176]],["name/6199",[181,69.618]],["parent/6199",[1599,4.176]],["name/6200",[182,69.618]],["parent/6200",[1599,4.176]],["name/6201",[183,69.618]],["parent/6201",[1599,4.176]],["name/6202",[184,69.618]],["parent/6202",[1599,4.176]],["name/6203",[185,69.618]],["parent/6203",[1599,4.176]],["name/6204",[17,52.363]],["parent/6204",[1599,4.176]],["name/6205",[186,63.079]],["parent/6205",[1599,4.176]],["name/6206",[187,63.079]],["parent/6206",[1599,4.176]],["name/6207",[188,63.079]],["parent/6207",[1599,4.176]],["name/6208",[189,63.079]],["parent/6208",[1599,4.176]],["name/6209",[190,63.079]],["parent/6209",[1599,4.176]],["name/6210",[191,63.079]],["parent/6210",[1599,4.176]],["name/6211",[192,63.079]],["parent/6211",[1599,4.176]],["name/6212",[18,49.942]],["parent/6212",[1599,4.176]],["name/6213",[193,62.309]],["parent/6213",[1599,4.176]],["name/6214",[194,62.309]],["parent/6214",[1599,4.176]],["name/6215",[195,62.309]],["parent/6215",[1599,4.176]],["name/6216",[196,62.309]],["parent/6216",[1599,4.176]],["name/6217",[197,62.309]],["parent/6217",[1599,4.176]],["name/6218",[198,62.309]],["parent/6218",[1599,4.176]],["name/6219",[199,62.309]],["parent/6219",[1599,4.176]],["name/6220",[200,62.309]],["parent/6220",[1599,4.176]],["name/6221",[201,62.309]],["parent/6221",[1599,4.176]],["name/6222",[202,62.309]],["parent/6222",[1599,4.176]],["name/6223",[203,62.309]],["parent/6223",[1599,4.176]],["name/6224",[204,62.309]],["parent/6224",[1599,4.176]],["name/6225",[205,62.309]],["parent/6225",[1599,4.176]],["name/6226",[20,59.158]],["parent/6226",[1599,4.176]],["name/6227",[213,69.618]],["parent/6227",[1599,4.176]],["name/6228",[214,69.618]],["parent/6228",[1599,4.176]],["name/6229",[215,69.618]],["parent/6229",[1599,4.176]],["name/6230",[216,69.618]],["parent/6230",[1599,4.176]],["name/6231",[217,69.618]],["parent/6231",[1599,4.176]],["name/6232",[96,69.618]],["parent/6232",[1599,4.176]],["name/6233",[869,79.173]],["parent/6233",[1599,4.176]],["name/6234",[870,79.173]],["parent/6234",[1599,4.176]],["name/6235",[871,79.173]],["parent/6235",[1599,4.176]],["name/6236",[872,79.173]],["parent/6236",[1599,4.176]],["name/6237",[873,79.173]],["parent/6237",[1599,4.176]],["name/6238",[874,79.173]],["parent/6238",[1599,4.176]],["name/6239",[875,79.173]],["parent/6239",[1599,4.176]],["name/6240",[97,69.618]],["parent/6240",[1599,4.176]],["name/6241",[876,79.173]],["parent/6241",[1599,4.176]],["name/6242",[877,79.173]],["parent/6242",[1599,4.176]],["name/6243",[878,79.173]],["parent/6243",[1599,4.176]],["name/6244",[879,79.173]],["parent/6244",[1599,4.176]],["name/6245",[880,79.173]],["parent/6245",[1599,4.176]],["name/6246",[881,79.173]],["parent/6246",[1599,4.176]],["name/6247",[882,79.173]],["parent/6247",[1599,4.176]],["name/6248",[98,69.618]],["parent/6248",[1599,4.176]],["name/6249",[883,79.173]],["parent/6249",[1599,4.176]],["name/6250",[884,79.173]],["parent/6250",[1599,4.176]],["name/6251",[885,79.173]],["parent/6251",[1599,4.176]],["name/6252",[886,79.173]],["parent/6252",[1599,4.176]],["name/6253",[887,79.173]],["parent/6253",[1599,4.176]],["name/6254",[888,79.173]],["parent/6254",[1599,4.176]],["name/6255",[889,79.173]],["parent/6255",[1599,4.176]],["name/6256",[99,69.618]],["parent/6256",[1599,4.176]],["name/6257",[890,79.173]],["parent/6257",[1599,4.176]],["name/6258",[891,79.173]],["parent/6258",[1599,4.176]],["name/6259",[892,79.173]],["parent/6259",[1599,4.176]],["name/6260",[893,79.173]],["parent/6260",[1599,4.176]],["name/6261",[894,79.173]],["parent/6261",[1599,4.176]],["name/6262",[895,79.173]],["parent/6262",[1599,4.176]],["name/6263",[896,79.173]],["parent/6263",[1599,4.176]],["name/6264",[23,59.158]],["parent/6264",[1599,4.176]],["name/6265",[232,69.618]],["parent/6265",[1599,4.176]],["name/6266",[233,69.618]],["parent/6266",[1599,4.176]],["name/6267",[234,69.618]],["parent/6267",[1599,4.176]],["name/6268",[235,69.618]],["parent/6268",[1599,4.176]],["name/6269",[236,69.618]],["parent/6269",[1599,4.176]],["name/6270",[24,59.158]],["parent/6270",[1599,4.176]],["name/6271",[237,69.618]],["parent/6271",[1599,4.176]],["name/6272",[238,69.618]],["parent/6272",[1599,4.176]],["name/6273",[239,69.618]],["parent/6273",[1599,4.176]],["name/6274",[240,69.618]],["parent/6274",[1599,4.176]],["name/6275",[241,69.618]],["parent/6275",[1599,4.176]],["name/6276",[242,69.618]],["parent/6276",[1599,4.176]],["name/6277",[243,69.618]],["parent/6277",[1599,4.176]],["name/6278",[25,59.158]],["parent/6278",[1599,4.176]],["name/6279",[244,69.618]],["parent/6279",[1599,4.176]],["name/6280",[245,69.618]],["parent/6280",[1599,4.176]],["name/6281",[246,69.618]],["parent/6281",[1599,4.176]],["name/6282",[247,69.618]],["parent/6282",[1599,4.176]],["name/6283",[248,69.618]],["parent/6283",[1599,4.176]],["name/6284",[249,69.618]],["parent/6284",[1599,4.176]],["name/6285",[250,69.618]],["parent/6285",[1599,4.176]],["name/6286",[102,60.302]],["parent/6286",[1290,3.969]],["name/6287",[127,31.117]],["parent/6287",[1600,8.41]],["name/6288",[148,51.323]],["parent/6288",[1601,6.218]],["name/6289",[11,33.551]],["parent/6289",[1601,6.218]],["name/6290",[109,69.618]],["parent/6290",[1601,6.218]],["name/6291",[83,65.823]],["parent/6291",[1601,6.218]],["name/6292",[110,69.618]],["parent/6292",[1601,6.218]],["name/6293",[76,59.158]],["parent/6293",[1601,6.218]],["name/6294",[1323,75.808]],["parent/6294",[1601,6.218]],["name/6295",[1324,75.808]],["parent/6295",[1601,6.218]],["name/6296",[42,59.158]],["parent/6296",[1601,6.218]],["name/6297",[38,51.573]],["parent/6297",[1601,6.218]],["name/6298",[1325,75.808]],["parent/6298",[1601,6.218]],["name/6299",[111,69.618]],["parent/6299",[1601,6.218]],["name/6300",[1321,69.618]],["parent/6300",[1601,6.218]],["name/6301",[1602,84.281]],["parent/6301",[1290,3.969]],["name/6302",[127,31.117]],["parent/6302",[1603,8.41]],["name/6303",[337,39.934]],["parent/6303",[1604,7.114]],["name/6304",[339,39.934]],["parent/6304",[1604,7.114]],["name/6305",[340,40.174]],["parent/6305",[1604,7.114]],["name/6306",[68,40.013]],["parent/6306",[1604,7.114]],["name/6307",[341,40.174]],["parent/6307",[1604,7.114]],["name/6308",[631,68.187]],["parent/6308",[1290,3.969]],["name/6309",[127,31.117]],["parent/6309",[1605,8.41]],["name/6310",[148,51.323]],["parent/6310",[1606,6.147]],["name/6311",[11,33.551]],["parent/6311",[1606,6.147]],["name/6312",[31,55.194]],["parent/6312",[1606,6.147]],["name/6313",[102,60.302]],["parent/6313",[1606,6.147]],["name/6314",[1315,75.808]],["parent/6314",[1606,6.147]],["name/6315",[1316,69.618]],["parent/6315",[1606,6.147]],["name/6316",[1302,65.823]],["parent/6316",[1606,6.147]],["name/6317",[1303,69.618]],["parent/6317",[1606,6.147]],["name/6318",[1317,75.808]],["parent/6318",[1606,6.147]],["name/6319",[1318,65.823]],["parent/6319",[1606,6.147]],["name/6320",[1319,65.823]],["parent/6320",[1606,6.147]],["name/6321",[104,65.823]],["parent/6321",[1606,6.147]],["name/6322",[1320,69.618]],["parent/6322",[1606,6.147]],["name/6323",[1321,69.618]],["parent/6323",[1606,6.147]],["name/6324",[1607,84.281]],["parent/6324",[1290,3.969]],["name/6325",[127,31.117]],["parent/6325",[1608,8.41]],["name/6326",[337,39.934]],["parent/6326",[1609,7.114]],["name/6327",[339,39.934]],["parent/6327",[1609,7.114]],["name/6328",[340,40.174]],["parent/6328",[1609,7.114]],["name/6329",[68,40.013]],["parent/6329",[1609,7.114]],["name/6330",[341,40.174]],["parent/6330",[1609,7.114]],["name/6331",[919,79.173]],["parent/6331",[1290,3.969]],["name/6332",[127,31.117]],["parent/6332",[1610,8.41]],["name/6333",[11,33.551]],["parent/6333",[1611,4.157]],["name/6334",[153,53.524]],["parent/6334",[1611,4.157]],["name/6335",[154,53.524]],["parent/6335",[1611,4.157]],["name/6336",[155,53.524]],["parent/6336",[1611,4.157]],["name/6337",[156,53.524]],["parent/6337",[1611,4.157]],["name/6338",[157,53.524]],["parent/6338",[1611,4.157]],["name/6339",[158,53.524]],["parent/6339",[1611,4.157]],["name/6340",[159,53.524]],["parent/6340",[1611,4.157]],["name/6341",[31,55.194]],["parent/6341",[1611,4.157]],["name/6342",[271,65.823]],["parent/6342",[1611,4.157]],["name/6343",[272,65.823]],["parent/6343",[1611,4.157]],["name/6344",[273,65.823]],["parent/6344",[1611,4.157]],["name/6345",[274,65.823]],["parent/6345",[1611,4.157]],["name/6346",[275,65.823]],["parent/6346",[1611,4.157]],["name/6347",[276,65.823]],["parent/6347",[1611,4.157]],["name/6348",[277,65.823]],["parent/6348",[1611,4.157]],["name/6349",[102,60.302]],["parent/6349",[1611,4.157]],["name/6350",[922,75.808]],["parent/6350",[1611,4.157]],["name/6351",[923,75.808]],["parent/6351",[1611,4.157]],["name/6352",[924,75.808]],["parent/6352",[1611,4.157]],["name/6353",[925,75.808]],["parent/6353",[1611,4.157]],["name/6354",[926,75.808]],["parent/6354",[1611,4.157]],["name/6355",[927,75.808]],["parent/6355",[1611,4.157]],["name/6356",[928,75.808]],["parent/6356",[1611,4.157]],["name/6357",[929,75.808]],["parent/6357",[1611,4.157]],["name/6358",[930,75.808]],["parent/6358",[1611,4.157]],["name/6359",[931,75.808]],["parent/6359",[1611,4.157]],["name/6360",[932,75.808]],["parent/6360",[1611,4.157]],["name/6361",[933,75.808]],["parent/6361",[1611,4.157]],["name/6362",[934,75.808]],["parent/6362",[1611,4.157]],["name/6363",[1315,75.808]],["parent/6363",[1611,4.157]],["name/6364",[1612,84.281]],["parent/6364",[1611,4.157]],["name/6365",[1613,84.281]],["parent/6365",[1611,4.157]],["name/6366",[1614,84.281]],["parent/6366",[1611,4.157]],["name/6367",[1615,84.281]],["parent/6367",[1611,4.157]],["name/6368",[1616,84.281]],["parent/6368",[1611,4.157]],["name/6369",[1617,84.281]],["parent/6369",[1611,4.157]],["name/6370",[1618,84.281]],["parent/6370",[1611,4.157]],["name/6371",[1316,69.618]],["parent/6371",[1611,4.157]],["name/6372",[1619,79.173]],["parent/6372",[1611,4.157]],["name/6373",[1620,79.173]],["parent/6373",[1611,4.157]],["name/6374",[1621,79.173]],["parent/6374",[1611,4.157]],["name/6375",[1622,79.173]],["parent/6375",[1611,4.157]],["name/6376",[1623,79.173]],["parent/6376",[1611,4.157]],["name/6377",[1624,79.173]],["parent/6377",[1611,4.157]],["name/6378",[1625,79.173]],["parent/6378",[1611,4.157]],["name/6379",[1302,65.823]],["parent/6379",[1611,4.157]],["name/6380",[1391,75.808]],["parent/6380",[1611,4.157]],["name/6381",[1392,75.808]],["parent/6381",[1611,4.157]],["name/6382",[1393,75.808]],["parent/6382",[1611,4.157]],["name/6383",[1394,75.808]],["parent/6383",[1611,4.157]],["name/6384",[1395,75.808]],["parent/6384",[1611,4.157]],["name/6385",[1396,75.808]],["parent/6385",[1611,4.157]],["name/6386",[1397,75.808]],["parent/6386",[1611,4.157]],["name/6387",[1303,69.618]],["parent/6387",[1611,4.157]],["name/6388",[1398,79.173]],["parent/6388",[1611,4.157]],["name/6389",[1399,79.173]],["parent/6389",[1611,4.157]],["name/6390",[1400,79.173]],["parent/6390",[1611,4.157]],["name/6391",[1401,79.173]],["parent/6391",[1611,4.157]],["name/6392",[1402,79.173]],["parent/6392",[1611,4.157]],["name/6393",[1403,79.173]],["parent/6393",[1611,4.157]],["name/6394",[1404,79.173]],["parent/6394",[1611,4.157]],["name/6395",[1317,75.808]],["parent/6395",[1611,4.157]],["name/6396",[1626,84.281]],["parent/6396",[1611,4.157]],["name/6397",[1627,84.281]],["parent/6397",[1611,4.157]],["name/6398",[1628,84.281]],["parent/6398",[1611,4.157]],["name/6399",[1629,84.281]],["parent/6399",[1611,4.157]],["name/6400",[1630,84.281]],["parent/6400",[1611,4.157]],["name/6401",[1631,84.281]],["parent/6401",[1611,4.157]],["name/6402",[1632,84.281]],["parent/6402",[1611,4.157]],["name/6403",[1318,65.823]],["parent/6403",[1611,4.157]],["name/6404",[1633,75.808]],["parent/6404",[1611,4.157]],["name/6405",[1634,75.808]],["parent/6405",[1611,4.157]],["name/6406",[1635,75.808]],["parent/6406",[1611,4.157]],["name/6407",[1636,75.808]],["parent/6407",[1611,4.157]],["name/6408",[1637,75.808]],["parent/6408",[1611,4.157]],["name/6409",[1638,75.808]],["parent/6409",[1611,4.157]],["name/6410",[1639,75.808]],["parent/6410",[1611,4.157]],["name/6411",[1319,65.823]],["parent/6411",[1611,4.157]],["name/6412",[1640,75.808]],["parent/6412",[1611,4.157]],["name/6413",[1641,75.808]],["parent/6413",[1611,4.157]],["name/6414",[1642,75.808]],["parent/6414",[1611,4.157]],["name/6415",[1643,75.808]],["parent/6415",[1611,4.157]],["name/6416",[1644,75.808]],["parent/6416",[1611,4.157]],["name/6417",[1645,75.808]],["parent/6417",[1611,4.157]],["name/6418",[1646,75.808]],["parent/6418",[1611,4.157]],["name/6419",[104,65.823]],["parent/6419",[1611,4.157]],["name/6420",[942,75.808]],["parent/6420",[1611,4.157]],["name/6421",[943,75.808]],["parent/6421",[1611,4.157]],["name/6422",[944,75.808]],["parent/6422",[1611,4.157]],["name/6423",[945,75.808]],["parent/6423",[1611,4.157]],["name/6424",[946,75.808]],["parent/6424",[1611,4.157]],["name/6425",[947,75.808]],["parent/6425",[1611,4.157]],["name/6426",[948,75.808]],["parent/6426",[1611,4.157]],["name/6427",[1320,69.618]],["parent/6427",[1611,4.157]],["name/6428",[1647,79.173]],["parent/6428",[1611,4.157]],["name/6429",[1648,79.173]],["parent/6429",[1611,4.157]],["name/6430",[1649,79.173]],["parent/6430",[1611,4.157]],["name/6431",[1650,79.173]],["parent/6431",[1611,4.157]],["name/6432",[1651,79.173]],["parent/6432",[1611,4.157]],["name/6433",[1652,79.173]],["parent/6433",[1611,4.157]],["name/6434",[1653,79.173]],["parent/6434",[1611,4.157]],["name/6435",[1321,69.618]],["parent/6435",[1611,4.157]],["name/6436",[1654,79.173]],["parent/6436",[1611,4.157]],["name/6437",[1655,79.173]],["parent/6437",[1611,4.157]],["name/6438",[1656,79.173]],["parent/6438",[1611,4.157]],["name/6439",[954,79.173]],["parent/6439",[1290,3.969]],["name/6440",[127,31.117]],["parent/6440",[1657,8.41]],["name/6441",[11,33.551]],["parent/6441",[1658,4.176]],["name/6442",[153,53.524]],["parent/6442",[1658,4.176]],["name/6443",[154,53.524]],["parent/6443",[1658,4.176]],["name/6444",[155,53.524]],["parent/6444",[1658,4.176]],["name/6445",[156,53.524]],["parent/6445",[1658,4.176]],["name/6446",[157,53.524]],["parent/6446",[1658,4.176]],["name/6447",[158,53.524]],["parent/6447",[1658,4.176]],["name/6448",[159,53.524]],["parent/6448",[1658,4.176]],["name/6449",[109,69.618]],["parent/6449",[1658,4.176]],["name/6450",[957,79.173]],["parent/6450",[1658,4.176]],["name/6451",[958,79.173]],["parent/6451",[1658,4.176]],["name/6452",[959,79.173]],["parent/6452",[1658,4.176]],["name/6453",[960,79.173]],["parent/6453",[1658,4.176]],["name/6454",[961,79.173]],["parent/6454",[1658,4.176]],["name/6455",[962,79.173]],["parent/6455",[1658,4.176]],["name/6456",[963,79.173]],["parent/6456",[1658,4.176]],["name/6457",[964,79.173]],["parent/6457",[1658,4.176]],["name/6458",[965,79.173]],["parent/6458",[1658,4.176]],["name/6459",[966,79.173]],["parent/6459",[1658,4.176]],["name/6460",[967,79.173]],["parent/6460",[1658,4.176]],["name/6461",[968,79.173]],["parent/6461",[1658,4.176]],["name/6462",[969,79.173]],["parent/6462",[1658,4.176]],["name/6463",[83,65.823]],["parent/6463",[1658,4.176]],["name/6464",[574,75.808]],["parent/6464",[1658,4.176]],["name/6465",[575,75.808]],["parent/6465",[1658,4.176]],["name/6466",[576,75.808]],["parent/6466",[1658,4.176]],["name/6467",[577,75.808]],["parent/6467",[1658,4.176]],["name/6468",[578,75.808]],["parent/6468",[1658,4.176]],["name/6469",[579,75.808]],["parent/6469",[1658,4.176]],["name/6470",[580,75.808]],["parent/6470",[1658,4.176]],["name/6471",[581,75.808]],["parent/6471",[1658,4.176]],["name/6472",[582,75.808]],["parent/6472",[1658,4.176]],["name/6473",[583,75.808]],["parent/6473",[1658,4.176]],["name/6474",[584,75.808]],["parent/6474",[1658,4.176]],["name/6475",[585,75.808]],["parent/6475",[1658,4.176]],["name/6476",[586,75.808]],["parent/6476",[1658,4.176]],["name/6477",[110,69.618]],["parent/6477",[1658,4.176]],["name/6478",[970,79.173]],["parent/6478",[1658,4.176]],["name/6479",[971,79.173]],["parent/6479",[1658,4.176]],["name/6480",[972,79.173]],["parent/6480",[1658,4.176]],["name/6481",[973,79.173]],["parent/6481",[1658,4.176]],["name/6482",[974,79.173]],["parent/6482",[1658,4.176]],["name/6483",[975,79.173]],["parent/6483",[1658,4.176]],["name/6484",[976,79.173]],["parent/6484",[1658,4.176]],["name/6485",[76,59.158]],["parent/6485",[1658,4.176]],["name/6486",[544,69.618]],["parent/6486",[1658,4.176]],["name/6487",[545,69.618]],["parent/6487",[1658,4.176]],["name/6488",[546,69.618]],["parent/6488",[1658,4.176]],["name/6489",[547,69.618]],["parent/6489",[1658,4.176]],["name/6490",[548,69.618]],["parent/6490",[1658,4.176]],["name/6491",[549,69.618]],["parent/6491",[1658,4.176]],["name/6492",[550,69.618]],["parent/6492",[1658,4.176]],["name/6493",[1323,75.808]],["parent/6493",[1658,4.176]],["name/6494",[1659,84.281]],["parent/6494",[1658,4.176]],["name/6495",[1660,84.281]],["parent/6495",[1658,4.176]],["name/6496",[1661,84.281]],["parent/6496",[1658,4.176]],["name/6497",[1662,84.281]],["parent/6497",[1658,4.176]],["name/6498",[1663,84.281]],["parent/6498",[1658,4.176]],["name/6499",[1664,84.281]],["parent/6499",[1658,4.176]],["name/6500",[1665,84.281]],["parent/6500",[1658,4.176]],["name/6501",[1324,75.808]],["parent/6501",[1658,4.176]],["name/6502",[1666,84.281]],["parent/6502",[1658,4.176]],["name/6503",[1667,84.281]],["parent/6503",[1658,4.176]],["name/6504",[1668,84.281]],["parent/6504",[1658,4.176]],["name/6505",[1669,84.281]],["parent/6505",[1658,4.176]],["name/6506",[1670,84.281]],["parent/6506",[1658,4.176]],["name/6507",[1671,84.281]],["parent/6507",[1658,4.176]],["name/6508",[1672,84.281]],["parent/6508",[1658,4.176]],["name/6509",[42,59.158]],["parent/6509",[1658,4.176]],["name/6510",[361,69.618]],["parent/6510",[1658,4.176]],["name/6511",[362,69.618]],["parent/6511",[1658,4.176]],["name/6512",[363,69.618]],["parent/6512",[1658,4.176]],["name/6513",[364,69.618]],["parent/6513",[1658,4.176]],["name/6514",[365,69.618]],["parent/6514",[1658,4.176]],["name/6515",[366,69.618]],["parent/6515",[1658,4.176]],["name/6516",[367,69.618]],["parent/6516",[1658,4.176]],["name/6517",[38,51.573]],["parent/6517",[1658,4.176]],["name/6518",[326,62.309]],["parent/6518",[1658,4.176]],["name/6519",[327,62.309]],["parent/6519",[1658,4.176]],["name/6520",[328,62.309]],["parent/6520",[1658,4.176]],["name/6521",[329,62.309]],["parent/6521",[1658,4.176]],["name/6522",[330,62.309]],["parent/6522",[1658,4.176]],["name/6523",[331,62.309]],["parent/6523",[1658,4.176]],["name/6524",[332,62.309]],["parent/6524",[1658,4.176]],["name/6525",[1325,75.808]],["parent/6525",[1658,4.176]],["name/6526",[1673,84.281]],["parent/6526",[1658,4.176]],["name/6527",[1674,84.281]],["parent/6527",[1658,4.176]],["name/6528",[1675,84.281]],["parent/6528",[1658,4.176]],["name/6529",[1676,84.281]],["parent/6529",[1658,4.176]],["name/6530",[1677,84.281]],["parent/6530",[1658,4.176]],["name/6531",[1678,84.281]],["parent/6531",[1658,4.176]],["name/6532",[1679,84.281]],["parent/6532",[1658,4.176]],["name/6533",[111,69.618]],["parent/6533",[1658,4.176]],["name/6534",[977,79.173]],["parent/6534",[1658,4.176]],["name/6535",[978,79.173]],["parent/6535",[1658,4.176]],["name/6536",[979,79.173]],["parent/6536",[1658,4.176]],["name/6537",[980,79.173]],["parent/6537",[1658,4.176]],["name/6538",[981,79.173]],["parent/6538",[1658,4.176]],["name/6539",[982,79.173]],["parent/6539",[1658,4.176]],["name/6540",[983,79.173]],["parent/6540",[1658,4.176]],["name/6541",[1321,69.618]],["parent/6541",[1658,4.176]],["name/6542",[1654,79.173]],["parent/6542",[1658,4.176]],["name/6543",[1655,79.173]],["parent/6543",[1658,4.176]],["name/6544",[1656,79.173]],["parent/6544",[1658,4.176]],["name/6545",[16,55.949]],["parent/6545",[1290,3.969]],["name/6546",[127,31.117]],["parent/6546",[1680,8.41]],["name/6547",[148,51.323]],["parent/6547",[1681,6.804]],["name/6548",[11,33.551]],["parent/6548",[1681,6.804]],["name/6549",[118,69.618]],["parent/6549",[1681,6.804]],["name/6550",[17,52.363]],["parent/6550",[1681,6.804]],["name/6551",[91,62.309]],["parent/6551",[1681,6.804]],["name/6552",[92,62.309]],["parent/6552",[1681,6.804]],["name/6553",[93,62.309]],["parent/6553",[1681,6.804]],["name/6554",[986,79.173]],["parent/6554",[1290,3.969]],["name/6555",[127,31.117]],["parent/6555",[1682,8.41]],["name/6556",[337,39.934]],["parent/6556",[1683,7.114]],["name/6557",[339,39.934]],["parent/6557",[1683,7.114]],["name/6558",[340,40.174]],["parent/6558",[1683,7.114]],["name/6559",[68,40.013]],["parent/6559",[1683,7.114]],["name/6560",[341,40.174]],["parent/6560",[1683,7.114]],["name/6561",[989,79.173]],["parent/6561",[1290,3.969]],["name/6562",[127,31.117]],["parent/6562",[1684,8.41]],["name/6563",[337,39.934]],["parent/6563",[1685,7.114]],["name/6564",[339,39.934]],["parent/6564",[1685,7.114]],["name/6565",[340,40.174]],["parent/6565",[1685,7.114]],["name/6566",[68,40.013]],["parent/6566",[1685,7.114]],["name/6567",[341,40.174]],["parent/6567",[1685,7.114]],["name/6568",[992,79.173]],["parent/6568",[1290,3.969]],["name/6569",[127,31.117]],["parent/6569",[1686,8.41]],["name/6570",[337,39.934]],["parent/6570",[1687,7.114]],["name/6571",[339,39.934]],["parent/6571",[1687,7.114]],["name/6572",[340,40.174]],["parent/6572",[1687,7.114]],["name/6573",[68,40.013]],["parent/6573",[1687,7.114]],["name/6574",[341,40.174]],["parent/6574",[1687,7.114]],["name/6575",[995,79.173]],["parent/6575",[1290,3.969]],["name/6576",[127,31.117]],["parent/6576",[1688,8.41]],["name/6577",[11,33.551]],["parent/6577",[1689,5.225]],["name/6578",[153,53.524]],["parent/6578",[1689,5.225]],["name/6579",[154,53.524]],["parent/6579",[1689,5.225]],["name/6580",[155,53.524]],["parent/6580",[1689,5.225]],["name/6581",[156,53.524]],["parent/6581",[1689,5.225]],["name/6582",[157,53.524]],["parent/6582",[1689,5.225]],["name/6583",[158,53.524]],["parent/6583",[1689,5.225]],["name/6584",[159,53.524]],["parent/6584",[1689,5.225]],["name/6585",[118,69.618]],["parent/6585",[1689,5.225]],["name/6586",[998,79.173]],["parent/6586",[1689,5.225]],["name/6587",[999,79.173]],["parent/6587",[1689,5.225]],["name/6588",[1000,79.173]],["parent/6588",[1689,5.225]],["name/6589",[1001,79.173]],["parent/6589",[1689,5.225]],["name/6590",[1002,79.173]],["parent/6590",[1689,5.225]],["name/6591",[1003,79.173]],["parent/6591",[1689,5.225]],["name/6592",[1004,79.173]],["parent/6592",[1689,5.225]],["name/6593",[17,52.363]],["parent/6593",[1689,5.225]],["name/6594",[186,63.079]],["parent/6594",[1689,5.225]],["name/6595",[187,63.079]],["parent/6595",[1689,5.225]],["name/6596",[188,63.079]],["parent/6596",[1689,5.225]],["name/6597",[189,63.079]],["parent/6597",[1689,5.225]],["name/6598",[190,63.079]],["parent/6598",[1689,5.225]],["name/6599",[191,63.079]],["parent/6599",[1689,5.225]],["name/6600",[192,63.079]],["parent/6600",[1689,5.225]],["name/6601",[91,62.309]],["parent/6601",[1689,5.225]],["name/6602",[1005,79.173]],["parent/6602",[1689,5.225]],["name/6603",[1006,79.173]],["parent/6603",[1689,5.225]],["name/6604",[1007,79.173]],["parent/6604",[1689,5.225]],["name/6605",[92,62.309]],["parent/6605",[1689,5.225]],["name/6606",[1008,79.173]],["parent/6606",[1689,5.225]],["name/6607",[1009,79.173]],["parent/6607",[1689,5.225]],["name/6608",[1010,79.173]],["parent/6608",[1689,5.225]],["name/6609",[93,62.309]],["parent/6609",[1689,5.225]],["name/6610",[1011,79.173]],["parent/6610",[1689,5.225]],["name/6611",[1012,79.173]],["parent/6611",[1689,5.225]],["name/6612",[1013,79.173]],["parent/6612",[1689,5.225]],["name/6613",[1188,73.295]],["parent/6613",[1290,3.969]],["name/6614",[127,31.117]],["parent/6614",[1690,8.41]],["name/6615",[148,51.323]],["parent/6615",[1691,6.218]],["name/6616",[11,33.551]],["parent/6616",[1691,6.218]],["name/6617",[31,55.194]],["parent/6617",[1691,6.218]],["name/6618",[1316,69.618]],["parent/6618",[1691,6.218]],["name/6619",[1302,65.823]],["parent/6619",[1691,6.218]],["name/6620",[1329,75.808]],["parent/6620",[1691,6.218]],["name/6621",[1330,69.618]],["parent/6621",[1691,6.218]],["name/6622",[1318,65.823]],["parent/6622",[1691,6.218]],["name/6623",[1331,69.618]],["parent/6623",[1691,6.218]],["name/6624",[1319,65.823]],["parent/6624",[1691,6.218]],["name/6625",[1320,69.618]],["parent/6625",[1691,6.218]],["name/6626",[1332,69.618]],["parent/6626",[1691,6.218]],["name/6627",[38,51.573]],["parent/6627",[1691,6.218]],["name/6628",[1692,84.281]],["parent/6628",[1290,3.969]],["name/6629",[127,31.117]],["parent/6629",[1693,8.41]],["name/6630",[337,39.934]],["parent/6630",[1694,7.114]],["name/6631",[339,39.934]],["parent/6631",[1694,7.114]],["name/6632",[340,40.174]],["parent/6632",[1694,7.114]],["name/6633",[68,40.013]],["parent/6633",[1694,7.114]],["name/6634",[341,40.174]],["parent/6634",[1694,7.114]],["name/6635",[1695,84.281]],["parent/6635",[1290,3.969]],["name/6636",[127,31.117]],["parent/6636",[1696,8.41]],["name/6637",[11,33.551]],["parent/6637",[1697,4.297]],["name/6638",[153,53.524]],["parent/6638",[1697,4.297]],["name/6639",[154,53.524]],["parent/6639",[1697,4.297]],["name/6640",[155,53.524]],["parent/6640",[1697,4.297]],["name/6641",[156,53.524]],["parent/6641",[1697,4.297]],["name/6642",[157,53.524]],["parent/6642",[1697,4.297]],["name/6643",[158,53.524]],["parent/6643",[1697,4.297]],["name/6644",[159,53.524]],["parent/6644",[1697,4.297]],["name/6645",[31,55.194]],["parent/6645",[1697,4.297]],["name/6646",[271,65.823]],["parent/6646",[1697,4.297]],["name/6647",[272,65.823]],["parent/6647",[1697,4.297]],["name/6648",[273,65.823]],["parent/6648",[1697,4.297]],["name/6649",[274,65.823]],["parent/6649",[1697,4.297]],["name/6650",[275,65.823]],["parent/6650",[1697,4.297]],["name/6651",[276,65.823]],["parent/6651",[1697,4.297]],["name/6652",[277,65.823]],["parent/6652",[1697,4.297]],["name/6653",[1316,69.618]],["parent/6653",[1697,4.297]],["name/6654",[1619,79.173]],["parent/6654",[1697,4.297]],["name/6655",[1620,79.173]],["parent/6655",[1697,4.297]],["name/6656",[1621,79.173]],["parent/6656",[1697,4.297]],["name/6657",[1622,79.173]],["parent/6657",[1697,4.297]],["name/6658",[1623,79.173]],["parent/6658",[1697,4.297]],["name/6659",[1624,79.173]],["parent/6659",[1697,4.297]],["name/6660",[1625,79.173]],["parent/6660",[1697,4.297]],["name/6661",[1302,65.823]],["parent/6661",[1697,4.297]],["name/6662",[1391,75.808]],["parent/6662",[1697,4.297]],["name/6663",[1392,75.808]],["parent/6663",[1697,4.297]],["name/6664",[1393,75.808]],["parent/6664",[1697,4.297]],["name/6665",[1394,75.808]],["parent/6665",[1697,4.297]],["name/6666",[1395,75.808]],["parent/6666",[1697,4.297]],["name/6667",[1396,75.808]],["parent/6667",[1697,4.297]],["name/6668",[1397,75.808]],["parent/6668",[1697,4.297]],["name/6669",[1329,75.808]],["parent/6669",[1697,4.297]],["name/6670",[1698,84.281]],["parent/6670",[1697,4.297]],["name/6671",[1699,84.281]],["parent/6671",[1697,4.297]],["name/6672",[1700,84.281]],["parent/6672",[1697,4.297]],["name/6673",[1701,84.281]],["parent/6673",[1697,4.297]],["name/6674",[1702,84.281]],["parent/6674",[1697,4.297]],["name/6675",[1703,84.281]],["parent/6675",[1697,4.297]],["name/6676",[1704,84.281]],["parent/6676",[1697,4.297]],["name/6677",[1330,69.618]],["parent/6677",[1697,4.297]],["name/6678",[1705,79.173]],["parent/6678",[1697,4.297]],["name/6679",[1706,79.173]],["parent/6679",[1697,4.297]],["name/6680",[1707,79.173]],["parent/6680",[1697,4.297]],["name/6681",[1708,79.173]],["parent/6681",[1697,4.297]],["name/6682",[1709,79.173]],["parent/6682",[1697,4.297]],["name/6683",[1710,79.173]],["parent/6683",[1697,4.297]],["name/6684",[1711,79.173]],["parent/6684",[1697,4.297]],["name/6685",[1318,65.823]],["parent/6685",[1697,4.297]],["name/6686",[1633,75.808]],["parent/6686",[1697,4.297]],["name/6687",[1634,75.808]],["parent/6687",[1697,4.297]],["name/6688",[1635,75.808]],["parent/6688",[1697,4.297]],["name/6689",[1636,75.808]],["parent/6689",[1697,4.297]],["name/6690",[1637,75.808]],["parent/6690",[1697,4.297]],["name/6691",[1638,75.808]],["parent/6691",[1697,4.297]],["name/6692",[1639,75.808]],["parent/6692",[1697,4.297]],["name/6693",[1331,69.618]],["parent/6693",[1697,4.297]],["name/6694",[1712,79.173]],["parent/6694",[1697,4.297]],["name/6695",[1713,79.173]],["parent/6695",[1697,4.297]],["name/6696",[1714,79.173]],["parent/6696",[1697,4.297]],["name/6697",[1715,79.173]],["parent/6697",[1697,4.297]],["name/6698",[1716,79.173]],["parent/6698",[1697,4.297]],["name/6699",[1717,79.173]],["parent/6699",[1697,4.297]],["name/6700",[1718,79.173]],["parent/6700",[1697,4.297]],["name/6701",[1319,65.823]],["parent/6701",[1697,4.297]],["name/6702",[1640,75.808]],["parent/6702",[1697,4.297]],["name/6703",[1641,75.808]],["parent/6703",[1697,4.297]],["name/6704",[1642,75.808]],["parent/6704",[1697,4.297]],["name/6705",[1643,75.808]],["parent/6705",[1697,4.297]],["name/6706",[1644,75.808]],["parent/6706",[1697,4.297]],["name/6707",[1645,75.808]],["parent/6707",[1697,4.297]],["name/6708",[1646,75.808]],["parent/6708",[1697,4.297]],["name/6709",[1320,69.618]],["parent/6709",[1697,4.297]],["name/6710",[1647,79.173]],["parent/6710",[1697,4.297]],["name/6711",[1648,79.173]],["parent/6711",[1697,4.297]],["name/6712",[1649,79.173]],["parent/6712",[1697,4.297]],["name/6713",[1650,79.173]],["parent/6713",[1697,4.297]],["name/6714",[1651,79.173]],["parent/6714",[1697,4.297]],["name/6715",[1652,79.173]],["parent/6715",[1697,4.297]],["name/6716",[1653,79.173]],["parent/6716",[1697,4.297]],["name/6717",[1332,69.618]],["parent/6717",[1697,4.297]],["name/6718",[1719,79.173]],["parent/6718",[1697,4.297]],["name/6719",[1720,79.173]],["parent/6719",[1697,4.297]],["name/6720",[1721,79.173]],["parent/6720",[1697,4.297]],["name/6721",[38,51.573]],["parent/6721",[1697,4.297]],["name/6722",[326,62.309]],["parent/6722",[1697,4.297]],["name/6723",[327,62.309]],["parent/6723",[1697,4.297]],["name/6724",[328,62.309]],["parent/6724",[1697,4.297]],["name/6725",[329,62.309]],["parent/6725",[1697,4.297]],["name/6726",[330,62.309]],["parent/6726",[1697,4.297]],["name/6727",[331,62.309]],["parent/6727",[1697,4.297]],["name/6728",[332,62.309]],["parent/6728",[1697,4.297]],["name/6729",[1209,73.295]],["parent/6729",[1290,3.969]],["name/6730",[127,31.117]],["parent/6730",[1722,8.41]],["name/6731",[148,51.323]],["parent/6731",[1723,6.469]],["name/6732",[11,33.551]],["parent/6732",[1723,6.469]],["name/6733",[41,69.618]],["parent/6733",[1723,6.469]],["name/6734",[1331,69.618]],["parent/6734",[1723,6.469]],["name/6735",[1330,69.618]],["parent/6735",[1723,6.469]],["name/6736",[42,59.158]],["parent/6736",[1723,6.469]],["name/6737",[1319,65.823]],["parent/6737",[1723,6.469]],["name/6738",[1318,65.823]],["parent/6738",[1723,6.469]],["name/6739",[38,51.573]],["parent/6739",[1723,6.469]],["name/6740",[1332,69.618]],["parent/6740",[1723,6.469]],["name/6741",[1724,84.281]],["parent/6741",[1290,3.969]],["name/6742",[127,31.117]],["parent/6742",[1725,8.41]],["name/6743",[337,39.934]],["parent/6743",[1726,7.114]],["name/6744",[339,39.934]],["parent/6744",[1726,7.114]],["name/6745",[340,40.174]],["parent/6745",[1726,7.114]],["name/6746",[68,40.013]],["parent/6746",[1726,7.114]],["name/6747",[341,40.174]],["parent/6747",[1726,7.114]],["name/6748",[1727,84.281]],["parent/6748",[1290,3.969]],["name/6749",[127,31.117]],["parent/6749",[1728,8.41]],["name/6750",[11,33.551]],["parent/6750",[1729,4.597]],["name/6751",[153,53.524]],["parent/6751",[1729,4.597]],["name/6752",[154,53.524]],["parent/6752",[1729,4.597]],["name/6753",[155,53.524]],["parent/6753",[1729,4.597]],["name/6754",[156,53.524]],["parent/6754",[1729,4.597]],["name/6755",[157,53.524]],["parent/6755",[1729,4.597]],["name/6756",[158,53.524]],["parent/6756",[1729,4.597]],["name/6757",[159,53.524]],["parent/6757",[1729,4.597]],["name/6758",[41,69.618]],["parent/6758",[1729,4.597]],["name/6759",[354,79.173]],["parent/6759",[1729,4.597]],["name/6760",[355,79.173]],["parent/6760",[1729,4.597]],["name/6761",[356,79.173]],["parent/6761",[1729,4.597]],["name/6762",[357,79.173]],["parent/6762",[1729,4.597]],["name/6763",[358,79.173]],["parent/6763",[1729,4.597]],["name/6764",[359,79.173]],["parent/6764",[1729,4.597]],["name/6765",[360,79.173]],["parent/6765",[1729,4.597]],["name/6766",[1331,69.618]],["parent/6766",[1729,4.597]],["name/6767",[1712,79.173]],["parent/6767",[1729,4.597]],["name/6768",[1713,79.173]],["parent/6768",[1729,4.597]],["name/6769",[1714,79.173]],["parent/6769",[1729,4.597]],["name/6770",[1715,79.173]],["parent/6770",[1729,4.597]],["name/6771",[1716,79.173]],["parent/6771",[1729,4.597]],["name/6772",[1717,79.173]],["parent/6772",[1729,4.597]],["name/6773",[1718,79.173]],["parent/6773",[1729,4.597]],["name/6774",[1330,69.618]],["parent/6774",[1729,4.597]],["name/6775",[1705,79.173]],["parent/6775",[1729,4.597]],["name/6776",[1706,79.173]],["parent/6776",[1729,4.597]],["name/6777",[1707,79.173]],["parent/6777",[1729,4.597]],["name/6778",[1708,79.173]],["parent/6778",[1729,4.597]],["name/6779",[1709,79.173]],["parent/6779",[1729,4.597]],["name/6780",[1710,79.173]],["parent/6780",[1729,4.597]],["name/6781",[1711,79.173]],["parent/6781",[1729,4.597]],["name/6782",[42,59.158]],["parent/6782",[1729,4.597]],["name/6783",[361,69.618]],["parent/6783",[1729,4.597]],["name/6784",[362,69.618]],["parent/6784",[1729,4.597]],["name/6785",[363,69.618]],["parent/6785",[1729,4.597]],["name/6786",[364,69.618]],["parent/6786",[1729,4.597]],["name/6787",[365,69.618]],["parent/6787",[1729,4.597]],["name/6788",[366,69.618]],["parent/6788",[1729,4.597]],["name/6789",[367,69.618]],["parent/6789",[1729,4.597]],["name/6790",[1319,65.823]],["parent/6790",[1729,4.597]],["name/6791",[1640,75.808]],["parent/6791",[1729,4.597]],["name/6792",[1641,75.808]],["parent/6792",[1729,4.597]],["name/6793",[1642,75.808]],["parent/6793",[1729,4.597]],["name/6794",[1643,75.808]],["parent/6794",[1729,4.597]],["name/6795",[1644,75.808]],["parent/6795",[1729,4.597]],["name/6796",[1645,75.808]],["parent/6796",[1729,4.597]],["name/6797",[1646,75.808]],["parent/6797",[1729,4.597]],["name/6798",[1318,65.823]],["parent/6798",[1729,4.597]],["name/6799",[1633,75.808]],["parent/6799",[1729,4.597]],["name/6800",[1634,75.808]],["parent/6800",[1729,4.597]],["name/6801",[1635,75.808]],["parent/6801",[1729,4.597]],["name/6802",[1636,75.808]],["parent/6802",[1729,4.597]],["name/6803",[1637,75.808]],["parent/6803",[1729,4.597]],["name/6804",[1638,75.808]],["parent/6804",[1729,4.597]],["name/6805",[1639,75.808]],["parent/6805",[1729,4.597]],["name/6806",[38,51.573]],["parent/6806",[1729,4.597]],["name/6807",[326,62.309]],["parent/6807",[1729,4.597]],["name/6808",[327,62.309]],["parent/6808",[1729,4.597]],["name/6809",[328,62.309]],["parent/6809",[1729,4.597]],["name/6810",[329,62.309]],["parent/6810",[1729,4.597]],["name/6811",[330,62.309]],["parent/6811",[1729,4.597]],["name/6812",[331,62.309]],["parent/6812",[1729,4.597]],["name/6813",[332,62.309]],["parent/6813",[1729,4.597]],["name/6814",[1332,69.618]],["parent/6814",[1729,4.597]],["name/6815",[1719,79.173]],["parent/6815",[1729,4.597]],["name/6816",[1720,79.173]],["parent/6816",[1729,4.597]],["name/6817",[1721,79.173]],["parent/6817",[1729,4.597]],["name/6818",[55,58.632]],["parent/6818",[1290,3.969]],["name/6819",[127,31.117]],["parent/6819",[1730,8.41]],["name/6820",[148,51.323]],["parent/6820",[1731,7.314]],["name/6821",[11,33.551]],["parent/6821",[1731,7.314]],["name/6822",[89,63.913]],["parent/6822",[1731,7.314]],["name/6823",[1336,75.808]],["parent/6823",[1731,7.314]],["name/6824",[1016,79.173]],["parent/6824",[1290,3.969]],["name/6825",[127,31.117]],["parent/6825",[1732,8.41]],["name/6826",[337,39.934]],["parent/6826",[1733,7.114]],["name/6827",[339,39.934]],["parent/6827",[1733,7.114]],["name/6828",[340,40.174]],["parent/6828",[1733,7.114]],["name/6829",[68,40.013]],["parent/6829",[1733,7.114]],["name/6830",[341,40.174]],["parent/6830",[1733,7.114]],["name/6831",[1019,79.173]],["parent/6831",[1290,3.969]],["name/6832",[127,31.117]],["parent/6832",[1734,8.41]],["name/6833",[11,33.551]],["parent/6833",[1735,6.018]],["name/6834",[153,53.524]],["parent/6834",[1735,6.018]],["name/6835",[154,53.524]],["parent/6835",[1735,6.018]],["name/6836",[155,53.524]],["parent/6836",[1735,6.018]],["name/6837",[156,53.524]],["parent/6837",[1735,6.018]],["name/6838",[157,53.524]],["parent/6838",[1735,6.018]],["name/6839",[158,53.524]],["parent/6839",[1735,6.018]],["name/6840",[159,53.524]],["parent/6840",[1735,6.018]],["name/6841",[1336,75.808]],["parent/6841",[1735,6.018]],["name/6842",[1736,84.281]],["parent/6842",[1735,6.018]],["name/6843",[1737,84.281]],["parent/6843",[1735,6.018]],["name/6844",[1738,84.281]],["parent/6844",[1735,6.018]],["name/6845",[1739,84.281]],["parent/6845",[1735,6.018]],["name/6846",[1740,84.281]],["parent/6846",[1735,6.018]],["name/6847",[1741,84.281]],["parent/6847",[1735,6.018]],["name/6848",[1742,84.281]],["parent/6848",[1735,6.018]],["name/6849",[1022,79.173]],["parent/6849",[1290,3.969]],["name/6850",[127,31.117]],["parent/6850",[1743,8.41]],["name/6851",[148,51.323]],["parent/6851",[1744,7.565]],["name/6852",[143,73.295]],["parent/6852",[1744,7.565]],["name/6853",[145,73.295]],["parent/6853",[1744,7.565]],["name/6854",[1025,79.173]],["parent/6854",[1290,3.969]],["name/6855",[127,31.117]],["parent/6855",[1745,8.41]],["name/6856",[148,51.323]],["parent/6856",[1746,7.314]],["name/6857",[54,36.379]],["parent/6857",[1746,7.314]],["name/6858",[1028,79.173]],["parent/6858",[1746,7.314]],["name/6859",[1029,79.173]],["parent/6859",[1746,7.314]]],"invertedIndex":[["__type",{"_index":127,"name":{"227":{},"231":{},"241":{},"245":{},"250":{},"268":{},"285":{},"401":{},"413":{},"493":{},"510":{},"517":{},"524":{},"531":{},"538":{},"620":{},"632":{},"712":{},"722":{},"729":{},"745":{},"869":{},"931":{},"947":{},"1059":{},"1090":{},"1097":{},"1104":{},"1111":{},"1118":{},"1125":{},"1132":{},"1139":{},"1155":{},"1279":{},"1292":{},"1380":{},"1574":{},"1615":{},"1619":{},"1627":{},"1631":{},"1639":{},"1643":{},"1651":{},"1655":{},"1663":{},"1667":{},"1675":{},"1679":{},"1687":{},"1691":{},"1699":{},"1703":{},"1711":{},"1715":{},"1723":{},"1727":{},"1735":{},"1739":{},"1747":{},"1751":{},"1759":{},"1763":{},"1771":{},"1775":{},"1783":{},"1787":{},"1795":{},"1799":{},"1807":{},"1811":{},"1819":{},"1825":{},"1831":{},"1837":{},"1840":{},"1878":{},"1882":{},"1890":{},"1894":{},"1902":{},"1906":{},"1914":{},"1918":{},"1926":{},"1930":{},"1938":{},"1942":{},"1950":{},"1954":{},"1962":{},"1966":{},"1974":{},"1978":{},"1986":{},"1990":{},"1998":{},"2002":{},"2010":{},"2014":{},"2022":{},"2026":{},"2034":{},"2038":{},"2046":{},"2050":{},"2058":{},"2062":{},"2070":{},"2074":{},"2082":{},"2085":{},"2100":{},"2206":{},"2227":{},"2234":{},"2241":{},"2248":{},"2255":{},"2262":{},"2269":{},"2283":{},"2379":{},"2393":{},"2489":{},"2605":{},"2614":{},"2621":{},"2628":{},"2635":{},"2673":{},"2678":{},"2685":{},"2695":{},"2700":{},"2727":{},"2731":{},"2770":{},"2774":{},"2817":{},"2821":{},"2885":{},"2889":{},"2957":{},"2961":{},"3015":{},"3019":{},"3073":{},"3077":{},"3135":{},"3139":{},"3197":{},"3201":{},"3265":{},"3269":{},"3337":{},"3341":{},"3390":{},"3394":{},"3443":{},"3447":{},"3500":{},"3504":{},"3553":{},"3557":{},"3610":{},"3614":{},"3667":{},"3671":{},"3735":{},"3739":{},"3807":{},"3811":{},"3879":{},"3883":{},"3947":{},"3951":{},"4015":{},"4019":{},"4087":{},"4091":{},"4145":{},"4149":{},"4208":{},"4212":{},"4275":{},"4279":{},"4337":{},"4341":{},"4405":{},"4409":{},"4492":{},"4496":{},"4550":{},"4554":{},"4617":{},"4621":{},"4816":{},"4820":{},"4830":{},"4834":{},"4839":{},"4857":{},"4874":{},"4990":{},"4997":{},"5013":{},"5137":{},"5183":{},"5199":{},"5311":{},"5333":{},"5349":{},"5465":{},"5478":{},"5566":{},"5732":{},"5766":{},"5770":{},"5778":{},"5782":{},"5790":{},"5794":{},"5802":{},"5806":{},"5814":{},"5818":{},"5826":{},"5830":{},"5838":{},"5842":{},"5850":{},"5854":{},"5862":{},"5866":{},"5874":{},"5878":{},"5886":{},"5890":{},"5898":{},"5902":{},"5910":{},"5914":{},"5922":{},"5926":{},"5934":{},"5938":{},"5946":{},"5949":{},"5983":{},"5987":{},"5995":{},"5999":{},"6007":{},"6011":{},"6019":{},"6023":{},"6031":{},"6035":{},"6043":{},"6047":{},"6055":{},"6059":{},"6067":{},"6071":{},"6079":{},"6083":{},"6091":{},"6095":{},"6103":{},"6107":{},"6115":{},"6119":{},"6127":{},"6131":{},"6139":{},"6143":{},"6151":{},"6155":{},"6163":{},"6166":{},"6181":{},"6287":{},"6302":{},"6309":{},"6325":{},"6332":{},"6440":{},"6546":{},"6555":{},"6562":{},"6569":{},"6576":{},"6614":{},"6629":{},"6636":{},"6730":{},"6742":{},"6749":{},"6819":{},"6825":{},"6832":{},"6850":{},"6855":{}},"parent":{}}],["__typename",{"_index":148,"name":{"246":{},"269":{},"402":{},"494":{},"621":{},"713":{},"730":{},"932":{},"1060":{},"1140":{},"1280":{},"1575":{},"1841":{},"2086":{},"2207":{},"2270":{},"2380":{},"2606":{},"2674":{},"2696":{},"2701":{},"4835":{},"4858":{},"4991":{},"4998":{},"5184":{},"5312":{},"5334":{},"5466":{},"5733":{},"5950":{},"6167":{},"6288":{},"6310":{},"6547":{},"6615":{},"6731":{},"6820":{},"6851":{},"6856":{}},"parent":{}}],["_base",{"_index":1037,"name":{"2713":{},"2756":{},"2803":{},"2871":{},"2943":{},"3001":{},"3059":{},"3121":{},"3183":{},"3251":{},"3323":{},"3376":{},"3429":{},"3486":{},"3539":{},"3596":{},"3653":{},"3721":{},"3793":{},"3865":{},"3933":{},"4001":{},"4073":{},"4131":{},"4194":{},"4261":{},"4323":{},"4391":{},"4478":{},"4536":{},"4603":{}},"parent":{}}],["_block_",{"_index":1022,"name":{"2694":{},"6849":{}},"parent":{}}],["_help",{"_index":1062,"name":{"2743":{},"2786":{},"2833":{},"2901":{},"2973":{},"3031":{},"3089":{},"3151":{},"3213":{},"3281":{},"3353":{},"3406":{},"3459":{},"3516":{},"3569":{},"3626":{},"3683":{},"3751":{},"3823":{},"3895":{},"3963":{},"4031":{},"4103":{},"4161":{},"4224":{},"4291":{},"4353":{},"4421":{},"4508":{},"4566":{},"4633":{}},"parent":{}}],["_helpoverride",{"_index":1063,"name":{"2744":{},"2787":{},"2834":{},"2902":{},"2974":{},"3032":{},"3090":{},"3152":{},"3214":{},"3282":{},"3354":{},"3407":{},"3460":{},"3517":{},"3570":{},"3627":{},"3684":{},"3752":{},"3824":{},"3896":{},"3964":{},"4032":{},"4104":{},"4162":{},"4225":{},"4292":{},"4354":{},"4422":{},"4509":{},"4567":{},"4634":{}},"parent":{}}],["_meta",{"_index":640,"name":{"1613":{},"1876":{},"2706":{},"5764":{},"5981":{}},"parent":{}}],["_meta_",{"_index":1025,"name":{"2699":{},"6854":{}},"parent":{}}],["_metadocument",{"_index":1065,"name":{"2746":{}},"parent":{}}],["_run",{"_index":1054,"name":{"2734":{},"2777":{},"2824":{},"2892":{},"2964":{},"3022":{},"3080":{},"3142":{},"3204":{},"3272":{},"3344":{},"3397":{},"3450":{},"3507":{},"3560":{},"3617":{},"3674":{},"3742":{},"3814":{},"3886":{},"3954":{},"4022":{},"4094":{},"4152":{},"4215":{},"4282":{},"4344":{},"4412":{},"4499":{},"4557":{},"4624":{}},"parent":{}}],["_subgrapherrorpolicy_",{"_index":121,"name":{"222":{},"4811":{}},"parent":{}}],["_version",{"_index":1064,"name":{"2745":{},"2788":{},"2835":{},"2903":{},"2975":{},"3033":{},"3091":{},"3153":{},"3215":{},"3283":{},"3355":{},"3408":{},"3461":{},"3518":{},"3571":{},"3628":{},"3685":{},"3753":{},"3825":{},"3897":{},"3965":{},"4033":{},"4105":{},"4163":{},"4226":{},"4293":{},"4355":{},"4423":{},"4510":{},"4568":{},"4635":{}},"parent":{}}],["aliases",{"_index":1042,"name":{"2720":{},"2763":{},"2810":{},"2878":{},"2950":{},"3008":{},"3066":{},"3128":{},"3190":{},"3258":{},"3330":{},"3383":{},"3436":{},"3493":{},"3546":{},"3603":{},"3660":{},"3728":{},"3800":{},"3872":{},"3940":{},"4008":{},"4080":{},"4138":{},"4201":{},"4268":{},"4330":{},"4398":{},"4485":{},"4543":{},"4610":{}},"parent":{}}],["allow",{"_index":122,"name":{"223":{},"4812":{}},"parent":{}}],["amount0",{"_index":21,"name":{"20":{},"93":{},"276":{},"344":{},"940":{},"1012":{},"4648":{},"4683":{},"4865":{},"4933":{},"5192":{},"5264":{}},"parent":{}}],["amount0_gt",{"_index":219,"name":{"346":{},"1014":{},"4935":{},"5266":{}},"parent":{}}],["amount0_gte",{"_index":221,"name":{"348":{},"1016":{},"4937":{},"5268":{}},"parent":{}}],["amount0_in",{"_index":223,"name":{"350":{},"1018":{},"4939":{},"5270":{}},"parent":{}}],["amount0_lt",{"_index":220,"name":{"347":{},"1015":{},"4936":{},"5267":{}},"parent":{}}],["amount0_lte",{"_index":222,"name":{"349":{},"1017":{},"4938":{},"5269":{}},"parent":{}}],["amount0_not",{"_index":218,"name":{"345":{},"1013":{},"4934":{},"5265":{}},"parent":{}}],["amount0_not_in",{"_index":224,"name":{"351":{},"1019":{},"4940":{},"5271":{}},"parent":{}}],["amount0in",{"_index":96,"name":{"162":{},"2092":{},"2151":{},"4743":{},"6173":{},"6232":{}},"parent":{}}],["amount0in_gt",{"_index":870,"name":{"2153":{},"6234":{}},"parent":{}}],["amount0in_gte",{"_index":872,"name":{"2155":{},"6236":{}},"parent":{}}],["amount0in_in",{"_index":874,"name":{"2157":{},"6238":{}},"parent":{}}],["amount0in_lt",{"_index":871,"name":{"2154":{},"6235":{}},"parent":{}}],["amount0in_lte",{"_index":873,"name":{"2156":{},"6237":{}},"parent":{}}],["amount0in_not",{"_index":869,"name":{"2152":{},"6233":{}},"parent":{}}],["amount0in_not_in",{"_index":875,"name":{"2158":{},"6239":{}},"parent":{}}],["amount0out",{"_index":98,"name":{"164":{},"2094":{},"2167":{},"4745":{},"6175":{},"6248":{}},"parent":{}}],["amount0out_gt",{"_index":884,"name":{"2169":{},"6250":{}},"parent":{}}],["amount0out_gte",{"_index":886,"name":{"2171":{},"6252":{}},"parent":{}}],["amount0out_in",{"_index":888,"name":{"2173":{},"6254":{}},"parent":{}}],["amount0out_lt",{"_index":885,"name":{"2170":{},"6251":{}},"parent":{}}],["amount0out_lte",{"_index":887,"name":{"2172":{},"6253":{}},"parent":{}}],["amount0out_not",{"_index":883,"name":{"2168":{},"6249":{}},"parent":{}}],["amount0out_not_in",{"_index":889,"name":{"2174":{},"6255":{}},"parent":{}}],["amount1",{"_index":22,"name":{"21":{},"94":{},"277":{},"352":{},"941":{},"1020":{},"4649":{},"4684":{},"4866":{},"4941":{},"5193":{},"5272":{}},"parent":{}}],["amount1_gt",{"_index":226,"name":{"354":{},"1022":{},"4943":{},"5274":{}},"parent":{}}],["amount1_gte",{"_index":228,"name":{"356":{},"1024":{},"4945":{},"5276":{}},"parent":{}}],["amount1_in",{"_index":230,"name":{"358":{},"1026":{},"4947":{},"5278":{}},"parent":{}}],["amount1_lt",{"_index":227,"name":{"355":{},"1023":{},"4944":{},"5275":{}},"parent":{}}],["amount1_lte",{"_index":229,"name":{"357":{},"1025":{},"4946":{},"5277":{}},"parent":{}}],["amount1_not",{"_index":225,"name":{"353":{},"1021":{},"4942":{},"5273":{}},"parent":{}}],["amount1_not_in",{"_index":231,"name":{"359":{},"1027":{},"4948":{},"5279":{}},"parent":{}}],["amount1in",{"_index":97,"name":{"163":{},"2093":{},"2159":{},"4744":{},"6174":{},"6240":{}},"parent":{}}],["amount1in_gt",{"_index":877,"name":{"2161":{},"6242":{}},"parent":{}}],["amount1in_gte",{"_index":879,"name":{"2163":{},"6244":{}},"parent":{}}],["amount1in_in",{"_index":881,"name":{"2165":{},"6246":{}},"parent":{}}],["amount1in_lt",{"_index":878,"name":{"2162":{},"6243":{}},"parent":{}}],["amount1in_lte",{"_index":880,"name":{"2164":{},"6245":{}},"parent":{}}],["amount1in_not",{"_index":876,"name":{"2160":{},"6241":{}},"parent":{}}],["amount1in_not_in",{"_index":882,"name":{"2166":{},"6247":{}},"parent":{}}],["amount1out",{"_index":99,"name":{"165":{},"2095":{},"2175":{},"4746":{},"6176":{},"6256":{}},"parent":{}}],["amount1out_gt",{"_index":891,"name":{"2177":{},"6258":{}},"parent":{}}],["amount1out_gte",{"_index":893,"name":{"2179":{},"6260":{}},"parent":{}}],["amount1out_in",{"_index":895,"name":{"2181":{},"6262":{}},"parent":{}}],["amount1out_lt",{"_index":892,"name":{"2178":{},"6259":{}},"parent":{}}],["amount1out_lte",{"_index":894,"name":{"2180":{},"6261":{}},"parent":{}}],["amount1out_not",{"_index":890,"name":{"2176":{},"6257":{}},"parent":{}}],["amount1out_not_in",{"_index":896,"name":{"2182":{},"6263":{}},"parent":{}}],["amountusd",{"_index":25,"name":{"24":{},"96":{},"168":{},"280":{},"374":{},"943":{},"1036":{},"2098":{},"2197":{},"4652":{},"4686":{},"4749":{},"4869":{},"4963":{},"5195":{},"5288":{},"6179":{},"6278":{}},"parent":{}}],["amountusd_gt",{"_index":245,"name":{"376":{},"1038":{},"2199":{},"4965":{},"5290":{},"6280":{}},"parent":{}}],["amountusd_gte",{"_index":247,"name":{"378":{},"1040":{},"2201":{},"4967":{},"5292":{},"6282":{}},"parent":{}}],["amountusd_in",{"_index":249,"name":{"380":{},"1042":{},"2203":{},"4969":{},"5294":{},"6284":{}},"parent":{}}],["amountusd_lt",{"_index":246,"name":{"377":{},"1039":{},"2200":{},"4966":{},"5291":{},"6281":{}},"parent":{}}],["amountusd_lte",{"_index":248,"name":{"379":{},"1041":{},"2202":{},"4968":{},"5293":{},"6283":{}},"parent":{}}],["amountusd_not",{"_index":244,"name":{"375":{},"1037":{},"2198":{},"4964":{},"5289":{},"6279":{}},"parent":{}}],["amountusd_not_in",{"_index":250,"name":{"381":{},"1043":{},"2204":{},"4970":{},"5295":{},"6285":{}},"parent":{}}],["args",{"_index":1045,"name":{"2723":{},"2766":{},"2813":{},"2881":{},"2953":{},"3011":{},"3069":{},"3131":{},"3193":{},"3261":{},"3333":{},"3386":{},"3439":{},"3496":{},"3549":{},"3606":{},"3663":{},"3731":{},"3803":{},"3875":{},"3943":{},"4011":{},"4083":{},"4141":{},"4204":{},"4271":{},"4333":{},"4401":{},"4488":{},"4546":{},"4613":{}},"parent":{}}],["argv",{"_index":1035,"name":{"2711":{},"2754":{},"2801":{},"2869":{},"2941":{},"2999":{},"3057":{},"3119":{},"3181":{},"3249":{},"3321":{},"3374":{},"3427":{},"3484":{},"3537":{},"3594":{},"3651":{},"3719":{},"3791":{},"3863":{},"3931":{},"3999":{},"4071":{},"4129":{},"4192":{},"4259":{},"4321":{},"4389":{},"4476":{},"4534":{},"4601":{}},"parent":{}}],["asc",{"_index":69,"name":{"100":{},"4690":{}},"parent":{}}],["basepairs",{"_index":112,"name":{"208":{},"2222":{}},"parent":{}}],["basepairsdaydata",{"_index":114,"name":{"210":{},"2224":{}},"parent":{}}],["bigdecimal",{"_index":138,"name":{"237":{},"4826":{}},"parent":{}}],["bigint",{"_index":139,"name":{"238":{},"4827":{}},"parent":{}}],["block",{"_index":54,"name":{"67":{},"83":{},"155":{},"719":{},"734":{},"776":{},"914":{},"1088":{},"1565":{},"1617":{},"1625":{},"1629":{},"1637":{},"1641":{},"1649":{},"1653":{},"1661":{},"1665":{},"1673":{},"1677":{},"1685":{},"1689":{},"1697":{},"1701":{},"1709":{},"1713":{},"1721":{},"1725":{},"1733":{},"1737":{},"1745":{},"1749":{},"1757":{},"1761":{},"1769":{},"1773":{},"1781":{},"1785":{},"1793":{},"1797":{},"1805":{},"1809":{},"1817":{},"1823":{},"1829":{},"1835":{},"1838":{},"1880":{},"1888":{},"1892":{},"1900":{},"1904":{},"1912":{},"1916":{},"1924":{},"1928":{},"1936":{},"1940":{},"1948":{},"1952":{},"1960":{},"1964":{},"1972":{},"1976":{},"1984":{},"1988":{},"1996":{},"2000":{},"2008":{},"2012":{},"2020":{},"2024":{},"2032":{},"2036":{},"2044":{},"2048":{},"2056":{},"2060":{},"2068":{},"2072":{},"2080":{},"2083":{},"2702":{},"2709":{},"2752":{},"2799":{},"2867":{},"2939":{},"2997":{},"3055":{},"3117":{},"3179":{},"3247":{},"3319":{},"3372":{},"3425":{},"3482":{},"3535":{},"3592":{},"3649":{},"3717":{},"3789":{},"3861":{},"3929":{},"3997":{},"4069":{},"4127":{},"4190":{},"4257":{},"4319":{},"4387":{},"4474":{},"4532":{},"4599":{},"4660":{},"5002":{},"5044":{},"5768":{},"5776":{},"5780":{},"5788":{},"5792":{},"5800":{},"5804":{},"5812":{},"5816":{},"5824":{},"5828":{},"5836":{},"5840":{},"5848":{},"5852":{},"5860":{},"5864":{},"5872":{},"5876":{},"5884":{},"5888":{},"5896":{},"5900":{},"5908":{},"5912":{},"5920":{},"5924":{},"5932":{},"5936":{},"5944":{},"5947":{},"5985":{},"5993":{},"5997":{},"6005":{},"6009":{},"6017":{},"6021":{},"6029":{},"6033":{},"6041":{},"6045":{},"6053":{},"6057":{},"6065":{},"6069":{},"6077":{},"6081":{},"6089":{},"6093":{},"6101":{},"6105":{},"6113":{},"6117":{},"6125":{},"6129":{},"6137":{},"6141":{},"6149":{},"6153":{},"6161":{},"6164":{},"6857":{}},"parent":{}}],["block_gt",{"_index":412,"name":{"778":{},"916":{},"1567":{},"5046":{}},"parent":{}}],["block_gte",{"_index":414,"name":{"780":{},"918":{},"1569":{},"5048":{}},"parent":{}}],["block_height",{"_index":141,"name":{"240":{},"4829":{}},"parent":{}}],["block_in",{"_index":416,"name":{"782":{},"920":{},"1571":{},"5050":{}},"parent":{}}],["block_lt",{"_index":413,"name":{"779":{},"917":{},"1568":{},"5047":{}},"parent":{}}],["block_lte",{"_index":415,"name":{"781":{},"919":{},"1570":{},"5049":{}},"parent":{}}],["block_not",{"_index":411,"name":{"777":{},"915":{},"1566":{},"5045":{}},"parent":{}}],["block_not_in",{"_index":417,"name":{"783":{},"921":{},"1572":{},"5051":{}},"parent":{}}],["blocknumber",{"_index":118,"name":{"214":{},"2608":{},"2644":{},"4779":{},"6549":{},"6585":{}},"parent":{}}],["blocknumber_gt",{"_index":999,"name":{"2646":{},"6587":{}},"parent":{}}],["blocknumber_gte",{"_index":1001,"name":{"2648":{},"6589":{}},"parent":{}}],["blocknumber_in",{"_index":1003,"name":{"2650":{},"6591":{}},"parent":{}}],["blocknumber_lt",{"_index":1000,"name":{"2647":{},"6588":{}},"parent":{}}],["blocknumber_lte",{"_index":1002,"name":{"2649":{},"6590":{}},"parent":{}}],["blocknumber_not",{"_index":998,"name":{"2645":{},"6586":{}},"parent":{}}],["blocknumber_not_in",{"_index":1004,"name":{"2651":{},"6592":{}},"parent":{}}],["boolean",{"_index":135,"name":{"234":{},"4823":{}},"parent":{}}],["bundle",{"_index":146,"name":{"244":{},"1578":{},"1844":{},"2748":{},"4833":{},"5754":{},"5971":{}},"parent":{}}],["bundle_filter",{"_index":150,"name":{"249":{},"4838":{}},"parent":{}}],["bundle_orderby",{"_index":10,"name":{"10":{},"4638":{}},"parent":{}}],["bundledocument",{"_index":1071,"name":{"2789":{}},"parent":{}}],["bundles",{"_index":625,"name":{"1579":{},"1845":{},"2791":{},"5755":{},"5972":{}},"parent":{}}],["bundlesdocument",{"_index":1077,"name":{"2836":{}},"parent":{}}],["burn",{"_index":167,"name":{"267":{},"1606":{},"1872":{},"2838":{},"4856":{},"5750":{},"5967":{}},"parent":{}}],["burn_filter",{"_index":170,"name":{"284":{},"4873":{}},"parent":{}}],["burn_orderby",{"_index":14,"name":{"13":{},"4641":{}},"parent":{}}],["burndocument",{"_index":1103,"name":{"2904":{}},"parent":{}}],["burns",{"_index":92,"name":{"152":{},"217":{},"1085":{},"1607":{},"1873":{},"2611":{},"2664":{},"2906":{},"4782":{},"5751":{},"5968":{},"6552":{},"6605":{}},"parent":{}}],["burns_contains",{"_index":1009,"name":{"2666":{},"6607":{}},"parent":{}}],["burns_not",{"_index":1008,"name":{"2665":{},"6606":{}},"parent":{}}],["burns_not_contains",{"_index":1010,"name":{"2667":{},"6608":{}},"parent":{}}],["burnsdocument",{"_index":1114,"name":{"2976":{}},"parent":{}}],["bytes",{"_index":140,"name":{"239":{},"4828":{}},"parent":{}}],["catch",{"_index":1060,"name":{"2741":{},"2784":{},"2831":{},"2899":{},"2971":{},"3029":{},"3087":{},"3149":{},"3211":{},"3279":{},"3351":{},"3404":{},"3457":{},"3514":{},"3567":{},"3624":{},"3681":{},"3749":{},"3821":{},"3893":{},"3961":{},"4029":{},"4101":{},"4159":{},"4222":{},"4289":{},"4351":{},"4419":{},"4506":{},"4564":{},"4631":{}},"parent":{}}],["client",{"_index":6,"name":{"5":{}},"parent":{}}],["command",{"_index":2,"name":{"2":{}},"parent":{}}],["commands/_meta/index",{"_index":1030,"name":{"2705":{}},"parent":{"2706":{},"2746":{}}}],["commands/_meta/index\"._meta",{"_index":1032,"name":{},"parent":{"2707":{},"2710":{},"2711":{},"2712":{},"2713":{},"2714":{},"2715":{},"2716":{},"2717":{},"2718":{},"2719":{},"2720":{},"2721":{},"2722":{},"2723":{},"2724":{},"2725":{},"2726":{},"2728":{},"2729":{},"2730":{},"2732":{},"2733":{},"2734":{},"2735":{},"2736":{},"2737":{},"2738":{},"2739":{},"2740":{},"2741":{},"2742":{},"2743":{},"2744":{},"2745":{}}}],["commands/_meta/index\"._meta.debug",{"_index":1051,"name":{},"parent":{"2731":{}}}],["commands/_meta/index\"._meta.flags",{"_index":1034,"name":{},"parent":{"2708":{},"2709":{}}}],["commands/_meta/index\"._meta.parseroptions",{"_index":1049,"name":{},"parent":{"2727":{}}}],["commands/bundle/index",{"_index":1066,"name":{"2747":{}},"parent":{"2748":{},"2789":{}}}],["commands/bundle/index\".bundle",{"_index":1067,"name":{},"parent":{"2749":{},"2753":{},"2754":{},"2755":{},"2756":{},"2757":{},"2758":{},"2759":{},"2760":{},"2761":{},"2762":{},"2763":{},"2764":{},"2765":{},"2766":{},"2767":{},"2768":{},"2769":{},"2771":{},"2772":{},"2773":{},"2775":{},"2776":{},"2777":{},"2778":{},"2779":{},"2780":{},"2781":{},"2782":{},"2783":{},"2784":{},"2785":{},"2786":{},"2787":{},"2788":{}}}],["commands/bundle/index\".bundle.debug",{"_index":1070,"name":{},"parent":{"2774":{}}}],["commands/bundle/index\".bundle.flags",{"_index":1068,"name":{},"parent":{"2750":{},"2751":{},"2752":{}}}],["commands/bundle/index\".bundle.parseroptions",{"_index":1069,"name":{},"parent":{"2770":{}}}],["commands/bundles/index",{"_index":1072,"name":{"2790":{}},"parent":{"2791":{},"2836":{}}}],["commands/bundles/index\".bundles",{"_index":1073,"name":{},"parent":{"2792":{},"2800":{},"2801":{},"2802":{},"2803":{},"2804":{},"2805":{},"2806":{},"2807":{},"2808":{},"2809":{},"2810":{},"2811":{},"2812":{},"2813":{},"2814":{},"2815":{},"2816":{},"2818":{},"2819":{},"2820":{},"2822":{},"2823":{},"2824":{},"2825":{},"2826":{},"2827":{},"2828":{},"2829":{},"2830":{},"2831":{},"2832":{},"2833":{},"2834":{},"2835":{}}}],["commands/bundles/index\".bundles.debug",{"_index":1076,"name":{},"parent":{"2821":{}}}],["commands/bundles/index\".bundles.flags",{"_index":1074,"name":{},"parent":{"2793":{},"2794":{},"2795":{},"2796":{},"2797":{},"2798":{},"2799":{}}}],["commands/bundles/index\".bundles.parseroptions",{"_index":1075,"name":{},"parent":{"2817":{}}}],["commands/burn/index",{"_index":1078,"name":{"2837":{}},"parent":{"2838":{},"2904":{}}}],["commands/burn/index\".burn",{"_index":1079,"name":{},"parent":{"2839":{},"2868":{},"2869":{},"2870":{},"2871":{},"2872":{},"2873":{},"2874":{},"2875":{},"2876":{},"2877":{},"2878":{},"2879":{},"2880":{},"2881":{},"2882":{},"2883":{},"2884":{},"2886":{},"2887":{},"2888":{},"2890":{},"2891":{},"2892":{},"2893":{},"2894":{},"2895":{},"2896":{},"2897":{},"2898":{},"2899":{},"2900":{},"2901":{},"2902":{},"2903":{}}}],["commands/burn/index\".burn.debug",{"_index":1102,"name":{},"parent":{"2889":{}}}],["commands/burn/index\".burn.flags",{"_index":1080,"name":{},"parent":{"2840":{},"2841":{},"2842":{},"2843":{},"2844":{},"2845":{},"2846":{},"2847":{},"2848":{},"2849":{},"2850":{},"2851":{},"2852":{},"2853":{},"2854":{},"2855":{},"2856":{},"2857":{},"2858":{},"2859":{},"2860":{},"2861":{},"2862":{},"2863":{},"2864":{},"2865":{},"2866":{},"2867":{}}}],["commands/burn/index\".burn.parseroptions",{"_index":1101,"name":{},"parent":{"2885":{}}}],["commands/burns/index",{"_index":1104,"name":{"2905":{}},"parent":{"2906":{},"2976":{}}}],["commands/burns/index\".burns",{"_index":1105,"name":{},"parent":{"2907":{},"2940":{},"2941":{},"2942":{},"2943":{},"2944":{},"2945":{},"2946":{},"2947":{},"2948":{},"2949":{},"2950":{},"2951":{},"2952":{},"2953":{},"2954":{},"2955":{},"2956":{},"2958":{},"2959":{},"2960":{},"2962":{},"2963":{},"2964":{},"2965":{},"2966":{},"2967":{},"2968":{},"2969":{},"2970":{},"2971":{},"2972":{},"2973":{},"2974":{},"2975":{}}}],["commands/burns/index\".burns.debug",{"_index":1113,"name":{},"parent":{"2961":{}}}],["commands/burns/index\".burns.flags",{"_index":1106,"name":{},"parent":{"2908":{},"2909":{},"2910":{},"2911":{},"2912":{},"2913":{},"2914":{},"2915":{},"2916":{},"2917":{},"2918":{},"2919":{},"2920":{},"2921":{},"2922":{},"2923":{},"2924":{},"2925":{},"2926":{},"2927":{},"2928":{},"2929":{},"2930":{},"2931":{},"2932":{},"2933":{},"2934":{},"2935":{},"2936":{},"2937":{},"2938":{},"2939":{}}}],["commands/burns/index\".burns.parseroptions",{"_index":1112,"name":{},"parent":{"2957":{}}}],["commands/liquidityposition/index",{"_index":1115,"name":{"2977":{}},"parent":{"2978":{},"3034":{}}}],["commands/liquidityposition/index\".liquidityposition",{"_index":1116,"name":{},"parent":{"2979":{},"2998":{},"2999":{},"3000":{},"3001":{},"3002":{},"3003":{},"3004":{},"3005":{},"3006":{},"3007":{},"3008":{},"3009":{},"3010":{},"3011":{},"3012":{},"3013":{},"3014":{},"3016":{},"3017":{},"3018":{},"3020":{},"3021":{},"3022":{},"3023":{},"3024":{},"3025":{},"3026":{},"3027":{},"3028":{},"3029":{},"3030":{},"3031":{},"3032":{},"3033":{}}}],["commands/liquidityposition/index\".liquidityposition.debug",{"_index":1119,"name":{},"parent":{"3019":{}}}],["commands/liquidityposition/index\".liquidityposition.flags",{"_index":1117,"name":{},"parent":{"2980":{},"2981":{},"2982":{},"2983":{},"2984":{},"2985":{},"2986":{},"2987":{},"2988":{},"2989":{},"2990":{},"2991":{},"2992":{},"2993":{},"2994":{},"2995":{},"2996":{},"2997":{}}}],["commands/liquidityposition/index\".liquidityposition.parseroptions",{"_index":1118,"name":{},"parent":{"3015":{}}}],["commands/liquiditypositions/index",{"_index":1133,"name":{"3155":{}},"parent":{"3156":{},"3216":{}}}],["commands/liquiditypositions/index\".liquiditypositions",{"_index":1134,"name":{},"parent":{"3157":{},"3180":{},"3181":{},"3182":{},"3183":{},"3184":{},"3185":{},"3186":{},"3187":{},"3188":{},"3189":{},"3190":{},"3191":{},"3192":{},"3193":{},"3194":{},"3195":{},"3196":{},"3198":{},"3199":{},"3200":{},"3202":{},"3203":{},"3204":{},"3205":{},"3206":{},"3207":{},"3208":{},"3209":{},"3210":{},"3211":{},"3212":{},"3213":{},"3214":{},"3215":{}}}],["commands/liquiditypositions/index\".liquiditypositions.debug",{"_index":1137,"name":{},"parent":{"3201":{}}}],["commands/liquiditypositions/index\".liquiditypositions.flags",{"_index":1135,"name":{},"parent":{"3158":{},"3159":{},"3160":{},"3161":{},"3162":{},"3163":{},"3164":{},"3165":{},"3166":{},"3167":{},"3168":{},"3169":{},"3170":{},"3171":{},"3172":{},"3173":{},"3174":{},"3175":{},"3176":{},"3177":{},"3178":{},"3179":{}}}],["commands/liquiditypositions/index\".liquiditypositions.parseroptions",{"_index":1136,"name":{},"parent":{"3197":{}}}],["commands/liquiditypositionsnapshot/index",{"_index":1121,"name":{"3035":{}},"parent":{"3036":{},"3092":{}}}],["commands/liquiditypositionsnapshot/index\".liquiditypositionsnapshot",{"_index":1122,"name":{},"parent":{"3037":{},"3056":{},"3057":{},"3058":{},"3059":{},"3060":{},"3061":{},"3062":{},"3063":{},"3064":{},"3065":{},"3066":{},"3067":{},"3068":{},"3069":{},"3070":{},"3071":{},"3072":{},"3074":{},"3075":{},"3076":{},"3078":{},"3079":{},"3080":{},"3081":{},"3082":{},"3083":{},"3084":{},"3085":{},"3086":{},"3087":{},"3088":{},"3089":{},"3090":{},"3091":{}}}],["commands/liquiditypositionsnapshot/index\".liquiditypositionsnapshot.debug",{"_index":1125,"name":{},"parent":{"3077":{}}}],["commands/liquiditypositionsnapshot/index\".liquiditypositionsnapshot.flags",{"_index":1123,"name":{},"parent":{"3038":{},"3039":{},"3040":{},"3041":{},"3042":{},"3043":{},"3044":{},"3045":{},"3046":{},"3047":{},"3048":{},"3049":{},"3050":{},"3051":{},"3052":{},"3053":{},"3054":{},"3055":{}}}],["commands/liquiditypositionsnapshot/index\".liquiditypositionsnapshot.parseroptions",{"_index":1124,"name":{},"parent":{"3073":{}}}],["commands/liquiditypositionsnapshots/index",{"_index":1127,"name":{"3093":{}},"parent":{"3094":{},"3154":{}}}],["commands/liquiditypositionsnapshots/index\".liquiditypositionsnapshots",{"_index":1128,"name":{},"parent":{"3095":{},"3118":{},"3119":{},"3120":{},"3121":{},"3122":{},"3123":{},"3124":{},"3125":{},"3126":{},"3127":{},"3128":{},"3129":{},"3130":{},"3131":{},"3132":{},"3133":{},"3134":{},"3136":{},"3137":{},"3138":{},"3140":{},"3141":{},"3142":{},"3143":{},"3144":{},"3145":{},"3146":{},"3147":{},"3148":{},"3149":{},"3150":{},"3151":{},"3152":{},"3153":{}}}],["commands/liquiditypositionsnapshots/index\".liquiditypositionsnapshots.debug",{"_index":1131,"name":{},"parent":{"3139":{}}}],["commands/liquiditypositionsnapshots/index\".liquiditypositionsnapshots.flags",{"_index":1129,"name":{},"parent":{"3096":{},"3097":{},"3098":{},"3099":{},"3100":{},"3101":{},"3102":{},"3103":{},"3104":{},"3105":{},"3106":{},"3107":{},"3108":{},"3109":{},"3110":{},"3111":{},"3112":{},"3113":{},"3114":{},"3115":{},"3116":{},"3117":{}}}],["commands/liquiditypositionsnapshots/index\".liquiditypositionsnapshots.parseroptions",{"_index":1130,"name":{},"parent":{"3135":{}}}],["commands/mint/index",{"_index":1139,"name":{"3217":{}},"parent":{"3218":{},"3284":{}}}],["commands/mint/index\".mint",{"_index":1140,"name":{},"parent":{"3219":{},"3248":{},"3249":{},"3250":{},"3251":{},"3252":{},"3253":{},"3254":{},"3255":{},"3256":{},"3257":{},"3258":{},"3259":{},"3260":{},"3261":{},"3262":{},"3263":{},"3264":{},"3266":{},"3267":{},"3268":{},"3270":{},"3271":{},"3272":{},"3273":{},"3274":{},"3275":{},"3276":{},"3277":{},"3278":{},"3279":{},"3280":{},"3281":{},"3282":{},"3283":{}}}],["commands/mint/index\".mint.debug",{"_index":1143,"name":{},"parent":{"3269":{}}}],["commands/mint/index\".mint.flags",{"_index":1141,"name":{},"parent":{"3220":{},"3221":{},"3222":{},"3223":{},"3224":{},"3225":{},"3226":{},"3227":{},"3228":{},"3229":{},"3230":{},"3231":{},"3232":{},"3233":{},"3234":{},"3235":{},"3236":{},"3237":{},"3238":{},"3239":{},"3240":{},"3241":{},"3242":{},"3243":{},"3244":{},"3245":{},"3246":{},"3247":{}}}],["commands/mint/index\".mint.parseroptions",{"_index":1142,"name":{},"parent":{"3265":{}}}],["commands/mints/index",{"_index":1145,"name":{"3285":{}},"parent":{"3286":{},"3356":{}}}],["commands/mints/index\".mints",{"_index":1146,"name":{},"parent":{"3287":{},"3320":{},"3321":{},"3322":{},"3323":{},"3324":{},"3325":{},"3326":{},"3327":{},"3328":{},"3329":{},"3330":{},"3331":{},"3332":{},"3333":{},"3334":{},"3335":{},"3336":{},"3338":{},"3339":{},"3340":{},"3342":{},"3343":{},"3344":{},"3345":{},"3346":{},"3347":{},"3348":{},"3349":{},"3350":{},"3351":{},"3352":{},"3353":{},"3354":{},"3355":{}}}],["commands/mints/index\".mints.debug",{"_index":1149,"name":{},"parent":{"3341":{}}}],["commands/mints/index\".mints.flags",{"_index":1147,"name":{},"parent":{"3288":{},"3289":{},"3290":{},"3291":{},"3292":{},"3293":{},"3294":{},"3295":{},"3296":{},"3297":{},"3298":{},"3299":{},"3300":{},"3301":{},"3302":{},"3303":{},"3304":{},"3305":{},"3306":{},"3307":{},"3308":{},"3309":{},"3310":{},"3311":{},"3312":{},"3313":{},"3314":{},"3315":{},"3316":{},"3317":{},"3318":{},"3319":{}}}],["commands/mints/index\".mints.parseroptions",{"_index":1148,"name":{},"parent":{"3337":{}}}],["commands/pair/index",{"_index":1151,"name":{"3357":{}},"parent":{"3358":{},"3409":{}}}],["commands/pair/index\".pair",{"_index":1152,"name":{},"parent":{"3359":{},"3373":{},"3374":{},"3375":{},"3376":{},"3377":{},"3378":{},"3379":{},"3380":{},"3381":{},"3382":{},"3383":{},"3384":{},"3385":{},"3386":{},"3387":{},"3388":{},"3389":{},"3391":{},"3392":{},"3393":{},"3395":{},"3396":{},"3397":{},"3398":{},"3399":{},"3400":{},"3401":{},"3402":{},"3403":{},"3404":{},"3405":{},"3406":{},"3407":{},"3408":{}}}],["commands/pair/index\".pair.debug",{"_index":1155,"name":{},"parent":{"3394":{}}}],["commands/pair/index\".pair.flags",{"_index":1153,"name":{},"parent":{"3360":{},"3361":{},"3362":{},"3363":{},"3364":{},"3365":{},"3366":{},"3367":{},"3368":{},"3369":{},"3370":{},"3371":{},"3372":{}}}],["commands/pair/index\".pair.parseroptions",{"_index":1154,"name":{},"parent":{"3390":{}}}],["commands/pairdaydata/index",{"_index":1157,"name":{"3410":{}},"parent":{"3411":{},"3462":{}}}],["commands/pairdaydata/index\".pairdaydata",{"_index":1158,"name":{},"parent":{"3412":{},"3426":{},"3427":{},"3428":{},"3429":{},"3430":{},"3431":{},"3432":{},"3433":{},"3434":{},"3435":{},"3436":{},"3437":{},"3438":{},"3439":{},"3440":{},"3441":{},"3442":{},"3444":{},"3445":{},"3446":{},"3448":{},"3449":{},"3450":{},"3451":{},"3452":{},"3453":{},"3454":{},"3455":{},"3456":{},"3457":{},"3458":{},"3459":{},"3460":{},"3461":{}}}],["commands/pairdaydata/index\".pairdaydata.debug",{"_index":1161,"name":{},"parent":{"3447":{}}}],["commands/pairdaydata/index\".pairdaydata.flags",{"_index":1159,"name":{},"parent":{"3413":{},"3414":{},"3415":{},"3416":{},"3417":{},"3418":{},"3419":{},"3420":{},"3421":{},"3422":{},"3423":{},"3424":{},"3425":{}}}],["commands/pairdaydata/index\".pairdaydata.parseroptions",{"_index":1160,"name":{},"parent":{"3443":{}}}],["commands/pairdaydatas/index",{"_index":1163,"name":{"3463":{}},"parent":{"3464":{},"3519":{}}}],["commands/pairdaydatas/index\".pairdaydatas",{"_index":1164,"name":{},"parent":{"3465":{},"3483":{},"3484":{},"3485":{},"3486":{},"3487":{},"3488":{},"3489":{},"3490":{},"3491":{},"3492":{},"3493":{},"3494":{},"3495":{},"3496":{},"3497":{},"3498":{},"3499":{},"3501":{},"3502":{},"3503":{},"3505":{},"3506":{},"3507":{},"3508":{},"3509":{},"3510":{},"3511":{},"3512":{},"3513":{},"3514":{},"3515":{},"3516":{},"3517":{},"3518":{}}}],["commands/pairdaydatas/index\".pairdaydatas.debug",{"_index":1167,"name":{},"parent":{"3504":{}}}],["commands/pairdaydatas/index\".pairdaydatas.flags",{"_index":1165,"name":{},"parent":{"3466":{},"3467":{},"3468":{},"3469":{},"3470":{},"3471":{},"3472":{},"3473":{},"3474":{},"3475":{},"3476":{},"3477":{},"3478":{},"3479":{},"3480":{},"3481":{},"3482":{}}}],["commands/pairdaydatas/index\".pairdaydatas.parseroptions",{"_index":1166,"name":{},"parent":{"3500":{}}}],["commands/pairhourdata/index",{"_index":1169,"name":{"3520":{}},"parent":{"3521":{},"3572":{}}}],["commands/pairhourdata/index\".pairhourdata",{"_index":1170,"name":{},"parent":{"3522":{},"3536":{},"3537":{},"3538":{},"3539":{},"3540":{},"3541":{},"3542":{},"3543":{},"3544":{},"3545":{},"3546":{},"3547":{},"3548":{},"3549":{},"3550":{},"3551":{},"3552":{},"3554":{},"3555":{},"3556":{},"3558":{},"3559":{},"3560":{},"3561":{},"3562":{},"3563":{},"3564":{},"3565":{},"3566":{},"3567":{},"3568":{},"3569":{},"3570":{},"3571":{}}}],["commands/pairhourdata/index\".pairhourdata.debug",{"_index":1173,"name":{},"parent":{"3557":{}}}],["commands/pairhourdata/index\".pairhourdata.flags",{"_index":1171,"name":{},"parent":{"3523":{},"3524":{},"3525":{},"3526":{},"3527":{},"3528":{},"3529":{},"3530":{},"3531":{},"3532":{},"3533":{},"3534":{},"3535":{}}}],["commands/pairhourdata/index\".pairhourdata.parseroptions",{"_index":1172,"name":{},"parent":{"3553":{}}}],["commands/pairhourdatas/index",{"_index":1175,"name":{"3573":{}},"parent":{"3574":{},"3629":{}}}],["commands/pairhourdatas/index\".pairhourdatas",{"_index":1176,"name":{},"parent":{"3575":{},"3593":{},"3594":{},"3595":{},"3596":{},"3597":{},"3598":{},"3599":{},"3600":{},"3601":{},"3602":{},"3603":{},"3604":{},"3605":{},"3606":{},"3607":{},"3608":{},"3609":{},"3611":{},"3612":{},"3613":{},"3615":{},"3616":{},"3617":{},"3618":{},"3619":{},"3620":{},"3621":{},"3622":{},"3623":{},"3624":{},"3625":{},"3626":{},"3627":{},"3628":{}}}],["commands/pairhourdatas/index\".pairhourdatas.debug",{"_index":1179,"name":{},"parent":{"3614":{}}}],["commands/pairhourdatas/index\".pairhourdatas.flags",{"_index":1177,"name":{},"parent":{"3576":{},"3577":{},"3578":{},"3579":{},"3580":{},"3581":{},"3582":{},"3583":{},"3584":{},"3585":{},"3586":{},"3587":{},"3588":{},"3589":{},"3590":{},"3591":{},"3592":{}}}],["commands/pairhourdatas/index\".pairhourdatas.parseroptions",{"_index":1178,"name":{},"parent":{"3610":{}}}],["commands/pairs/index",{"_index":1181,"name":{"3630":{}},"parent":{"3631":{},"3686":{}}}],["commands/pairs/index\".pairs",{"_index":1182,"name":{},"parent":{"3632":{},"3650":{},"3651":{},"3652":{},"3653":{},"3654":{},"3655":{},"3656":{},"3657":{},"3658":{},"3659":{},"3660":{},"3661":{},"3662":{},"3663":{},"3664":{},"3665":{},"3666":{},"3668":{},"3669":{},"3670":{},"3672":{},"3673":{},"3674":{},"3675":{},"3676":{},"3677":{},"3678":{},"3679":{},"3680":{},"3681":{},"3682":{},"3683":{},"3684":{},"3685":{}}}],["commands/pairs/index\".pairs.debug",{"_index":1185,"name":{},"parent":{"3671":{}}}],["commands/pairs/index\".pairs.flags",{"_index":1183,"name":{},"parent":{"3633":{},"3634":{},"3635":{},"3636":{},"3637":{},"3638":{},"3639":{},"3640":{},"3641":{},"3642":{},"3643":{},"3644":{},"3645":{},"3646":{},"3647":{},"3648":{},"3649":{}}}],["commands/pairs/index\".pairs.parseroptions",{"_index":1184,"name":{},"parent":{"3667":{}}}],["commands/sushiswapdaydata/index",{"_index":1187,"name":{"3687":{}},"parent":{"3688":{},"3754":{}}}],["commands/sushiswapdaydata/index\".sushiswapdaydata",{"_index":1189,"name":{},"parent":{"3689":{},"3718":{},"3719":{},"3720":{},"3721":{},"3722":{},"3723":{},"3724":{},"3725":{},"3726":{},"3727":{},"3728":{},"3729":{},"3730":{},"3731":{},"3732":{},"3733":{},"3734":{},"3736":{},"3737":{},"3738":{},"3740":{},"3741":{},"3742":{},"3743":{},"3744":{},"3745":{},"3746":{},"3747":{},"3748":{},"3749":{},"3750":{},"3751":{},"3752":{},"3753":{}}}],["commands/sushiswapdaydata/index\".sushiswapdaydata.debug",{"_index":1192,"name":{},"parent":{"3739":{}}}],["commands/sushiswapdaydata/index\".sushiswapdaydata.flags",{"_index":1190,"name":{},"parent":{"3690":{},"3691":{},"3692":{},"3693":{},"3694":{},"3695":{},"3696":{},"3697":{},"3698":{},"3699":{},"3700":{},"3701":{},"3702":{},"3703":{},"3704":{},"3705":{},"3706":{},"3707":{},"3708":{},"3709":{},"3710":{},"3711":{},"3712":{},"3713":{},"3714":{},"3715":{},"3716":{},"3717":{}}}],["commands/sushiswapdaydata/index\".sushiswapdaydata.parseroptions",{"_index":1191,"name":{},"parent":{"3735":{}}}],["commands/sushiswapdaydatas/index",{"_index":1194,"name":{"3755":{}},"parent":{"3756":{},"3826":{}}}],["commands/sushiswapdaydatas/index\".sushiswapdaydatas",{"_index":1196,"name":{},"parent":{"3757":{},"3790":{},"3791":{},"3792":{},"3793":{},"3794":{},"3795":{},"3796":{},"3797":{},"3798":{},"3799":{},"3800":{},"3801":{},"3802":{},"3803":{},"3804":{},"3805":{},"3806":{},"3808":{},"3809":{},"3810":{},"3812":{},"3813":{},"3814":{},"3815":{},"3816":{},"3817":{},"3818":{},"3819":{},"3820":{},"3821":{},"3822":{},"3823":{},"3824":{},"3825":{}}}],["commands/sushiswapdaydatas/index\".sushiswapdaydatas.debug",{"_index":1199,"name":{},"parent":{"3811":{}}}],["commands/sushiswapdaydatas/index\".sushiswapdaydatas.flags",{"_index":1197,"name":{},"parent":{"3758":{},"3759":{},"3760":{},"3761":{},"3762":{},"3763":{},"3764":{},"3765":{},"3766":{},"3767":{},"3768":{},"3769":{},"3770":{},"3771":{},"3772":{},"3773":{},"3774":{},"3775":{},"3776":{},"3777":{},"3778":{},"3779":{},"3780":{},"3781":{},"3782":{},"3783":{},"3784":{},"3785":{},"3786":{},"3787":{},"3788":{},"3789":{}}}],["commands/sushiswapdaydatas/index\".sushiswapdaydatas.parseroptions",{"_index":1198,"name":{},"parent":{"3807":{}}}],["commands/sushiswapfactories/index",{"_index":1201,"name":{"3827":{}},"parent":{"3828":{},"3898":{}}}],["commands/sushiswapfactories/index\".sushiswapfactories",{"_index":1203,"name":{},"parent":{"3829":{},"3862":{},"3863":{},"3864":{},"3865":{},"3866":{},"3867":{},"3868":{},"3869":{},"3870":{},"3871":{},"3872":{},"3873":{},"3874":{},"3875":{},"3876":{},"3877":{},"3878":{},"3880":{},"3881":{},"3882":{},"3884":{},"3885":{},"3886":{},"3887":{},"3888":{},"3889":{},"3890":{},"3891":{},"3892":{},"3893":{},"3894":{},"3895":{},"3896":{},"3897":{}}}],["commands/sushiswapfactories/index\".sushiswapfactories.debug",{"_index":1206,"name":{},"parent":{"3883":{}}}],["commands/sushiswapfactories/index\".sushiswapfactories.flags",{"_index":1204,"name":{},"parent":{"3830":{},"3831":{},"3832":{},"3833":{},"3834":{},"3835":{},"3836":{},"3837":{},"3838":{},"3839":{},"3840":{},"3841":{},"3842":{},"3843":{},"3844":{},"3845":{},"3846":{},"3847":{},"3848":{},"3849":{},"3850":{},"3851":{},"3852":{},"3853":{},"3854":{},"3855":{},"3856":{},"3857":{},"3858":{},"3859":{},"3860":{},"3861":{}}}],["commands/sushiswapfactories/index\".sushiswapfactories.parseroptions",{"_index":1205,"name":{},"parent":{"3879":{}}}],["commands/sushiswapfactory/index",{"_index":1208,"name":{"3899":{}},"parent":{"3900":{},"3966":{}}}],["commands/sushiswapfactory/index\".sushiswapfactory",{"_index":1210,"name":{},"parent":{"3901":{},"3930":{},"3931":{},"3932":{},"3933":{},"3934":{},"3935":{},"3936":{},"3937":{},"3938":{},"3939":{},"3940":{},"3941":{},"3942":{},"3943":{},"3944":{},"3945":{},"3946":{},"3948":{},"3949":{},"3950":{},"3952":{},"3953":{},"3954":{},"3955":{},"3956":{},"3957":{},"3958":{},"3959":{},"3960":{},"3961":{},"3962":{},"3963":{},"3964":{},"3965":{}}}],["commands/sushiswapfactory/index\".sushiswapfactory.debug",{"_index":1213,"name":{},"parent":{"3951":{}}}],["commands/sushiswapfactory/index\".sushiswapfactory.flags",{"_index":1211,"name":{},"parent":{"3902":{},"3903":{},"3904":{},"3905":{},"3906":{},"3907":{},"3908":{},"3909":{},"3910":{},"3911":{},"3912":{},"3913":{},"3914":{},"3915":{},"3916":{},"3917":{},"3918":{},"3919":{},"3920":{},"3921":{},"3922":{},"3923":{},"3924":{},"3925":{},"3926":{},"3927":{},"3928":{},"3929":{}}}],["commands/sushiswapfactory/index\".sushiswapfactory.parseroptions",{"_index":1212,"name":{},"parent":{"3947":{}}}],["commands/swap/index",{"_index":1215,"name":{"3967":{}},"parent":{"3968":{},"4034":{}}}],["commands/swap/index\".swap",{"_index":1216,"name":{},"parent":{"3969":{},"3998":{},"3999":{},"4000":{},"4001":{},"4002":{},"4003":{},"4004":{},"4005":{},"4006":{},"4007":{},"4008":{},"4009":{},"4010":{},"4011":{},"4012":{},"4013":{},"4014":{},"4016":{},"4017":{},"4018":{},"4020":{},"4021":{},"4022":{},"4023":{},"4024":{},"4025":{},"4026":{},"4027":{},"4028":{},"4029":{},"4030":{},"4031":{},"4032":{},"4033":{}}}],["commands/swap/index\".swap.debug",{"_index":1219,"name":{},"parent":{"4019":{}}}],["commands/swap/index\".swap.flags",{"_index":1217,"name":{},"parent":{"3970":{},"3971":{},"3972":{},"3973":{},"3974":{},"3975":{},"3976":{},"3977":{},"3978":{},"3979":{},"3980":{},"3981":{},"3982":{},"3983":{},"3984":{},"3985":{},"3986":{},"3987":{},"3988":{},"3989":{},"3990":{},"3991":{},"3992":{},"3993":{},"3994":{},"3995":{},"3996":{},"3997":{}}}],["commands/swap/index\".swap.parseroptions",{"_index":1218,"name":{},"parent":{"4015":{}}}],["commands/swaps/index",{"_index":1221,"name":{"4035":{}},"parent":{"4036":{},"4106":{}}}],["commands/swaps/index\".swaps",{"_index":1222,"name":{},"parent":{"4037":{},"4070":{},"4071":{},"4072":{},"4073":{},"4074":{},"4075":{},"4076":{},"4077":{},"4078":{},"4079":{},"4080":{},"4081":{},"4082":{},"4083":{},"4084":{},"4085":{},"4086":{},"4088":{},"4089":{},"4090":{},"4092":{},"4093":{},"4094":{},"4095":{},"4096":{},"4097":{},"4098":{},"4099":{},"4100":{},"4101":{},"4102":{},"4103":{},"4104":{},"4105":{}}}],["commands/swaps/index\".swaps.debug",{"_index":1225,"name":{},"parent":{"4091":{}}}],["commands/swaps/index\".swaps.flags",{"_index":1223,"name":{},"parent":{"4038":{},"4039":{},"4040":{},"4041":{},"4042":{},"4043":{},"4044":{},"4045":{},"4046":{},"4047":{},"4048":{},"4049":{},"4050":{},"4051":{},"4052":{},"4053":{},"4054":{},"4055":{},"4056":{},"4057":{},"4058":{},"4059":{},"4060":{},"4061":{},"4062":{},"4063":{},"4064":{},"4065":{},"4066":{},"4067":{},"4068":{},"4069":{}}}],["commands/swaps/index\".swaps.parseroptions",{"_index":1224,"name":{},"parent":{"4087":{}}}],["commands/token/index",{"_index":1227,"name":{"4107":{}},"parent":{"4108":{},"4164":{}}}],["commands/token/index\".token",{"_index":1228,"name":{},"parent":{"4109":{},"4128":{},"4129":{},"4130":{},"4131":{},"4132":{},"4133":{},"4134":{},"4135":{},"4136":{},"4137":{},"4138":{},"4139":{},"4140":{},"4141":{},"4142":{},"4143":{},"4144":{},"4146":{},"4147":{},"4148":{},"4150":{},"4151":{},"4152":{},"4153":{},"4154":{},"4155":{},"4156":{},"4157":{},"4158":{},"4159":{},"4160":{},"4161":{},"4162":{},"4163":{}}}],["commands/token/index\".token.debug",{"_index":1231,"name":{},"parent":{"4149":{}}}],["commands/token/index\".token.flags",{"_index":1229,"name":{},"parent":{"4110":{},"4111":{},"4112":{},"4113":{},"4114":{},"4115":{},"4116":{},"4117":{},"4118":{},"4119":{},"4120":{},"4121":{},"4122":{},"4123":{},"4124":{},"4125":{},"4126":{},"4127":{}}}],["commands/token/index\".token.parseroptions",{"_index":1230,"name":{},"parent":{"4145":{}}}],["commands/tokendaydata/index",{"_index":1233,"name":{"4165":{}},"parent":{"4166":{},"4227":{}}}],["commands/tokendaydata/index\".tokendaydata",{"_index":1234,"name":{},"parent":{"4167":{},"4191":{},"4192":{},"4193":{},"4194":{},"4195":{},"4196":{},"4197":{},"4198":{},"4199":{},"4200":{},"4201":{},"4202":{},"4203":{},"4204":{},"4205":{},"4206":{},"4207":{},"4209":{},"4210":{},"4211":{},"4213":{},"4214":{},"4215":{},"4216":{},"4217":{},"4218":{},"4219":{},"4220":{},"4221":{},"4222":{},"4223":{},"4224":{},"4225":{},"4226":{}}}],["commands/tokendaydata/index\".tokendaydata.debug",{"_index":1237,"name":{},"parent":{"4212":{}}}],["commands/tokendaydata/index\".tokendaydata.flags",{"_index":1235,"name":{},"parent":{"4168":{},"4169":{},"4170":{},"4171":{},"4172":{},"4173":{},"4174":{},"4175":{},"4176":{},"4177":{},"4178":{},"4179":{},"4180":{},"4181":{},"4182":{},"4183":{},"4184":{},"4185":{},"4186":{},"4187":{},"4188":{},"4189":{},"4190":{}}}],["commands/tokendaydata/index\".tokendaydata.parseroptions",{"_index":1236,"name":{},"parent":{"4208":{}}}],["commands/tokendaydatas/index",{"_index":1239,"name":{"4228":{}},"parent":{"4229":{},"4294":{}}}],["commands/tokendaydatas/index\".tokendaydatas",{"_index":1240,"name":{},"parent":{"4230":{},"4258":{},"4259":{},"4260":{},"4261":{},"4262":{},"4263":{},"4264":{},"4265":{},"4266":{},"4267":{},"4268":{},"4269":{},"4270":{},"4271":{},"4272":{},"4273":{},"4274":{},"4276":{},"4277":{},"4278":{},"4280":{},"4281":{},"4282":{},"4283":{},"4284":{},"4285":{},"4286":{},"4287":{},"4288":{},"4289":{},"4290":{},"4291":{},"4292":{},"4293":{}}}],["commands/tokendaydatas/index\".tokendaydatas.debug",{"_index":1243,"name":{},"parent":{"4279":{}}}],["commands/tokendaydatas/index\".tokendaydatas.flags",{"_index":1241,"name":{},"parent":{"4231":{},"4232":{},"4233":{},"4234":{},"4235":{},"4236":{},"4237":{},"4238":{},"4239":{},"4240":{},"4241":{},"4242":{},"4243":{},"4244":{},"4245":{},"4246":{},"4247":{},"4248":{},"4249":{},"4250":{},"4251":{},"4252":{},"4253":{},"4254":{},"4255":{},"4256":{},"4257":{}}}],["commands/tokendaydatas/index\".tokendaydatas.parseroptions",{"_index":1242,"name":{},"parent":{"4275":{}}}],["commands/tokens/index",{"_index":1245,"name":{"4295":{}},"parent":{"4296":{},"4356":{}}}],["commands/tokens/index\".tokens",{"_index":1246,"name":{},"parent":{"4297":{},"4320":{},"4321":{},"4322":{},"4323":{},"4324":{},"4325":{},"4326":{},"4327":{},"4328":{},"4329":{},"4330":{},"4331":{},"4332":{},"4333":{},"4334":{},"4335":{},"4336":{},"4338":{},"4339":{},"4340":{},"4342":{},"4343":{},"4344":{},"4345":{},"4346":{},"4347":{},"4348":{},"4349":{},"4350":{},"4351":{},"4352":{},"4353":{},"4354":{},"4355":{}}}],["commands/tokens/index\".tokens.debug",{"_index":1249,"name":{},"parent":{"4341":{}}}],["commands/tokens/index\".tokens.flags",{"_index":1247,"name":{},"parent":{"4298":{},"4299":{},"4300":{},"4301":{},"4302":{},"4303":{},"4304":{},"4305":{},"4306":{},"4307":{},"4308":{},"4309":{},"4310":{},"4311":{},"4312":{},"4313":{},"4314":{},"4315":{},"4316":{},"4317":{},"4318":{},"4319":{}}}],["commands/tokens/index\".tokens.parseroptions",{"_index":1248,"name":{},"parent":{"4337":{}}}],["commands/transaction/index",{"_index":1251,"name":{"4357":{}},"parent":{"4358":{},"4424":{}}}],["commands/transaction/index\".transaction",{"_index":1252,"name":{},"parent":{"4359":{},"4388":{},"4389":{},"4390":{},"4391":{},"4392":{},"4393":{},"4394":{},"4395":{},"4396":{},"4397":{},"4398":{},"4399":{},"4400":{},"4401":{},"4402":{},"4403":{},"4404":{},"4406":{},"4407":{},"4408":{},"4410":{},"4411":{},"4412":{},"4413":{},"4414":{},"4415":{},"4416":{},"4417":{},"4418":{},"4419":{},"4420":{},"4421":{},"4422":{},"4423":{}}}],["commands/transaction/index\".transaction.debug",{"_index":1255,"name":{},"parent":{"4409":{}}}],["commands/transaction/index\".transaction.flags",{"_index":1253,"name":{},"parent":{"4360":{},"4361":{},"4362":{},"4363":{},"4364":{},"4365":{},"4366":{},"4367":{},"4368":{},"4369":{},"4370":{},"4371":{},"4372":{},"4373":{},"4374":{},"4375":{},"4376":{},"4377":{},"4378":{},"4379":{},"4380":{},"4381":{},"4382":{},"4383":{},"4384":{},"4385":{},"4386":{},"4387":{}}}],["commands/transaction/index\".transaction.parseroptions",{"_index":1254,"name":{},"parent":{"4405":{}}}],["commands/transactions/index",{"_index":1257,"name":{"4425":{}},"parent":{"4426":{},"4511":{}}}],["commands/transactions/index\".transactions",{"_index":1258,"name":{},"parent":{"4427":{},"4475":{},"4476":{},"4477":{},"4478":{},"4479":{},"4480":{},"4481":{},"4482":{},"4483":{},"4484":{},"4485":{},"4486":{},"4487":{},"4488":{},"4489":{},"4490":{},"4491":{},"4493":{},"4494":{},"4495":{},"4497":{},"4498":{},"4499":{},"4500":{},"4501":{},"4502":{},"4503":{},"4504":{},"4505":{},"4506":{},"4507":{},"4508":{},"4509":{},"4510":{}}}],["commands/transactions/index\".transactions.debug",{"_index":1276,"name":{},"parent":{"4496":{}}}],["commands/transactions/index\".transactions.flags",{"_index":1259,"name":{},"parent":{"4428":{},"4429":{},"4430":{},"4431":{},"4432":{},"4433":{},"4434":{},"4435":{},"4436":{},"4437":{},"4438":{},"4439":{},"4440":{},"4441":{},"4442":{},"4443":{},"4444":{},"4445":{},"4446":{},"4447":{},"4448":{},"4449":{},"4450":{},"4451":{},"4452":{},"4453":{},"4454":{},"4455":{},"4456":{},"4457":{},"4458":{},"4459":{},"4460":{},"4461":{},"4462":{},"4463":{},"4464":{},"4465":{},"4466":{},"4467":{},"4468":{},"4469":{},"4470":{},"4471":{},"4472":{},"4473":{},"4474":{}}}],["commands/transactions/index\".transactions.parseroptions",{"_index":1275,"name":{},"parent":{"4492":{}}}],["commands/user/index",{"_index":1278,"name":{"4512":{}},"parent":{"4513":{},"4569":{}}}],["commands/user/index\".user",{"_index":1279,"name":{},"parent":{"4514":{},"4533":{},"4534":{},"4535":{},"4536":{},"4537":{},"4538":{},"4539":{},"4540":{},"4541":{},"4542":{},"4543":{},"4544":{},"4545":{},"4546":{},"4547":{},"4548":{},"4549":{},"4551":{},"4552":{},"4553":{},"4555":{},"4556":{},"4557":{},"4558":{},"4559":{},"4560":{},"4561":{},"4562":{},"4563":{},"4564":{},"4565":{},"4566":{},"4567":{},"4568":{}}}],["commands/user/index\".user.debug",{"_index":1282,"name":{},"parent":{"4554":{}}}],["commands/user/index\".user.flags",{"_index":1280,"name":{},"parent":{"4515":{},"4516":{},"4517":{},"4518":{},"4519":{},"4520":{},"4521":{},"4522":{},"4523":{},"4524":{},"4525":{},"4526":{},"4527":{},"4528":{},"4529":{},"4530":{},"4531":{},"4532":{}}}],["commands/user/index\".user.parseroptions",{"_index":1281,"name":{},"parent":{"4550":{}}}],["commands/users/index",{"_index":1284,"name":{"4570":{}},"parent":{"4571":{},"4636":{}}}],["commands/users/index\".users",{"_index":1285,"name":{},"parent":{"4572":{},"4600":{},"4601":{},"4602":{},"4603":{},"4604":{},"4605":{},"4606":{},"4607":{},"4608":{},"4609":{},"4610":{},"4611":{},"4612":{},"4613":{},"4614":{},"4615":{},"4616":{},"4618":{},"4619":{},"4620":{},"4622":{},"4623":{},"4624":{},"4625":{},"4626":{},"4627":{},"4628":{},"4629":{},"4630":{},"4631":{},"4632":{},"4633":{},"4634":{},"4635":{}}}],["commands/users/index\".users.debug",{"_index":1288,"name":{},"parent":{"4621":{}}}],["commands/users/index\".users.flags",{"_index":1286,"name":{},"parent":{"4573":{},"4574":{},"4575":{},"4576":{},"4577":{},"4578":{},"4579":{},"4580":{},"4581":{},"4582":{},"4583":{},"4584":{},"4585":{},"4586":{},"4587":{},"4588":{},"4589":{},"4590":{},"4591":{},"4592":{},"4593":{},"4594":{},"4595":{},"4596":{},"4597":{},"4598":{},"4599":{}}}],["commands/users/index\".users.parseroptions",{"_index":1287,"name":{},"parent":{"4617":{}}}],["complete",{"_index":26,"name":{"25":{},"281":{},"382":{}},"parent":{}}],["complete_in",{"_index":252,"name":{"384":{}},"parent":{}}],["complete_not",{"_index":251,"name":{"383":{}},"parent":{}}],["complete_not_in",{"_index":253,"name":{"385":{}},"parent":{}}],["config",{"_index":1036,"name":{"2712":{},"2755":{},"2802":{},"2870":{},"2942":{},"3000":{},"3058":{},"3120":{},"3182":{},"3250":{},"3322":{},"3375":{},"3428":{},"3485":{},"3538":{},"3595":{},"3652":{},"3720":{},"3792":{},"3864":{},"3932":{},"4000":{},"4072":{},"4130":{},"4193":{},"4260":{},"4322":{},"4390":{},"4477":{},"4535":{},"4602":{}},"parent":{}}],["constructor",{"_index":1052,"name":{"2732":{},"2775":{},"2822":{},"2890":{},"2962":{},"3020":{},"3078":{},"3140":{},"3202":{},"3270":{},"3342":{},"3395":{},"3448":{},"3505":{},"3558":{},"3615":{},"3672":{},"3740":{},"3812":{},"3884":{},"3952":{},"4020":{},"4092":{},"4150":{},"4213":{},"4280":{},"4342":{},"4410":{},"4497":{},"4555":{},"4622":{}},"parent":{}}],["createdatblocknumber",{"_index":1312,"name":{"4735":{},"5330":{},"5715":{}},"parent":{}}],["createdatblocknumber_gt",{"_index":1454,"name":{"5717":{}},"parent":{}}],["createdatblocknumber_gte",{"_index":1456,"name":{"5719":{}},"parent":{}}],["createdatblocknumber_in",{"_index":1458,"name":{"5721":{}},"parent":{}}],["createdatblocknumber_lt",{"_index":1455,"name":{"5718":{}},"parent":{}}],["createdatblocknumber_lte",{"_index":1457,"name":{"5720":{}},"parent":{}}],["createdatblocknumber_not",{"_index":1453,"name":{"5716":{}},"parent":{}}],["createdatblocknumber_not_in",{"_index":1459,"name":{"5722":{}},"parent":{}}],["createdattimestamp",{"_index":1311,"name":{"4734":{},"5329":{},"5707":{}},"parent":{}}],["createdattimestamp_gt",{"_index":1447,"name":{"5709":{}},"parent":{}}],["createdattimestamp_gte",{"_index":1449,"name":{"5711":{}},"parent":{}}],["createdattimestamp_in",{"_index":1451,"name":{"5713":{}},"parent":{}}],["createdattimestamp_lt",{"_index":1448,"name":{"5710":{}},"parent":{}}],["createdattimestamp_lte",{"_index":1450,"name":{"5712":{}},"parent":{}}],["createdattimestamp_not",{"_index":1446,"name":{"5708":{}},"parent":{}}],["createdattimestamp_not_in",{"_index":1452,"name":{"5714":{}},"parent":{}}],["ctor",{"_index":1053,"name":{"2733":{},"2776":{},"2823":{},"2891":{},"2963":{},"3021":{},"3079":{},"3141":{},"3203":{},"3271":{},"3343":{},"3396":{},"3449":{},"3506":{},"3559":{},"3616":{},"3673":{},"3741":{},"3813":{},"3885":{},"3953":{},"4021":{},"4093":{},"4151":{},"4214":{},"4281":{},"4343":{},"4411":{},"4498":{},"4556":{},"4623":{}},"parent":{}}],["dailytxns",{"_index":1303,"name":{"4705":{},"4757":{},"5347":{},"5456":{},"6317":{},"6387":{}},"parent":{}}],["dailytxns_gt",{"_index":1399,"name":{"5458":{},"6389":{}},"parent":{}}],["dailytxns_gte",{"_index":1401,"name":{"5460":{},"6391":{}},"parent":{}}],["dailytxns_in",{"_index":1403,"name":{"5462":{},"6393":{}},"parent":{}}],["dailytxns_lt",{"_index":1400,"name":{"5459":{},"6390":{}},"parent":{}}],["dailytxns_lte",{"_index":1402,"name":{"5461":{},"6392":{}},"parent":{}}],["dailytxns_not",{"_index":1398,"name":{"5457":{},"6388":{}},"parent":{}}],["dailytxns_not_in",{"_index":1404,"name":{"5463":{},"6394":{}},"parent":{}}],["dailyvolumeeth",{"_index":1316,"name":{"4755":{},"4787":{},"6315":{},"6371":{},"6618":{},"6653":{}},"parent":{}}],["dailyvolumeeth_gt",{"_index":1620,"name":{"6373":{},"6655":{}},"parent":{}}],["dailyvolumeeth_gte",{"_index":1622,"name":{"6375":{},"6657":{}},"parent":{}}],["dailyvolumeeth_in",{"_index":1624,"name":{"6377":{},"6659":{}},"parent":{}}],["dailyvolumeeth_lt",{"_index":1621,"name":{"6374":{},"6656":{}},"parent":{}}],["dailyvolumeeth_lte",{"_index":1623,"name":{"6376":{},"6658":{}},"parent":{}}],["dailyvolumeeth_not",{"_index":1619,"name":{"6372":{},"6654":{}},"parent":{}}],["dailyvolumeeth_not_in",{"_index":1625,"name":{"6378":{},"6660":{}},"parent":{}}],["dailyvolumetoken",{"_index":1315,"name":{"4754":{},"6314":{},"6363":{}},"parent":{}}],["dailyvolumetoken0",{"_index":1300,"name":{"4702":{},"5344":{},"5432":{}},"parent":{}}],["dailyvolumetoken0_gt",{"_index":1378,"name":{"5434":{}},"parent":{}}],["dailyvolumetoken0_gte",{"_index":1380,"name":{"5436":{}},"parent":{}}],["dailyvolumetoken0_in",{"_index":1382,"name":{"5438":{}},"parent":{}}],["dailyvolumetoken0_lt",{"_index":1379,"name":{"5435":{}},"parent":{}}],["dailyvolumetoken0_lte",{"_index":1381,"name":{"5437":{}},"parent":{}}],["dailyvolumetoken0_not",{"_index":1377,"name":{"5433":{}},"parent":{}}],["dailyvolumetoken0_not_in",{"_index":1383,"name":{"5439":{}},"parent":{}}],["dailyvolumetoken1",{"_index":1301,"name":{"4703":{},"5345":{},"5440":{}},"parent":{}}],["dailyvolumetoken1_gt",{"_index":1385,"name":{"5442":{}},"parent":{}}],["dailyvolumetoken1_gte",{"_index":1387,"name":{"5444":{}},"parent":{}}],["dailyvolumetoken1_in",{"_index":1389,"name":{"5446":{}},"parent":{}}],["dailyvolumetoken1_lt",{"_index":1386,"name":{"5443":{}},"parent":{}}],["dailyvolumetoken1_lte",{"_index":1388,"name":{"5445":{}},"parent":{}}],["dailyvolumetoken1_not",{"_index":1384,"name":{"5441":{}},"parent":{}}],["dailyvolumetoken1_not_in",{"_index":1390,"name":{"5447":{}},"parent":{}}],["dailyvolumetoken_gt",{"_index":1613,"name":{"6365":{}},"parent":{}}],["dailyvolumetoken_gte",{"_index":1615,"name":{"6367":{}},"parent":{}}],["dailyvolumetoken_in",{"_index":1617,"name":{"6369":{}},"parent":{}}],["dailyvolumetoken_lt",{"_index":1614,"name":{"6366":{}},"parent":{}}],["dailyvolumetoken_lte",{"_index":1616,"name":{"6368":{}},"parent":{}}],["dailyvolumetoken_not",{"_index":1612,"name":{"6364":{}},"parent":{}}],["dailyvolumetoken_not_in",{"_index":1618,"name":{"6370":{}},"parent":{}}],["dailyvolumeuntracked",{"_index":1329,"name":{"4789":{},"6620":{},"6669":{}},"parent":{}}],["dailyvolumeuntracked_gt",{"_index":1699,"name":{"6671":{}},"parent":{}}],["dailyvolumeuntracked_gte",{"_index":1701,"name":{"6673":{}},"parent":{}}],["dailyvolumeuntracked_in",{"_index":1703,"name":{"6675":{}},"parent":{}}],["dailyvolumeuntracked_lt",{"_index":1700,"name":{"6672":{}},"parent":{}}],["dailyvolumeuntracked_lte",{"_index":1702,"name":{"6674":{}},"parent":{}}],["dailyvolumeuntracked_not",{"_index":1698,"name":{"6670":{}},"parent":{}}],["dailyvolumeuntracked_not_in",{"_index":1704,"name":{"6676":{}},"parent":{}}],["dailyvolumeusd",{"_index":1302,"name":{"4704":{},"4756":{},"4788":{},"5346":{},"5448":{},"6316":{},"6379":{},"6619":{},"6661":{}},"parent":{}}],["dailyvolumeusd_gt",{"_index":1392,"name":{"5450":{},"6381":{},"6663":{}},"parent":{}}],["dailyvolumeusd_gte",{"_index":1394,"name":{"5452":{},"6383":{},"6665":{}},"parent":{}}],["dailyvolumeusd_in",{"_index":1396,"name":{"5454":{},"6385":{},"6667":{}},"parent":{}}],["dailyvolumeusd_lt",{"_index":1393,"name":{"5451":{},"6382":{},"6664":{}},"parent":{}}],["dailyvolumeusd_lte",{"_index":1395,"name":{"5453":{},"6384":{},"6666":{}},"parent":{}}],["dailyvolumeusd_not",{"_index":1391,"name":{"5449":{},"6380":{},"6662":{}},"parent":{}}],["dailyvolumeusd_not_in",{"_index":1397,"name":{"5455":{},"6386":{},"6668":{}},"parent":{}}],["date",{"_index":31,"name":{"30":{},"55":{},"104":{},"118":{},"171":{},"183":{},"404":{},"422":{},"623":{},"641":{},"1142":{},"1164":{},"1282":{},"1301":{},"2272":{},"2292":{},"2382":{},"2402":{},"4694":{},"4752":{},"4786":{},"5336":{},"5358":{},"6312":{},"6341":{},"6617":{},"6645":{}},"parent":{}}],["date_gt",{"_index":272,"name":{"424":{},"643":{},"1166":{},"1303":{},"2294":{},"2404":{},"5360":{},"6343":{},"6647":{}},"parent":{}}],["date_gte",{"_index":274,"name":{"426":{},"645":{},"1168":{},"1305":{},"2296":{},"2406":{},"5362":{},"6345":{},"6649":{}},"parent":{}}],["date_in",{"_index":276,"name":{"428":{},"647":{},"1170":{},"1307":{},"2298":{},"2408":{},"5364":{},"6347":{},"6651":{}},"parent":{}}],["date_lt",{"_index":273,"name":{"425":{},"644":{},"1167":{},"1304":{},"2295":{},"2405":{},"5361":{},"6344":{},"6648":{}},"parent":{}}],["date_lte",{"_index":275,"name":{"427":{},"646":{},"1169":{},"1306":{},"2297":{},"2407":{},"5363":{},"6346":{},"6650":{}},"parent":{}}],["date_not",{"_index":271,"name":{"423":{},"642":{},"1165":{},"1302":{},"2293":{},"2403":{},"5359":{},"6342":{},"6646":{}},"parent":{}}],["date_not_in",{"_index":277,"name":{"429":{},"648":{},"1171":{},"1308":{},"2299":{},"2409":{},"5365":{},"6348":{},"6652":{}},"parent":{}}],["daydata",{"_index":48,"name":{"52":{},"149":{},"207":{},"400":{},"508":{},"1082":{},"1584":{},"1850":{},"2221":{}},"parent":{}}],["daydata_filter",{"_index":268,"name":{"412":{}},"parent":{}}],["daydata_orderby",{"_index":29,"name":{"28":{}},"parent":{}}],["daydatas",{"_index":628,"name":{"1585":{},"1851":{}},"parent":{}}],["debug",{"_index":1050,"name":{"2730":{},"2773":{},"2820":{},"2888":{},"2960":{},"3018":{},"3076":{},"3138":{},"3200":{},"3268":{},"3340":{},"3393":{},"3446":{},"3503":{},"3556":{},"3613":{},"3670":{},"3738":{},"3810":{},"3882":{},"3950":{},"4018":{},"4090":{},"4148":{},"4211":{},"4278":{},"4340":{},"4408":{},"4495":{},"4553":{},"4620":{}},"parent":{}}],["decimals",{"_index":110,"name":{"198":{},"2212":{},"2540":{},"4768":{},"6292":{},"6477":{}},"parent":{}}],["decimals_gt",{"_index":971,"name":{"2542":{},"6479":{}},"parent":{}}],["decimals_gte",{"_index":973,"name":{"2544":{},"6481":{}},"parent":{}}],["decimals_in",{"_index":975,"name":{"2546":{},"6483":{}},"parent":{}}],["decimals_lt",{"_index":972,"name":{"2543":{},"6480":{}},"parent":{}}],["decimals_lte",{"_index":974,"name":{"2545":{},"6482":{}},"parent":{}}],["decimals_not",{"_index":970,"name":{"2541":{},"6478":{}},"parent":{}}],["decimals_not_in",{"_index":976,"name":{"2547":{},"6484":{}},"parent":{}}],["deny",{"_index":124,"name":{"224":{},"4813":{}},"parent":{}}],["deployment",{"_index":1028,"name":{"2703":{},"6858":{}},"parent":{}}],["derivedeth",{"_index":111,"name":{"205":{},"2219":{},"2596":{},"4775":{},"6299":{},"6533":{}},"parent":{}}],["derivedeth_gt",{"_index":978,"name":{"2598":{},"6535":{}},"parent":{}}],["derivedeth_gte",{"_index":980,"name":{"2600":{},"6537":{}},"parent":{}}],["derivedeth_in",{"_index":982,"name":{"2602":{},"6539":{}},"parent":{}}],["derivedeth_lt",{"_index":979,"name":{"2599":{},"6536":{}},"parent":{}}],["derivedeth_lte",{"_index":981,"name":{"2601":{},"6538":{}},"parent":{}}],["derivedeth_not",{"_index":977,"name":{"2597":{},"6534":{}},"parent":{}}],["derivedeth_not_in",{"_index":983,"name":{"2603":{},"6540":{}},"parent":{}}],["desc",{"_index":71,"name":{"101":{},"4691":{}},"parent":{}}],["description",{"_index":1039,"name":{"2716":{},"2759":{},"2806":{},"2874":{},"2946":{},"3004":{},"3062":{},"3124":{},"3186":{},"3254":{},"3326":{},"3379":{},"3432":{},"3489":{},"3542":{},"3599":{},"3656":{},"3724":{},"3796":{},"3868":{},"3936":{},"4004":{},"4076":{},"4134":{},"4197":{},"4264":{},"4326":{},"4394":{},"4481":{},"4539":{},"4606":{}},"parent":{}}],["error",{"_index":1057,"name":{"2737":{},"2780":{},"2827":{},"2895":{},"2967":{},"3025":{},"3083":{},"3145":{},"3207":{},"3275":{},"3347":{},"3400":{},"3453":{},"3510":{},"3563":{},"3620":{},"3677":{},"3745":{},"3817":{},"3889":{},"3957":{},"4025":{},"4097":{},"4155":{},"4218":{},"4285":{},"4347":{},"4415":{},"4502":{},"4560":{},"4627":{}},"parent":{}}],["ethprice",{"_index":13,"name":{"12":{},"248":{},"259":{},"4640":{},"4837":{},"4848":{}},"parent":{}}],["ethprice_gt",{"_index":161,"name":{"261":{},"4850":{}},"parent":{}}],["ethprice_gte",{"_index":163,"name":{"263":{},"4852":{}},"parent":{}}],["ethprice_in",{"_index":165,"name":{"265":{},"4854":{}},"parent":{}}],["ethprice_lt",{"_index":162,"name":{"262":{},"4851":{}},"parent":{}}],["ethprice_lte",{"_index":164,"name":{"264":{},"4853":{}},"parent":{}}],["ethprice_not",{"_index":160,"name":{"260":{},"4849":{}},"parent":{}}],["ethprice_not_in",{"_index":166,"name":{"266":{},"4855":{}},"parent":{}}],["exact",{"_index":126,"name":{"226":{},"4815":{}},"parent":{}}],["examples",{"_index":1047,"name":{"2725":{},"2768":{},"2815":{},"2883":{},"2955":{},"3013":{},"3071":{},"3133":{},"3195":{},"3263":{},"3335":{},"3388":{},"3441":{},"3498":{},"3551":{},"3608":{},"3665":{},"3733":{},"3805":{},"3877":{},"3945":{},"4013":{},"4085":{},"4143":{},"4206":{},"4273":{},"4335":{},"4403":{},"4490":{},"4548":{},"4615":{}},"parent":{}}],["exit",{"_index":1055,"name":{"2735":{},"2778":{},"2825":{},"2893":{},"2965":{},"3023":{},"3081":{},"3143":{},"3205":{},"3273":{},"3345":{},"3398":{},"3451":{},"3508":{},"3561":{},"3618":{},"3675":{},"3743":{},"3815":{},"3887":{},"3955":{},"4023":{},"4095":{},"4153":{},"4216":{},"4283":{},"4345":{},"4413":{},"4500":{},"4558":{},"4625":{}},"parent":{}}],["factories",{"_index":626,"name":{"1581":{},"1847":{}},"parent":{}}],["factory",{"_index":32,"name":{"31":{},"56":{},"129":{},"195":{},"405":{},"430":{},"492":{},"624":{},"649":{},"1062":{},"1389":{},"1580":{},"1846":{},"2209":{},"2498":{}},"parent":{}}],["factory_contains",{"_index":285,"name":{"438":{},"657":{},"1397":{},"2506":{}},"parent":{}}],["factory_ends_with",{"_index":289,"name":{"442":{},"661":{},"1401":{},"2510":{}},"parent":{}}],["factory_filter",{"_index":351,"name":{"537":{}},"parent":{}}],["factory_gt",{"_index":279,"name":{"432":{},"651":{},"1391":{},"2500":{}},"parent":{}}],["factory_gte",{"_index":281,"name":{"434":{},"653":{},"1393":{},"2502":{}},"parent":{}}],["factory_in",{"_index":283,"name":{"436":{},"655":{},"1395":{},"2504":{}},"parent":{}}],["factory_lt",{"_index":280,"name":{"433":{},"652":{},"1392":{},"2501":{}},"parent":{}}],["factory_lte",{"_index":282,"name":{"435":{},"654":{},"1394":{},"2503":{}},"parent":{}}],["factory_not",{"_index":278,"name":{"431":{},"650":{},"1390":{},"2499":{}},"parent":{}}],["factory_not_contains",{"_index":286,"name":{"439":{},"658":{},"1398":{},"2507":{}},"parent":{}}],["factory_not_ends_with",{"_index":290,"name":{"443":{},"662":{},"1402":{},"2511":{}},"parent":{}}],["factory_not_in",{"_index":284,"name":{"437":{},"656":{},"1396":{},"2505":{}},"parent":{}}],["factory_not_starts_with",{"_index":288,"name":{"441":{},"660":{},"1400":{},"2509":{}},"parent":{}}],["factory_orderby",{"_index":39,"name":{"38":{}},"parent":{}}],["factory_starts_with",{"_index":287,"name":{"440":{},"659":{},"1399":{},"2508":{}},"parent":{}}],["factorydaydataargs",{"_index":348,"name":{"530":{}},"parent":{}}],["factoryhourdataargs",{"_index":345,"name":{"523":{}},"parent":{}}],["factorypairsargs",{"_index":335,"name":{"509":{}},"parent":{}}],["factorytokensargs",{"_index":342,"name":{"516":{}},"parent":{}}],["feeliquidity",{"_index":28,"name":{"27":{},"98":{},"283":{},"392":{},"945":{},"1050":{},"4655":{},"4688":{},"4872":{},"4981":{},"5197":{},"5302":{}},"parent":{}}],["feeliquidity_gt",{"_index":260,"name":{"394":{},"1052":{},"4983":{},"5304":{}},"parent":{}}],["feeliquidity_gte",{"_index":262,"name":{"396":{},"1054":{},"4985":{},"5306":{}},"parent":{}}],["feeliquidity_in",{"_index":264,"name":{"398":{},"1056":{},"4987":{},"5308":{}},"parent":{}}],["feeliquidity_lt",{"_index":261,"name":{"395":{},"1053":{},"4984":{},"5305":{}},"parent":{}}],["feeliquidity_lte",{"_index":263,"name":{"397":{},"1055":{},"4986":{},"5307":{}},"parent":{}}],["feeliquidity_not",{"_index":259,"name":{"393":{},"1051":{},"4982":{},"5303":{}},"parent":{}}],["feeliquidity_not_in",{"_index":265,"name":{"399":{},"1057":{},"4988":{},"5309":{}},"parent":{}}],["feeto",{"_index":27,"name":{"26":{},"97":{},"282":{},"386":{},"944":{},"1044":{},"4654":{},"4687":{},"4871":{},"4975":{},"5196":{},"5296":{}},"parent":{}}],["feeto_contains",{"_index":257,"name":{"390":{},"1048":{},"4979":{},"5300":{}},"parent":{}}],["feeto_in",{"_index":255,"name":{"388":{},"1046":{},"4977":{},"5298":{}},"parent":{}}],["feeto_not",{"_index":254,"name":{"387":{},"1045":{},"4976":{},"5297":{}},"parent":{}}],["feeto_not_contains",{"_index":258,"name":{"391":{},"1049":{},"4980":{},"5301":{}},"parent":{}}],["feeto_not_in",{"_index":256,"name":{"389":{},"1047":{},"4978":{},"5299":{}},"parent":{}}],["finally",{"_index":1061,"name":{"2742":{},"2785":{},"2832":{},"2900":{},"2972":{},"3030":{},"3088":{},"3150":{},"3212":{},"3280":{},"3352":{},"3405":{},"3458":{},"3515":{},"3568":{},"3625":{},"3682":{},"3750":{},"3822":{},"3894":{},"3962":{},"4030":{},"4102":{},"4160":{},"4223":{},"4290":{},"4352":{},"4420":{},"4507":{},"4565":{},"4632":{}},"parent":{}}],["first",{"_index":339,"name":{"512":{},"519":{},"526":{},"533":{},"724":{},"1092":{},"1099":{},"1106":{},"1113":{},"1120":{},"1127":{},"1134":{},"1621":{},"1633":{},"1645":{},"1657":{},"1669":{},"1681":{},"1693":{},"1705":{},"1717":{},"1729":{},"1741":{},"1753":{},"1765":{},"1777":{},"1789":{},"1801":{},"1813":{},"1821":{},"1827":{},"1833":{},"1884":{},"1896":{},"1908":{},"1920":{},"1932":{},"1944":{},"1956":{},"1968":{},"1980":{},"1992":{},"2004":{},"2016":{},"2028":{},"2040":{},"2052":{},"2064":{},"2076":{},"2229":{},"2236":{},"2243":{},"2250":{},"2257":{},"2264":{},"2616":{},"2623":{},"2630":{},"2680":{},"2795":{},"2842":{},"2910":{},"2982":{},"3040":{},"3098":{},"3160":{},"3222":{},"3290":{},"3362":{},"3415":{},"3468":{},"3525":{},"3578":{},"3635":{},"3692":{},"3760":{},"3832":{},"3904":{},"3972":{},"4040":{},"4112":{},"4170":{},"4233":{},"4300":{},"4362":{},"4430":{},"4517":{},"4575":{},"5772":{},"5784":{},"5796":{},"5808":{},"5820":{},"5832":{},"5844":{},"5856":{},"5868":{},"5880":{},"5892":{},"5904":{},"5916":{},"5928":{},"5940":{},"5989":{},"6001":{},"6013":{},"6025":{},"6037":{},"6049":{},"6061":{},"6073":{},"6085":{},"6097":{},"6109":{},"6121":{},"6133":{},"6145":{},"6157":{},"6304":{},"6327":{},"6557":{},"6564":{},"6571":{},"6631":{},"6744":{},"6827":{}},"parent":{}}],["first1",{"_index":1082,"name":{"2847":{},"2915":{},"2987":{},"3045":{},"3103":{},"3165":{},"3227":{},"3295":{},"3367":{},"3420":{},"3473":{},"3530":{},"3583":{},"3640":{},"3697":{},"3765":{},"3837":{},"3909":{},"3977":{},"4045":{},"4117":{},"4175":{},"4238":{},"4305":{},"4367":{},"4435":{},"4522":{},"4580":{}},"parent":{}}],["first2",{"_index":1087,"name":{"2852":{},"2920":{},"2992":{},"3050":{},"3108":{},"3170":{},"3232":{},"3300":{},"3478":{},"3588":{},"3645":{},"3702":{},"3770":{},"3842":{},"3914":{},"3982":{},"4050":{},"4122":{},"4180":{},"4243":{},"4310":{},"4372":{},"4440":{},"4527":{},"4585":{}},"parent":{}}],["first3",{"_index":1092,"name":{"2857":{},"2925":{},"3113":{},"3175":{},"3237":{},"3305":{},"3707":{},"3775":{},"3847":{},"3919":{},"3987":{},"4055":{},"4185":{},"4248":{},"4315":{},"4377":{},"4445":{},"4590":{}},"parent":{}}],["first4",{"_index":1097,"name":{"2862":{},"2930":{},"3242":{},"3310":{},"3712":{},"3780":{},"3852":{},"3924":{},"3992":{},"4060":{},"4253":{},"4382":{},"4450":{},"4595":{}},"parent":{}}],["first5",{"_index":1108,"name":{"2935":{},"3315":{},"3785":{},"3857":{},"4065":{},"4455":{}},"parent":{}}],["first6",{"_index":1261,"name":{"4460":{}},"parent":{}}],["first7",{"_index":1266,"name":{"4465":{}},"parent":{}}],["first8",{"_index":1271,"name":{"4470":{}},"parent":{}}],["flags",{"_index":1031,"name":{"2707":{},"2749":{},"2792":{},"2839":{},"2907":{},"2979":{},"3037":{},"3095":{},"3157":{},"3219":{},"3287":{},"3359":{},"3412":{},"3465":{},"3522":{},"3575":{},"3632":{},"3689":{},"3757":{},"3829":{},"3901":{},"3969":{},"4037":{},"4109":{},"4167":{},"4230":{},"4297":{},"4359":{},"4427":{},"4514":{},"4572":{}},"parent":{}}],["float",{"_index":137,"name":{"236":{},"4825":{}},"parent":{}}],["generated/graphql",{"_index":1290,"name":{"4637":{}},"parent":{"4638":{},"4641":{},"4656":{},"4670":{},"4675":{},"4689":{},"4692":{},"4706":{},"4717":{},"4737":{},"4750":{},"4764":{},"4777":{},"4784":{},"4797":{},"4807":{},"4811":{},"4814":{},"4815":{},"4817":{},"4818":{},"4819":{},"4829":{},"4833":{},"4838":{},"4856":{},"4873":{},"4989":{},"4996":{},"5012":{},"5136":{},"5182":{},"5198":{},"5310":{},"5332":{},"5348":{},"5464":{},"5477":{},"5565":{},"5731":{},"5765":{},"5769":{},"5777":{},"5781":{},"5789":{},"5793":{},"5801":{},"5805":{},"5813":{},"5817":{},"5825":{},"5829":{},"5837":{},"5841":{},"5849":{},"5853":{},"5861":{},"5865":{},"5873":{},"5877":{},"5885":{},"5889":{},"5897":{},"5901":{},"5909":{},"5913":{},"5921":{},"5925":{},"5933":{},"5937":{},"5945":{},"5948":{},"5982":{},"5986":{},"5994":{},"5998":{},"6006":{},"6010":{},"6018":{},"6022":{},"6030":{},"6034":{},"6042":{},"6046":{},"6054":{},"6058":{},"6066":{},"6070":{},"6078":{},"6082":{},"6090":{},"6094":{},"6102":{},"6106":{},"6114":{},"6118":{},"6126":{},"6130":{},"6138":{},"6142":{},"6150":{},"6154":{},"6162":{},"6165":{},"6180":{},"6286":{},"6301":{},"6308":{},"6324":{},"6331":{},"6439":{},"6545":{},"6554":{},"6561":{},"6568":{},"6575":{},"6613":{},"6628":{},"6635":{},"6729":{},"6741":{},"6748":{},"6818":{},"6824":{},"6831":{},"6849":{},"6854":{}}}],["generated/graphql\"._block_",{"_index":1743,"name":{},"parent":{"6850":{}}}],["generated/graphql\"._block_.__type",{"_index":1744,"name":{},"parent":{"6851":{},"6852":{},"6853":{}}}],["generated/graphql\"._meta_",{"_index":1745,"name":{},"parent":{"6855":{}}}],["generated/graphql\"._meta_.__type",{"_index":1746,"name":{},"parent":{"6856":{},"6857":{},"6858":{},"6859":{}}}],["generated/graphql\"._subgrapherrorpolicy_",{"_index":1337,"name":{},"parent":{"4812":{},"4813":{}}}],["generated/graphql\".block_height",{"_index":1341,"name":{},"parent":{"4830":{}}}],["generated/graphql\".block_height.__type",{"_index":1342,"name":{},"parent":{"4831":{},"4832":{}}}],["generated/graphql\".bundle",{"_index":1343,"name":{},"parent":{"4834":{}}}],["generated/graphql\".bundle.__type",{"_index":1344,"name":{},"parent":{"4835":{},"4836":{},"4837":{}}}],["generated/graphql\".bundle_filter",{"_index":1345,"name":{},"parent":{"4839":{}}}],["generated/graphql\".bundle_filter.__type",{"_index":1346,"name":{},"parent":{"4840":{},"4841":{},"4842":{},"4843":{},"4844":{},"4845":{},"4846":{},"4847":{},"4848":{},"4849":{},"4850":{},"4851":{},"4852":{},"4853":{},"4854":{},"4855":{}}}],["generated/graphql\".bundle_orderby",{"_index":1291,"name":{},"parent":{"4639":{},"4640":{}}}],["generated/graphql\".burn",{"_index":1347,"name":{},"parent":{"4857":{}}}],["generated/graphql\".burn.__type",{"_index":1348,"name":{},"parent":{"4858":{},"4859":{},"4860":{},"4861":{},"4862":{},"4863":{},"4864":{},"4865":{},"4866":{},"4867":{},"4868":{},"4869":{},"4870":{},"4871":{},"4872":{}}}],["generated/graphql\".burn_filter",{"_index":1349,"name":{},"parent":{"4874":{}}}],["generated/graphql\".burn_filter.__type",{"_index":1350,"name":{},"parent":{"4875":{},"4876":{},"4877":{},"4878":{},"4879":{},"4880":{},"4881":{},"4882":{},"4883":{},"4884":{},"4885":{},"4886":{},"4887":{},"4888":{},"4889":{},"4890":{},"4891":{},"4892":{},"4893":{},"4894":{},"4895":{},"4896":{},"4897":{},"4898":{},"4899":{},"4900":{},"4901":{},"4902":{},"4903":{},"4904":{},"4905":{},"4906":{},"4907":{},"4908":{},"4909":{},"4910":{},"4911":{},"4912":{},"4913":{},"4914":{},"4915":{},"4916":{},"4917":{},"4918":{},"4919":{},"4920":{},"4921":{},"4922":{},"4923":{},"4924":{},"4925":{},"4926":{},"4927":{},"4928":{},"4929":{},"4930":{},"4931":{},"4932":{},"4933":{},"4934":{},"4935":{},"4936":{},"4937":{},"4938":{},"4939":{},"4940":{},"4941":{},"4942":{},"4943":{},"4944":{},"4945":{},"4946":{},"4947":{},"4948":{},"4949":{},"4950":{},"4951":{},"4952":{},"4953":{},"4954":{},"4955":{},"4956":{},"4957":{},"4958":{},"4959":{},"4960":{},"4961":{},"4962":{},"4963":{},"4964":{},"4965":{},"4966":{},"4967":{},"4968":{},"4969":{},"4970":{},"4971":{},"4972":{},"4973":{},"4974":{},"4975":{},"4976":{},"4977":{},"4978":{},"4979":{},"4980":{},"4981":{},"4982":{},"4983":{},"4984":{},"4985":{},"4986":{},"4987":{},"4988":{}}}],["generated/graphql\".burn_orderby",{"_index":1292,"name":{},"parent":{"4642":{},"4643":{},"4644":{},"4645":{},"4646":{},"4647":{},"4648":{},"4649":{},"4650":{},"4651":{},"4652":{},"4653":{},"4654":{},"4655":{}}}],["generated/graphql\".exact",{"_index":1338,"name":{},"parent":{"4816":{}}}],["generated/graphql\".liquidityposition",{"_index":1354,"name":{},"parent":{"4990":{}}}],["generated/graphql\".liquidityposition.__type",{"_index":1355,"name":{},"parent":{"4991":{},"4992":{},"4993":{},"4994":{},"4995":{}}}],["generated/graphql\".liquidityposition_filter",{"_index":1360,"name":{},"parent":{"5137":{}}}],["generated/graphql\".liquidityposition_filter.__type",{"_index":1361,"name":{},"parent":{"5138":{},"5139":{},"5140":{},"5141":{},"5142":{},"5143":{},"5144":{},"5145":{},"5146":{},"5147":{},"5148":{},"5149":{},"5150":{},"5151":{},"5152":{},"5153":{},"5154":{},"5155":{},"5156":{},"5157":{},"5158":{},"5159":{},"5160":{},"5161":{},"5162":{},"5163":{},"5164":{},"5165":{},"5166":{},"5167":{},"5168":{},"5169":{},"5170":{},"5171":{},"5172":{},"5173":{},"5174":{},"5175":{},"5176":{},"5177":{},"5178":{},"5179":{},"5180":{},"5181":{}}}],["generated/graphql\".liquidityposition_orderby",{"_index":1295,"name":{},"parent":{"4671":{},"4672":{},"4673":{},"4674":{}}}],["generated/graphql\".liquiditypositionsnapshot",{"_index":1356,"name":{},"parent":{"4997":{}}}],["generated/graphql\".liquiditypositionsnapshot.__type",{"_index":1357,"name":{},"parent":{"4998":{},"4999":{},"5000":{},"5001":{},"5002":{},"5003":{},"5004":{},"5005":{},"5006":{},"5007":{},"5008":{},"5009":{},"5010":{},"5011":{}}}],["generated/graphql\".liquiditypositionsnapshot_filter",{"_index":1358,"name":{},"parent":{"5013":{}}}],["generated/graphql\".liquiditypositionsnapshot_filter.__type",{"_index":1359,"name":{},"parent":{"5014":{},"5015":{},"5016":{},"5017":{},"5018":{},"5019":{},"5020":{},"5021":{},"5022":{},"5023":{},"5024":{},"5025":{},"5026":{},"5027":{},"5028":{},"5029":{},"5030":{},"5031":{},"5032":{},"5033":{},"5034":{},"5035":{},"5036":{},"5037":{},"5038":{},"5039":{},"5040":{},"5041":{},"5042":{},"5043":{},"5044":{},"5045":{},"5046":{},"5047":{},"5048":{},"5049":{},"5050":{},"5051":{},"5052":{},"5053":{},"5054":{},"5055":{},"5056":{},"5057":{},"5058":{},"5059":{},"5060":{},"5061":{},"5062":{},"5063":{},"5064":{},"5065":{},"5066":{},"5067":{},"5068":{},"5069":{},"5070":{},"5071":{},"5072":{},"5073":{},"5074":{},"5075":{},"5076":{},"5077":{},"5078":{},"5079":{},"5080":{},"5081":{},"5082":{},"5083":{},"5084":{},"5085":{},"5086":{},"5087":{},"5088":{},"5089":{},"5090":{},"5091":{},"5092":{},"5093":{},"5094":{},"5095":{},"5096":{},"5097":{},"5098":{},"5099":{},"5100":{},"5101":{},"5102":{},"5103":{},"5104":{},"5105":{},"5106":{},"5107":{},"5108":{},"5109":{},"5110":{},"5111":{},"5112":{},"5113":{},"5114":{},"5115":{},"5116":{},"5117":{},"5118":{},"5119":{},"5120":{},"5121":{},"5122":{},"5123":{},"5124":{},"5125":{},"5126":{},"5127":{},"5128":{},"5129":{},"5130":{},"5131":{},"5132":{},"5133":{},"5134":{},"5135":{}}}],["generated/graphql\".liquiditypositionsnapshot_orderby",{"_index":1294,"name":{},"parent":{"4657":{},"4658":{},"4659":{},"4660":{},"4661":{},"4662":{},"4663":{},"4664":{},"4665":{},"4666":{},"4667":{},"4668":{},"4669":{}}}],["generated/graphql\".mint",{"_index":1362,"name":{},"parent":{"5183":{}}}],["generated/graphql\".mint.__type",{"_index":1363,"name":{},"parent":{"5184":{},"5185":{},"5186":{},"5187":{},"5188":{},"5189":{},"5190":{},"5191":{},"5192":{},"5193":{},"5194":{},"5195":{},"5196":{},"5197":{}}}],["generated/graphql\".mint_filter",{"_index":1364,"name":{},"parent":{"5199":{}}}],["generated/graphql\".mint_filter.__type",{"_index":1365,"name":{},"parent":{"5200":{},"5201":{},"5202":{},"5203":{},"5204":{},"5205":{},"5206":{},"5207":{},"5208":{},"5209":{},"5210":{},"5211":{},"5212":{},"5213":{},"5214":{},"5215":{},"5216":{},"5217":{},"5218":{},"5219":{},"5220":{},"5221":{},"5222":{},"5223":{},"5224":{},"5225":{},"5226":{},"5227":{},"5228":{},"5229":{},"5230":{},"5231":{},"5232":{},"5233":{},"5234":{},"5235":{},"5236":{},"5237":{},"5238":{},"5239":{},"5240":{},"5241":{},"5242":{},"5243":{},"5244":{},"5245":{},"5246":{},"5247":{},"5248":{},"5249":{},"5250":{},"5251":{},"5252":{},"5253":{},"5254":{},"5255":{},"5256":{},"5257":{},"5258":{},"5259":{},"5260":{},"5261":{},"5262":{},"5263":{},"5264":{},"5265":{},"5266":{},"5267":{},"5268":{},"5269":{},"5270":{},"5271":{},"5272":{},"5273":{},"5274":{},"5275":{},"5276":{},"5277":{},"5278":{},"5279":{},"5280":{},"5281":{},"5282":{},"5283":{},"5284":{},"5285":{},"5286":{},"5287":{},"5288":{},"5289":{},"5290":{},"5291":{},"5292":{},"5293":{},"5294":{},"5295":{},"5296":{},"5297":{},"5298":{},"5299":{},"5300":{},"5301":{},"5302":{},"5303":{},"5304":{},"5305":{},"5306":{},"5307":{},"5308":{},"5309":{}}}],["generated/graphql\".mint_orderby",{"_index":1296,"name":{},"parent":{"4676":{},"4677":{},"4678":{},"4679":{},"4680":{},"4681":{},"4682":{},"4683":{},"4684":{},"4685":{},"4686":{},"4687":{},"4688":{}}}],["generated/graphql\".orderdirection",{"_index":1297,"name":{},"parent":{"4690":{},"4691":{}}}],["generated/graphql\".pair",{"_index":1366,"name":{},"parent":{"5311":{}}}],["generated/graphql\".pair.__type",{"_index":1367,"name":{},"parent":{"5312":{},"5313":{},"5314":{},"5315":{},"5316":{},"5317":{},"5318":{},"5319":{},"5320":{},"5321":{},"5322":{},"5323":{},"5324":{},"5325":{},"5326":{},"5327":{},"5328":{},"5329":{},"5330":{},"5331":{}}}],["generated/graphql\".pair_filter",{"_index":1444,"name":{},"parent":{"5566":{}}}],["generated/graphql\".pair_filter.__type",{"_index":1445,"name":{},"parent":{"5567":{},"5568":{},"5569":{},"5570":{},"5571":{},"5572":{},"5573":{},"5574":{},"5575":{},"5576":{},"5577":{},"5578":{},"5579":{},"5580":{},"5581":{},"5582":{},"5583":{},"5584":{},"5585":{},"5586":{},"5587":{},"5588":{},"5589":{},"5590":{},"5591":{},"5592":{},"5593":{},"5594":{},"5595":{},"5596":{},"5597":{},"5598":{},"5599":{},"5600":{},"5601":{},"5602":{},"5603":{},"5604":{},"5605":{},"5606":{},"5607":{},"5608":{},"5609":{},"5610":{},"5611":{},"5612":{},"5613":{},"5614":{},"5615":{},"5616":{},"5617":{},"5618":{},"5619":{},"5620":{},"5621":{},"5622":{},"5623":{},"5624":{},"5625":{},"5626":{},"5627":{},"5628":{},"5629":{},"5630":{},"5631":{},"5632":{},"5633":{},"5634":{},"5635":{},"5636":{},"5637":{},"5638":{},"5639":{},"5640":{},"5641":{},"5642":{},"5643":{},"5644":{},"5645":{},"5646":{},"5647":{},"5648":{},"5649":{},"5650":{},"5651":{},"5652":{},"5653":{},"5654":{},"5655":{},"5656":{},"5657":{},"5658":{},"5659":{},"5660":{},"5661":{},"5662":{},"5663":{},"5664":{},"5665":{},"5666":{},"5667":{},"5668":{},"5669":{},"5670":{},"5671":{},"5672":{},"5673":{},"5674":{},"5675":{},"5676":{},"5677":{},"5678":{},"5679":{},"5680":{},"5681":{},"5682":{},"5683":{},"5684":{},"5685":{},"5686":{},"5687":{},"5688":{},"5689":{},"5690":{},"5691":{},"5692":{},"5693":{},"5694":{},"5695":{},"5696":{},"5697":{},"5698":{},"5699":{},"5700":{},"5701":{},"5702":{},"5703":{},"5704":{},"5705":{},"5706":{},"5707":{},"5708":{},"5709":{},"5710":{},"5711":{},"5712":{},"5713":{},"5714":{},"5715":{},"5716":{},"5717":{},"5718":{},"5719":{},"5720":{},"5721":{},"5722":{},"5723":{},"5724":{},"5725":{},"5726":{},"5727":{},"5728":{},"5729":{},"5730":{}}}],["generated/graphql\".pair_orderby",{"_index":1310,"name":{},"parent":{"4718":{},"4719":{},"4720":{},"4721":{},"4722":{},"4723":{},"4724":{},"4725":{},"4726":{},"4727":{},"4728":{},"4729":{},"4730":{},"4731":{},"4732":{},"4733":{},"4734":{},"4735":{},"4736":{}}}],["generated/graphql\".pairdaydata",{"_index":1368,"name":{},"parent":{"5333":{}}}],["generated/graphql\".pairdaydata.__type",{"_index":1369,"name":{},"parent":{"5334":{},"5335":{},"5336":{},"5337":{},"5338":{},"5339":{},"5340":{},"5341":{},"5342":{},"5343":{},"5344":{},"5345":{},"5346":{},"5347":{}}}],["generated/graphql\".pairdaydata_filter",{"_index":1370,"name":{},"parent":{"5349":{}}}],["generated/graphql\".pairdaydata_filter.__type",{"_index":1371,"name":{},"parent":{"5350":{},"5351":{},"5352":{},"5353":{},"5354":{},"5355":{},"5356":{},"5357":{},"5358":{},"5359":{},"5360":{},"5361":{},"5362":{},"5363":{},"5364":{},"5365":{},"5366":{},"5367":{},"5368":{},"5369":{},"5370":{},"5371":{},"5372":{},"5373":{},"5374":{},"5375":{},"5376":{},"5377":{},"5378":{},"5379":{},"5380":{},"5381":{},"5382":{},"5383":{},"5384":{},"5385":{},"5386":{},"5387":{},"5388":{},"5389":{},"5390":{},"5391":{},"5392":{},"5393":{},"5394":{},"5395":{},"5396":{},"5397":{},"5398":{},"5399":{},"5400":{},"5401":{},"5402":{},"5403":{},"5404":{},"5405":{},"5406":{},"5407":{},"5408":{},"5409":{},"5410":{},"5411":{},"5412":{},"5413":{},"5414":{},"5415":{},"5416":{},"5417":{},"5418":{},"5419":{},"5420":{},"5421":{},"5422":{},"5423":{},"5424":{},"5425":{},"5426":{},"5427":{},"5428":{},"5429":{},"5430":{},"5431":{},"5432":{},"5433":{},"5434":{},"5435":{},"5436":{},"5437":{},"5438":{},"5439":{},"5440":{},"5441":{},"5442":{},"5443":{},"5444":{},"5445":{},"5446":{},"5447":{},"5448":{},"5449":{},"5450":{},"5451":{},"5452":{},"5453":{},"5454":{},"5455":{},"5456":{},"5457":{},"5458":{},"5459":{},"5460":{},"5461":{},"5462":{},"5463":{}}}],["generated/graphql\".pairdaydata_orderby",{"_index":1298,"name":{},"parent":{"4693":{},"4694":{},"4695":{},"4696":{},"4697":{},"4698":{},"4699":{},"4700":{},"4701":{},"4702":{},"4703":{},"4704":{},"4705":{}}}],["generated/graphql\".pairhourdata",{"_index":1405,"name":{},"parent":{"5465":{}}}],["generated/graphql\".pairhourdata.__type",{"_index":1406,"name":{},"parent":{"5466":{},"5467":{},"5468":{},"5469":{},"5470":{},"5471":{},"5472":{},"5473":{},"5474":{},"5475":{},"5476":{}}}],["generated/graphql\".pairhourdata_filter",{"_index":1407,"name":{},"parent":{"5478":{}}}],["generated/graphql\".pairhourdata_filter.__type",{"_index":1408,"name":{},"parent":{"5479":{},"5480":{},"5481":{},"5482":{},"5483":{},"5484":{},"5485":{},"5486":{},"5487":{},"5488":{},"5489":{},"5490":{},"5491":{},"5492":{},"5493":{},"5494":{},"5495":{},"5496":{},"5497":{},"5498":{},"5499":{},"5500":{},"5501":{},"5502":{},"5503":{},"5504":{},"5505":{},"5506":{},"5507":{},"5508":{},"5509":{},"5510":{},"5511":{},"5512":{},"5513":{},"5514":{},"5515":{},"5516":{},"5517":{},"5518":{},"5519":{},"5520":{},"5521":{},"5522":{},"5523":{},"5524":{},"5525":{},"5526":{},"5527":{},"5528":{},"5529":{},"5530":{},"5531":{},"5532":{},"5533":{},"5534":{},"5535":{},"5536":{},"5537":{},"5538":{},"5539":{},"5540":{},"5541":{},"5542":{},"5543":{},"5544":{},"5545":{},"5546":{},"5547":{},"5548":{},"5549":{},"5550":{},"5551":{},"5552":{},"5553":{},"5554":{},"5555":{},"5556":{},"5557":{},"5558":{},"5559":{},"5560":{},"5561":{},"5562":{},"5563":{},"5564":{}}}],["generated/graphql\".pairhourdata_orderby",{"_index":1304,"name":{},"parent":{"4707":{},"4708":{},"4709":{},"4710":{},"4711":{},"4712":{},"4713":{},"4714":{},"4715":{},"4716":{}}}],["generated/graphql\".query",{"_index":1460,"name":{},"parent":{"5732":{}}}],["generated/graphql\".query.__type",{"_index":1461,"name":{},"parent":{"5733":{},"5734":{},"5735":{},"5736":{},"5737":{},"5738":{},"5739":{},"5740":{},"5741":{},"5742":{},"5743":{},"5744":{},"5745":{},"5746":{},"5747":{},"5748":{},"5749":{},"5750":{},"5751":{},"5752":{},"5753":{},"5754":{},"5755":{},"5756":{},"5757":{},"5758":{},"5759":{},"5760":{},"5761":{},"5762":{},"5763":{},"5764":{}}}],["generated/graphql\".query_metaargs",{"_index":1526,"name":{},"parent":{"5946":{}}}],["generated/graphql\".query_metaargs.__type",{"_index":1527,"name":{},"parent":{"5947":{}}}],["generated/graphql\".querybundleargs",{"_index":1504,"name":{},"parent":{"5886":{}}}],["generated/graphql\".querybundleargs.__type",{"_index":1505,"name":{},"parent":{"5887":{},"5888":{}}}],["generated/graphql\".querybundlesargs",{"_index":1506,"name":{},"parent":{"5890":{}}}],["generated/graphql\".querybundlesargs.__type",{"_index":1507,"name":{},"parent":{"5891":{},"5892":{},"5893":{},"5894":{},"5895":{},"5896":{}}}],["generated/graphql\".queryburnargs",{"_index":1496,"name":{},"parent":{"5862":{}}}],["generated/graphql\".queryburnargs.__type",{"_index":1497,"name":{},"parent":{"5863":{},"5864":{}}}],["generated/graphql\".queryburnsargs",{"_index":1498,"name":{},"parent":{"5866":{}}}],["generated/graphql\".queryburnsargs.__type",{"_index":1499,"name":{},"parent":{"5867":{},"5868":{},"5869":{},"5870":{},"5871":{},"5872":{}}}],["generated/graphql\".queryliquiditypositionargs",{"_index":1480,"name":{},"parent":{"5814":{}}}],["generated/graphql\".queryliquiditypositionargs.__type",{"_index":1481,"name":{},"parent":{"5815":{},"5816":{}}}],["generated/graphql\".queryliquiditypositionsargs",{"_index":1482,"name":{},"parent":{"5818":{}}}],["generated/graphql\".queryliquiditypositionsargs.__type",{"_index":1483,"name":{},"parent":{"5819":{},"5820":{},"5821":{},"5822":{},"5823":{},"5824":{}}}],["generated/graphql\".queryliquiditypositionsnapshotargs",{"_index":1484,"name":{},"parent":{"5826":{}}}],["generated/graphql\".queryliquiditypositionsnapshotargs.__type",{"_index":1485,"name":{},"parent":{"5827":{},"5828":{}}}],["generated/graphql\".queryliquiditypositionsnapshotsargs",{"_index":1486,"name":{},"parent":{"5830":{}}}],["generated/graphql\".queryliquiditypositionsnapshotsargs.__type",{"_index":1487,"name":{},"parent":{"5831":{},"5832":{},"5833":{},"5834":{},"5835":{},"5836":{}}}],["generated/graphql\".querymintargs",{"_index":1492,"name":{},"parent":{"5850":{}}}],["generated/graphql\".querymintargs.__type",{"_index":1493,"name":{},"parent":{"5851":{},"5852":{}}}],["generated/graphql\".querymintsargs",{"_index":1494,"name":{},"parent":{"5854":{}}}],["generated/graphql\".querymintsargs.__type",{"_index":1495,"name":{},"parent":{"5855":{},"5856":{},"5857":{},"5858":{},"5859":{},"5860":{}}}],["generated/graphql\".querypairargs",{"_index":1472,"name":{},"parent":{"5790":{}}}],["generated/graphql\".querypairargs.__type",{"_index":1473,"name":{},"parent":{"5791":{},"5792":{}}}],["generated/graphql\".querypairdaydataargs",{"_index":1518,"name":{},"parent":{"5922":{}}}],["generated/graphql\".querypairdaydataargs.__type",{"_index":1519,"name":{},"parent":{"5923":{},"5924":{}}}],["generated/graphql\".querypairdaydatasargs",{"_index":1520,"name":{},"parent":{"5926":{}}}],["generated/graphql\".querypairdaydatasargs.__type",{"_index":1521,"name":{},"parent":{"5927":{},"5928":{},"5929":{},"5930":{},"5931":{},"5932":{}}}],["generated/graphql\".querypairhourdataargs",{"_index":1514,"name":{},"parent":{"5910":{}}}],["generated/graphql\".querypairhourdataargs.__type",{"_index":1515,"name":{},"parent":{"5911":{},"5912":{}}}],["generated/graphql\".querypairhourdatasargs",{"_index":1516,"name":{},"parent":{"5914":{}}}],["generated/graphql\".querypairhourdatasargs.__type",{"_index":1517,"name":{},"parent":{"5915":{},"5916":{},"5917":{},"5918":{},"5919":{},"5920":{}}}],["generated/graphql\".querypairsargs",{"_index":1474,"name":{},"parent":{"5794":{}}}],["generated/graphql\".querypairsargs.__type",{"_index":1475,"name":{},"parent":{"5795":{},"5796":{},"5797":{},"5798":{},"5799":{},"5800":{}}}],["generated/graphql\".querysushiswapdaydataargs",{"_index":1509,"name":{},"parent":{"5898":{}}}],["generated/graphql\".querysushiswapdaydataargs.__type",{"_index":1510,"name":{},"parent":{"5899":{},"5900":{}}}],["generated/graphql\".querysushiswapdaydatasargs",{"_index":1512,"name":{},"parent":{"5902":{}}}],["generated/graphql\".querysushiswapdaydatasargs.__type",{"_index":1513,"name":{},"parent":{"5903":{},"5904":{},"5905":{},"5906":{},"5907":{},"5908":{}}}],["generated/graphql\".querysushiswapfactoriesargs",{"_index":1466,"name":{},"parent":{"5770":{}}}],["generated/graphql\".querysushiswapfactoriesargs.__type",{"_index":1467,"name":{},"parent":{"5771":{},"5772":{},"5773":{},"5774":{},"5775":{},"5776":{}}}],["generated/graphql\".querysushiswapfactoryargs",{"_index":1463,"name":{},"parent":{"5766":{}}}],["generated/graphql\".querysushiswapfactoryargs.__type",{"_index":1464,"name":{},"parent":{"5767":{},"5768":{}}}],["generated/graphql\".queryswapargs",{"_index":1500,"name":{},"parent":{"5874":{}}}],["generated/graphql\".queryswapargs.__type",{"_index":1501,"name":{},"parent":{"5875":{},"5876":{}}}],["generated/graphql\".queryswapsargs",{"_index":1502,"name":{},"parent":{"5878":{}}}],["generated/graphql\".queryswapsargs.__type",{"_index":1503,"name":{},"parent":{"5879":{},"5880":{},"5881":{},"5882":{},"5883":{},"5884":{}}}],["generated/graphql\".querytokenargs",{"_index":1468,"name":{},"parent":{"5778":{}}}],["generated/graphql\".querytokenargs.__type",{"_index":1469,"name":{},"parent":{"5779":{},"5780":{}}}],["generated/graphql\".querytokendaydataargs",{"_index":1522,"name":{},"parent":{"5934":{}}}],["generated/graphql\".querytokendaydataargs.__type",{"_index":1523,"name":{},"parent":{"5935":{},"5936":{}}}],["generated/graphql\".querytokendaydatasargs",{"_index":1524,"name":{},"parent":{"5938":{}}}],["generated/graphql\".querytokendaydatasargs.__type",{"_index":1525,"name":{},"parent":{"5939":{},"5940":{},"5941":{},"5942":{},"5943":{},"5944":{}}}],["generated/graphql\".querytokensargs",{"_index":1470,"name":{},"parent":{"5782":{}}}],["generated/graphql\".querytokensargs.__type",{"_index":1471,"name":{},"parent":{"5783":{},"5784":{},"5785":{},"5786":{},"5787":{},"5788":{}}}],["generated/graphql\".querytransactionargs",{"_index":1488,"name":{},"parent":{"5838":{}}}],["generated/graphql\".querytransactionargs.__type",{"_index":1489,"name":{},"parent":{"5839":{},"5840":{}}}],["generated/graphql\".querytransactionsargs",{"_index":1490,"name":{},"parent":{"5842":{}}}],["generated/graphql\".querytransactionsargs.__type",{"_index":1491,"name":{},"parent":{"5843":{},"5844":{},"5845":{},"5846":{},"5847":{},"5848":{}}}],["generated/graphql\".queryuserargs",{"_index":1476,"name":{},"parent":{"5802":{}}}],["generated/graphql\".queryuserargs.__type",{"_index":1477,"name":{},"parent":{"5803":{},"5804":{}}}],["generated/graphql\".queryusersargs",{"_index":1478,"name":{},"parent":{"5806":{}}}],["generated/graphql\".queryusersargs.__type",{"_index":1479,"name":{},"parent":{"5807":{},"5808":{},"5809":{},"5810":{},"5811":{},"5812":{}}}],["generated/graphql\".scalars",{"_index":1339,"name":{},"parent":{"4820":{}}}],["generated/graphql\".scalars.__type",{"_index":1340,"name":{},"parent":{"4821":{},"4822":{},"4823":{},"4824":{},"4825":{},"4826":{},"4827":{},"4828":{}}}],["generated/graphql\".subscription",{"_index":1528,"name":{},"parent":{"5949":{}}}],["generated/graphql\".subscription.__type",{"_index":1529,"name":{},"parent":{"5950":{},"5951":{},"5952":{},"5953":{},"5954":{},"5955":{},"5956":{},"5957":{},"5958":{},"5959":{},"5960":{},"5961":{},"5962":{},"5963":{},"5964":{},"5965":{},"5966":{},"5967":{},"5968":{},"5969":{},"5970":{},"5971":{},"5972":{},"5973":{},"5974":{},"5975":{},"5976":{},"5977":{},"5978":{},"5979":{},"5980":{},"5981":{}}}],["generated/graphql\".subscription_metaargs",{"_index":1594,"name":{},"parent":{"6163":{}}}],["generated/graphql\".subscription_metaargs.__type",{"_index":1595,"name":{},"parent":{"6164":{}}}],["generated/graphql\".subscriptionbundleargs",{"_index":1572,"name":{},"parent":{"6103":{}}}],["generated/graphql\".subscriptionbundleargs.__type",{"_index":1573,"name":{},"parent":{"6104":{},"6105":{}}}],["generated/graphql\".subscriptionbundlesargs",{"_index":1574,"name":{},"parent":{"6107":{}}}],["generated/graphql\".subscriptionbundlesargs.__type",{"_index":1575,"name":{},"parent":{"6108":{},"6109":{},"6110":{},"6111":{},"6112":{},"6113":{}}}],["generated/graphql\".subscriptionburnargs",{"_index":1564,"name":{},"parent":{"6079":{}}}],["generated/graphql\".subscriptionburnargs.__type",{"_index":1565,"name":{},"parent":{"6080":{},"6081":{}}}],["generated/graphql\".subscriptionburnsargs",{"_index":1566,"name":{},"parent":{"6083":{}}}],["generated/graphql\".subscriptionburnsargs.__type",{"_index":1567,"name":{},"parent":{"6084":{},"6085":{},"6086":{},"6087":{},"6088":{},"6089":{}}}],["generated/graphql\".subscriptionliquiditypositionargs",{"_index":1548,"name":{},"parent":{"6031":{}}}],["generated/graphql\".subscriptionliquiditypositionargs.__type",{"_index":1549,"name":{},"parent":{"6032":{},"6033":{}}}],["generated/graphql\".subscriptionliquiditypositionsargs",{"_index":1550,"name":{},"parent":{"6035":{}}}],["generated/graphql\".subscriptionliquiditypositionsargs.__type",{"_index":1551,"name":{},"parent":{"6036":{},"6037":{},"6038":{},"6039":{},"6040":{},"6041":{}}}],["generated/graphql\".subscriptionliquiditypositionsnapshotargs",{"_index":1552,"name":{},"parent":{"6043":{}}}],["generated/graphql\".subscriptionliquiditypositionsnapshotargs.__type",{"_index":1553,"name":{},"parent":{"6044":{},"6045":{}}}],["generated/graphql\".subscriptionliquiditypositionsnapshotsargs",{"_index":1554,"name":{},"parent":{"6047":{}}}],["generated/graphql\".subscriptionliquiditypositionsnapshotsargs.__type",{"_index":1555,"name":{},"parent":{"6048":{},"6049":{},"6050":{},"6051":{},"6052":{},"6053":{}}}],["generated/graphql\".subscriptionmintargs",{"_index":1560,"name":{},"parent":{"6067":{}}}],["generated/graphql\".subscriptionmintargs.__type",{"_index":1561,"name":{},"parent":{"6068":{},"6069":{}}}],["generated/graphql\".subscriptionmintsargs",{"_index":1562,"name":{},"parent":{"6071":{}}}],["generated/graphql\".subscriptionmintsargs.__type",{"_index":1563,"name":{},"parent":{"6072":{},"6073":{},"6074":{},"6075":{},"6076":{},"6077":{}}}],["generated/graphql\".subscriptionpairargs",{"_index":1540,"name":{},"parent":{"6007":{}}}],["generated/graphql\".subscriptionpairargs.__type",{"_index":1541,"name":{},"parent":{"6008":{},"6009":{}}}],["generated/graphql\".subscriptionpairdaydataargs",{"_index":1586,"name":{},"parent":{"6139":{}}}],["generated/graphql\".subscriptionpairdaydataargs.__type",{"_index":1587,"name":{},"parent":{"6140":{},"6141":{}}}],["generated/graphql\".subscriptionpairdaydatasargs",{"_index":1588,"name":{},"parent":{"6143":{}}}],["generated/graphql\".subscriptionpairdaydatasargs.__type",{"_index":1589,"name":{},"parent":{"6144":{},"6145":{},"6146":{},"6147":{},"6148":{},"6149":{}}}],["generated/graphql\".subscriptionpairhourdataargs",{"_index":1582,"name":{},"parent":{"6127":{}}}],["generated/graphql\".subscriptionpairhourdataargs.__type",{"_index":1583,"name":{},"parent":{"6128":{},"6129":{}}}],["generated/graphql\".subscriptionpairhourdatasargs",{"_index":1584,"name":{},"parent":{"6131":{}}}],["generated/graphql\".subscriptionpairhourdatasargs.__type",{"_index":1585,"name":{},"parent":{"6132":{},"6133":{},"6134":{},"6135":{},"6136":{},"6137":{}}}],["generated/graphql\".subscriptionpairsargs",{"_index":1542,"name":{},"parent":{"6011":{}}}],["generated/graphql\".subscriptionpairsargs.__type",{"_index":1543,"name":{},"parent":{"6012":{},"6013":{},"6014":{},"6015":{},"6016":{},"6017":{}}}],["generated/graphql\".subscriptionsushiswapdaydataargs",{"_index":1577,"name":{},"parent":{"6115":{}}}],["generated/graphql\".subscriptionsushiswapdaydataargs.__type",{"_index":1578,"name":{},"parent":{"6116":{},"6117":{}}}],["generated/graphql\".subscriptionsushiswapdaydatasargs",{"_index":1580,"name":{},"parent":{"6119":{}}}],["generated/graphql\".subscriptionsushiswapdaydatasargs.__type",{"_index":1581,"name":{},"parent":{"6120":{},"6121":{},"6122":{},"6123":{},"6124":{},"6125":{}}}],["generated/graphql\".subscriptionsushiswapfactoriesargs",{"_index":1534,"name":{},"parent":{"5987":{}}}],["generated/graphql\".subscriptionsushiswapfactoriesargs.__type",{"_index":1535,"name":{},"parent":{"5988":{},"5989":{},"5990":{},"5991":{},"5992":{},"5993":{}}}],["generated/graphql\".subscriptionsushiswapfactoryargs",{"_index":1531,"name":{},"parent":{"5983":{}}}],["generated/graphql\".subscriptionsushiswapfactoryargs.__type",{"_index":1532,"name":{},"parent":{"5984":{},"5985":{}}}],["generated/graphql\".subscriptionswapargs",{"_index":1568,"name":{},"parent":{"6091":{}}}],["generated/graphql\".subscriptionswapargs.__type",{"_index":1569,"name":{},"parent":{"6092":{},"6093":{}}}],["generated/graphql\".subscriptionswapsargs",{"_index":1570,"name":{},"parent":{"6095":{}}}],["generated/graphql\".subscriptionswapsargs.__type",{"_index":1571,"name":{},"parent":{"6096":{},"6097":{},"6098":{},"6099":{},"6100":{},"6101":{}}}],["generated/graphql\".subscriptiontokenargs",{"_index":1536,"name":{},"parent":{"5995":{}}}],["generated/graphql\".subscriptiontokenargs.__type",{"_index":1537,"name":{},"parent":{"5996":{},"5997":{}}}],["generated/graphql\".subscriptiontokendaydataargs",{"_index":1590,"name":{},"parent":{"6151":{}}}],["generated/graphql\".subscriptiontokendaydataargs.__type",{"_index":1591,"name":{},"parent":{"6152":{},"6153":{}}}],["generated/graphql\".subscriptiontokendaydatasargs",{"_index":1592,"name":{},"parent":{"6155":{}}}],["generated/graphql\".subscriptiontokendaydatasargs.__type",{"_index":1593,"name":{},"parent":{"6156":{},"6157":{},"6158":{},"6159":{},"6160":{},"6161":{}}}],["generated/graphql\".subscriptiontokensargs",{"_index":1538,"name":{},"parent":{"5999":{}}}],["generated/graphql\".subscriptiontokensargs.__type",{"_index":1539,"name":{},"parent":{"6000":{},"6001":{},"6002":{},"6003":{},"6004":{},"6005":{}}}],["generated/graphql\".subscriptiontransactionargs",{"_index":1556,"name":{},"parent":{"6055":{}}}],["generated/graphql\".subscriptiontransactionargs.__type",{"_index":1557,"name":{},"parent":{"6056":{},"6057":{}}}],["generated/graphql\".subscriptiontransactionsargs",{"_index":1558,"name":{},"parent":{"6059":{}}}],["generated/graphql\".subscriptiontransactionsargs.__type",{"_index":1559,"name":{},"parent":{"6060":{},"6061":{},"6062":{},"6063":{},"6064":{},"6065":{}}}],["generated/graphql\".subscriptionuserargs",{"_index":1544,"name":{},"parent":{"6019":{}}}],["generated/graphql\".subscriptionuserargs.__type",{"_index":1545,"name":{},"parent":{"6020":{},"6021":{}}}],["generated/graphql\".subscriptionusersargs",{"_index":1546,"name":{},"parent":{"6023":{}}}],["generated/graphql\".subscriptionusersargs.__type",{"_index":1547,"name":{},"parent":{"6024":{},"6025":{},"6026":{},"6027":{},"6028":{},"6029":{}}}],["generated/graphql\".sushiswapdaydata",{"_index":1690,"name":{},"parent":{"6614":{}}}],["generated/graphql\".sushiswapdaydata.__type",{"_index":1691,"name":{},"parent":{"6615":{},"6616":{},"6617":{},"6618":{},"6619":{},"6620":{},"6621":{},"6622":{},"6623":{},"6624":{},"6625":{},"6626":{},"6627":{}}}],["generated/graphql\".sushiswapdaydata_filter",{"_index":1696,"name":{},"parent":{"6636":{}}}],["generated/graphql\".sushiswapdaydata_filter.__type",{"_index":1697,"name":{},"parent":{"6637":{},"6638":{},"6639":{},"6640":{},"6641":{},"6642":{},"6643":{},"6644":{},"6645":{},"6646":{},"6647":{},"6648":{},"6649":{},"6650":{},"6651":{},"6652":{},"6653":{},"6654":{},"6655":{},"6656":{},"6657":{},"6658":{},"6659":{},"6660":{},"6661":{},"6662":{},"6663":{},"6664":{},"6665":{},"6666":{},"6667":{},"6668":{},"6669":{},"6670":{},"6671":{},"6672":{},"6673":{},"6674":{},"6675":{},"6676":{},"6677":{},"6678":{},"6679":{},"6680":{},"6681":{},"6682":{},"6683":{},"6684":{},"6685":{},"6686":{},"6687":{},"6688":{},"6689":{},"6690":{},"6691":{},"6692":{},"6693":{},"6694":{},"6695":{},"6696":{},"6697":{},"6698":{},"6699":{},"6700":{},"6701":{},"6702":{},"6703":{},"6704":{},"6705":{},"6706":{},"6707":{},"6708":{},"6709":{},"6710":{},"6711":{},"6712":{},"6713":{},"6714":{},"6715":{},"6716":{},"6717":{},"6718":{},"6719":{},"6720":{},"6721":{},"6722":{},"6723":{},"6724":{},"6725":{},"6726":{},"6727":{},"6728":{}}}],["generated/graphql\".sushiswapdaydata_orderby",{"_index":1328,"name":{},"parent":{"4785":{},"4786":{},"4787":{},"4788":{},"4789":{},"4790":{},"4791":{},"4792":{},"4793":{},"4794":{},"4795":{},"4796":{}}}],["generated/graphql\".sushiswapdaydatamostliquidtokensargs",{"_index":1693,"name":{},"parent":{"6629":{}}}],["generated/graphql\".sushiswapdaydatamostliquidtokensargs.__type",{"_index":1694,"name":{},"parent":{"6630":{},"6631":{},"6632":{},"6633":{},"6634":{}}}],["generated/graphql\".sushiswapfactory",{"_index":1722,"name":{},"parent":{"6730":{}}}],["generated/graphql\".sushiswapfactory.__type",{"_index":1723,"name":{},"parent":{"6731":{},"6732":{},"6733":{},"6734":{},"6735":{},"6736":{},"6737":{},"6738":{},"6739":{},"6740":{}}}],["generated/graphql\".sushiswapfactory_filter",{"_index":1728,"name":{},"parent":{"6749":{}}}],["generated/graphql\".sushiswapfactory_filter.__type",{"_index":1729,"name":{},"parent":{"6750":{},"6751":{},"6752":{},"6753":{},"6754":{},"6755":{},"6756":{},"6757":{},"6758":{},"6759":{},"6760":{},"6761":{},"6762":{},"6763":{},"6764":{},"6765":{},"6766":{},"6767":{},"6768":{},"6769":{},"6770":{},"6771":{},"6772":{},"6773":{},"6774":{},"6775":{},"6776":{},"6777":{},"6778":{},"6779":{},"6780":{},"6781":{},"6782":{},"6783":{},"6784":{},"6785":{},"6786":{},"6787":{},"6788":{},"6789":{},"6790":{},"6791":{},"6792":{},"6793":{},"6794":{},"6795":{},"6796":{},"6797":{},"6798":{},"6799":{},"6800":{},"6801":{},"6802":{},"6803":{},"6804":{},"6805":{},"6806":{},"6807":{},"6808":{},"6809":{},"6810":{},"6811":{},"6812":{},"6813":{},"6814":{},"6815":{},"6816":{},"6817":{}}}],["generated/graphql\".sushiswapfactory_orderby",{"_index":1334,"name":{},"parent":{"4798":{},"4799":{},"4800":{},"4801":{},"4802":{},"4803":{},"4804":{},"4805":{},"4806":{}}}],["generated/graphql\".sushiswapfactorymostliquidtokensargs",{"_index":1725,"name":{},"parent":{"6742":{}}}],["generated/graphql\".sushiswapfactorymostliquidtokensargs.__type",{"_index":1726,"name":{},"parent":{"6743":{},"6744":{},"6745":{},"6746":{},"6747":{}}}],["generated/graphql\".swap",{"_index":1596,"name":{},"parent":{"6166":{}}}],["generated/graphql\".swap.__type",{"_index":1597,"name":{},"parent":{"6167":{},"6168":{},"6169":{},"6170":{},"6171":{},"6172":{},"6173":{},"6174":{},"6175":{},"6176":{},"6177":{},"6178":{},"6179":{}}}],["generated/graphql\".swap_filter",{"_index":1598,"name":{},"parent":{"6181":{}}}],["generated/graphql\".swap_filter.__type",{"_index":1599,"name":{},"parent":{"6182":{},"6183":{},"6184":{},"6185":{},"6186":{},"6187":{},"6188":{},"6189":{},"6190":{},"6191":{},"6192":{},"6193":{},"6194":{},"6195":{},"6196":{},"6197":{},"6198":{},"6199":{},"6200":{},"6201":{},"6202":{},"6203":{},"6204":{},"6205":{},"6206":{},"6207":{},"6208":{},"6209":{},"6210":{},"6211":{},"6212":{},"6213":{},"6214":{},"6215":{},"6216":{},"6217":{},"6218":{},"6219":{},"6220":{},"6221":{},"6222":{},"6223":{},"6224":{},"6225":{},"6226":{},"6227":{},"6228":{},"6229":{},"6230":{},"6231":{},"6232":{},"6233":{},"6234":{},"6235":{},"6236":{},"6237":{},"6238":{},"6239":{},"6240":{},"6241":{},"6242":{},"6243":{},"6244":{},"6245":{},"6246":{},"6247":{},"6248":{},"6249":{},"6250":{},"6251":{},"6252":{},"6253":{},"6254":{},"6255":{},"6256":{},"6257":{},"6258":{},"6259":{},"6260":{},"6261":{},"6262":{},"6263":{},"6264":{},"6265":{},"6266":{},"6267":{},"6268":{},"6269":{},"6270":{},"6271":{},"6272":{},"6273":{},"6274":{},"6275":{},"6276":{},"6277":{},"6278":{},"6279":{},"6280":{},"6281":{},"6282":{},"6283":{},"6284":{},"6285":{}}}],["generated/graphql\".swap_orderby",{"_index":1313,"name":{},"parent":{"4738":{},"4739":{},"4740":{},"4741":{},"4742":{},"4743":{},"4744":{},"4745":{},"4746":{},"4747":{},"4748":{},"4749":{}}}],["generated/graphql\".token",{"_index":1600,"name":{},"parent":{"6287":{}}}],["generated/graphql\".token.__type",{"_index":1601,"name":{},"parent":{"6288":{},"6289":{},"6290":{},"6291":{},"6292":{},"6293":{},"6294":{},"6295":{},"6296":{},"6297":{},"6298":{},"6299":{},"6300":{}}}],["generated/graphql\".token_filter",{"_index":1657,"name":{},"parent":{"6440":{}}}],["generated/graphql\".token_filter.__type",{"_index":1658,"name":{},"parent":{"6441":{},"6442":{},"6443":{},"6444":{},"6445":{},"6446":{},"6447":{},"6448":{},"6449":{},"6450":{},"6451":{},"6452":{},"6453":{},"6454":{},"6455":{},"6456":{},"6457":{},"6458":{},"6459":{},"6460":{},"6461":{},"6462":{},"6463":{},"6464":{},"6465":{},"6466":{},"6467":{},"6468":{},"6469":{},"6470":{},"6471":{},"6472":{},"6473":{},"6474":{},"6475":{},"6476":{},"6477":{},"6478":{},"6479":{},"6480":{},"6481":{},"6482":{},"6483":{},"6484":{},"6485":{},"6486":{},"6487":{},"6488":{},"6489":{},"6490":{},"6491":{},"6492":{},"6493":{},"6494":{},"6495":{},"6496":{},"6497":{},"6498":{},"6499":{},"6500":{},"6501":{},"6502":{},"6503":{},"6504":{},"6505":{},"6506":{},"6507":{},"6508":{},"6509":{},"6510":{},"6511":{},"6512":{},"6513":{},"6514":{},"6515":{},"6516":{},"6517":{},"6518":{},"6519":{},"6520":{},"6521":{},"6522":{},"6523":{},"6524":{},"6525":{},"6526":{},"6527":{},"6528":{},"6529":{},"6530":{},"6531":{},"6532":{},"6533":{},"6534":{},"6535":{},"6536":{},"6537":{},"6538":{},"6539":{},"6540":{},"6541":{},"6542":{},"6543":{},"6544":{}}}],["generated/graphql\".token_orderby",{"_index":1322,"name":{},"parent":{"4765":{},"4766":{},"4767":{},"4768":{},"4769":{},"4770":{},"4771":{},"4772":{},"4773":{},"4774":{},"4775":{},"4776":{}}}],["generated/graphql\".tokendaydata",{"_index":1605,"name":{},"parent":{"6309":{}}}],["generated/graphql\".tokendaydata.__type",{"_index":1606,"name":{},"parent":{"6310":{},"6311":{},"6312":{},"6313":{},"6314":{},"6315":{},"6316":{},"6317":{},"6318":{},"6319":{},"6320":{},"6321":{},"6322":{},"6323":{}}}],["generated/graphql\".tokendaydata_filter",{"_index":1610,"name":{},"parent":{"6332":{}}}],["generated/graphql\".tokendaydata_filter.__type",{"_index":1611,"name":{},"parent":{"6333":{},"6334":{},"6335":{},"6336":{},"6337":{},"6338":{},"6339":{},"6340":{},"6341":{},"6342":{},"6343":{},"6344":{},"6345":{},"6346":{},"6347":{},"6348":{},"6349":{},"6350":{},"6351":{},"6352":{},"6353":{},"6354":{},"6355":{},"6356":{},"6357":{},"6358":{},"6359":{},"6360":{},"6361":{},"6362":{},"6363":{},"6364":{},"6365":{},"6366":{},"6367":{},"6368":{},"6369":{},"6370":{},"6371":{},"6372":{},"6373":{},"6374":{},"6375":{},"6376":{},"6377":{},"6378":{},"6379":{},"6380":{},"6381":{},"6382":{},"6383":{},"6384":{},"6385":{},"6386":{},"6387":{},"6388":{},"6389":{},"6390":{},"6391":{},"6392":{},"6393":{},"6394":{},"6395":{},"6396":{},"6397":{},"6398":{},"6399":{},"6400":{},"6401":{},"6402":{},"6403":{},"6404":{},"6405":{},"6406":{},"6407":{},"6408":{},"6409":{},"6410":{},"6411":{},"6412":{},"6413":{},"6414":{},"6415":{},"6416":{},"6417":{},"6418":{},"6419":{},"6420":{},"6421":{},"6422":{},"6423":{},"6424":{},"6425":{},"6426":{},"6427":{},"6428":{},"6429":{},"6430":{},"6431":{},"6432":{},"6433":{},"6434":{},"6435":{},"6436":{},"6437":{},"6438":{}}}],["generated/graphql\".tokendaydata_orderby",{"_index":1314,"name":{},"parent":{"4751":{},"4752":{},"4753":{},"4754":{},"4755":{},"4756":{},"4757":{},"4758":{},"4759":{},"4760":{},"4761":{},"4762":{},"4763":{}}}],["generated/graphql\".tokendaydatamostliquidpairsargs",{"_index":1608,"name":{},"parent":{"6325":{}}}],["generated/graphql\".tokendaydatamostliquidpairsargs.__type",{"_index":1609,"name":{},"parent":{"6326":{},"6327":{},"6328":{},"6329":{},"6330":{}}}],["generated/graphql\".tokenmostliquidpairsargs",{"_index":1603,"name":{},"parent":{"6302":{}}}],["generated/graphql\".tokenmostliquidpairsargs.__type",{"_index":1604,"name":{},"parent":{"6303":{},"6304":{},"6305":{},"6306":{},"6307":{}}}],["generated/graphql\".transaction",{"_index":1680,"name":{},"parent":{"6546":{}}}],["generated/graphql\".transaction.__type",{"_index":1681,"name":{},"parent":{"6547":{},"6548":{},"6549":{},"6550":{},"6551":{},"6552":{},"6553":{}}}],["generated/graphql\".transaction_filter",{"_index":1688,"name":{},"parent":{"6576":{}}}],["generated/graphql\".transaction_filter.__type",{"_index":1689,"name":{},"parent":{"6577":{},"6578":{},"6579":{},"6580":{},"6581":{},"6582":{},"6583":{},"6584":{},"6585":{},"6586":{},"6587":{},"6588":{},"6589":{},"6590":{},"6591":{},"6592":{},"6593":{},"6594":{},"6595":{},"6596":{},"6597":{},"6598":{},"6599":{},"6600":{},"6601":{},"6602":{},"6603":{},"6604":{},"6605":{},"6606":{},"6607":{},"6608":{},"6609":{},"6610":{},"6611":{},"6612":{}}}],["generated/graphql\".transaction_orderby",{"_index":1326,"name":{},"parent":{"4778":{},"4779":{},"4780":{},"4781":{},"4782":{},"4783":{}}}],["generated/graphql\".transactionburnsargs",{"_index":1684,"name":{},"parent":{"6562":{}}}],["generated/graphql\".transactionburnsargs.__type",{"_index":1685,"name":{},"parent":{"6563":{},"6564":{},"6565":{},"6566":{},"6567":{}}}],["generated/graphql\".transactionmintsargs",{"_index":1682,"name":{},"parent":{"6555":{}}}],["generated/graphql\".transactionmintsargs.__type",{"_index":1683,"name":{},"parent":{"6556":{},"6557":{},"6558":{},"6559":{},"6560":{}}}],["generated/graphql\".transactionswapsargs",{"_index":1686,"name":{},"parent":{"6569":{}}}],["generated/graphql\".transactionswapsargs.__type",{"_index":1687,"name":{},"parent":{"6570":{},"6571":{},"6572":{},"6573":{},"6574":{}}}],["generated/graphql\".user",{"_index":1730,"name":{},"parent":{"6819":{}}}],["generated/graphql\".user.__type",{"_index":1731,"name":{},"parent":{"6820":{},"6821":{},"6822":{},"6823":{}}}],["generated/graphql\".user_filter",{"_index":1734,"name":{},"parent":{"6832":{}}}],["generated/graphql\".user_filter.__type",{"_index":1735,"name":{},"parent":{"6833":{},"6834":{},"6835":{},"6836":{},"6837":{},"6838":{},"6839":{},"6840":{},"6841":{},"6842":{},"6843":{},"6844":{},"6845":{},"6846":{},"6847":{},"6848":{}}}],["generated/graphql\".user_orderby",{"_index":1335,"name":{},"parent":{"4808":{},"4809":{},"4810":{}}}],["generated/graphql\".userliquiditypositionsargs",{"_index":1732,"name":{},"parent":{"6825":{}}}],["generated/graphql\".userliquiditypositionsargs.__type",{"_index":1733,"name":{},"parent":{"6826":{},"6827":{},"6828":{},"6829":{},"6830":{}}}],["handler",{"_index":0,"name":{"0":{},"6":{}},"parent":{"1":{},"5":{},"6":{}}}],["handler\".queryhandlerprops",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{}}}],["hash",{"_index":143,"name":{"242":{},"2697":{},"4831":{},"6852":{}},"parent":{}}],["hasindexingerrors",{"_index":1029,"name":{"2704":{},"6859":{}},"parent":{}}],["help",{"_index":1033,"name":{"2708":{},"2719":{},"2750":{},"2762":{},"2793":{},"2809":{},"2840":{},"2877":{},"2908":{},"2949":{},"2980":{},"3007":{},"3038":{},"3065":{},"3096":{},"3127":{},"3158":{},"3189":{},"3220":{},"3257":{},"3288":{},"3329":{},"3360":{},"3382":{},"3413":{},"3435":{},"3466":{},"3492":{},"3523":{},"3545":{},"3576":{},"3602":{},"3633":{},"3659":{},"3690":{},"3727":{},"3758":{},"3799":{},"3830":{},"3871":{},"3902":{},"3939":{},"3970":{},"4007":{},"4038":{},"4079":{},"4110":{},"4137":{},"4168":{},"4200":{},"4231":{},"4267":{},"4298":{},"4329":{},"4360":{},"4397":{},"4428":{},"4484":{},"4515":{},"4542":{},"4573":{},"4609":{}},"parent":{}}],["hidden",{"_index":1040,"name":{"2717":{},"2760":{},"2807":{},"2875":{},"2947":{},"3005":{},"3063":{},"3125":{},"3187":{},"3255":{},"3327":{},"3380":{},"3433":{},"3490":{},"3543":{},"3600":{},"3657":{},"3725":{},"3797":{},"3869":{},"3937":{},"4005":{},"4077":{},"4135":{},"4198":{},"4265":{},"4327":{},"4395":{},"4482":{},"4540":{},"4607":{}},"parent":{}}],["hourdata",{"_index":47,"name":{"51":{},"150":{},"206":{},"507":{},"619":{},"1083":{},"1582":{},"1848":{},"2220":{}},"parent":{}}],["hourdata_filter",{"_index":384,"name":{"631":{}},"parent":{}}],["hourdata_orderby",{"_index":49,"name":{"53":{}},"parent":{}}],["hourdatas",{"_index":627,"name":{"1583":{},"1849":{}},"parent":{}}],["hourlytxns",{"_index":1309,"name":{"4716":{},"5476":{},"5557":{}},"parent":{}}],["hourlytxns_gt",{"_index":1438,"name":{"5559":{}},"parent":{}}],["hourlytxns_gte",{"_index":1440,"name":{"5561":{}},"parent":{}}],["hourlytxns_in",{"_index":1442,"name":{"5563":{}},"parent":{}}],["hourlytxns_lt",{"_index":1439,"name":{"5560":{}},"parent":{}}],["hourlytxns_lte",{"_index":1441,"name":{"5562":{}},"parent":{}}],["hourlytxns_not",{"_index":1437,"name":{"5558":{}},"parent":{}}],["hourlytxns_not_in",{"_index":1443,"name":{"5564":{}},"parent":{}}],["hourlyvolumetoken0",{"_index":1306,"name":{"4713":{},"5473":{},"5533":{}},"parent":{}}],["hourlyvolumetoken0_gt",{"_index":1417,"name":{"5535":{}},"parent":{}}],["hourlyvolumetoken0_gte",{"_index":1419,"name":{"5537":{}},"parent":{}}],["hourlyvolumetoken0_in",{"_index":1421,"name":{"5539":{}},"parent":{}}],["hourlyvolumetoken0_lt",{"_index":1418,"name":{"5536":{}},"parent":{}}],["hourlyvolumetoken0_lte",{"_index":1420,"name":{"5538":{}},"parent":{}}],["hourlyvolumetoken0_not",{"_index":1416,"name":{"5534":{}},"parent":{}}],["hourlyvolumetoken0_not_in",{"_index":1422,"name":{"5540":{}},"parent":{}}],["hourlyvolumetoken1",{"_index":1307,"name":{"4714":{},"5474":{},"5541":{}},"parent":{}}],["hourlyvolumetoken1_gt",{"_index":1424,"name":{"5543":{}},"parent":{}}],["hourlyvolumetoken1_gte",{"_index":1426,"name":{"5545":{}},"parent":{}}],["hourlyvolumetoken1_in",{"_index":1428,"name":{"5547":{}},"parent":{}}],["hourlyvolumetoken1_lt",{"_index":1425,"name":{"5544":{}},"parent":{}}],["hourlyvolumetoken1_lte",{"_index":1427,"name":{"5546":{}},"parent":{}}],["hourlyvolumetoken1_not",{"_index":1423,"name":{"5542":{}},"parent":{}}],["hourlyvolumetoken1_not_in",{"_index":1429,"name":{"5548":{}},"parent":{}}],["hourlyvolumeusd",{"_index":1308,"name":{"4715":{},"5475":{},"5549":{}},"parent":{}}],["hourlyvolumeusd_gt",{"_index":1431,"name":{"5551":{}},"parent":{}}],["hourlyvolumeusd_gte",{"_index":1433,"name":{"5553":{}},"parent":{}}],["hourlyvolumeusd_in",{"_index":1435,"name":{"5555":{}},"parent":{}}],["hourlyvolumeusd_lt",{"_index":1432,"name":{"5552":{}},"parent":{}}],["hourlyvolumeusd_lte",{"_index":1434,"name":{"5554":{}},"parent":{}}],["hourlyvolumeusd_not",{"_index":1430,"name":{"5550":{}},"parent":{}}],["hourlyvolumeusd_not_in",{"_index":1436,"name":{"5556":{}},"parent":{}}],["hourstartunix",{"_index":1305,"name":{"4708":{},"5468":{},"5487":{}},"parent":{}}],["hourstartunix_gt",{"_index":1410,"name":{"5489":{}},"parent":{}}],["hourstartunix_gte",{"_index":1412,"name":{"5491":{}},"parent":{}}],["hourstartunix_in",{"_index":1414,"name":{"5493":{}},"parent":{}}],["hourstartunix_lt",{"_index":1411,"name":{"5490":{}},"parent":{}}],["hourstartunix_lte",{"_index":1413,"name":{"5492":{}},"parent":{}}],["hourstartunix_not",{"_index":1409,"name":{"5488":{}},"parent":{}}],["hourstartunix_not_in",{"_index":1415,"name":{"5494":{}},"parent":{}}],["id",{"_index":11,"name":{"11":{},"14":{},"29":{},"39":{},"54":{},"64":{},"78":{},"86":{},"103":{},"117":{},"128":{},"157":{},"170":{},"182":{},"194":{},"213":{},"220":{},"232":{},"247":{},"251":{},"270":{},"286":{},"403":{},"414":{},"495":{},"539":{},"622":{},"633":{},"714":{},"731":{},"746":{},"870":{},"933":{},"948":{},"1061":{},"1141":{},"1156":{},"1281":{},"1293":{},"1381":{},"1616":{},"1628":{},"1640":{},"1652":{},"1664":{},"1676":{},"1688":{},"1700":{},"1712":{},"1724":{},"1736":{},"1748":{},"1760":{},"1772":{},"1784":{},"1796":{},"1808":{},"1879":{},"1891":{},"1903":{},"1915":{},"1927":{},"1939":{},"1951":{},"1963":{},"1975":{},"1987":{},"1999":{},"2011":{},"2023":{},"2035":{},"2047":{},"2059":{},"2071":{},"2087":{},"2101":{},"2208":{},"2271":{},"2284":{},"2381":{},"2394":{},"2490":{},"2607":{},"2636":{},"2675":{},"2686":{},"2714":{},"2729":{},"2751":{},"2757":{},"2772":{},"2804":{},"2819":{},"2866":{},"2872":{},"2887":{},"2944":{},"2959":{},"2996":{},"3002":{},"3017":{},"3054":{},"3060":{},"3075":{},"3122":{},"3137":{},"3184":{},"3199":{},"3246":{},"3252":{},"3267":{},"3324":{},"3339":{},"3371":{},"3377":{},"3392":{},"3424":{},"3430":{},"3445":{},"3487":{},"3502":{},"3534":{},"3540":{},"3555":{},"3597":{},"3612":{},"3654":{},"3669":{},"3716":{},"3722":{},"3737":{},"3794":{},"3809":{},"3866":{},"3881":{},"3928":{},"3934":{},"3949":{},"3996":{},"4002":{},"4017":{},"4074":{},"4089":{},"4126":{},"4132":{},"4147":{},"4189":{},"4195":{},"4210":{},"4262":{},"4277":{},"4324":{},"4339":{},"4386":{},"4392":{},"4407":{},"4479":{},"4494":{},"4531":{},"4537":{},"4552":{},"4604":{},"4619":{},"4639":{},"4642":{},"4657":{},"4671":{},"4676":{},"4693":{},"4707":{},"4718":{},"4738":{},"4751":{},"4765":{},"4778":{},"4785":{},"4798":{},"4808":{},"4821":{},"4836":{},"4840":{},"4859":{},"4875":{},"4992":{},"4999":{},"5014":{},"5138":{},"5185":{},"5200":{},"5313":{},"5335":{},"5350":{},"5467":{},"5479":{},"5567":{},"5767":{},"5779":{},"5791":{},"5803":{},"5815":{},"5827":{},"5839":{},"5851":{},"5863":{},"5875":{},"5887":{},"5899":{},"5911":{},"5923":{},"5935":{},"5984":{},"5996":{},"6008":{},"6020":{},"6032":{},"6044":{},"6056":{},"6068":{},"6080":{},"6092":{},"6104":{},"6116":{},"6128":{},"6140":{},"6152":{},"6168":{},"6182":{},"6289":{},"6311":{},"6333":{},"6441":{},"6548":{},"6577":{},"6616":{},"6637":{},"6732":{},"6750":{},"6821":{},"6833":{}},"parent":{}}],["id_gt",{"_index":154,"name":{"253":{},"288":{},"416":{},"541":{},"635":{},"748":{},"872":{},"950":{},"1158":{},"1295":{},"1383":{},"2103":{},"2286":{},"2396":{},"2492":{},"2638":{},"2688":{},"4842":{},"4877":{},"5016":{},"5140":{},"5202":{},"5352":{},"5481":{},"5569":{},"6184":{},"6335":{},"6443":{},"6579":{},"6639":{},"6752":{},"6835":{}},"parent":{}}],["id_gte",{"_index":156,"name":{"255":{},"290":{},"418":{},"543":{},"637":{},"750":{},"874":{},"952":{},"1160":{},"1297":{},"1385":{},"2105":{},"2288":{},"2398":{},"2494":{},"2640":{},"2690":{},"4844":{},"4879":{},"5018":{},"5142":{},"5204":{},"5354":{},"5483":{},"5571":{},"6186":{},"6337":{},"6445":{},"6581":{},"6641":{},"6754":{},"6837":{}},"parent":{}}],["id_in",{"_index":158,"name":{"257":{},"292":{},"420":{},"545":{},"639":{},"752":{},"876":{},"954":{},"1162":{},"1299":{},"1387":{},"2107":{},"2290":{},"2400":{},"2496":{},"2642":{},"2692":{},"4846":{},"4881":{},"5020":{},"5144":{},"5206":{},"5356":{},"5485":{},"5573":{},"6188":{},"6339":{},"6447":{},"6583":{},"6643":{},"6756":{},"6839":{}},"parent":{}}],["id_lt",{"_index":155,"name":{"254":{},"289":{},"417":{},"542":{},"636":{},"749":{},"873":{},"951":{},"1159":{},"1296":{},"1384":{},"2104":{},"2287":{},"2397":{},"2493":{},"2639":{},"2689":{},"4843":{},"4878":{},"5017":{},"5141":{},"5203":{},"5353":{},"5482":{},"5570":{},"6185":{},"6336":{},"6444":{},"6580":{},"6640":{},"6753":{},"6836":{}},"parent":{}}],["id_lte",{"_index":157,"name":{"256":{},"291":{},"419":{},"544":{},"638":{},"751":{},"875":{},"953":{},"1161":{},"1298":{},"1386":{},"2106":{},"2289":{},"2399":{},"2495":{},"2641":{},"2691":{},"4845":{},"4880":{},"5019":{},"5143":{},"5205":{},"5355":{},"5484":{},"5572":{},"6187":{},"6338":{},"6446":{},"6582":{},"6642":{},"6755":{},"6838":{}},"parent":{}}],["id_not",{"_index":153,"name":{"252":{},"287":{},"415":{},"540":{},"634":{},"747":{},"871":{},"949":{},"1157":{},"1294":{},"1382":{},"2102":{},"2285":{},"2395":{},"2491":{},"2637":{},"2687":{},"4841":{},"4876":{},"5015":{},"5139":{},"5201":{},"5351":{},"5480":{},"5568":{},"6183":{},"6334":{},"6442":{},"6578":{},"6638":{},"6751":{},"6834":{}},"parent":{}}],["id_not_in",{"_index":159,"name":{"258":{},"293":{},"421":{},"546":{},"640":{},"753":{},"877":{},"955":{},"1163":{},"1300":{},"1388":{},"2108":{},"2291":{},"2401":{},"2497":{},"2643":{},"2693":{},"4847":{},"4882":{},"5021":{},"5145":{},"5207":{},"5357":{},"5486":{},"5574":{},"6189":{},"6340":{},"6448":{},"6584":{},"6644":{},"6757":{},"6840":{}},"parent":{}}],["index",{"_index":7,"name":{"7":{}},"parent":{"8":{}}}],["init",{"_index":1059,"name":{"2739":{},"2782":{},"2829":{},"2897":{},"2969":{},"3027":{},"3085":{},"3147":{},"3209":{},"3277":{},"3349":{},"3402":{},"3455":{},"3512":{},"3565":{},"3622":{},"3679":{},"3747":{},"3819":{},"3891":{},"3959":{},"4027":{},"4099":{},"4157":{},"4220":{},"4287":{},"4349":{},"4417":{},"4504":{},"4562":{},"4629":{}},"parent":{}}],["int",{"_index":136,"name":{"235":{},"4824":{}},"parent":{}}],["liquidity",{"_index":19,"name":{"18":{},"91":{},"177":{},"189":{},"204":{},"274":{},"330":{},"938":{},"998":{},"2218":{},"2278":{},"2346":{},"2388":{},"2456":{},"2588":{},"4646":{},"4681":{},"4863":{},"4919":{},"5190":{},"5250":{}},"parent":{}}],["liquidity_gt",{"_index":207,"name":{"332":{},"1000":{},"2348":{},"2458":{},"2590":{},"4921":{},"5252":{}},"parent":{}}],["liquidity_gte",{"_index":209,"name":{"334":{},"1002":{},"2350":{},"2460":{},"2592":{},"4923":{},"5254":{}},"parent":{}}],["liquidity_in",{"_index":211,"name":{"336":{},"1004":{},"2352":{},"2462":{},"2594":{},"4925":{},"5256":{}},"parent":{}}],["liquidity_lt",{"_index":208,"name":{"333":{},"1001":{},"2349":{},"2459":{},"2591":{},"4922":{},"5253":{}},"parent":{}}],["liquidity_lte",{"_index":210,"name":{"335":{},"1003":{},"2351":{},"2461":{},"2593":{},"4924":{},"5255":{}},"parent":{}}],["liquidity_not",{"_index":206,"name":{"331":{},"999":{},"2347":{},"2457":{},"2589":{},"4920":{},"5251":{}},"parent":{}}],["liquidity_not_in",{"_index":212,"name":{"337":{},"1005":{},"2353":{},"2463":{},"2595":{},"4926":{},"5257":{}},"parent":{}}],["liquidityeth",{"_index":36,"name":{"35":{},"45":{},"60":{},"178":{},"190":{},"409":{},"468":{},"501":{},"587":{},"628":{},"687":{},"2279":{},"2354":{},"2389":{},"2464":{}},"parent":{}}],["liquidityeth_gt",{"_index":313,"name":{"470":{},"589":{},"689":{},"2356":{},"2466":{}},"parent":{}}],["liquidityeth_gte",{"_index":315,"name":{"472":{},"591":{},"691":{},"2358":{},"2468":{}},"parent":{}}],["liquidityeth_in",{"_index":317,"name":{"474":{},"593":{},"693":{},"2360":{},"2470":{}},"parent":{}}],["liquidityeth_lt",{"_index":314,"name":{"471":{},"590":{},"690":{},"2357":{},"2467":{}},"parent":{}}],["liquidityeth_lte",{"_index":316,"name":{"473":{},"592":{},"692":{},"2359":{},"2469":{}},"parent":{}}],["liquidityeth_not",{"_index":312,"name":{"469":{},"588":{},"688":{},"2355":{},"2465":{}},"parent":{}}],["liquidityeth_not_in",{"_index":318,"name":{"475":{},"594":{},"694":{},"2361":{},"2471":{}},"parent":{}}],["liquidityposition",{"_index":53,"name":{"65":{},"711":{},"732":{},"754":{},"1598":{},"1864":{},"2978":{},"4658":{},"4989":{},"5000":{},"5022":{},"5742":{},"5959":{}},"parent":{}}],["liquidityposition_contains",{"_index":405,"name":{"762":{},"5030":{}},"parent":{}}],["liquidityposition_ends_with",{"_index":409,"name":{"766":{},"5034":{}},"parent":{}}],["liquidityposition_filter",{"_index":480,"name":{"868":{},"5136":{}},"parent":{}}],["liquidityposition_gt",{"_index":399,"name":{"756":{},"5024":{}},"parent":{}}],["liquidityposition_gte",{"_index":401,"name":{"758":{},"5026":{}},"parent":{}}],["liquidityposition_in",{"_index":403,"name":{"760":{},"5028":{}},"parent":{}}],["liquidityposition_lt",{"_index":400,"name":{"757":{},"5025":{}},"parent":{}}],["liquidityposition_lte",{"_index":402,"name":{"759":{},"5027":{}},"parent":{}}],["liquidityposition_not",{"_index":398,"name":{"755":{},"5023":{}},"parent":{}}],["liquidityposition_not_contains",{"_index":406,"name":{"763":{},"5031":{}},"parent":{}}],["liquidityposition_not_ends_with",{"_index":410,"name":{"767":{},"5035":{}},"parent":{}}],["liquidityposition_not_in",{"_index":404,"name":{"761":{},"5029":{}},"parent":{}}],["liquidityposition_not_starts_with",{"_index":408,"name":{"765":{},"5033":{}},"parent":{}}],["liquidityposition_orderby",{"_index":63,"name":{"77":{},"4670":{}},"parent":{}}],["liquidityposition_starts_with",{"_index":407,"name":{"764":{},"5032":{}},"parent":{}}],["liquiditypositiondocument",{"_index":1120,"name":{"3034":{}},"parent":{}}],["liquiditypositions",{"_index":89,"name":{"147":{},"221":{},"1080":{},"1599":{},"1865":{},"2676":{},"3156":{},"4809":{},"5743":{},"5960":{},"6822":{}},"parent":{}}],["liquiditypositionsdocument",{"_index":1138,"name":{"3216":{}},"parent":{}}],["liquiditypositionsnapshot",{"_index":392,"name":{"728":{},"1600":{},"1866":{},"3036":{},"4996":{},"5744":{},"5961":{}},"parent":{}}],["liquiditypositionsnapshot_filter",{"_index":395,"name":{"744":{},"5012":{}},"parent":{}}],["liquiditypositionsnapshot_orderby",{"_index":51,"name":{"63":{},"4656":{}},"parent":{}}],["liquiditypositionsnapshotdocument",{"_index":1126,"name":{"3092":{}},"parent":{}}],["liquiditypositionsnapshots",{"_index":90,"name":{"148":{},"1081":{},"1601":{},"1867":{},"3094":{},"5745":{},"5962":{}},"parent":{}}],["liquiditypositionsnapshotsargs",{"_index":389,"name":{"721":{}},"parent":{}}],["liquiditypositionsnapshotsdocument",{"_index":1132,"name":{"3154":{}},"parent":{}}],["liquidityprovidercount",{"_index":88,"name":{"146":{},"1079":{},"1549":{},"4736":{},"5331":{},"5723":{}},"parent":{}}],["liquidityprovidercount_gt",{"_index":616,"name":{"1551":{},"5725":{}},"parent":{}}],["liquidityprovidercount_gte",{"_index":618,"name":{"1553":{},"5727":{}},"parent":{}}],["liquidityprovidercount_in",{"_index":620,"name":{"1555":{},"5729":{}},"parent":{}}],["liquidityprovidercount_lt",{"_index":617,"name":{"1552":{},"5726":{}},"parent":{}}],["liquidityprovidercount_lte",{"_index":619,"name":{"1554":{},"5728":{}},"parent":{}}],["liquidityprovidercount_not",{"_index":615,"name":{"1550":{},"5724":{}},"parent":{}}],["liquidityprovidercount_not_in",{"_index":621,"name":{"1556":{},"5730":{}},"parent":{}}],["liquiditytokenbalance",{"_index":62,"name":{"76":{},"81":{},"717":{},"743":{},"860":{},"906":{},"4669":{},"4674":{},"4995":{},"5011":{},"5128":{},"5174":{}},"parent":{}}],["liquiditytokenbalance_gt",{"_index":474,"name":{"862":{},"908":{},"5130":{},"5176":{}},"parent":{}}],["liquiditytokenbalance_gte",{"_index":476,"name":{"864":{},"910":{},"5132":{},"5178":{}},"parent":{}}],["liquiditytokenbalance_in",{"_index":478,"name":{"866":{},"912":{},"5134":{},"5180":{}},"parent":{}}],["liquiditytokenbalance_lt",{"_index":475,"name":{"863":{},"909":{},"5131":{},"5177":{}},"parent":{}}],["liquiditytokenbalance_lte",{"_index":477,"name":{"865":{},"911":{},"5133":{},"5179":{}},"parent":{}}],["liquiditytokenbalance_not",{"_index":473,"name":{"861":{},"907":{},"5129":{},"5175":{}},"parent":{}}],["liquiditytokenbalance_not_in",{"_index":479,"name":{"867":{},"913":{},"5135":{},"5181":{}},"parent":{}}],["liquiditytokentotalsupply",{"_index":61,"name":{"75":{},"742":{},"852":{},"4668":{},"5010":{},"5120":{}},"parent":{}}],["liquiditytokentotalsupply_gt",{"_index":467,"name":{"854":{},"5122":{}},"parent":{}}],["liquiditytokentotalsupply_gte",{"_index":469,"name":{"856":{},"5124":{}},"parent":{}}],["liquiditytokentotalsupply_in",{"_index":471,"name":{"858":{},"5126":{}},"parent":{}}],["liquiditytokentotalsupply_lt",{"_index":468,"name":{"855":{},"5123":{}},"parent":{}}],["liquiditytokentotalsupply_lte",{"_index":470,"name":{"857":{},"5125":{}},"parent":{}}],["liquiditytokentotalsupply_not",{"_index":466,"name":{"853":{},"5121":{}},"parent":{}}],["liquiditytokentotalsupply_not_in",{"_index":472,"name":{"859":{},"5127":{}},"parent":{}}],["liquidityusd",{"_index":37,"name":{"36":{},"44":{},"61":{},"179":{},"191":{},"410":{},"476":{},"500":{},"579":{},"629":{},"695":{},"2280":{},"2362":{},"2390":{},"2472":{}},"parent":{}}],["liquidityusd_gt",{"_index":320,"name":{"478":{},"581":{},"697":{},"2364":{},"2474":{}},"parent":{}}],["liquidityusd_gte",{"_index":322,"name":{"480":{},"583":{},"699":{},"2366":{},"2476":{}},"parent":{}}],["liquidityusd_in",{"_index":324,"name":{"482":{},"585":{},"701":{},"2368":{},"2478":{}},"parent":{}}],["liquidityusd_lt",{"_index":321,"name":{"479":{},"582":{},"698":{},"2365":{},"2475":{}},"parent":{}}],["liquidityusd_lte",{"_index":323,"name":{"481":{},"584":{},"700":{},"2367":{},"2477":{}},"parent":{}}],["liquidityusd_not",{"_index":319,"name":{"477":{},"580":{},"696":{},"2363":{},"2473":{}},"parent":{}}],["liquidityusd_not_in",{"_index":325,"name":{"483":{},"586":{},"702":{},"2369":{},"2479":{}},"parent":{}}],["log",{"_index":1058,"name":{"2738":{},"2781":{},"2828":{},"2896":{},"2968":{},"3026":{},"3084":{},"3146":{},"3208":{},"3276":{},"3348":{},"3401":{},"3454":{},"3511":{},"3564":{},"3621":{},"3678":{},"3746":{},"3818":{},"3890":{},"3958":{},"4026":{},"4098":{},"4156":{},"4219":{},"4286":{},"4348":{},"4416":{},"4503":{},"4561":{},"4628":{}},"parent":{}}],["logindex",{"_index":24,"name":{"23":{},"95":{},"167":{},"279":{},"366":{},"942":{},"1028":{},"2097":{},"2189":{},"4651":{},"4685":{},"4748":{},"4868":{},"4955":{},"5194":{},"5280":{},"6178":{},"6270":{}},"parent":{}}],["logindex_gt",{"_index":238,"name":{"368":{},"1030":{},"2191":{},"4957":{},"5282":{},"6272":{}},"parent":{}}],["logindex_gte",{"_index":240,"name":{"370":{},"1032":{},"2193":{},"4959":{},"5284":{},"6274":{}},"parent":{}}],["logindex_in",{"_index":242,"name":{"372":{},"1034":{},"2195":{},"4961":{},"5286":{},"6276":{}},"parent":{}}],["logindex_lt",{"_index":239,"name":{"369":{},"1031":{},"2192":{},"4958":{},"5283":{},"6273":{}},"parent":{}}],["logindex_lte",{"_index":241,"name":{"371":{},"1033":{},"2194":{},"4960":{},"5285":{},"6275":{}},"parent":{}}],["logindex_not",{"_index":237,"name":{"367":{},"1029":{},"2190":{},"4956":{},"5281":{},"6271":{}},"parent":{}}],["logindex_not_in",{"_index":243,"name":{"373":{},"1035":{},"2196":{},"4962":{},"5287":{},"6277":{}},"parent":{}}],["makemaybe",{"_index":130,"name":{"229":{},"4818":{}},"parent":{}}],["makeoptional",{"_index":129,"name":{"228":{},"4817":{}},"parent":{}}],["maxstored",{"_index":1320,"name":{"4762":{},"4794":{},"6322":{},"6427":{},"6625":{},"6709":{}},"parent":{}}],["maxstored_gt",{"_index":1648,"name":{"6429":{},"6711":{}},"parent":{}}],["maxstored_gte",{"_index":1650,"name":{"6431":{},"6713":{}},"parent":{}}],["maxstored_in",{"_index":1652,"name":{"6433":{},"6715":{}},"parent":{}}],["maxstored_lt",{"_index":1649,"name":{"6430":{},"6712":{}},"parent":{}}],["maxstored_lte",{"_index":1651,"name":{"6432":{},"6714":{}},"parent":{}}],["maxstored_not",{"_index":1647,"name":{"6428":{},"6710":{}},"parent":{}}],["maxstored_not_in",{"_index":1653,"name":{"6434":{},"6716":{}},"parent":{}}],["maybe",{"_index":125,"name":{"225":{},"4814":{}},"parent":{}}],["mint",{"_index":483,"name":{"930":{},"1604":{},"1870":{},"3218":{},"5182":{},"5748":{},"5965":{}},"parent":{}}],["mint_filter",{"_index":486,"name":{"946":{},"5198":{}},"parent":{}}],["mint_orderby",{"_index":66,"name":{"85":{},"4675":{}},"parent":{}}],["mintdocument",{"_index":1144,"name":{"3284":{}},"parent":{}}],["mints",{"_index":91,"name":{"151":{},"216":{},"1084":{},"1605":{},"1871":{},"2610":{},"2660":{},"3286":{},"4781":{},"5749":{},"5966":{},"6551":{},"6601":{}},"parent":{}}],["mints_contains",{"_index":1006,"name":{"2662":{},"6603":{}},"parent":{}}],["mints_not",{"_index":1005,"name":{"2661":{},"6602":{}},"parent":{}}],["mints_not_contains",{"_index":1007,"name":{"2663":{},"6604":{}},"parent":{}}],["mintsdocument",{"_index":1150,"name":{"3356":{}},"parent":{}}],["mostliquidpairs",{"_index":1321,"name":{"4763":{},"4776":{},"6300":{},"6323":{},"6435":{},"6541":{}},"parent":{}}],["mostliquidpairs_contains",{"_index":1655,"name":{"6437":{},"6543":{}},"parent":{}}],["mostliquidpairs_not",{"_index":1654,"name":{"6436":{},"6542":{}},"parent":{}}],["mostliquidpairs_not_contains",{"_index":1656,"name":{"6438":{},"6544":{}},"parent":{}}],["mostliquidtokens",{"_index":1332,"name":{"4795":{},"4806":{},"6626":{},"6717":{},"6740":{},"6814":{}},"parent":{}}],["mostliquidtokens_contains",{"_index":1720,"name":{"6719":{},"6816":{}},"parent":{}}],["mostliquidtokens_not",{"_index":1719,"name":{"6718":{},"6815":{}},"parent":{}}],["mostliquidtokens_not_contains",{"_index":1721,"name":{"6720":{},"6817":{}},"parent":{}}],["name",{"_index":83,"name":{"130":{},"197":{},"1063":{},"1403":{},"2211":{},"2526":{},"4767":{},"6291":{},"6463":{}},"parent":{}}],["name_contains",{"_index":581,"name":{"1411":{},"2534":{},"6471":{}},"parent":{}}],["name_ends_with",{"_index":585,"name":{"1415":{},"2538":{},"6475":{}},"parent":{}}],["name_gt",{"_index":575,"name":{"1405":{},"2528":{},"6465":{}},"parent":{}}],["name_gte",{"_index":577,"name":{"1407":{},"2530":{},"6467":{}},"parent":{}}],["name_in",{"_index":579,"name":{"1409":{},"2532":{},"6469":{}},"parent":{}}],["name_lt",{"_index":576,"name":{"1406":{},"2529":{},"6466":{}},"parent":{}}],["name_lte",{"_index":578,"name":{"1408":{},"2531":{},"6468":{}},"parent":{}}],["name_not",{"_index":574,"name":{"1404":{},"2527":{},"6464":{}},"parent":{}}],["name_not_contains",{"_index":582,"name":{"1412":{},"2535":{},"6472":{}},"parent":{}}],["name_not_ends_with",{"_index":586,"name":{"1416":{},"2539":{},"6476":{}},"parent":{}}],["name_not_in",{"_index":580,"name":{"1410":{},"2533":{},"6470":{}},"parent":{}}],["name_not_starts_with",{"_index":584,"name":{"1414":{},"2537":{},"6474":{}},"parent":{}}],["name_starts_with",{"_index":583,"name":{"1413":{},"2536":{},"6473":{}},"parent":{}}],["needscomplete",{"_index":1293,"name":{"4653":{},"4870":{},"4971":{}},"parent":{}}],["needscomplete_in",{"_index":1352,"name":{"4973":{}},"parent":{}}],["needscomplete_not",{"_index":1351,"name":{"4972":{}},"parent":{}}],["needscomplete_not_in",{"_index":1353,"name":{"4974":{}},"parent":{}}],["number",{"_index":145,"name":{"243":{},"2698":{},"4832":{},"6853":{}},"parent":{}}],["orderby",{"_index":340,"name":{"513":{},"520":{},"527":{},"534":{},"725":{},"1093":{},"1100":{},"1107":{},"1114":{},"1121":{},"1128":{},"1135":{},"1622":{},"1634":{},"1646":{},"1658":{},"1670":{},"1682":{},"1694":{},"1706":{},"1718":{},"1730":{},"1742":{},"1754":{},"1766":{},"1778":{},"1790":{},"1802":{},"1814":{},"1885":{},"1897":{},"1909":{},"1921":{},"1933":{},"1945":{},"1957":{},"1969":{},"1981":{},"1993":{},"2005":{},"2017":{},"2029":{},"2041":{},"2053":{},"2065":{},"2077":{},"2230":{},"2237":{},"2244":{},"2251":{},"2258":{},"2265":{},"2617":{},"2624":{},"2631":{},"2681":{},"2796":{},"2843":{},"2911":{},"2983":{},"3041":{},"3099":{},"3161":{},"3223":{},"3291":{},"3363":{},"3416":{},"3469":{},"3526":{},"3579":{},"3636":{},"3693":{},"3761":{},"3833":{},"3905":{},"3973":{},"4041":{},"4113":{},"4171":{},"4234":{},"4301":{},"4363":{},"4431":{},"4518":{},"4576":{},"5773":{},"5785":{},"5797":{},"5809":{},"5821":{},"5833":{},"5845":{},"5857":{},"5869":{},"5881":{},"5893":{},"5905":{},"5917":{},"5929":{},"5941":{},"5990":{},"6002":{},"6014":{},"6026":{},"6038":{},"6050":{},"6062":{},"6074":{},"6086":{},"6098":{},"6110":{},"6122":{},"6134":{},"6146":{},"6158":{},"6305":{},"6328":{},"6558":{},"6565":{},"6572":{},"6632":{},"6745":{},"6828":{}},"parent":{}}],["orderby1",{"_index":1083,"name":{"2848":{},"2916":{},"2988":{},"3046":{},"3104":{},"3166":{},"3228":{},"3296":{},"3368":{},"3421":{},"3474":{},"3531":{},"3584":{},"3641":{},"3698":{},"3766":{},"3838":{},"3910":{},"3978":{},"4046":{},"4118":{},"4176":{},"4239":{},"4306":{},"4368":{},"4436":{},"4523":{},"4581":{}},"parent":{}}],["orderby2",{"_index":1088,"name":{"2853":{},"2921":{},"2993":{},"3051":{},"3109":{},"3171":{},"3233":{},"3301":{},"3479":{},"3589":{},"3646":{},"3703":{},"3771":{},"3843":{},"3915":{},"3983":{},"4051":{},"4123":{},"4181":{},"4244":{},"4311":{},"4373":{},"4441":{},"4528":{},"4586":{}},"parent":{}}],["orderby3",{"_index":1093,"name":{"2858":{},"2926":{},"3114":{},"3176":{},"3238":{},"3306":{},"3708":{},"3776":{},"3848":{},"3920":{},"3988":{},"4056":{},"4186":{},"4249":{},"4316":{},"4378":{},"4446":{},"4591":{}},"parent":{}}],["orderby4",{"_index":1098,"name":{"2863":{},"2931":{},"3243":{},"3311":{},"3713":{},"3781":{},"3853":{},"3925":{},"3993":{},"4061":{},"4254":{},"4383":{},"4451":{},"4596":{}},"parent":{}}],["orderby5",{"_index":1109,"name":{"2936":{},"3316":{},"3786":{},"3858":{},"4066":{},"4456":{}},"parent":{}}],["orderby6",{"_index":1262,"name":{"4461":{}},"parent":{}}],["orderby7",{"_index":1267,"name":{"4466":{}},"parent":{}}],["orderby8",{"_index":1272,"name":{"4471":{}},"parent":{}}],["orderdirection",{"_index":68,"name":{"99":{},"514":{},"521":{},"528":{},"535":{},"726":{},"1094":{},"1101":{},"1108":{},"1115":{},"1122":{},"1129":{},"1136":{},"1623":{},"1635":{},"1647":{},"1659":{},"1671":{},"1683":{},"1695":{},"1707":{},"1719":{},"1731":{},"1743":{},"1755":{},"1767":{},"1779":{},"1791":{},"1803":{},"1815":{},"1886":{},"1898":{},"1910":{},"1922":{},"1934":{},"1946":{},"1958":{},"1970":{},"1982":{},"1994":{},"2006":{},"2018":{},"2030":{},"2042":{},"2054":{},"2066":{},"2078":{},"2231":{},"2238":{},"2245":{},"2252":{},"2259":{},"2266":{},"2618":{},"2625":{},"2632":{},"2682":{},"2797":{},"2844":{},"2912":{},"2984":{},"3042":{},"3100":{},"3162":{},"3224":{},"3292":{},"3364":{},"3417":{},"3470":{},"3527":{},"3580":{},"3637":{},"3694":{},"3762":{},"3834":{},"3906":{},"3974":{},"4042":{},"4114":{},"4172":{},"4235":{},"4302":{},"4364":{},"4432":{},"4519":{},"4577":{},"4689":{},"5774":{},"5786":{},"5798":{},"5810":{},"5822":{},"5834":{},"5846":{},"5858":{},"5870":{},"5882":{},"5894":{},"5906":{},"5918":{},"5930":{},"5942":{},"5991":{},"6003":{},"6015":{},"6027":{},"6039":{},"6051":{},"6063":{},"6075":{},"6087":{},"6099":{},"6111":{},"6123":{},"6135":{},"6147":{},"6159":{},"6306":{},"6329":{},"6559":{},"6566":{},"6573":{},"6633":{},"6746":{},"6829":{}},"parent":{}}],["orderdirection1",{"_index":1084,"name":{"2849":{},"2917":{},"2989":{},"3047":{},"3105":{},"3167":{},"3229":{},"3297":{},"3369":{},"3422":{},"3475":{},"3532":{},"3585":{},"3642":{},"3699":{},"3767":{},"3839":{},"3911":{},"3979":{},"4047":{},"4119":{},"4177":{},"4240":{},"4307":{},"4369":{},"4437":{},"4524":{},"4582":{}},"parent":{}}],["orderdirection2",{"_index":1089,"name":{"2854":{},"2922":{},"2994":{},"3052":{},"3110":{},"3172":{},"3234":{},"3302":{},"3480":{},"3590":{},"3647":{},"3704":{},"3772":{},"3844":{},"3916":{},"3984":{},"4052":{},"4124":{},"4182":{},"4245":{},"4312":{},"4374":{},"4442":{},"4529":{},"4587":{}},"parent":{}}],["orderdirection3",{"_index":1094,"name":{"2859":{},"2927":{},"3115":{},"3177":{},"3239":{},"3307":{},"3709":{},"3777":{},"3849":{},"3921":{},"3989":{},"4057":{},"4187":{},"4250":{},"4317":{},"4379":{},"4447":{},"4592":{}},"parent":{}}],["orderdirection4",{"_index":1099,"name":{"2864":{},"2932":{},"3244":{},"3312":{},"3714":{},"3782":{},"3854":{},"3926":{},"3994":{},"4062":{},"4255":{},"4384":{},"4452":{},"4597":{}},"parent":{}}],["orderdirection5",{"_index":1110,"name":{"2937":{},"3317":{},"3787":{},"3859":{},"4067":{},"4457":{}},"parent":{}}],["orderdirection6",{"_index":1263,"name":{"4462":{}},"parent":{}}],["orderdirection7",{"_index":1268,"name":{"4467":{}},"parent":{}}],["orderdirection8",{"_index":1273,"name":{"4472":{}},"parent":{}}],["pair",{"_index":18,"name":{"17":{},"69":{},"80":{},"89":{},"105":{},"119":{},"160":{},"273":{},"316":{},"716":{},"736":{},"798":{},"892":{},"936":{},"978":{},"1058":{},"1143":{},"1172":{},"1283":{},"1309":{},"1592":{},"1858":{},"2090":{},"2131":{},"3358":{},"4645":{},"4662":{},"4673":{},"4679":{},"4709":{},"4741":{},"4862":{},"4905":{},"4994":{},"5004":{},"5066":{},"5160":{},"5188":{},"5230":{},"5310":{},"5469":{},"5495":{},"5738":{},"5955":{},"6171":{},"6212":{}},"parent":{}}],["pair_contains",{"_index":200,"name":{"324":{},"806":{},"900":{},"986":{},"1180":{},"1317":{},"2139":{},"4913":{},"5074":{},"5168":{},"5238":{},"5503":{},"6220":{}},"parent":{}}],["pair_ends_with",{"_index":204,"name":{"328":{},"810":{},"904":{},"990":{},"1184":{},"1321":{},"2143":{},"4917":{},"5078":{},"5172":{},"5242":{},"5507":{},"6224":{}},"parent":{}}],["pair_filter",{"_index":571,"name":{"1379":{},"5565":{}},"parent":{}}],["pair_gt",{"_index":194,"name":{"318":{},"800":{},"894":{},"980":{},"1174":{},"1311":{},"2133":{},"4907":{},"5068":{},"5162":{},"5232":{},"5497":{},"6214":{}},"parent":{}}],["pair_gte",{"_index":196,"name":{"320":{},"802":{},"896":{},"982":{},"1176":{},"1313":{},"2135":{},"4909":{},"5070":{},"5164":{},"5234":{},"5499":{},"6216":{}},"parent":{}}],["pair_in",{"_index":198,"name":{"322":{},"804":{},"898":{},"984":{},"1178":{},"1315":{},"2137":{},"4911":{},"5072":{},"5166":{},"5236":{},"5501":{},"6218":{}},"parent":{}}],["pair_lt",{"_index":195,"name":{"319":{},"801":{},"895":{},"981":{},"1175":{},"1312":{},"2134":{},"4908":{},"5069":{},"5163":{},"5233":{},"5498":{},"6215":{}},"parent":{}}],["pair_lte",{"_index":197,"name":{"321":{},"803":{},"897":{},"983":{},"1177":{},"1314":{},"2136":{},"4910":{},"5071":{},"5165":{},"5235":{},"5500":{},"6217":{}},"parent":{}}],["pair_not",{"_index":193,"name":{"317":{},"799":{},"893":{},"979":{},"1173":{},"1310":{},"2132":{},"4906":{},"5067":{},"5161":{},"5231":{},"5496":{},"6213":{}},"parent":{}}],["pair_not_contains",{"_index":201,"name":{"325":{},"807":{},"901":{},"987":{},"1181":{},"1318":{},"2140":{},"4914":{},"5075":{},"5169":{},"5239":{},"5504":{},"6221":{}},"parent":{}}],["pair_not_ends_with",{"_index":205,"name":{"329":{},"811":{},"905":{},"991":{},"1185":{},"1322":{},"2144":{},"4918":{},"5079":{},"5173":{},"5243":{},"5508":{},"6225":{}},"parent":{}}],["pair_not_in",{"_index":199,"name":{"323":{},"805":{},"899":{},"985":{},"1179":{},"1316":{},"2138":{},"4912":{},"5073":{},"5167":{},"5237":{},"5502":{},"6219":{}},"parent":{}}],["pair_not_starts_with",{"_index":203,"name":{"327":{},"809":{},"903":{},"989":{},"1183":{},"1320":{},"2142":{},"4916":{},"5077":{},"5171":{},"5241":{},"5506":{},"6223":{}},"parent":{}}],["pair_orderby",{"_index":81,"name":{"127":{},"4717":{}},"parent":{}}],["pair_starts_with",{"_index":202,"name":{"326":{},"808":{},"902":{},"988":{},"1182":{},"1319":{},"2141":{},"4915":{},"5076":{},"5170":{},"5240":{},"5505":{},"6222":{}},"parent":{}}],["pairaddress",{"_index":1299,"name":{"4695":{},"5337":{},"5366":{}},"parent":{}}],["pairaddress_contains",{"_index":1375,"name":{"5370":{}},"parent":{}}],["pairaddress_in",{"_index":1373,"name":{"5368":{}},"parent":{}}],["pairaddress_not",{"_index":1372,"name":{"5367":{}},"parent":{}}],["pairaddress_not_contains",{"_index":1376,"name":{"5371":{}},"parent":{}}],["pairaddress_not_in",{"_index":1374,"name":{"5369":{}},"parent":{}}],["pairburnsargs",{"_index":506,"name":{"1124":{}},"parent":{}}],["paircount",{"_index":41,"name":{"40":{},"496":{},"547":{},"4799":{},"6733":{},"6758":{}},"parent":{}}],["paircount_gt",{"_index":355,"name":{"549":{},"6760":{}},"parent":{}}],["paircount_gte",{"_index":357,"name":{"551":{},"6762":{}},"parent":{}}],["paircount_in",{"_index":359,"name":{"553":{},"6764":{}},"parent":{}}],["paircount_lt",{"_index":356,"name":{"550":{},"6761":{}},"parent":{}}],["paircount_lte",{"_index":358,"name":{"552":{},"6763":{}},"parent":{}}],["paircount_not",{"_index":354,"name":{"548":{},"6759":{}},"parent":{}}],["paircount_not_in",{"_index":360,"name":{"554":{},"6765":{}},"parent":{}}],["pairdaydata",{"_index":512,"name":{"1138":{},"1596":{},"1862":{},"3411":{},"5332":{},"5760":{},"5977":{}},"parent":{}}],["pairdaydata_filter",{"_index":515,"name":{"1154":{},"5348":{}},"parent":{}}],["pairdaydata_orderby",{"_index":72,"name":{"102":{},"4692":{}},"parent":{}}],["pairdaydataargs",{"_index":497,"name":{"1103":{}},"parent":{}}],["pairdaydatadocument",{"_index":1162,"name":{"3462":{}},"parent":{}}],["pairdaydatas",{"_index":634,"name":{"1597":{},"1863":{},"3464":{},"5761":{},"5978":{}},"parent":{}}],["pairdaydatasdocument",{"_index":1168,"name":{"3519":{}},"parent":{}}],["pairdocument",{"_index":1156,"name":{"3409":{}},"parent":{}}],["pairhourdata",{"_index":565,"name":{"1278":{},"1594":{},"1860":{},"3521":{},"5464":{},"5758":{},"5975":{}},"parent":{}}],["pairhourdata_filter",{"_index":568,"name":{"1291":{},"5477":{}},"parent":{}}],["pairhourdata_orderby",{"_index":79,"name":{"116":{},"4706":{}},"parent":{}}],["pairhourdataargs",{"_index":500,"name":{"1110":{}},"parent":{}}],["pairhourdatadocument",{"_index":1174,"name":{"3572":{}},"parent":{}}],["pairhourdatas",{"_index":633,"name":{"1595":{},"1861":{},"3574":{},"5759":{},"5976":{}},"parent":{}}],["pairhourdatasdocument",{"_index":1180,"name":{"3629":{}},"parent":{}}],["pairliquiditypositionsargs",{"_index":491,"name":{"1089":{}},"parent":{}}],["pairliquiditypositionsnapshotsargs",{"_index":494,"name":{"1096":{}},"parent":{}}],["pairmintsargs",{"_index":503,"name":{"1117":{}},"parent":{}}],["pairs",{"_index":45,"name":{"49":{},"505":{},"1593":{},"1859":{},"3631":{},"5739":{},"5956":{}},"parent":{}}],["pairsdocument",{"_index":1186,"name":{"3686":{}},"parent":{}}],["pairsearch",{"_index":638,"name":{"1611":{}},"parent":{}}],["pairswapsargs",{"_index":509,"name":{"1131":{}},"parent":{}}],["parse",{"_index":1044,"name":{"2722":{},"2740":{},"2765":{},"2783":{},"2812":{},"2830":{},"2880":{},"2898":{},"2952":{},"2970":{},"3010":{},"3028":{},"3068":{},"3086":{},"3130":{},"3148":{},"3192":{},"3210":{},"3260":{},"3278":{},"3332":{},"3350":{},"3385":{},"3403":{},"3438":{},"3456":{},"3495":{},"3513":{},"3548":{},"3566":{},"3605":{},"3623":{},"3662":{},"3680":{},"3730":{},"3748":{},"3802":{},"3820":{},"3874":{},"3892":{},"3942":{},"3960":{},"4010":{},"4028":{},"4082":{},"4100":{},"4140":{},"4158":{},"4203":{},"4221":{},"4270":{},"4288":{},"4332":{},"4350":{},"4400":{},"4418":{},"4487":{},"4505":{},"4545":{},"4563":{},"4612":{},"4630":{}},"parent":{}}],["parseroptions",{"_index":1048,"name":{"2726":{},"2769":{},"2816":{},"2884":{},"2956":{},"3014":{},"3072":{},"3134":{},"3196":{},"3264":{},"3336":{},"3389":{},"3442":{},"3499":{},"3552":{},"3609":{},"3666":{},"3734":{},"3806":{},"3878":{},"3946":{},"4014":{},"4086":{},"4144":{},"4207":{},"4274":{},"4336":{},"4404":{},"4491":{},"4549":{},"4616":{}},"parent":{}}],["plugin",{"_index":1046,"name":{"2724":{},"2767":{},"2814":{},"2882":{},"2954":{},"3012":{},"3070":{},"3132":{},"3194":{},"3262":{},"3334":{},"3387":{},"3440":{},"3497":{},"3550":{},"3607":{},"3664":{},"3732":{},"3804":{},"3876":{},"3944":{},"4012":{},"4084":{},"4142":{},"4205":{},"4272":{},"4334":{},"4402":{},"4489":{},"4547":{},"4614":{}},"parent":{}}],["priceusd",{"_index":104,"name":{"180":{},"192":{},"2281":{},"2370":{},"2391":{},"2480":{},"4761":{},"6321":{},"6419":{}},"parent":{}}],["priceusd_gt",{"_index":943,"name":{"2372":{},"2482":{},"6421":{}},"parent":{}}],["priceusd_gte",{"_index":945,"name":{"2374":{},"2484":{},"6423":{}},"parent":{}}],["priceusd_in",{"_index":947,"name":{"2376":{},"2486":{},"6425":{}},"parent":{}}],["priceusd_lt",{"_index":944,"name":{"2373":{},"2483":{},"6422":{}},"parent":{}}],["priceusd_lte",{"_index":946,"name":{"2375":{},"2485":{},"6424":{}},"parent":{}}],["priceusd_not",{"_index":942,"name":{"2371":{},"2481":{},"6420":{}},"parent":{}}],["priceusd_not_in",{"_index":948,"name":{"2377":{},"2487":{},"6426":{}},"parent":{}}],["query",{"_index":4,"name":{"3":{},"1573":{},"5731":{}},"parent":{}}],["query_metaargs",{"_index":753,"name":{"1836":{},"5945":{}},"parent":{}}],["querybundleargs",{"_index":647,"name":{"1626":{},"5885":{}},"parent":{}}],["querybundlesargs",{"_index":650,"name":{"1630":{},"5889":{}},"parent":{}}],["queryburnargs",{"_index":731,"name":{"1794":{},"5861":{}},"parent":{}}],["queryburnsargs",{"_index":734,"name":{"1798":{},"5865":{}},"parent":{}}],["querydaydataargs",{"_index":665,"name":{"1662":{}},"parent":{}}],["querydaydatasargs",{"_index":668,"name":{"1666":{}},"parent":{}}],["queryfactoriesargs",{"_index":656,"name":{"1642":{}},"parent":{}}],["queryfactoryargs",{"_index":653,"name":{"1638":{}},"parent":{}}],["queryhandlerprops",{"_index":1,"name":{"1":{}},"parent":{}}],["queryhourdataargs",{"_index":659,"name":{"1650":{}},"parent":{}}],["queryhourdatasargs",{"_index":662,"name":{"1654":{}},"parent":{}}],["queryliquiditypositionargs",{"_index":707,"name":{"1746":{},"5813":{}},"parent":{}}],["queryliquiditypositionsargs",{"_index":710,"name":{"1750":{},"5817":{}},"parent":{}}],["queryliquiditypositionsnapshotargs",{"_index":713,"name":{"1758":{},"5825":{}},"parent":{}}],["queryliquiditypositionsnapshotsargs",{"_index":716,"name":{"1762":{},"5829":{}},"parent":{}}],["querymintargs",{"_index":725,"name":{"1782":{},"5849":{}},"parent":{}}],["querymintsargs",{"_index":728,"name":{"1786":{},"5853":{}},"parent":{}}],["querypairargs",{"_index":689,"name":{"1710":{},"5789":{}},"parent":{}}],["querypairdaydataargs",{"_index":701,"name":{"1734":{},"5921":{}},"parent":{}}],["querypairdaydatasargs",{"_index":704,"name":{"1738":{},"5925":{}},"parent":{}}],["querypairhourdataargs",{"_index":695,"name":{"1722":{},"5909":{}},"parent":{}}],["querypairhourdatasargs",{"_index":698,"name":{"1726":{},"5913":{}},"parent":{}}],["querypairsargs",{"_index":692,"name":{"1714":{},"5793":{}},"parent":{}}],["querypairsearchargs",{"_index":747,"name":{"1824":{}},"parent":{}}],["querysushiswapdaydataargs",{"_index":1508,"name":{"5897":{}},"parent":{}}],["querysushiswapdaydatasargs",{"_index":1511,"name":{"5901":{}},"parent":{}}],["querysushiswapfactoriesargs",{"_index":1465,"name":{"5769":{}},"parent":{}}],["querysushiswapfactoryargs",{"_index":1462,"name":{"5765":{}},"parent":{}}],["queryswapargs",{"_index":737,"name":{"1806":{},"5873":{}},"parent":{}}],["queryswapsargs",{"_index":740,"name":{"1810":{},"5877":{}},"parent":{}}],["querytokenargs",{"_index":671,"name":{"1674":{},"5777":{}},"parent":{}}],["querytokendaydataargs",{"_index":683,"name":{"1698":{},"5933":{}},"parent":{}}],["querytokendaydatasargs",{"_index":686,"name":{"1702":{},"5937":{}},"parent":{}}],["querytokenhourdataargs",{"_index":677,"name":{"1686":{}},"parent":{}}],["querytokenhourdatasargs",{"_index":680,"name":{"1690":{}},"parent":{}}],["querytokensargs",{"_index":674,"name":{"1678":{},"5781":{}},"parent":{}}],["querytokensearchargs",{"_index":743,"name":{"1818":{}},"parent":{}}],["querytransactionargs",{"_index":719,"name":{"1770":{},"5837":{}},"parent":{}}],["querytransactionsargs",{"_index":722,"name":{"1774":{},"5841":{}},"parent":{}}],["queryuserargs",{"_index":641,"name":{"1614":{},"5801":{}},"parent":{}}],["queryusersargs",{"_index":644,"name":{"1618":{},"5805":{}},"parent":{}}],["queryusersearchargs",{"_index":750,"name":{"1830":{}},"parent":{}}],["quotepairs",{"_index":113,"name":{"209":{},"2223":{}},"parent":{}}],["quotepairsdaydata",{"_index":115,"name":{"211":{},"2225":{}},"parent":{}}],["reserve0",{"_index":58,"name":{"72":{},"108":{},"120":{},"133":{},"739":{},"828":{},"1066":{},"1146":{},"1214":{},"1284":{},"1323":{},"1445":{},"4665":{},"4698":{},"4710":{},"4721":{},"5007":{},"5096":{},"5316":{},"5340":{},"5400":{},"5470":{},"5509":{},"5603":{}},"parent":{}}],["reserve0_gt",{"_index":446,"name":{"830":{},"1216":{},"1325":{},"1447":{},"5098":{},"5402":{},"5511":{},"5605":{}},"parent":{}}],["reserve0_gte",{"_index":448,"name":{"832":{},"1218":{},"1327":{},"1449":{},"5100":{},"5404":{},"5513":{},"5607":{}},"parent":{}}],["reserve0_in",{"_index":450,"name":{"834":{},"1220":{},"1329":{},"1451":{},"5102":{},"5406":{},"5515":{},"5609":{}},"parent":{}}],["reserve0_lt",{"_index":447,"name":{"831":{},"1217":{},"1326":{},"1448":{},"5099":{},"5403":{},"5512":{},"5606":{}},"parent":{}}],["reserve0_lte",{"_index":449,"name":{"833":{},"1219":{},"1328":{},"1450":{},"5101":{},"5405":{},"5514":{},"5608":{}},"parent":{}}],["reserve0_not",{"_index":445,"name":{"829":{},"1215":{},"1324":{},"1446":{},"5097":{},"5401":{},"5510":{},"5604":{}},"parent":{}}],["reserve0_not_in",{"_index":451,"name":{"835":{},"1221":{},"1330":{},"1452":{},"5103":{},"5407":{},"5516":{},"5610":{}},"parent":{}}],["reserve1",{"_index":59,"name":{"73":{},"109":{},"121":{},"134":{},"740":{},"836":{},"1067":{},"1147":{},"1222":{},"1285":{},"1331":{},"1453":{},"4666":{},"4699":{},"4711":{},"4722":{},"5008":{},"5104":{},"5317":{},"5341":{},"5408":{},"5471":{},"5517":{},"5611":{}},"parent":{}}],["reserve1_gt",{"_index":453,"name":{"838":{},"1224":{},"1333":{},"1455":{},"5106":{},"5410":{},"5519":{},"5613":{}},"parent":{}}],["reserve1_gte",{"_index":455,"name":{"840":{},"1226":{},"1335":{},"1457":{},"5108":{},"5412":{},"5521":{},"5615":{}},"parent":{}}],["reserve1_in",{"_index":457,"name":{"842":{},"1228":{},"1337":{},"1459":{},"5110":{},"5414":{},"5523":{},"5617":{}},"parent":{}}],["reserve1_lt",{"_index":454,"name":{"839":{},"1225":{},"1334":{},"1456":{},"5107":{},"5411":{},"5520":{},"5614":{}},"parent":{}}],["reserve1_lte",{"_index":456,"name":{"841":{},"1227":{},"1336":{},"1458":{},"5109":{},"5413":{},"5522":{},"5616":{}},"parent":{}}],["reserve1_not",{"_index":452,"name":{"837":{},"1223":{},"1332":{},"1454":{},"5105":{},"5409":{},"5518":{},"5612":{}},"parent":{}}],["reserve1_not_in",{"_index":458,"name":{"843":{},"1229":{},"1338":{},"1460":{},"5111":{},"5415":{},"5524":{},"5618":{}},"parent":{}}],["reserveeth",{"_index":84,"name":{"136":{},"1069":{},"1469":{},"4724":{},"5319":{},"5627":{}},"parent":{}}],["reserveeth_gt",{"_index":588,"name":{"1471":{},"5629":{}},"parent":{}}],["reserveeth_gte",{"_index":590,"name":{"1473":{},"5631":{}},"parent":{}}],["reserveeth_in",{"_index":592,"name":{"1475":{},"5633":{}},"parent":{}}],["reserveeth_lt",{"_index":589,"name":{"1472":{},"5630":{}},"parent":{}}],["reserveeth_lte",{"_index":591,"name":{"1474":{},"5632":{}},"parent":{}}],["reserveeth_not",{"_index":587,"name":{"1470":{},"5628":{}},"parent":{}}],["reserveeth_not_in",{"_index":593,"name":{"1476":{},"5634":{}},"parent":{}}],["reserveusd",{"_index":60,"name":{"74":{},"111":{},"122":{},"137":{},"741":{},"844":{},"1070":{},"1149":{},"1238":{},"1286":{},"1339":{},"1477":{},"4667":{},"4701":{},"4712":{},"4725":{},"5009":{},"5112":{},"5320":{},"5343":{},"5424":{},"5472":{},"5525":{},"5635":{}},"parent":{}}],["reserveusd_gt",{"_index":460,"name":{"846":{},"1240":{},"1341":{},"1479":{},"5114":{},"5426":{},"5527":{},"5637":{}},"parent":{}}],["reserveusd_gte",{"_index":462,"name":{"848":{},"1242":{},"1343":{},"1481":{},"5116":{},"5428":{},"5529":{},"5639":{}},"parent":{}}],["reserveusd_in",{"_index":464,"name":{"850":{},"1244":{},"1345":{},"1483":{},"5118":{},"5430":{},"5531":{},"5641":{}},"parent":{}}],["reserveusd_lt",{"_index":461,"name":{"847":{},"1241":{},"1342":{},"1480":{},"5115":{},"5427":{},"5528":{},"5638":{}},"parent":{}}],["reserveusd_lte",{"_index":463,"name":{"849":{},"1243":{},"1344":{},"1482":{},"5117":{},"5429":{},"5530":{},"5640":{}},"parent":{}}],["reserveusd_not",{"_index":459,"name":{"845":{},"1239":{},"1340":{},"1478":{},"5113":{},"5425":{},"5526":{},"5636":{}},"parent":{}}],["reserveusd_not_in",{"_index":465,"name":{"851":{},"1245":{},"1346":{},"1484":{},"5119":{},"5431":{},"5532":{},"5642":{}},"parent":{}}],["run",{"_index":8,"name":{"8":{},"2710":{},"2728":{},"2753":{},"2771":{},"2800":{},"2818":{},"2868":{},"2886":{},"2940":{},"2958":{},"2998":{},"3016":{},"3056":{},"3074":{},"3118":{},"3136":{},"3180":{},"3198":{},"3248":{},"3266":{},"3320":{},"3338":{},"3373":{},"3391":{},"3426":{},"3444":{},"3483":{},"3501":{},"3536":{},"3554":{},"3593":{},"3611":{},"3650":{},"3668":{},"3718":{},"3736":{},"3790":{},"3808":{},"3862":{},"3880":{},"3930":{},"3948":{},"3998":{},"4016":{},"4070":{},"4088":{},"4128":{},"4146":{},"4191":{},"4209":{},"4258":{},"4276":{},"4320":{},"4338":{},"4388":{},"4406":{},"4475":{},"4493":{},"4533":{},"4551":{},"4600":{},"4618":{}},"parent":{}}],["scalars",{"_index":131,"name":{"230":{},"4819":{}},"parent":{}}],["sender",{"_index":20,"name":{"19":{},"92":{},"161":{},"275":{},"338":{},"939":{},"1006":{},"2091":{},"2145":{},"4647":{},"4682":{},"4742":{},"4864":{},"4927":{},"5191":{},"5258":{},"6172":{},"6226":{}},"parent":{}}],["sender_contains",{"_index":216,"name":{"342":{},"1010":{},"2149":{},"4931":{},"5262":{},"6230":{}},"parent":{}}],["sender_in",{"_index":214,"name":{"340":{},"1008":{},"2147":{},"4929":{},"5260":{},"6228":{}},"parent":{}}],["sender_not",{"_index":213,"name":{"339":{},"1007":{},"2146":{},"4928":{},"5259":{},"6227":{}},"parent":{}}],["sender_not_contains",{"_index":217,"name":{"343":{},"1011":{},"2150":{},"4932":{},"5263":{},"6231":{}},"parent":{}}],["sender_not_in",{"_index":215,"name":{"341":{},"1009":{},"2148":{},"4930":{},"5261":{},"6229":{}},"parent":{}}],["skip",{"_index":337,"name":{"511":{},"518":{},"525":{},"532":{},"723":{},"1091":{},"1098":{},"1105":{},"1112":{},"1119":{},"1126":{},"1133":{},"1620":{},"1632":{},"1644":{},"1656":{},"1668":{},"1680":{},"1692":{},"1704":{},"1716":{},"1728":{},"1740":{},"1752":{},"1764":{},"1776":{},"1788":{},"1800":{},"1812":{},"1822":{},"1828":{},"1834":{},"1883":{},"1895":{},"1907":{},"1919":{},"1931":{},"1943":{},"1955":{},"1967":{},"1979":{},"1991":{},"2003":{},"2015":{},"2027":{},"2039":{},"2051":{},"2063":{},"2075":{},"2228":{},"2235":{},"2242":{},"2249":{},"2256":{},"2263":{},"2615":{},"2622":{},"2629":{},"2679":{},"2794":{},"2841":{},"2909":{},"2981":{},"3039":{},"3097":{},"3159":{},"3221":{},"3289":{},"3361":{},"3414":{},"3467":{},"3524":{},"3577":{},"3634":{},"3691":{},"3759":{},"3831":{},"3903":{},"3971":{},"4039":{},"4111":{},"4169":{},"4232":{},"4299":{},"4361":{},"4429":{},"4516":{},"4574":{},"5771":{},"5783":{},"5795":{},"5807":{},"5819":{},"5831":{},"5843":{},"5855":{},"5867":{},"5879":{},"5891":{},"5903":{},"5915":{},"5927":{},"5939":{},"5988":{},"6000":{},"6012":{},"6024":{},"6036":{},"6048":{},"6060":{},"6072":{},"6084":{},"6096":{},"6108":{},"6120":{},"6132":{},"6144":{},"6156":{},"6303":{},"6326":{},"6556":{},"6563":{},"6570":{},"6630":{},"6743":{},"6826":{}},"parent":{}}],["skip1",{"_index":1081,"name":{"2846":{},"2914":{},"2986":{},"3044":{},"3102":{},"3164":{},"3226":{},"3294":{},"3366":{},"3419":{},"3472":{},"3529":{},"3582":{},"3639":{},"3696":{},"3764":{},"3836":{},"3908":{},"3976":{},"4044":{},"4116":{},"4174":{},"4237":{},"4304":{},"4366":{},"4434":{},"4521":{},"4579":{}},"parent":{}}],["skip2",{"_index":1086,"name":{"2851":{},"2919":{},"2991":{},"3049":{},"3107":{},"3169":{},"3231":{},"3299":{},"3477":{},"3587":{},"3644":{},"3701":{},"3769":{},"3841":{},"3913":{},"3981":{},"4049":{},"4121":{},"4179":{},"4242":{},"4309":{},"4371":{},"4439":{},"4526":{},"4584":{}},"parent":{}}],["skip3",{"_index":1091,"name":{"2856":{},"2924":{},"3112":{},"3174":{},"3236":{},"3304":{},"3706":{},"3774":{},"3846":{},"3918":{},"3986":{},"4054":{},"4184":{},"4247":{},"4314":{},"4376":{},"4444":{},"4589":{}},"parent":{}}],["skip4",{"_index":1096,"name":{"2861":{},"2929":{},"3241":{},"3309":{},"3711":{},"3779":{},"3851":{},"3923":{},"3991":{},"4059":{},"4252":{},"4381":{},"4449":{},"4594":{}},"parent":{}}],["skip5",{"_index":1107,"name":{"2934":{},"3314":{},"3784":{},"3856":{},"4064":{},"4454":{}},"parent":{}}],["skip6",{"_index":1260,"name":{"4459":{}},"parent":{}}],["skip7",{"_index":1265,"name":{"4464":{}},"parent":{}}],["skip8",{"_index":1270,"name":{"4469":{}},"parent":{}}],["snapshots",{"_index":65,"name":{"82":{},"718":{}},"parent":{}}],["strict",{"_index":1043,"name":{"2721":{},"2764":{},"2811":{},"2879":{},"2951":{},"3009":{},"3067":{},"3129":{},"3191":{},"3259":{},"3331":{},"3384":{},"3437":{},"3494":{},"3547":{},"3604":{},"3661":{},"3729":{},"3801":{},"3873":{},"3941":{},"4009":{},"4081":{},"4139":{},"4202":{},"4269":{},"4331":{},"4399":{},"4486":{},"4544":{},"4611":{}},"parent":{}}],["string",{"_index":134,"name":{"233":{},"4822":{}},"parent":{}}],["subscription",{"_index":756,"name":{"1839":{},"5948":{}},"parent":{}}],["subscription_metaargs",{"_index":861,"name":{"2081":{},"6162":{}},"parent":{}}],["subscriptionbundleargs",{"_index":765,"name":{"1889":{},"6102":{}},"parent":{}}],["subscriptionbundlesargs",{"_index":768,"name":{"1893":{},"6106":{}},"parent":{}}],["subscriptionburnargs",{"_index":849,"name":{"2057":{},"6078":{}},"parent":{}}],["subscriptionburnsargs",{"_index":852,"name":{"2061":{},"6082":{}},"parent":{}}],["subscriptiondaydataargs",{"_index":783,"name":{"1925":{}},"parent":{}}],["subscriptiondaydatasargs",{"_index":786,"name":{"1929":{}},"parent":{}}],["subscriptionfactoriesargs",{"_index":774,"name":{"1905":{}},"parent":{}}],["subscriptionfactoryargs",{"_index":771,"name":{"1901":{}},"parent":{}}],["subscriptionhourdataargs",{"_index":777,"name":{"1913":{}},"parent":{}}],["subscriptionhourdatasargs",{"_index":780,"name":{"1917":{}},"parent":{}}],["subscriptionliquiditypositionargs",{"_index":825,"name":{"2009":{},"6030":{}},"parent":{}}],["subscriptionliquiditypositionsargs",{"_index":828,"name":{"2013":{},"6034":{}},"parent":{}}],["subscriptionliquiditypositionsnapshotargs",{"_index":831,"name":{"2021":{},"6042":{}},"parent":{}}],["subscriptionliquiditypositionsnapshotsargs",{"_index":834,"name":{"2025":{},"6046":{}},"parent":{}}],["subscriptionmintargs",{"_index":843,"name":{"2045":{},"6066":{}},"parent":{}}],["subscriptionmintsargs",{"_index":846,"name":{"2049":{},"6070":{}},"parent":{}}],["subscriptionpairargs",{"_index":807,"name":{"1973":{},"6006":{}},"parent":{}}],["subscriptionpairdaydataargs",{"_index":819,"name":{"1997":{},"6138":{}},"parent":{}}],["subscriptionpairdaydatasargs",{"_index":822,"name":{"2001":{},"6142":{}},"parent":{}}],["subscriptionpairhourdataargs",{"_index":813,"name":{"1985":{},"6126":{}},"parent":{}}],["subscriptionpairhourdatasargs",{"_index":816,"name":{"1989":{},"6130":{}},"parent":{}}],["subscriptionpairsargs",{"_index":810,"name":{"1977":{},"6010":{}},"parent":{}}],["subscriptionsushiswapdaydataargs",{"_index":1576,"name":{"6114":{}},"parent":{}}],["subscriptionsushiswapdaydatasargs",{"_index":1579,"name":{"6118":{}},"parent":{}}],["subscriptionsushiswapfactoriesargs",{"_index":1533,"name":{"5986":{}},"parent":{}}],["subscriptionsushiswapfactoryargs",{"_index":1530,"name":{"5982":{}},"parent":{}}],["subscriptionswapargs",{"_index":855,"name":{"2069":{},"6090":{}},"parent":{}}],["subscriptionswapsargs",{"_index":858,"name":{"2073":{},"6094":{}},"parent":{}}],["subscriptiontokenargs",{"_index":789,"name":{"1937":{},"5994":{}},"parent":{}}],["subscriptiontokendaydataargs",{"_index":801,"name":{"1961":{},"6150":{}},"parent":{}}],["subscriptiontokendaydatasargs",{"_index":804,"name":{"1965":{},"6154":{}},"parent":{}}],["subscriptiontokenhourdataargs",{"_index":795,"name":{"1949":{}},"parent":{}}],["subscriptiontokenhourdatasargs",{"_index":798,"name":{"1953":{}},"parent":{}}],["subscriptiontokensargs",{"_index":792,"name":{"1941":{},"5998":{}},"parent":{}}],["subscriptiontransactionargs",{"_index":837,"name":{"2033":{},"6054":{}},"parent":{}}],["subscriptiontransactionsargs",{"_index":840,"name":{"2037":{},"6058":{}},"parent":{}}],["subscriptionuserargs",{"_index":759,"name":{"1877":{},"6018":{}},"parent":{}}],["subscriptionusersargs",{"_index":762,"name":{"1881":{},"6022":{}},"parent":{}}],["sushiswapdaydata",{"_index":1188,"name":{"3688":{},"5756":{},"5973":{},"6613":{}},"parent":{}}],["sushiswapdaydata_filter",{"_index":1695,"name":{"6635":{}},"parent":{}}],["sushiswapdaydata_orderby",{"_index":1327,"name":{"4784":{}},"parent":{}}],["sushiswapdaydatadocument",{"_index":1193,"name":{"3754":{}},"parent":{}}],["sushiswapdaydatamostliquidtokensargs",{"_index":1692,"name":{"6628":{}},"parent":{}}],["sushiswapdaydatas",{"_index":1195,"name":{"3756":{},"5757":{},"5974":{}},"parent":{}}],["sushiswapdaydatasdocument",{"_index":1200,"name":{"3826":{}},"parent":{}}],["sushiswapfactories",{"_index":1202,"name":{"3828":{},"5735":{},"5952":{}},"parent":{}}],["sushiswapfactoriesdocument",{"_index":1207,"name":{"3898":{}},"parent":{}}],["sushiswapfactory",{"_index":1209,"name":{"3900":{},"5734":{},"5951":{},"6729":{}},"parent":{}}],["sushiswapfactory_filter",{"_index":1727,"name":{"6748":{}},"parent":{}}],["sushiswapfactory_orderby",{"_index":1333,"name":{"4797":{}},"parent":{}}],["sushiswapfactorydocument",{"_index":1214,"name":{"3966":{}},"parent":{}}],["sushiswapfactorymostliquidtokensargs",{"_index":1724,"name":{"6741":{}},"parent":{}}],["swap",{"_index":636,"name":{"1608":{},"1874":{},"2084":{},"3968":{},"5752":{},"5969":{},"6165":{}},"parent":{}}],["swap_filter",{"_index":866,"name":{"2099":{},"6180":{}},"parent":{}}],["swap_orderby",{"_index":94,"name":{"156":{},"4737":{}},"parent":{}}],["swapdocument",{"_index":1220,"name":{"4034":{}},"parent":{}}],["swaps",{"_index":93,"name":{"153":{},"218":{},"1086":{},"1609":{},"1875":{},"2612":{},"2668":{},"4036":{},"4783":{},"5753":{},"5970":{},"6553":{},"6609":{}},"parent":{}}],["swaps_contains",{"_index":1012,"name":{"2670":{},"6611":{}},"parent":{}}],["swaps_not",{"_index":1011,"name":{"2669":{},"6610":{}},"parent":{}}],["swaps_not_contains",{"_index":1013,"name":{"2671":{},"6612":{}},"parent":{}}],["swapsdocument",{"_index":1226,"name":{"4106":{}},"parent":{}}],["symbol",{"_index":109,"name":{"196":{},"2210":{},"2512":{},"4766":{},"6290":{},"6449":{}},"parent":{}}],["symbol_contains",{"_index":964,"name":{"2520":{},"6457":{}},"parent":{}}],["symbol_ends_with",{"_index":968,"name":{"2524":{},"6461":{}},"parent":{}}],["symbol_gt",{"_index":958,"name":{"2514":{},"6451":{}},"parent":{}}],["symbol_gte",{"_index":960,"name":{"2516":{},"6453":{}},"parent":{}}],["symbol_in",{"_index":962,"name":{"2518":{},"6455":{}},"parent":{}}],["symbol_lt",{"_index":959,"name":{"2515":{},"6452":{}},"parent":{}}],["symbol_lte",{"_index":961,"name":{"2517":{},"6454":{}},"parent":{}}],["symbol_not",{"_index":957,"name":{"2513":{},"6450":{}},"parent":{}}],["symbol_not_contains",{"_index":965,"name":{"2521":{},"6458":{}},"parent":{}}],["symbol_not_ends_with",{"_index":969,"name":{"2525":{},"6462":{}},"parent":{}}],["symbol_not_in",{"_index":963,"name":{"2519":{},"6456":{}},"parent":{}}],["symbol_not_starts_with",{"_index":967,"name":{"2523":{},"6460":{}},"parent":{}}],["symbol_starts_with",{"_index":966,"name":{"2522":{},"6459":{}},"parent":{}}],["text",{"_index":745,"name":{"1820":{},"1826":{},"1832":{}},"parent":{}}],["timestamp",{"_index":17,"name":{"16":{},"66":{},"84":{},"88":{},"154":{},"159":{},"215":{},"272":{},"308":{},"720":{},"733":{},"768":{},"922":{},"935":{},"970":{},"1087":{},"1557":{},"2089":{},"2123":{},"2609":{},"2652":{},"4644":{},"4659":{},"4678":{},"4740":{},"4780":{},"4861":{},"4897":{},"5001":{},"5036":{},"5187":{},"5222":{},"6170":{},"6204":{},"6550":{},"6593":{}},"parent":{}}],["timestamp_gt",{"_index":187,"name":{"310":{},"770":{},"924":{},"972":{},"1559":{},"2125":{},"2654":{},"4899":{},"5038":{},"5224":{},"6206":{},"6595":{}},"parent":{}}],["timestamp_gte",{"_index":189,"name":{"312":{},"772":{},"926":{},"974":{},"1561":{},"2127":{},"2656":{},"4901":{},"5040":{},"5226":{},"6208":{},"6597":{}},"parent":{}}],["timestamp_in",{"_index":191,"name":{"314":{},"774":{},"928":{},"976":{},"1563":{},"2129":{},"2658":{},"4903":{},"5042":{},"5228":{},"6210":{},"6599":{}},"parent":{}}],["timestamp_lt",{"_index":188,"name":{"311":{},"771":{},"925":{},"973":{},"1560":{},"2126":{},"2655":{},"4900":{},"5039":{},"5225":{},"6207":{},"6596":{}},"parent":{}}],["timestamp_lte",{"_index":190,"name":{"313":{},"773":{},"927":{},"975":{},"1562":{},"2128":{},"2657":{},"4902":{},"5041":{},"5227":{},"6209":{},"6598":{}},"parent":{}}],["timestamp_not",{"_index":186,"name":{"309":{},"769":{},"923":{},"971":{},"1558":{},"2124":{},"2653":{},"4898":{},"5037":{},"5223":{},"6205":{},"6594":{}},"parent":{}}],["timestamp_not_in",{"_index":192,"name":{"315":{},"775":{},"929":{},"977":{},"1564":{},"2130":{},"2659":{},"4904":{},"5043":{},"5229":{},"6211":{},"6600":{}},"parent":{}}],["title",{"_index":1038,"name":{"2715":{},"2758":{},"2805":{},"2873":{},"2945":{},"3003":{},"3061":{},"3123":{},"3185":{},"3253":{},"3325":{},"3378":{},"3431":{},"3488":{},"3541":{},"3598":{},"3655":{},"3723":{},"3795":{},"3867":{},"3935":{},"4003":{},"4075":{},"4133":{},"4196":{},"4263":{},"4325":{},"4393":{},"4480":{},"4538":{},"4605":{}},"parent":{}}],["to",{"_index":23,"name":{"22":{},"90":{},"166":{},"278":{},"360":{},"937":{},"992":{},"2096":{},"2183":{},"4650":{},"4680":{},"4747":{},"4867":{},"4949":{},"5189":{},"5244":{},"6177":{},"6264":{}},"parent":{}}],["to_contains",{"_index":235,"name":{"364":{},"996":{},"2187":{},"4953":{},"5248":{},"6268":{}},"parent":{}}],["to_in",{"_index":233,"name":{"362":{},"994":{},"2185":{},"4951":{},"5246":{},"6266":{}},"parent":{}}],["to_not",{"_index":232,"name":{"361":{},"993":{},"2184":{},"4950":{},"5245":{},"6265":{}},"parent":{}}],["to_not_contains",{"_index":236,"name":{"365":{},"997":{},"2188":{},"4954":{},"5249":{},"6269":{}},"parent":{}}],["to_not_in",{"_index":234,"name":{"363":{},"995":{},"2186":{},"4952":{},"5247":{},"6267":{}},"parent":{}}],["token",{"_index":102,"name":{"172":{},"184":{},"1586":{},"1852":{},"2205":{},"2273":{},"2300":{},"2383":{},"2410":{},"4108":{},"4753":{},"5736":{},"5953":{},"6286":{},"6313":{},"6349":{}},"parent":{}}],["token0",{"_index":74,"name":{"106":{},"131":{},"1064":{},"1144":{},"1186":{},"1417":{},"4696":{},"4719":{},"5314":{},"5338":{},"5372":{},"5575":{}},"parent":{}}],["token0_contains",{"_index":525,"name":{"1194":{},"1425":{},"5380":{},"5583":{}},"parent":{}}],["token0_ends_with",{"_index":529,"name":{"1198":{},"1429":{},"5384":{},"5587":{}},"parent":{}}],["token0_gt",{"_index":519,"name":{"1188":{},"1419":{},"5374":{},"5577":{}},"parent":{}}],["token0_gte",{"_index":521,"name":{"1190":{},"1421":{},"5376":{},"5579":{}},"parent":{}}],["token0_in",{"_index":523,"name":{"1192":{},"1423":{},"5378":{},"5581":{}},"parent":{}}],["token0_lt",{"_index":520,"name":{"1189":{},"1420":{},"5375":{},"5578":{}},"parent":{}}],["token0_lte",{"_index":522,"name":{"1191":{},"1422":{},"5377":{},"5580":{}},"parent":{}}],["token0_not",{"_index":518,"name":{"1187":{},"1418":{},"5373":{},"5576":{}},"parent":{}}],["token0_not_contains",{"_index":526,"name":{"1195":{},"1426":{},"5381":{},"5584":{}},"parent":{}}],["token0_not_ends_with",{"_index":530,"name":{"1199":{},"1430":{},"5385":{},"5588":{}},"parent":{}}],["token0_not_in",{"_index":524,"name":{"1193":{},"1424":{},"5379":{},"5582":{}},"parent":{}}],["token0_not_starts_with",{"_index":528,"name":{"1197":{},"1428":{},"5383":{},"5586":{}},"parent":{}}],["token0_starts_with",{"_index":527,"name":{"1196":{},"1427":{},"5382":{},"5585":{}},"parent":{}}],["token0price",{"_index":86,"name":{"139":{},"1072":{},"1493":{},"4727":{},"5322":{},"5651":{}},"parent":{}}],["token0price_gt",{"_index":602,"name":{"1495":{},"5653":{}},"parent":{}}],["token0price_gte",{"_index":604,"name":{"1497":{},"5655":{}},"parent":{}}],["token0price_in",{"_index":606,"name":{"1499":{},"5657":{}},"parent":{}}],["token0price_lt",{"_index":603,"name":{"1496":{},"5654":{}},"parent":{}}],["token0price_lte",{"_index":605,"name":{"1498":{},"5656":{}},"parent":{}}],["token0price_not",{"_index":601,"name":{"1494":{},"5652":{}},"parent":{}}],["token0price_not_in",{"_index":607,"name":{"1500":{},"5658":{}},"parent":{}}],["token0priceusd",{"_index":56,"name":{"70":{},"737":{},"812":{},"4663":{},"5005":{},"5080":{}},"parent":{}}],["token0priceusd_gt",{"_index":432,"name":{"814":{},"5082":{}},"parent":{}}],["token0priceusd_gte",{"_index":434,"name":{"816":{},"5084":{}},"parent":{}}],["token0priceusd_in",{"_index":436,"name":{"818":{},"5086":{}},"parent":{}}],["token0priceusd_lt",{"_index":433,"name":{"815":{},"5083":{}},"parent":{}}],["token0priceusd_lte",{"_index":435,"name":{"817":{},"5085":{}},"parent":{}}],["token0priceusd_not",{"_index":431,"name":{"813":{},"5081":{}},"parent":{}}],["token0priceusd_not_in",{"_index":437,"name":{"819":{},"5087":{}},"parent":{}}],["token1",{"_index":75,"name":{"107":{},"132":{},"1065":{},"1145":{},"1200":{},"1431":{},"4697":{},"4720":{},"5315":{},"5339":{},"5386":{},"5589":{}},"parent":{}}],["token1_contains",{"_index":538,"name":{"1208":{},"1439":{},"5394":{},"5597":{}},"parent":{}}],["token1_ends_with",{"_index":542,"name":{"1212":{},"1443":{},"5398":{},"5601":{}},"parent":{}}],["token1_gt",{"_index":532,"name":{"1202":{},"1433":{},"5388":{},"5591":{}},"parent":{}}],["token1_gte",{"_index":534,"name":{"1204":{},"1435":{},"5390":{},"5593":{}},"parent":{}}],["token1_in",{"_index":536,"name":{"1206":{},"1437":{},"5392":{},"5595":{}},"parent":{}}],["token1_lt",{"_index":533,"name":{"1203":{},"1434":{},"5389":{},"5592":{}},"parent":{}}],["token1_lte",{"_index":535,"name":{"1205":{},"1436":{},"5391":{},"5594":{}},"parent":{}}],["token1_not",{"_index":531,"name":{"1201":{},"1432":{},"5387":{},"5590":{}},"parent":{}}],["token1_not_contains",{"_index":539,"name":{"1209":{},"1440":{},"5395":{},"5598":{}},"parent":{}}],["token1_not_ends_with",{"_index":543,"name":{"1213":{},"1444":{},"5399":{},"5602":{}},"parent":{}}],["token1_not_in",{"_index":537,"name":{"1207":{},"1438":{},"5393":{},"5596":{}},"parent":{}}],["token1_not_starts_with",{"_index":541,"name":{"1211":{},"1442":{},"5397":{},"5600":{}},"parent":{}}],["token1_starts_with",{"_index":540,"name":{"1210":{},"1441":{},"5396":{},"5599":{}},"parent":{}}],["token1price",{"_index":87,"name":{"140":{},"1073":{},"1501":{},"4728":{},"5323":{},"5659":{}},"parent":{}}],["token1price_gt",{"_index":609,"name":{"1503":{},"5661":{}},"parent":{}}],["token1price_gte",{"_index":611,"name":{"1505":{},"5663":{}},"parent":{}}],["token1price_in",{"_index":613,"name":{"1507":{},"5665":{}},"parent":{}}],["token1price_lt",{"_index":610,"name":{"1504":{},"5662":{}},"parent":{}}],["token1price_lte",{"_index":612,"name":{"1506":{},"5664":{}},"parent":{}}],["token1price_not",{"_index":608,"name":{"1502":{},"5660":{}},"parent":{}}],["token1price_not_in",{"_index":614,"name":{"1508":{},"5666":{}},"parent":{}}],["token1priceusd",{"_index":57,"name":{"71":{},"738":{},"820":{},"4664":{},"5006":{},"5088":{}},"parent":{}}],["token1priceusd_gt",{"_index":439,"name":{"822":{},"5090":{}},"parent":{}}],["token1priceusd_gte",{"_index":441,"name":{"824":{},"5092":{}},"parent":{}}],["token1priceusd_in",{"_index":443,"name":{"826":{},"5094":{}},"parent":{}}],["token1priceusd_lt",{"_index":440,"name":{"823":{},"5091":{}},"parent":{}}],["token1priceusd_lte",{"_index":442,"name":{"825":{},"5093":{}},"parent":{}}],["token1priceusd_not",{"_index":438,"name":{"821":{},"5089":{}},"parent":{}}],["token1priceusd_not_in",{"_index":444,"name":{"827":{},"5095":{}},"parent":{}}],["token_contains",{"_index":929,"name":{"2308":{},"2418":{},"6357":{}},"parent":{}}],["token_ends_with",{"_index":933,"name":{"2312":{},"2422":{},"6361":{}},"parent":{}}],["token_filter",{"_index":954,"name":{"2488":{},"6439":{}},"parent":{}}],["token_gt",{"_index":923,"name":{"2302":{},"2412":{},"6351":{}},"parent":{}}],["token_gte",{"_index":925,"name":{"2304":{},"2414":{},"6353":{}},"parent":{}}],["token_in",{"_index":927,"name":{"2306":{},"2416":{},"6355":{}},"parent":{}}],["token_lt",{"_index":924,"name":{"2303":{},"2413":{},"6352":{}},"parent":{}}],["token_lte",{"_index":926,"name":{"2305":{},"2415":{},"6354":{}},"parent":{}}],["token_not",{"_index":922,"name":{"2301":{},"2411":{},"6350":{}},"parent":{}}],["token_not_contains",{"_index":930,"name":{"2309":{},"2419":{},"6358":{}},"parent":{}}],["token_not_ends_with",{"_index":934,"name":{"2313":{},"2423":{},"6362":{}},"parent":{}}],["token_not_in",{"_index":928,"name":{"2307":{},"2417":{},"6356":{}},"parent":{}}],["token_not_starts_with",{"_index":932,"name":{"2311":{},"2421":{},"6360":{}},"parent":{}}],["token_orderby",{"_index":107,"name":{"193":{},"4764":{}},"parent":{}}],["token_starts_with",{"_index":931,"name":{"2310":{},"2420":{},"6359":{}},"parent":{}}],["tokenbasepairsargs",{"_index":905,"name":{"2240":{}},"parent":{}}],["tokenbasepairsdaydataargs",{"_index":911,"name":{"2254":{}},"parent":{}}],["tokencount",{"_index":43,"name":{"47":{},"503":{},"603":{}},"parent":{}}],["tokencount_gt",{"_index":369,"name":{"605":{}},"parent":{}}],["tokencount_gte",{"_index":371,"name":{"607":{}},"parent":{}}],["tokencount_in",{"_index":373,"name":{"609":{}},"parent":{}}],["tokencount_lt",{"_index":370,"name":{"606":{}},"parent":{}}],["tokencount_lte",{"_index":372,"name":{"608":{}},"parent":{}}],["tokencount_not",{"_index":368,"name":{"604":{}},"parent":{}}],["tokencount_not_in",{"_index":374,"name":{"610":{}},"parent":{}}],["tokendaydata",{"_index":631,"name":{"1590":{},"1856":{},"2268":{},"4166":{},"5762":{},"5979":{},"6308":{}},"parent":{}}],["tokendaydata_filter",{"_index":919,"name":{"2282":{},"6331":{}},"parent":{}}],["tokendaydata_orderby",{"_index":100,"name":{"169":{},"4750":{}},"parent":{}}],["tokendaydataargs",{"_index":902,"name":{"2233":{}},"parent":{}}],["tokendaydatadocument",{"_index":1238,"name":{"4227":{}},"parent":{}}],["tokendaydatamostliquidpairsargs",{"_index":1607,"name":{"6324":{}},"parent":{}}],["tokendaydatas",{"_index":632,"name":{"1591":{},"1857":{},"4229":{},"5763":{},"5980":{}},"parent":{}}],["tokendaydatasdocument",{"_index":1244,"name":{"4294":{}},"parent":{}}],["tokendocument",{"_index":1232,"name":{"4164":{}},"parent":{}}],["tokenhourdata",{"_index":629,"name":{"1588":{},"1854":{},"2378":{}},"parent":{}}],["tokenhourdata_filter",{"_index":951,"name":{"2392":{}},"parent":{}}],["tokenhourdata_orderby",{"_index":105,"name":{"181":{}},"parent":{}}],["tokenhourdataargs",{"_index":899,"name":{"2226":{}},"parent":{}}],["tokenhourdatas",{"_index":630,"name":{"1589":{},"1855":{}},"parent":{}}],["tokenmostliquidpairsargs",{"_index":1602,"name":{"6301":{}},"parent":{}}],["tokenquotepairsargs",{"_index":908,"name":{"2247":{}},"parent":{}}],["tokenquotepairsdaydataargs",{"_index":914,"name":{"2261":{}},"parent":{}}],["tokens",{"_index":46,"name":{"50":{},"506":{},"1587":{},"1853":{},"4296":{},"5737":{},"5954":{}},"parent":{}}],["tokensdocument",{"_index":1250,"name":{"4356":{}},"parent":{}}],["tokensearch",{"_index":637,"name":{"1610":{}},"parent":{}}],["totalliquidity",{"_index":1325,"name":{"4774":{},"6298":{},"6525":{}},"parent":{}}],["totalliquidity_gt",{"_index":1674,"name":{"6527":{}},"parent":{}}],["totalliquidity_gte",{"_index":1676,"name":{"6529":{}},"parent":{}}],["totalliquidity_in",{"_index":1678,"name":{"6531":{}},"parent":{}}],["totalliquidity_lt",{"_index":1675,"name":{"6528":{}},"parent":{}}],["totalliquidity_lte",{"_index":1677,"name":{"6530":{}},"parent":{}}],["totalliquidity_not",{"_index":1673,"name":{"6526":{}},"parent":{}}],["totalliquidity_not_in",{"_index":1679,"name":{"6532":{}},"parent":{}}],["totalliquidityeth",{"_index":1318,"name":{"4759":{},"4791":{},"4804":{},"6319":{},"6403":{},"6622":{},"6685":{},"6738":{},"6798":{}},"parent":{}}],["totalliquidityeth_gt",{"_index":1634,"name":{"6405":{},"6687":{},"6800":{}},"parent":{}}],["totalliquidityeth_gte",{"_index":1636,"name":{"6407":{},"6689":{},"6802":{}},"parent":{}}],["totalliquidityeth_in",{"_index":1638,"name":{"6409":{},"6691":{},"6804":{}},"parent":{}}],["totalliquidityeth_lt",{"_index":1635,"name":{"6406":{},"6688":{},"6801":{}},"parent":{}}],["totalliquidityeth_lte",{"_index":1637,"name":{"6408":{},"6690":{},"6803":{}},"parent":{}}],["totalliquidityeth_not",{"_index":1633,"name":{"6404":{},"6686":{},"6799":{}},"parent":{}}],["totalliquidityeth_not_in",{"_index":1639,"name":{"6410":{},"6692":{},"6805":{}},"parent":{}}],["totalliquiditytoken",{"_index":1317,"name":{"4758":{},"6318":{},"6395":{}},"parent":{}}],["totalliquiditytoken_gt",{"_index":1627,"name":{"6397":{}},"parent":{}}],["totalliquiditytoken_gte",{"_index":1629,"name":{"6399":{}},"parent":{}}],["totalliquiditytoken_in",{"_index":1631,"name":{"6401":{}},"parent":{}}],["totalliquiditytoken_lt",{"_index":1628,"name":{"6398":{}},"parent":{}}],["totalliquiditytoken_lte",{"_index":1630,"name":{"6400":{}},"parent":{}}],["totalliquiditytoken_not",{"_index":1626,"name":{"6396":{}},"parent":{}}],["totalliquiditytoken_not_in",{"_index":1632,"name":{"6402":{}},"parent":{}}],["totalliquidityusd",{"_index":1319,"name":{"4760":{},"4793":{},"4803":{},"6320":{},"6411":{},"6624":{},"6701":{},"6737":{},"6790":{}},"parent":{}}],["totalliquidityusd_gt",{"_index":1641,"name":{"6413":{},"6703":{},"6792":{}},"parent":{}}],["totalliquidityusd_gte",{"_index":1643,"name":{"6415":{},"6705":{},"6794":{}},"parent":{}}],["totalliquidityusd_in",{"_index":1645,"name":{"6417":{},"6707":{},"6796":{}},"parent":{}}],["totalliquidityusd_lt",{"_index":1642,"name":{"6414":{},"6704":{},"6793":{}},"parent":{}}],["totalliquidityusd_lte",{"_index":1644,"name":{"6416":{},"6706":{},"6795":{}},"parent":{}}],["totalliquidityusd_not",{"_index":1640,"name":{"6412":{},"6702":{},"6791":{}},"parent":{}}],["totalliquidityusd_not_in",{"_index":1646,"name":{"6418":{},"6708":{},"6797":{}},"parent":{}}],["totalsupply",{"_index":76,"name":{"110":{},"135":{},"199":{},"1068":{},"1148":{},"1230":{},"1461":{},"2213":{},"2548":{},"4700":{},"4723":{},"4769":{},"5318":{},"5342":{},"5416":{},"5619":{},"6293":{},"6485":{}},"parent":{}}],["totalsupply_gt",{"_index":545,"name":{"1232":{},"1463":{},"2550":{},"5418":{},"5621":{},"6487":{}},"parent":{}}],["totalsupply_gte",{"_index":547,"name":{"1234":{},"1465":{},"2552":{},"5420":{},"5623":{},"6489":{}},"parent":{}}],["totalsupply_in",{"_index":549,"name":{"1236":{},"1467":{},"2554":{},"5422":{},"5625":{},"6491":{}},"parent":{}}],["totalsupply_lt",{"_index":546,"name":{"1233":{},"1464":{},"2551":{},"5419":{},"5622":{},"6488":{}},"parent":{}}],["totalsupply_lte",{"_index":548,"name":{"1235":{},"1466":{},"2553":{},"5421":{},"5624":{},"6490":{}},"parent":{}}],["totalsupply_not",{"_index":544,"name":{"1231":{},"1462":{},"2549":{},"5417":{},"5620":{},"6486":{}},"parent":{}}],["totalsupply_not_in",{"_index":550,"name":{"1237":{},"1468":{},"2555":{},"5423":{},"5626":{},"6492":{}},"parent":{}}],["totalvolumeeth",{"_index":1330,"name":{"4790":{},"4801":{},"6621":{},"6677":{},"6735":{},"6774":{}},"parent":{}}],["totalvolumeeth_gt",{"_index":1706,"name":{"6679":{},"6776":{}},"parent":{}}],["totalvolumeeth_gte",{"_index":1708,"name":{"6681":{},"6778":{}},"parent":{}}],["totalvolumeeth_in",{"_index":1710,"name":{"6683":{},"6780":{}},"parent":{}}],["totalvolumeeth_lt",{"_index":1707,"name":{"6680":{},"6777":{}},"parent":{}}],["totalvolumeeth_lte",{"_index":1709,"name":{"6682":{},"6779":{}},"parent":{}}],["totalvolumeeth_not",{"_index":1705,"name":{"6678":{},"6775":{}},"parent":{}}],["totalvolumeeth_not_in",{"_index":1711,"name":{"6684":{},"6781":{}},"parent":{}}],["totalvolumeusd",{"_index":1331,"name":{"4792":{},"4800":{},"6623":{},"6693":{},"6734":{},"6766":{}},"parent":{}}],["totalvolumeusd_gt",{"_index":1713,"name":{"6695":{},"6768":{}},"parent":{}}],["totalvolumeusd_gte",{"_index":1715,"name":{"6697":{},"6770":{}},"parent":{}}],["totalvolumeusd_in",{"_index":1717,"name":{"6699":{},"6772":{}},"parent":{}}],["totalvolumeusd_lt",{"_index":1714,"name":{"6696":{},"6769":{}},"parent":{}}],["totalvolumeusd_lte",{"_index":1716,"name":{"6698":{},"6771":{}},"parent":{}}],["totalvolumeusd_not",{"_index":1712,"name":{"6694":{},"6767":{}},"parent":{}}],["totalvolumeusd_not_in",{"_index":1718,"name":{"6700":{},"6773":{}},"parent":{}}],["trackedreserveeth",{"_index":85,"name":{"138":{},"1071":{},"1485":{},"4726":{},"5321":{},"5643":{}},"parent":{}}],["trackedreserveeth_gt",{"_index":595,"name":{"1487":{},"5645":{}},"parent":{}}],["trackedreserveeth_gte",{"_index":597,"name":{"1489":{},"5647":{}},"parent":{}}],["trackedreserveeth_in",{"_index":599,"name":{"1491":{},"5649":{}},"parent":{}}],["trackedreserveeth_lt",{"_index":596,"name":{"1488":{},"5646":{}},"parent":{}}],["trackedreserveeth_lte",{"_index":598,"name":{"1490":{},"5648":{}},"parent":{}}],["trackedreserveeth_not",{"_index":594,"name":{"1486":{},"5644":{}},"parent":{}}],["trackedreserveeth_not_in",{"_index":600,"name":{"1492":{},"5650":{}},"parent":{}}],["tradevolume",{"_index":1323,"name":{"4770":{},"6294":{},"6493":{}},"parent":{}}],["tradevolume_gt",{"_index":1660,"name":{"6495":{}},"parent":{}}],["tradevolume_gte",{"_index":1662,"name":{"6497":{}},"parent":{}}],["tradevolume_in",{"_index":1664,"name":{"6499":{}},"parent":{}}],["tradevolume_lt",{"_index":1661,"name":{"6496":{}},"parent":{}}],["tradevolume_lte",{"_index":1663,"name":{"6498":{}},"parent":{}}],["tradevolume_not",{"_index":1659,"name":{"6494":{}},"parent":{}}],["tradevolume_not_in",{"_index":1665,"name":{"6500":{}},"parent":{}}],["tradevolumeusd",{"_index":1324,"name":{"4771":{},"6295":{},"6501":{}},"parent":{}}],["tradevolumeusd_gt",{"_index":1667,"name":{"6503":{}},"parent":{}}],["tradevolumeusd_gte",{"_index":1669,"name":{"6505":{}},"parent":{}}],["tradevolumeusd_in",{"_index":1671,"name":{"6507":{}},"parent":{}}],["tradevolumeusd_lt",{"_index":1668,"name":{"6504":{}},"parent":{}}],["tradevolumeusd_lte",{"_index":1670,"name":{"6506":{}},"parent":{}}],["tradevolumeusd_not",{"_index":1666,"name":{"6502":{}},"parent":{}}],["tradevolumeusd_not_in",{"_index":1672,"name":{"6508":{}},"parent":{}}],["transaction",{"_index":16,"name":{"15":{},"87":{},"158":{},"271":{},"294":{},"934":{},"956":{},"1602":{},"1868":{},"2088":{},"2109":{},"2604":{},"4358":{},"4643":{},"4677":{},"4739":{},"4860":{},"4883":{},"5186":{},"5208":{},"5746":{},"5963":{},"6169":{},"6190":{},"6545":{}},"parent":{}}],["transaction_contains",{"_index":180,"name":{"302":{},"964":{},"2117":{},"4891":{},"5216":{},"6198":{}},"parent":{}}],["transaction_ends_with",{"_index":184,"name":{"306":{},"968":{},"2121":{},"4895":{},"5220":{},"6202":{}},"parent":{}}],["transaction_filter",{"_index":995,"name":{"2634":{},"6575":{}},"parent":{}}],["transaction_gt",{"_index":174,"name":{"296":{},"958":{},"2111":{},"4885":{},"5210":{},"6192":{}},"parent":{}}],["transaction_gte",{"_index":176,"name":{"298":{},"960":{},"2113":{},"4887":{},"5212":{},"6194":{}},"parent":{}}],["transaction_in",{"_index":178,"name":{"300":{},"962":{},"2115":{},"4889":{},"5214":{},"6196":{}},"parent":{}}],["transaction_lt",{"_index":175,"name":{"297":{},"959":{},"2112":{},"4886":{},"5211":{},"6193":{}},"parent":{}}],["transaction_lte",{"_index":177,"name":{"299":{},"961":{},"2114":{},"4888":{},"5213":{},"6195":{}},"parent":{}}],["transaction_not",{"_index":173,"name":{"295":{},"957":{},"2110":{},"4884":{},"5209":{},"6191":{}},"parent":{}}],["transaction_not_contains",{"_index":181,"name":{"303":{},"965":{},"2118":{},"4892":{},"5217":{},"6199":{}},"parent":{}}],["transaction_not_ends_with",{"_index":185,"name":{"307":{},"969":{},"2122":{},"4896":{},"5221":{},"6203":{}},"parent":{}}],["transaction_not_in",{"_index":179,"name":{"301":{},"963":{},"2116":{},"4890":{},"5215":{},"6197":{}},"parent":{}}],["transaction_not_starts_with",{"_index":183,"name":{"305":{},"967":{},"2120":{},"4894":{},"5219":{},"6201":{}},"parent":{}}],["transaction_orderby",{"_index":116,"name":{"212":{},"4777":{}},"parent":{}}],["transaction_starts_with",{"_index":182,"name":{"304":{},"966":{},"2119":{},"4893":{},"5218":{},"6200":{}},"parent":{}}],["transactionburnsargs",{"_index":989,"name":{"2620":{},"6561":{}},"parent":{}}],["transactiondocument",{"_index":1256,"name":{"4424":{}},"parent":{}}],["transactionmintsargs",{"_index":986,"name":{"2613":{},"6554":{}},"parent":{}}],["transactions",{"_index":635,"name":{"1603":{},"1869":{},"4426":{},"5747":{},"5964":{}},"parent":{}}],["transactionsdocument",{"_index":1277,"name":{"4511":{}},"parent":{}}],["transactionswapsargs",{"_index":992,"name":{"2627":{},"6568":{}},"parent":{}}],["txcount",{"_index":38,"name":{"37":{},"46":{},"62":{},"115":{},"126":{},"145":{},"176":{},"188":{},"203":{},"411":{},"484":{},"502":{},"595":{},"630":{},"703":{},"1078":{},"1153":{},"1270":{},"1290":{},"1371":{},"1541":{},"2217":{},"2277":{},"2338":{},"2387":{},"2448":{},"2580":{},"4733":{},"4773":{},"4796":{},"4805":{},"5328":{},"5699":{},"6297":{},"6517":{},"6627":{},"6721":{},"6739":{},"6806":{}},"parent":{}}],["txcount_gt",{"_index":327,"name":{"486":{},"597":{},"705":{},"1272":{},"1373":{},"1543":{},"2340":{},"2450":{},"2582":{},"5701":{},"6519":{},"6723":{},"6808":{}},"parent":{}}],["txcount_gte",{"_index":329,"name":{"488":{},"599":{},"707":{},"1274":{},"1375":{},"1545":{},"2342":{},"2452":{},"2584":{},"5703":{},"6521":{},"6725":{},"6810":{}},"parent":{}}],["txcount_in",{"_index":331,"name":{"490":{},"601":{},"709":{},"1276":{},"1377":{},"1547":{},"2344":{},"2454":{},"2586":{},"5705":{},"6523":{},"6727":{},"6812":{}},"parent":{}}],["txcount_lt",{"_index":328,"name":{"487":{},"598":{},"706":{},"1273":{},"1374":{},"1544":{},"2341":{},"2451":{},"2583":{},"5702":{},"6520":{},"6724":{},"6809":{}},"parent":{}}],["txcount_lte",{"_index":330,"name":{"489":{},"600":{},"708":{},"1275":{},"1376":{},"1546":{},"2343":{},"2453":{},"2585":{},"5704":{},"6522":{},"6726":{},"6811":{}},"parent":{}}],["txcount_not",{"_index":326,"name":{"485":{},"596":{},"704":{},"1271":{},"1372":{},"1542":{},"2339":{},"2449":{},"2581":{},"5700":{},"6518":{},"6722":{},"6807":{}},"parent":{}}],["txcount_not_in",{"_index":332,"name":{"491":{},"602":{},"710":{},"1277":{},"1378":{},"1548":{},"2345":{},"2455":{},"2587":{},"5706":{},"6524":{},"6728":{},"6813":{}},"parent":{}}],["types",{"_index":9,"name":{"9":{}},"parent":{"10":{},"13":{},"28":{},"38":{},"53":{},"63":{},"77":{},"85":{},"99":{},"102":{},"116":{},"127":{},"156":{},"169":{},"181":{},"193":{},"212":{},"219":{},"222":{},"225":{},"226":{},"228":{},"229":{},"230":{},"240":{},"244":{},"249":{},"267":{},"284":{},"400":{},"412":{},"492":{},"509":{},"516":{},"523":{},"530":{},"537":{},"619":{},"631":{},"711":{},"721":{},"728":{},"744":{},"868":{},"930":{},"946":{},"1058":{},"1089":{},"1096":{},"1103":{},"1110":{},"1117":{},"1124":{},"1131":{},"1138":{},"1154":{},"1278":{},"1291":{},"1379":{},"1573":{},"1614":{},"1618":{},"1626":{},"1630":{},"1638":{},"1642":{},"1650":{},"1654":{},"1662":{},"1666":{},"1674":{},"1678":{},"1686":{},"1690":{},"1698":{},"1702":{},"1710":{},"1714":{},"1722":{},"1726":{},"1734":{},"1738":{},"1746":{},"1750":{},"1758":{},"1762":{},"1770":{},"1774":{},"1782":{},"1786":{},"1794":{},"1798":{},"1806":{},"1810":{},"1818":{},"1824":{},"1830":{},"1836":{},"1839":{},"1877":{},"1881":{},"1889":{},"1893":{},"1901":{},"1905":{},"1913":{},"1917":{},"1925":{},"1929":{},"1937":{},"1941":{},"1949":{},"1953":{},"1961":{},"1965":{},"1973":{},"1977":{},"1985":{},"1989":{},"1997":{},"2001":{},"2009":{},"2013":{},"2021":{},"2025":{},"2033":{},"2037":{},"2045":{},"2049":{},"2057":{},"2061":{},"2069":{},"2073":{},"2081":{},"2084":{},"2099":{},"2205":{},"2226":{},"2233":{},"2240":{},"2247":{},"2254":{},"2261":{},"2268":{},"2282":{},"2378":{},"2392":{},"2488":{},"2604":{},"2613":{},"2620":{},"2627":{},"2634":{},"2672":{},"2677":{},"2684":{},"2694":{},"2699":{}}}],["types\"._block_",{"_index":1023,"name":{},"parent":{"2695":{}}}],["types\"._block_.__type",{"_index":1024,"name":{},"parent":{"2696":{},"2697":{},"2698":{}}}],["types\"._meta_",{"_index":1026,"name":{},"parent":{"2700":{}}}],["types\"._meta_.__type",{"_index":1027,"name":{},"parent":{"2701":{},"2702":{},"2703":{},"2704":{}}}],["types\"._subgrapherrorpolicy_",{"_index":123,"name":{},"parent":{"223":{},"224":{}}}],["types\".block_height",{"_index":142,"name":{},"parent":{"241":{}}}],["types\".block_height.__type",{"_index":144,"name":{},"parent":{"242":{},"243":{}}}],["types\".bundle",{"_index":147,"name":{},"parent":{"245":{}}}],["types\".bundle.__type",{"_index":149,"name":{},"parent":{"246":{},"247":{},"248":{}}}],["types\".bundle_filter",{"_index":151,"name":{},"parent":{"250":{}}}],["types\".bundle_filter.__type",{"_index":152,"name":{},"parent":{"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["types\".bundle_orderby",{"_index":12,"name":{},"parent":{"11":{},"12":{}}}],["types\".burn",{"_index":168,"name":{},"parent":{"268":{}}}],["types\".burn.__type",{"_index":169,"name":{},"parent":{"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["types\".burn_filter",{"_index":171,"name":{},"parent":{"285":{}}}],["types\".burn_filter.__type",{"_index":172,"name":{},"parent":{"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{}}}],["types\".burn_orderby",{"_index":15,"name":{},"parent":{"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{}}}],["types\".daydata",{"_index":266,"name":{},"parent":{"401":{}}}],["types\".daydata.__type",{"_index":267,"name":{},"parent":{"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{}}}],["types\".daydata_filter",{"_index":269,"name":{},"parent":{"413":{}}}],["types\".daydata_filter.__type",{"_index":270,"name":{},"parent":{"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{}}}],["types\".daydata_orderby",{"_index":30,"name":{},"parent":{"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{}}}],["types\".exact",{"_index":128,"name":{},"parent":{"227":{}}}],["types\".factory",{"_index":333,"name":{},"parent":{"493":{}}}],["types\".factory.__type",{"_index":334,"name":{},"parent":{"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{}}}],["types\".factory_filter",{"_index":352,"name":{},"parent":{"538":{}}}],["types\".factory_filter.__type",{"_index":353,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{}}}],["types\".factory_orderby",{"_index":40,"name":{},"parent":{"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{}}}],["types\".factorydaydataargs",{"_index":349,"name":{},"parent":{"531":{}}}],["types\".factorydaydataargs.__type",{"_index":350,"name":{},"parent":{"532":{},"533":{},"534":{},"535":{},"536":{}}}],["types\".factoryhourdataargs",{"_index":346,"name":{},"parent":{"524":{}}}],["types\".factoryhourdataargs.__type",{"_index":347,"name":{},"parent":{"525":{},"526":{},"527":{},"528":{},"529":{}}}],["types\".factorypairsargs",{"_index":336,"name":{},"parent":{"510":{}}}],["types\".factorypairsargs.__type",{"_index":338,"name":{},"parent":{"511":{},"512":{},"513":{},"514":{},"515":{}}}],["types\".factorytokensargs",{"_index":343,"name":{},"parent":{"517":{}}}],["types\".factorytokensargs.__type",{"_index":344,"name":{},"parent":{"518":{},"519":{},"520":{},"521":{},"522":{}}}],["types\".hourdata",{"_index":382,"name":{},"parent":{"620":{}}}],["types\".hourdata.__type",{"_index":383,"name":{},"parent":{"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{}}}],["types\".hourdata_filter",{"_index":385,"name":{},"parent":{"632":{}}}],["types\".hourdata_filter.__type",{"_index":386,"name":{},"parent":{"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{}}}],["types\".hourdata_orderby",{"_index":50,"name":{},"parent":{"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{}}}],["types\".liquidityposition",{"_index":387,"name":{},"parent":{"712":{}}}],["types\".liquidityposition.__type",{"_index":388,"name":{},"parent":{"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{}}}],["types\".liquidityposition_filter",{"_index":481,"name":{},"parent":{"869":{}}}],["types\".liquidityposition_filter.__type",{"_index":482,"name":{},"parent":{"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{}}}],["types\".liquidityposition_orderby",{"_index":64,"name":{},"parent":{"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{}}}],["types\".liquiditypositionsnapshot",{"_index":393,"name":{},"parent":{"729":{}}}],["types\".liquiditypositionsnapshot.__type",{"_index":394,"name":{},"parent":{"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{}}}],["types\".liquiditypositionsnapshot_filter",{"_index":396,"name":{},"parent":{"745":{}}}],["types\".liquiditypositionsnapshot_filter.__type",{"_index":397,"name":{},"parent":{"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{},"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{},"838":{},"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"867":{}}}],["types\".liquiditypositionsnapshot_orderby",{"_index":52,"name":{},"parent":{"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{}}}],["types\".liquiditypositionsnapshotsargs",{"_index":390,"name":{},"parent":{"722":{}}}],["types\".liquiditypositionsnapshotsargs.__type",{"_index":391,"name":{},"parent":{"723":{},"724":{},"725":{},"726":{},"727":{}}}],["types\".mint",{"_index":484,"name":{},"parent":{"931":{}}}],["types\".mint.__type",{"_index":485,"name":{},"parent":{"932":{},"933":{},"934":{},"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{}}}],["types\".mint_filter",{"_index":487,"name":{},"parent":{"947":{}}}],["types\".mint_filter.__type",{"_index":488,"name":{},"parent":{"948":{},"949":{},"950":{},"951":{},"952":{},"953":{},"954":{},"955":{},"956":{},"957":{},"958":{},"959":{},"960":{},"961":{},"962":{},"963":{},"964":{},"965":{},"966":{},"967":{},"968":{},"969":{},"970":{},"971":{},"972":{},"973":{},"974":{},"975":{},"976":{},"977":{},"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"985":{},"986":{},"987":{},"988":{},"989":{},"990":{},"991":{},"992":{},"993":{},"994":{},"995":{},"996":{},"997":{},"998":{},"999":{},"1000":{},"1001":{},"1002":{},"1003":{},"1004":{},"1005":{},"1006":{},"1007":{},"1008":{},"1009":{},"1010":{},"1011":{},"1012":{},"1013":{},"1014":{},"1015":{},"1016":{},"1017":{},"1018":{},"1019":{},"1020":{},"1021":{},"1022":{},"1023":{},"1024":{},"1025":{},"1026":{},"1027":{},"1028":{},"1029":{},"1030":{},"1031":{},"1032":{},"1033":{},"1034":{},"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1043":{},"1044":{},"1045":{},"1046":{},"1047":{},"1048":{},"1049":{},"1050":{},"1051":{},"1052":{},"1053":{},"1054":{},"1055":{},"1056":{},"1057":{}}}],["types\".mint_orderby",{"_index":67,"name":{},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{}}}],["types\".orderdirection",{"_index":70,"name":{},"parent":{"100":{},"101":{}}}],["types\".pair",{"_index":489,"name":{},"parent":{"1059":{}}}],["types\".pair.__type",{"_index":490,"name":{},"parent":{"1060":{},"1061":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1074":{},"1075":{},"1076":{},"1077":{},"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1087":{},"1088":{}}}],["types\".pair_filter",{"_index":572,"name":{},"parent":{"1380":{}}}],["types\".pair_filter.__type",{"_index":573,"name":{},"parent":{"1381":{},"1382":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1388":{},"1389":{},"1390":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{},"1396":{},"1397":{},"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{},"1411":{},"1412":{},"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{},"1420":{},"1421":{},"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{},"1430":{},"1431":{},"1432":{},"1433":{},"1434":{},"1435":{},"1436":{},"1437":{},"1438":{},"1439":{},"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{},"1451":{},"1452":{},"1453":{},"1454":{},"1455":{},"1456":{},"1457":{},"1458":{},"1459":{},"1460":{},"1461":{},"1462":{},"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1477":{},"1478":{},"1479":{},"1480":{},"1481":{},"1482":{},"1483":{},"1484":{},"1485":{},"1486":{},"1487":{},"1488":{},"1489":{},"1490":{},"1491":{},"1492":{},"1493":{},"1494":{},"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1501":{},"1502":{},"1503":{},"1504":{},"1505":{},"1506":{},"1507":{},"1508":{},"1509":{},"1510":{},"1511":{},"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{},"1521":{},"1522":{},"1523":{},"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{},"1543":{},"1544":{},"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{},"1552":{},"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{},"1571":{},"1572":{}}}],["types\".pair_orderby",{"_index":82,"name":{},"parent":{"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{}}}],["types\".pairburnsargs",{"_index":507,"name":{},"parent":{"1125":{}}}],["types\".pairburnsargs.__type",{"_index":508,"name":{},"parent":{"1126":{},"1127":{},"1128":{},"1129":{},"1130":{}}}],["types\".pairdaydata",{"_index":513,"name":{},"parent":{"1139":{}}}],["types\".pairdaydata.__type",{"_index":514,"name":{},"parent":{"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{},"1146":{},"1147":{},"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{}}}],["types\".pairdaydata_filter",{"_index":516,"name":{},"parent":{"1155":{}}}],["types\".pairdaydata_filter.__type",{"_index":517,"name":{},"parent":{"1156":{},"1157":{},"1158":{},"1159":{},"1160":{},"1161":{},"1162":{},"1163":{},"1164":{},"1165":{},"1166":{},"1167":{},"1168":{},"1169":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1177":{},"1178":{},"1179":{},"1180":{},"1181":{},"1182":{},"1183":{},"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1189":{},"1190":{},"1191":{},"1192":{},"1193":{},"1194":{},"1195":{},"1196":{},"1197":{},"1198":{},"1199":{},"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1208":{},"1209":{},"1210":{},"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1219":{},"1220":{},"1221":{},"1222":{},"1223":{},"1224":{},"1225":{},"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1239":{},"1240":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{},"1255":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{}}}],["types\".pairdaydata_orderby",{"_index":73,"name":{},"parent":{"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{}}}],["types\".pairdaydataargs",{"_index":498,"name":{},"parent":{"1104":{}}}],["types\".pairdaydataargs.__type",{"_index":499,"name":{},"parent":{"1105":{},"1106":{},"1107":{},"1108":{},"1109":{}}}],["types\".pairhourdata",{"_index":566,"name":{},"parent":{"1279":{}}}],["types\".pairhourdata.__type",{"_index":567,"name":{},"parent":{"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{}}}],["types\".pairhourdata_filter",{"_index":569,"name":{},"parent":{"1292":{}}}],["types\".pairhourdata_filter.__type",{"_index":570,"name":{},"parent":{"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1331":{},"1332":{},"1333":{},"1334":{},"1335":{},"1336":{},"1337":{},"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{},"1345":{},"1346":{},"1347":{},"1348":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1359":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{},"1365":{},"1366":{},"1367":{},"1368":{},"1369":{},"1370":{},"1371":{},"1372":{},"1373":{},"1374":{},"1375":{},"1376":{},"1377":{},"1378":{}}}],["types\".pairhourdata_orderby",{"_index":80,"name":{},"parent":{"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{}}}],["types\".pairhourdataargs",{"_index":501,"name":{},"parent":{"1111":{}}}],["types\".pairhourdataargs.__type",{"_index":502,"name":{},"parent":{"1112":{},"1113":{},"1114":{},"1115":{},"1116":{}}}],["types\".pairliquiditypositionsargs",{"_index":492,"name":{},"parent":{"1090":{}}}],["types\".pairliquiditypositionsargs.__type",{"_index":493,"name":{},"parent":{"1091":{},"1092":{},"1093":{},"1094":{},"1095":{}}}],["types\".pairliquiditypositionsnapshotsargs",{"_index":495,"name":{},"parent":{"1097":{}}}],["types\".pairliquiditypositionsnapshotsargs.__type",{"_index":496,"name":{},"parent":{"1098":{},"1099":{},"1100":{},"1101":{},"1102":{}}}],["types\".pairmintsargs",{"_index":504,"name":{},"parent":{"1118":{}}}],["types\".pairmintsargs.__type",{"_index":505,"name":{},"parent":{"1119":{},"1120":{},"1121":{},"1122":{},"1123":{}}}],["types\".pairswapsargs",{"_index":510,"name":{},"parent":{"1132":{}}}],["types\".pairswapsargs.__type",{"_index":511,"name":{},"parent":{"1133":{},"1134":{},"1135":{},"1136":{},"1137":{}}}],["types\".query",{"_index":622,"name":{},"parent":{"1574":{}}}],["types\".query.__type",{"_index":623,"name":{},"parent":{"1575":{},"1576":{},"1577":{},"1578":{},"1579":{},"1580":{},"1581":{},"1582":{},"1583":{},"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{},"1591":{},"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{},"1610":{},"1611":{},"1612":{},"1613":{}}}],["types\".query_metaargs",{"_index":754,"name":{},"parent":{"1837":{}}}],["types\".query_metaargs.__type",{"_index":755,"name":{},"parent":{"1838":{}}}],["types\".querybundleargs",{"_index":648,"name":{},"parent":{"1627":{}}}],["types\".querybundleargs.__type",{"_index":649,"name":{},"parent":{"1628":{},"1629":{}}}],["types\".querybundlesargs",{"_index":651,"name":{},"parent":{"1631":{}}}],["types\".querybundlesargs.__type",{"_index":652,"name":{},"parent":{"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{}}}],["types\".queryburnargs",{"_index":732,"name":{},"parent":{"1795":{}}}],["types\".queryburnargs.__type",{"_index":733,"name":{},"parent":{"1796":{},"1797":{}}}],["types\".queryburnsargs",{"_index":735,"name":{},"parent":{"1799":{}}}],["types\".queryburnsargs.__type",{"_index":736,"name":{},"parent":{"1800":{},"1801":{},"1802":{},"1803":{},"1804":{},"1805":{}}}],["types\".querydaydataargs",{"_index":666,"name":{},"parent":{"1663":{}}}],["types\".querydaydataargs.__type",{"_index":667,"name":{},"parent":{"1664":{},"1665":{}}}],["types\".querydaydatasargs",{"_index":669,"name":{},"parent":{"1667":{}}}],["types\".querydaydatasargs.__type",{"_index":670,"name":{},"parent":{"1668":{},"1669":{},"1670":{},"1671":{},"1672":{},"1673":{}}}],["types\".queryfactoriesargs",{"_index":657,"name":{},"parent":{"1643":{}}}],["types\".queryfactoriesargs.__type",{"_index":658,"name":{},"parent":{"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{}}}],["types\".queryfactoryargs",{"_index":654,"name":{},"parent":{"1639":{}}}],["types\".queryfactoryargs.__type",{"_index":655,"name":{},"parent":{"1640":{},"1641":{}}}],["types\".queryhourdataargs",{"_index":660,"name":{},"parent":{"1651":{}}}],["types\".queryhourdataargs.__type",{"_index":661,"name":{},"parent":{"1652":{},"1653":{}}}],["types\".queryhourdatasargs",{"_index":663,"name":{},"parent":{"1655":{}}}],["types\".queryhourdatasargs.__type",{"_index":664,"name":{},"parent":{"1656":{},"1657":{},"1658":{},"1659":{},"1660":{},"1661":{}}}],["types\".queryliquiditypositionargs",{"_index":708,"name":{},"parent":{"1747":{}}}],["types\".queryliquiditypositionargs.__type",{"_index":709,"name":{},"parent":{"1748":{},"1749":{}}}],["types\".queryliquiditypositionsargs",{"_index":711,"name":{},"parent":{"1751":{}}}],["types\".queryliquiditypositionsargs.__type",{"_index":712,"name":{},"parent":{"1752":{},"1753":{},"1754":{},"1755":{},"1756":{},"1757":{}}}],["types\".queryliquiditypositionsnapshotargs",{"_index":714,"name":{},"parent":{"1759":{}}}],["types\".queryliquiditypositionsnapshotargs.__type",{"_index":715,"name":{},"parent":{"1760":{},"1761":{}}}],["types\".queryliquiditypositionsnapshotsargs",{"_index":717,"name":{},"parent":{"1763":{}}}],["types\".queryliquiditypositionsnapshotsargs.__type",{"_index":718,"name":{},"parent":{"1764":{},"1765":{},"1766":{},"1767":{},"1768":{},"1769":{}}}],["types\".querymintargs",{"_index":726,"name":{},"parent":{"1783":{}}}],["types\".querymintargs.__type",{"_index":727,"name":{},"parent":{"1784":{},"1785":{}}}],["types\".querymintsargs",{"_index":729,"name":{},"parent":{"1787":{}}}],["types\".querymintsargs.__type",{"_index":730,"name":{},"parent":{"1788":{},"1789":{},"1790":{},"1791":{},"1792":{},"1793":{}}}],["types\".querypairargs",{"_index":690,"name":{},"parent":{"1711":{}}}],["types\".querypairargs.__type",{"_index":691,"name":{},"parent":{"1712":{},"1713":{}}}],["types\".querypairdaydataargs",{"_index":702,"name":{},"parent":{"1735":{}}}],["types\".querypairdaydataargs.__type",{"_index":703,"name":{},"parent":{"1736":{},"1737":{}}}],["types\".querypairdaydatasargs",{"_index":705,"name":{},"parent":{"1739":{}}}],["types\".querypairdaydatasargs.__type",{"_index":706,"name":{},"parent":{"1740":{},"1741":{},"1742":{},"1743":{},"1744":{},"1745":{}}}],["types\".querypairhourdataargs",{"_index":696,"name":{},"parent":{"1723":{}}}],["types\".querypairhourdataargs.__type",{"_index":697,"name":{},"parent":{"1724":{},"1725":{}}}],["types\".querypairhourdatasargs",{"_index":699,"name":{},"parent":{"1727":{}}}],["types\".querypairhourdatasargs.__type",{"_index":700,"name":{},"parent":{"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{}}}],["types\".querypairsargs",{"_index":693,"name":{},"parent":{"1715":{}}}],["types\".querypairsargs.__type",{"_index":694,"name":{},"parent":{"1716":{},"1717":{},"1718":{},"1719":{},"1720":{},"1721":{}}}],["types\".querypairsearchargs",{"_index":748,"name":{},"parent":{"1825":{}}}],["types\".querypairsearchargs.__type",{"_index":749,"name":{},"parent":{"1826":{},"1827":{},"1828":{},"1829":{}}}],["types\".queryswapargs",{"_index":738,"name":{},"parent":{"1807":{}}}],["types\".queryswapargs.__type",{"_index":739,"name":{},"parent":{"1808":{},"1809":{}}}],["types\".queryswapsargs",{"_index":741,"name":{},"parent":{"1811":{}}}],["types\".queryswapsargs.__type",{"_index":742,"name":{},"parent":{"1812":{},"1813":{},"1814":{},"1815":{},"1816":{},"1817":{}}}],["types\".querytokenargs",{"_index":672,"name":{},"parent":{"1675":{}}}],["types\".querytokenargs.__type",{"_index":673,"name":{},"parent":{"1676":{},"1677":{}}}],["types\".querytokendaydataargs",{"_index":684,"name":{},"parent":{"1699":{}}}],["types\".querytokendaydataargs.__type",{"_index":685,"name":{},"parent":{"1700":{},"1701":{}}}],["types\".querytokendaydatasargs",{"_index":687,"name":{},"parent":{"1703":{}}}],["types\".querytokendaydatasargs.__type",{"_index":688,"name":{},"parent":{"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1709":{}}}],["types\".querytokenhourdataargs",{"_index":678,"name":{},"parent":{"1687":{}}}],["types\".querytokenhourdataargs.__type",{"_index":679,"name":{},"parent":{"1688":{},"1689":{}}}],["types\".querytokenhourdatasargs",{"_index":681,"name":{},"parent":{"1691":{}}}],["types\".querytokenhourdatasargs.__type",{"_index":682,"name":{},"parent":{"1692":{},"1693":{},"1694":{},"1695":{},"1696":{},"1697":{}}}],["types\".querytokensargs",{"_index":675,"name":{},"parent":{"1679":{}}}],["types\".querytokensargs.__type",{"_index":676,"name":{},"parent":{"1680":{},"1681":{},"1682":{},"1683":{},"1684":{},"1685":{}}}],["types\".querytokensearchargs",{"_index":744,"name":{},"parent":{"1819":{}}}],["types\".querytokensearchargs.__type",{"_index":746,"name":{},"parent":{"1820":{},"1821":{},"1822":{},"1823":{}}}],["types\".querytransactionargs",{"_index":720,"name":{},"parent":{"1771":{}}}],["types\".querytransactionargs.__type",{"_index":721,"name":{},"parent":{"1772":{},"1773":{}}}],["types\".querytransactionsargs",{"_index":723,"name":{},"parent":{"1775":{}}}],["types\".querytransactionsargs.__type",{"_index":724,"name":{},"parent":{"1776":{},"1777":{},"1778":{},"1779":{},"1780":{},"1781":{}}}],["types\".queryuserargs",{"_index":642,"name":{},"parent":{"1615":{}}}],["types\".queryuserargs.__type",{"_index":643,"name":{},"parent":{"1616":{},"1617":{}}}],["types\".queryusersargs",{"_index":645,"name":{},"parent":{"1619":{}}}],["types\".queryusersargs.__type",{"_index":646,"name":{},"parent":{"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{}}}],["types\".queryusersearchargs",{"_index":751,"name":{},"parent":{"1831":{}}}],["types\".queryusersearchargs.__type",{"_index":752,"name":{},"parent":{"1832":{},"1833":{},"1834":{},"1835":{}}}],["types\".scalars",{"_index":132,"name":{},"parent":{"231":{}}}],["types\".scalars.__type",{"_index":133,"name":{},"parent":{"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{}}}],["types\".subscription",{"_index":757,"name":{},"parent":{"1840":{}}}],["types\".subscription.__type",{"_index":758,"name":{},"parent":{"1841":{},"1842":{},"1843":{},"1844":{},"1845":{},"1846":{},"1847":{},"1848":{},"1849":{},"1850":{},"1851":{},"1852":{},"1853":{},"1854":{},"1855":{},"1856":{},"1857":{},"1858":{},"1859":{},"1860":{},"1861":{},"1862":{},"1863":{},"1864":{},"1865":{},"1866":{},"1867":{},"1868":{},"1869":{},"1870":{},"1871":{},"1872":{},"1873":{},"1874":{},"1875":{},"1876":{}}}],["types\".subscription_metaargs",{"_index":862,"name":{},"parent":{"2082":{}}}],["types\".subscription_metaargs.__type",{"_index":863,"name":{},"parent":{"2083":{}}}],["types\".subscriptionbundleargs",{"_index":766,"name":{},"parent":{"1890":{}}}],["types\".subscriptionbundleargs.__type",{"_index":767,"name":{},"parent":{"1891":{},"1892":{}}}],["types\".subscriptionbundlesargs",{"_index":769,"name":{},"parent":{"1894":{}}}],["types\".subscriptionbundlesargs.__type",{"_index":770,"name":{},"parent":{"1895":{},"1896":{},"1897":{},"1898":{},"1899":{},"1900":{}}}],["types\".subscriptionburnargs",{"_index":850,"name":{},"parent":{"2058":{}}}],["types\".subscriptionburnargs.__type",{"_index":851,"name":{},"parent":{"2059":{},"2060":{}}}],["types\".subscriptionburnsargs",{"_index":853,"name":{},"parent":{"2062":{}}}],["types\".subscriptionburnsargs.__type",{"_index":854,"name":{},"parent":{"2063":{},"2064":{},"2065":{},"2066":{},"2067":{},"2068":{}}}],["types\".subscriptiondaydataargs",{"_index":784,"name":{},"parent":{"1926":{}}}],["types\".subscriptiondaydataargs.__type",{"_index":785,"name":{},"parent":{"1927":{},"1928":{}}}],["types\".subscriptiondaydatasargs",{"_index":787,"name":{},"parent":{"1930":{}}}],["types\".subscriptiondaydatasargs.__type",{"_index":788,"name":{},"parent":{"1931":{},"1932":{},"1933":{},"1934":{},"1935":{},"1936":{}}}],["types\".subscriptionfactoriesargs",{"_index":775,"name":{},"parent":{"1906":{}}}],["types\".subscriptionfactoriesargs.__type",{"_index":776,"name":{},"parent":{"1907":{},"1908":{},"1909":{},"1910":{},"1911":{},"1912":{}}}],["types\".subscriptionfactoryargs",{"_index":772,"name":{},"parent":{"1902":{}}}],["types\".subscriptionfactoryargs.__type",{"_index":773,"name":{},"parent":{"1903":{},"1904":{}}}],["types\".subscriptionhourdataargs",{"_index":778,"name":{},"parent":{"1914":{}}}],["types\".subscriptionhourdataargs.__type",{"_index":779,"name":{},"parent":{"1915":{},"1916":{}}}],["types\".subscriptionhourdatasargs",{"_index":781,"name":{},"parent":{"1918":{}}}],["types\".subscriptionhourdatasargs.__type",{"_index":782,"name":{},"parent":{"1919":{},"1920":{},"1921":{},"1922":{},"1923":{},"1924":{}}}],["types\".subscriptionliquiditypositionargs",{"_index":826,"name":{},"parent":{"2010":{}}}],["types\".subscriptionliquiditypositionargs.__type",{"_index":827,"name":{},"parent":{"2011":{},"2012":{}}}],["types\".subscriptionliquiditypositionsargs",{"_index":829,"name":{},"parent":{"2014":{}}}],["types\".subscriptionliquiditypositionsargs.__type",{"_index":830,"name":{},"parent":{"2015":{},"2016":{},"2017":{},"2018":{},"2019":{},"2020":{}}}],["types\".subscriptionliquiditypositionsnapshotargs",{"_index":832,"name":{},"parent":{"2022":{}}}],["types\".subscriptionliquiditypositionsnapshotargs.__type",{"_index":833,"name":{},"parent":{"2023":{},"2024":{}}}],["types\".subscriptionliquiditypositionsnapshotsargs",{"_index":835,"name":{},"parent":{"2026":{}}}],["types\".subscriptionliquiditypositionsnapshotsargs.__type",{"_index":836,"name":{},"parent":{"2027":{},"2028":{},"2029":{},"2030":{},"2031":{},"2032":{}}}],["types\".subscriptionmintargs",{"_index":844,"name":{},"parent":{"2046":{}}}],["types\".subscriptionmintargs.__type",{"_index":845,"name":{},"parent":{"2047":{},"2048":{}}}],["types\".subscriptionmintsargs",{"_index":847,"name":{},"parent":{"2050":{}}}],["types\".subscriptionmintsargs.__type",{"_index":848,"name":{},"parent":{"2051":{},"2052":{},"2053":{},"2054":{},"2055":{},"2056":{}}}],["types\".subscriptionpairargs",{"_index":808,"name":{},"parent":{"1974":{}}}],["types\".subscriptionpairargs.__type",{"_index":809,"name":{},"parent":{"1975":{},"1976":{}}}],["types\".subscriptionpairdaydataargs",{"_index":820,"name":{},"parent":{"1998":{}}}],["types\".subscriptionpairdaydataargs.__type",{"_index":821,"name":{},"parent":{"1999":{},"2000":{}}}],["types\".subscriptionpairdaydatasargs",{"_index":823,"name":{},"parent":{"2002":{}}}],["types\".subscriptionpairdaydatasargs.__type",{"_index":824,"name":{},"parent":{"2003":{},"2004":{},"2005":{},"2006":{},"2007":{},"2008":{}}}],["types\".subscriptionpairhourdataargs",{"_index":814,"name":{},"parent":{"1986":{}}}],["types\".subscriptionpairhourdataargs.__type",{"_index":815,"name":{},"parent":{"1987":{},"1988":{}}}],["types\".subscriptionpairhourdatasargs",{"_index":817,"name":{},"parent":{"1990":{}}}],["types\".subscriptionpairhourdatasargs.__type",{"_index":818,"name":{},"parent":{"1991":{},"1992":{},"1993":{},"1994":{},"1995":{},"1996":{}}}],["types\".subscriptionpairsargs",{"_index":811,"name":{},"parent":{"1978":{}}}],["types\".subscriptionpairsargs.__type",{"_index":812,"name":{},"parent":{"1979":{},"1980":{},"1981":{},"1982":{},"1983":{},"1984":{}}}],["types\".subscriptionswapargs",{"_index":856,"name":{},"parent":{"2070":{}}}],["types\".subscriptionswapargs.__type",{"_index":857,"name":{},"parent":{"2071":{},"2072":{}}}],["types\".subscriptionswapsargs",{"_index":859,"name":{},"parent":{"2074":{}}}],["types\".subscriptionswapsargs.__type",{"_index":860,"name":{},"parent":{"2075":{},"2076":{},"2077":{},"2078":{},"2079":{},"2080":{}}}],["types\".subscriptiontokenargs",{"_index":790,"name":{},"parent":{"1938":{}}}],["types\".subscriptiontokenargs.__type",{"_index":791,"name":{},"parent":{"1939":{},"1940":{}}}],["types\".subscriptiontokendaydataargs",{"_index":802,"name":{},"parent":{"1962":{}}}],["types\".subscriptiontokendaydataargs.__type",{"_index":803,"name":{},"parent":{"1963":{},"1964":{}}}],["types\".subscriptiontokendaydatasargs",{"_index":805,"name":{},"parent":{"1966":{}}}],["types\".subscriptiontokendaydatasargs.__type",{"_index":806,"name":{},"parent":{"1967":{},"1968":{},"1969":{},"1970":{},"1971":{},"1972":{}}}],["types\".subscriptiontokenhourdataargs",{"_index":796,"name":{},"parent":{"1950":{}}}],["types\".subscriptiontokenhourdataargs.__type",{"_index":797,"name":{},"parent":{"1951":{},"1952":{}}}],["types\".subscriptiontokenhourdatasargs",{"_index":799,"name":{},"parent":{"1954":{}}}],["types\".subscriptiontokenhourdatasargs.__type",{"_index":800,"name":{},"parent":{"1955":{},"1956":{},"1957":{},"1958":{},"1959":{},"1960":{}}}],["types\".subscriptiontokensargs",{"_index":793,"name":{},"parent":{"1942":{}}}],["types\".subscriptiontokensargs.__type",{"_index":794,"name":{},"parent":{"1943":{},"1944":{},"1945":{},"1946":{},"1947":{},"1948":{}}}],["types\".subscriptiontransactionargs",{"_index":838,"name":{},"parent":{"2034":{}}}],["types\".subscriptiontransactionargs.__type",{"_index":839,"name":{},"parent":{"2035":{},"2036":{}}}],["types\".subscriptiontransactionsargs",{"_index":841,"name":{},"parent":{"2038":{}}}],["types\".subscriptiontransactionsargs.__type",{"_index":842,"name":{},"parent":{"2039":{},"2040":{},"2041":{},"2042":{},"2043":{},"2044":{}}}],["types\".subscriptionuserargs",{"_index":760,"name":{},"parent":{"1878":{}}}],["types\".subscriptionuserargs.__type",{"_index":761,"name":{},"parent":{"1879":{},"1880":{}}}],["types\".subscriptionusersargs",{"_index":763,"name":{},"parent":{"1882":{}}}],["types\".subscriptionusersargs.__type",{"_index":764,"name":{},"parent":{"1883":{},"1884":{},"1885":{},"1886":{},"1887":{},"1888":{}}}],["types\".swap",{"_index":864,"name":{},"parent":{"2085":{}}}],["types\".swap.__type",{"_index":865,"name":{},"parent":{"2086":{},"2087":{},"2088":{},"2089":{},"2090":{},"2091":{},"2092":{},"2093":{},"2094":{},"2095":{},"2096":{},"2097":{},"2098":{}}}],["types\".swap_filter",{"_index":867,"name":{},"parent":{"2100":{}}}],["types\".swap_filter.__type",{"_index":868,"name":{},"parent":{"2101":{},"2102":{},"2103":{},"2104":{},"2105":{},"2106":{},"2107":{},"2108":{},"2109":{},"2110":{},"2111":{},"2112":{},"2113":{},"2114":{},"2115":{},"2116":{},"2117":{},"2118":{},"2119":{},"2120":{},"2121":{},"2122":{},"2123":{},"2124":{},"2125":{},"2126":{},"2127":{},"2128":{},"2129":{},"2130":{},"2131":{},"2132":{},"2133":{},"2134":{},"2135":{},"2136":{},"2137":{},"2138":{},"2139":{},"2140":{},"2141":{},"2142":{},"2143":{},"2144":{},"2145":{},"2146":{},"2147":{},"2148":{},"2149":{},"2150":{},"2151":{},"2152":{},"2153":{},"2154":{},"2155":{},"2156":{},"2157":{},"2158":{},"2159":{},"2160":{},"2161":{},"2162":{},"2163":{},"2164":{},"2165":{},"2166":{},"2167":{},"2168":{},"2169":{},"2170":{},"2171":{},"2172":{},"2173":{},"2174":{},"2175":{},"2176":{},"2177":{},"2178":{},"2179":{},"2180":{},"2181":{},"2182":{},"2183":{},"2184":{},"2185":{},"2186":{},"2187":{},"2188":{},"2189":{},"2190":{},"2191":{},"2192":{},"2193":{},"2194":{},"2195":{},"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{}}}],["types\".swap_orderby",{"_index":95,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{}}}],["types\".token",{"_index":897,"name":{},"parent":{"2206":{}}}],["types\".token.__type",{"_index":898,"name":{},"parent":{"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2222":{},"2223":{},"2224":{},"2225":{}}}],["types\".token_filter",{"_index":955,"name":{},"parent":{"2489":{}}}],["types\".token_filter.__type",{"_index":956,"name":{},"parent":{"2490":{},"2491":{},"2492":{},"2493":{},"2494":{},"2495":{},"2496":{},"2497":{},"2498":{},"2499":{},"2500":{},"2501":{},"2502":{},"2503":{},"2504":{},"2505":{},"2506":{},"2507":{},"2508":{},"2509":{},"2510":{},"2511":{},"2512":{},"2513":{},"2514":{},"2515":{},"2516":{},"2517":{},"2518":{},"2519":{},"2520":{},"2521":{},"2522":{},"2523":{},"2524":{},"2525":{},"2526":{},"2527":{},"2528":{},"2529":{},"2530":{},"2531":{},"2532":{},"2533":{},"2534":{},"2535":{},"2536":{},"2537":{},"2538":{},"2539":{},"2540":{},"2541":{},"2542":{},"2543":{},"2544":{},"2545":{},"2546":{},"2547":{},"2548":{},"2549":{},"2550":{},"2551":{},"2552":{},"2553":{},"2554":{},"2555":{},"2556":{},"2557":{},"2558":{},"2559":{},"2560":{},"2561":{},"2562":{},"2563":{},"2564":{},"2565":{},"2566":{},"2567":{},"2568":{},"2569":{},"2570":{},"2571":{},"2572":{},"2573":{},"2574":{},"2575":{},"2576":{},"2577":{},"2578":{},"2579":{},"2580":{},"2581":{},"2582":{},"2583":{},"2584":{},"2585":{},"2586":{},"2587":{},"2588":{},"2589":{},"2590":{},"2591":{},"2592":{},"2593":{},"2594":{},"2595":{},"2596":{},"2597":{},"2598":{},"2599":{},"2600":{},"2601":{},"2602":{},"2603":{}}}],["types\".token_orderby",{"_index":108,"name":{},"parent":{"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{}}}],["types\".tokenbasepairsargs",{"_index":906,"name":{},"parent":{"2241":{}}}],["types\".tokenbasepairsargs.__type",{"_index":907,"name":{},"parent":{"2242":{},"2243":{},"2244":{},"2245":{},"2246":{}}}],["types\".tokenbasepairsdaydataargs",{"_index":912,"name":{},"parent":{"2255":{}}}],["types\".tokenbasepairsdaydataargs.__type",{"_index":913,"name":{},"parent":{"2256":{},"2257":{},"2258":{},"2259":{},"2260":{}}}],["types\".tokendaydata",{"_index":917,"name":{},"parent":{"2269":{}}}],["types\".tokendaydata.__type",{"_index":918,"name":{},"parent":{"2270":{},"2271":{},"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{}}}],["types\".tokendaydata_filter",{"_index":920,"name":{},"parent":{"2283":{}}}],["types\".tokendaydata_filter.__type",{"_index":921,"name":{},"parent":{"2284":{},"2285":{},"2286":{},"2287":{},"2288":{},"2289":{},"2290":{},"2291":{},"2292":{},"2293":{},"2294":{},"2295":{},"2296":{},"2297":{},"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{},"2305":{},"2306":{},"2307":{},"2308":{},"2309":{},"2310":{},"2311":{},"2312":{},"2313":{},"2314":{},"2315":{},"2316":{},"2317":{},"2318":{},"2319":{},"2320":{},"2321":{},"2322":{},"2323":{},"2324":{},"2325":{},"2326":{},"2327":{},"2328":{},"2329":{},"2330":{},"2331":{},"2332":{},"2333":{},"2334":{},"2335":{},"2336":{},"2337":{},"2338":{},"2339":{},"2340":{},"2341":{},"2342":{},"2343":{},"2344":{},"2345":{},"2346":{},"2347":{},"2348":{},"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{},"2356":{},"2357":{},"2358":{},"2359":{},"2360":{},"2361":{},"2362":{},"2363":{},"2364":{},"2365":{},"2366":{},"2367":{},"2368":{},"2369":{},"2370":{},"2371":{},"2372":{},"2373":{},"2374":{},"2375":{},"2376":{},"2377":{}}}],["types\".tokendaydata_orderby",{"_index":101,"name":{},"parent":{"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{}}}],["types\".tokendaydataargs",{"_index":903,"name":{},"parent":{"2234":{}}}],["types\".tokendaydataargs.__type",{"_index":904,"name":{},"parent":{"2235":{},"2236":{},"2237":{},"2238":{},"2239":{}}}],["types\".tokenhourdata",{"_index":949,"name":{},"parent":{"2379":{}}}],["types\".tokenhourdata.__type",{"_index":950,"name":{},"parent":{"2380":{},"2381":{},"2382":{},"2383":{},"2384":{},"2385":{},"2386":{},"2387":{},"2388":{},"2389":{},"2390":{},"2391":{}}}],["types\".tokenhourdata_filter",{"_index":952,"name":{},"parent":{"2393":{}}}],["types\".tokenhourdata_filter.__type",{"_index":953,"name":{},"parent":{"2394":{},"2395":{},"2396":{},"2397":{},"2398":{},"2399":{},"2400":{},"2401":{},"2402":{},"2403":{},"2404":{},"2405":{},"2406":{},"2407":{},"2408":{},"2409":{},"2410":{},"2411":{},"2412":{},"2413":{},"2414":{},"2415":{},"2416":{},"2417":{},"2418":{},"2419":{},"2420":{},"2421":{},"2422":{},"2423":{},"2424":{},"2425":{},"2426":{},"2427":{},"2428":{},"2429":{},"2430":{},"2431":{},"2432":{},"2433":{},"2434":{},"2435":{},"2436":{},"2437":{},"2438":{},"2439":{},"2440":{},"2441":{},"2442":{},"2443":{},"2444":{},"2445":{},"2446":{},"2447":{},"2448":{},"2449":{},"2450":{},"2451":{},"2452":{},"2453":{},"2454":{},"2455":{},"2456":{},"2457":{},"2458":{},"2459":{},"2460":{},"2461":{},"2462":{},"2463":{},"2464":{},"2465":{},"2466":{},"2467":{},"2468":{},"2469":{},"2470":{},"2471":{},"2472":{},"2473":{},"2474":{},"2475":{},"2476":{},"2477":{},"2478":{},"2479":{},"2480":{},"2481":{},"2482":{},"2483":{},"2484":{},"2485":{},"2486":{},"2487":{}}}],["types\".tokenhourdata_orderby",{"_index":106,"name":{},"parent":{"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{}}}],["types\".tokenhourdataargs",{"_index":900,"name":{},"parent":{"2227":{}}}],["types\".tokenhourdataargs.__type",{"_index":901,"name":{},"parent":{"2228":{},"2229":{},"2230":{},"2231":{},"2232":{}}}],["types\".tokenquotepairsargs",{"_index":909,"name":{},"parent":{"2248":{}}}],["types\".tokenquotepairsargs.__type",{"_index":910,"name":{},"parent":{"2249":{},"2250":{},"2251":{},"2252":{},"2253":{}}}],["types\".tokenquotepairsdaydataargs",{"_index":915,"name":{},"parent":{"2262":{}}}],["types\".tokenquotepairsdaydataargs.__type",{"_index":916,"name":{},"parent":{"2263":{},"2264":{},"2265":{},"2266":{},"2267":{}}}],["types\".transaction",{"_index":984,"name":{},"parent":{"2605":{}}}],["types\".transaction.__type",{"_index":985,"name":{},"parent":{"2606":{},"2607":{},"2608":{},"2609":{},"2610":{},"2611":{},"2612":{}}}],["types\".transaction_filter",{"_index":996,"name":{},"parent":{"2635":{}}}],["types\".transaction_filter.__type",{"_index":997,"name":{},"parent":{"2636":{},"2637":{},"2638":{},"2639":{},"2640":{},"2641":{},"2642":{},"2643":{},"2644":{},"2645":{},"2646":{},"2647":{},"2648":{},"2649":{},"2650":{},"2651":{},"2652":{},"2653":{},"2654":{},"2655":{},"2656":{},"2657":{},"2658":{},"2659":{},"2660":{},"2661":{},"2662":{},"2663":{},"2664":{},"2665":{},"2666":{},"2667":{},"2668":{},"2669":{},"2670":{},"2671":{}}}],["types\".transaction_orderby",{"_index":117,"name":{},"parent":{"213":{},"214":{},"215":{},"216":{},"217":{},"218":{}}}],["types\".transactionburnsargs",{"_index":990,"name":{},"parent":{"2621":{}}}],["types\".transactionburnsargs.__type",{"_index":991,"name":{},"parent":{"2622":{},"2623":{},"2624":{},"2625":{},"2626":{}}}],["types\".transactionmintsargs",{"_index":987,"name":{},"parent":{"2614":{}}}],["types\".transactionmintsargs.__type",{"_index":988,"name":{},"parent":{"2615":{},"2616":{},"2617":{},"2618":{},"2619":{}}}],["types\".transactionswapsargs",{"_index":993,"name":{},"parent":{"2628":{}}}],["types\".transactionswapsargs.__type",{"_index":994,"name":{},"parent":{"2629":{},"2630":{},"2631":{},"2632":{},"2633":{}}}],["types\".user",{"_index":1014,"name":{},"parent":{"2673":{}}}],["types\".user.__type",{"_index":1015,"name":{},"parent":{"2674":{},"2675":{},"2676":{}}}],["types\".user_filter",{"_index":1020,"name":{},"parent":{"2685":{}}}],["types\".user_filter.__type",{"_index":1021,"name":{},"parent":{"2686":{},"2687":{},"2688":{},"2689":{},"2690":{},"2691":{},"2692":{},"2693":{}}}],["types\".user_orderby",{"_index":120,"name":{},"parent":{"220":{},"221":{}}}],["types\".userliquiditypositionsargs",{"_index":1017,"name":{},"parent":{"2678":{}}}],["types\".userliquiditypositionsargs.__type",{"_index":1018,"name":{},"parent":{"2679":{},"2680":{},"2681":{},"2682":{},"2683":{}}}],["untrackedvolume",{"_index":35,"name":{"34":{},"59":{},"408":{},"460":{},"627":{},"679":{}},"parent":{}}],["untrackedvolume_gt",{"_index":306,"name":{"462":{},"681":{}},"parent":{}}],["untrackedvolume_gte",{"_index":308,"name":{"464":{},"683":{}},"parent":{}}],["untrackedvolume_in",{"_index":310,"name":{"466":{},"685":{}},"parent":{}}],["untrackedvolume_lt",{"_index":307,"name":{"463":{},"682":{}},"parent":{}}],["untrackedvolume_lte",{"_index":309,"name":{"465":{},"684":{}},"parent":{}}],["untrackedvolume_not",{"_index":305,"name":{"461":{},"680":{}},"parent":{}}],["untrackedvolume_not_in",{"_index":311,"name":{"467":{},"686":{}},"parent":{}}],["untrackedvolumeusd",{"_index":42,"name":{"43":{},"144":{},"202":{},"499":{},"571":{},"1077":{},"1533":{},"2216":{},"2572":{},"4732":{},"4772":{},"4802":{},"5327":{},"5691":{},"6296":{},"6509":{},"6736":{},"6782":{}},"parent":{}}],["untrackedvolumeusd_gt",{"_index":362,"name":{"573":{},"1535":{},"2574":{},"5693":{},"6511":{},"6784":{}},"parent":{}}],["untrackedvolumeusd_gte",{"_index":364,"name":{"575":{},"1537":{},"2576":{},"5695":{},"6513":{},"6786":{}},"parent":{}}],["untrackedvolumeusd_in",{"_index":366,"name":{"577":{},"1539":{},"2578":{},"5697":{},"6515":{},"6788":{}},"parent":{}}],["untrackedvolumeusd_lt",{"_index":363,"name":{"574":{},"1536":{},"2575":{},"5694":{},"6512":{},"6785":{}},"parent":{}}],["untrackedvolumeusd_lte",{"_index":365,"name":{"576":{},"1538":{},"2577":{},"5696":{},"6514":{},"6787":{}},"parent":{}}],["untrackedvolumeusd_not",{"_index":361,"name":{"572":{},"1534":{},"2573":{},"5692":{},"6510":{},"6783":{}},"parent":{}}],["untrackedvolumeusd_not_in",{"_index":367,"name":{"578":{},"1540":{},"2579":{},"5698":{},"6516":{},"6789":{}},"parent":{}}],["usage",{"_index":1041,"name":{"2718":{},"2761":{},"2808":{},"2876":{},"2948":{},"3006":{},"3064":{},"3126":{},"3188":{},"3256":{},"3328":{},"3381":{},"3434":{},"3491":{},"3544":{},"3601":{},"3658":{},"3726":{},"3798":{},"3870":{},"3938":{},"4006":{},"4078":{},"4136":{},"4199":{},"4266":{},"4328":{},"4396":{},"4483":{},"4541":{},"4608":{}},"parent":{}}],["usdswapped",{"_index":1336,"name":{"4810":{},"6823":{},"6841":{}},"parent":{}}],["usdswapped_gt",{"_index":1737,"name":{"6843":{}},"parent":{}}],["usdswapped_gte",{"_index":1739,"name":{"6845":{}},"parent":{}}],["usdswapped_in",{"_index":1741,"name":{"6847":{}},"parent":{}}],["usdswapped_lt",{"_index":1738,"name":{"6844":{}},"parent":{}}],["usdswapped_lte",{"_index":1740,"name":{"6846":{}},"parent":{}}],["usdswapped_not",{"_index":1736,"name":{"6842":{}},"parent":{}}],["usdswapped_not_in",{"_index":1742,"name":{"6848":{}},"parent":{}}],["user",{"_index":55,"name":{"68":{},"79":{},"715":{},"735":{},"784":{},"878":{},"1576":{},"1842":{},"2672":{},"4513":{},"4661":{},"4672":{},"4993":{},"5003":{},"5052":{},"5146":{},"5740":{},"5957":{},"6818":{}},"parent":{}}],["user_contains",{"_index":425,"name":{"792":{},"886":{},"5060":{},"5154":{}},"parent":{}}],["user_ends_with",{"_index":429,"name":{"796":{},"890":{},"5064":{},"5158":{}},"parent":{}}],["user_filter",{"_index":1019,"name":{"2684":{},"6831":{}},"parent":{}}],["user_gt",{"_index":419,"name":{"786":{},"880":{},"5054":{},"5148":{}},"parent":{}}],["user_gte",{"_index":421,"name":{"788":{},"882":{},"5056":{},"5150":{}},"parent":{}}],["user_in",{"_index":423,"name":{"790":{},"884":{},"5058":{},"5152":{}},"parent":{}}],["user_lt",{"_index":420,"name":{"787":{},"881":{},"5055":{},"5149":{}},"parent":{}}],["user_lte",{"_index":422,"name":{"789":{},"883":{},"5057":{},"5151":{}},"parent":{}}],["user_not",{"_index":418,"name":{"785":{},"879":{},"5053":{},"5147":{}},"parent":{}}],["user_not_contains",{"_index":426,"name":{"793":{},"887":{},"5061":{},"5155":{}},"parent":{}}],["user_not_ends_with",{"_index":430,"name":{"797":{},"891":{},"5065":{},"5159":{}},"parent":{}}],["user_not_in",{"_index":424,"name":{"791":{},"885":{},"5059":{},"5153":{}},"parent":{}}],["user_not_starts_with",{"_index":428,"name":{"795":{},"889":{},"5063":{},"5157":{}},"parent":{}}],["user_orderby",{"_index":119,"name":{"219":{},"4807":{}},"parent":{}}],["user_starts_with",{"_index":427,"name":{"794":{},"888":{},"5062":{},"5156":{}},"parent":{}}],["usercount",{"_index":44,"name":{"48":{},"504":{},"611":{}},"parent":{}}],["usercount_gt",{"_index":376,"name":{"613":{}},"parent":{}}],["usercount_gte",{"_index":378,"name":{"615":{}},"parent":{}}],["usercount_in",{"_index":380,"name":{"617":{}},"parent":{}}],["usercount_lt",{"_index":377,"name":{"614":{}},"parent":{}}],["usercount_lte",{"_index":379,"name":{"616":{}},"parent":{}}],["usercount_not",{"_index":375,"name":{"612":{}},"parent":{}}],["usercount_not_in",{"_index":381,"name":{"618":{}},"parent":{}}],["userdocument",{"_index":1283,"name":{"4569":{}},"parent":{}}],["userliquiditypositionsargs",{"_index":1016,"name":{"2677":{},"6824":{}},"parent":{}}],["users",{"_index":624,"name":{"1577":{},"1843":{},"4571":{},"5741":{},"5958":{}},"parent":{}}],["usersdocument",{"_index":1289,"name":{"4636":{}},"parent":{}}],["usersearch",{"_index":639,"name":{"1612":{}},"parent":{}}],["variables",{"_index":5,"name":{"4":{}},"parent":{}}],["volume",{"_index":103,"name":{"173":{},"185":{},"200":{},"2214":{},"2274":{},"2314":{},"2384":{},"2424":{},"2556":{}},"parent":{}}],["volume_gt",{"_index":936,"name":{"2316":{},"2426":{},"2558":{}},"parent":{}}],["volume_gte",{"_index":938,"name":{"2318":{},"2428":{},"2560":{}},"parent":{}}],["volume_in",{"_index":940,"name":{"2320":{},"2430":{},"2562":{}},"parent":{}}],["volume_lt",{"_index":937,"name":{"2317":{},"2427":{},"2559":{}},"parent":{}}],["volume_lte",{"_index":939,"name":{"2319":{},"2429":{},"2561":{}},"parent":{}}],["volume_not",{"_index":935,"name":{"2315":{},"2425":{},"2557":{}},"parent":{}}],["volume_not_in",{"_index":941,"name":{"2321":{},"2431":{},"2563":{}},"parent":{}}],["volumeeth",{"_index":33,"name":{"32":{},"42":{},"57":{},"174":{},"186":{},"406":{},"444":{},"498":{},"563":{},"625":{},"663":{},"2275":{},"2322":{},"2385":{},"2432":{}},"parent":{}}],["volumeeth_gt",{"_index":292,"name":{"446":{},"565":{},"665":{},"2324":{},"2434":{}},"parent":{}}],["volumeeth_gte",{"_index":294,"name":{"448":{},"567":{},"667":{},"2326":{},"2436":{}},"parent":{}}],["volumeeth_in",{"_index":296,"name":{"450":{},"569":{},"669":{},"2328":{},"2438":{}},"parent":{}}],["volumeeth_lt",{"_index":293,"name":{"447":{},"566":{},"666":{},"2325":{},"2435":{}},"parent":{}}],["volumeeth_lte",{"_index":295,"name":{"449":{},"568":{},"668":{},"2327":{},"2437":{}},"parent":{}}],["volumeeth_not",{"_index":291,"name":{"445":{},"564":{},"664":{},"2323":{},"2433":{}},"parent":{}}],["volumeeth_not_in",{"_index":297,"name":{"451":{},"570":{},"670":{},"2329":{},"2439":{}},"parent":{}}],["volumetoken0",{"_index":77,"name":{"112":{},"123":{},"141":{},"1074":{},"1150":{},"1246":{},"1287":{},"1347":{},"1509":{},"4729":{},"5324":{},"5667":{}},"parent":{}}],["volumetoken0_gt",{"_index":552,"name":{"1248":{},"1349":{},"1511":{},"5669":{}},"parent":{}}],["volumetoken0_gte",{"_index":554,"name":{"1250":{},"1351":{},"1513":{},"5671":{}},"parent":{}}],["volumetoken0_in",{"_index":556,"name":{"1252":{},"1353":{},"1515":{},"5673":{}},"parent":{}}],["volumetoken0_lt",{"_index":553,"name":{"1249":{},"1350":{},"1512":{},"5670":{}},"parent":{}}],["volumetoken0_lte",{"_index":555,"name":{"1251":{},"1352":{},"1514":{},"5672":{}},"parent":{}}],["volumetoken0_not",{"_index":551,"name":{"1247":{},"1348":{},"1510":{},"5668":{}},"parent":{}}],["volumetoken0_not_in",{"_index":557,"name":{"1253":{},"1354":{},"1516":{},"5674":{}},"parent":{}}],["volumetoken1",{"_index":78,"name":{"113":{},"124":{},"142":{},"1075":{},"1151":{},"1254":{},"1288":{},"1355":{},"1517":{},"4730":{},"5325":{},"5675":{}},"parent":{}}],["volumetoken1_gt",{"_index":559,"name":{"1256":{},"1357":{},"1519":{},"5677":{}},"parent":{}}],["volumetoken1_gte",{"_index":561,"name":{"1258":{},"1359":{},"1521":{},"5679":{}},"parent":{}}],["volumetoken1_in",{"_index":563,"name":{"1260":{},"1361":{},"1523":{},"5681":{}},"parent":{}}],["volumetoken1_lt",{"_index":560,"name":{"1257":{},"1358":{},"1520":{},"5678":{}},"parent":{}}],["volumetoken1_lte",{"_index":562,"name":{"1259":{},"1360":{},"1522":{},"5680":{}},"parent":{}}],["volumetoken1_not",{"_index":558,"name":{"1255":{},"1356":{},"1518":{},"5676":{}},"parent":{}}],["volumetoken1_not_in",{"_index":564,"name":{"1261":{},"1362":{},"1524":{},"5682":{}},"parent":{}}],["volumeusd",{"_index":34,"name":{"33":{},"41":{},"58":{},"114":{},"125":{},"143":{},"175":{},"187":{},"201":{},"407":{},"452":{},"497":{},"555":{},"626":{},"671":{},"1076":{},"1152":{},"1262":{},"1289":{},"1363":{},"1525":{},"2215":{},"2276":{},"2330":{},"2386":{},"2440":{},"2564":{},"4731":{},"5326":{},"5683":{}},"parent":{}}],["volumeusd_gt",{"_index":299,"name":{"454":{},"557":{},"673":{},"1264":{},"1365":{},"1527":{},"2332":{},"2442":{},"2566":{},"5685":{}},"parent":{}}],["volumeusd_gte",{"_index":301,"name":{"456":{},"559":{},"675":{},"1266":{},"1367":{},"1529":{},"2334":{},"2444":{},"2568":{},"5687":{}},"parent":{}}],["volumeusd_in",{"_index":303,"name":{"458":{},"561":{},"677":{},"1268":{},"1369":{},"1531":{},"2336":{},"2446":{},"2570":{},"5689":{}},"parent":{}}],["volumeusd_lt",{"_index":300,"name":{"455":{},"558":{},"674":{},"1265":{},"1366":{},"1528":{},"2333":{},"2443":{},"2567":{},"5686":{}},"parent":{}}],["volumeusd_lte",{"_index":302,"name":{"457":{},"560":{},"676":{},"1267":{},"1368":{},"1530":{},"2335":{},"2445":{},"2569":{},"5688":{}},"parent":{}}],["volumeusd_not",{"_index":298,"name":{"453":{},"556":{},"672":{},"1263":{},"1364":{},"1526":{},"2331":{},"2441":{},"2565":{},"5684":{}},"parent":{}}],["volumeusd_not_in",{"_index":304,"name":{"459":{},"562":{},"678":{},"1269":{},"1370":{},"1532":{},"2337":{},"2447":{},"2571":{},"5690":{}},"parent":{}}],["warn",{"_index":1056,"name":{"2736":{},"2779":{},"2826":{},"2894":{},"2966":{},"3024":{},"3082":{},"3144":{},"3206":{},"3274":{},"3346":{},"3399":{},"3452":{},"3509":{},"3562":{},"3619":{},"3676":{},"3744":{},"3816":{},"3888":{},"3956":{},"4024":{},"4096":{},"4154":{},"4217":{},"4284":{},"4346":{},"4414":{},"4501":{},"4559":{},"4626":{}},"parent":{}}],["where",{"_index":341,"name":{"515":{},"522":{},"529":{},"536":{},"727":{},"1095":{},"1102":{},"1109":{},"1116":{},"1123":{},"1130":{},"1137":{},"1624":{},"1636":{},"1648":{},"1660":{},"1672":{},"1684":{},"1696":{},"1708":{},"1720":{},"1732":{},"1744":{},"1756":{},"1768":{},"1780":{},"1792":{},"1804":{},"1816":{},"1887":{},"1899":{},"1911":{},"1923":{},"1935":{},"1947":{},"1959":{},"1971":{},"1983":{},"1995":{},"2007":{},"2019":{},"2031":{},"2043":{},"2055":{},"2067":{},"2079":{},"2232":{},"2239":{},"2246":{},"2253":{},"2260":{},"2267":{},"2619":{},"2626":{},"2633":{},"2683":{},"2798":{},"2845":{},"2913":{},"2985":{},"3043":{},"3101":{},"3163":{},"3225":{},"3293":{},"3365":{},"3418":{},"3471":{},"3528":{},"3581":{},"3638":{},"3695":{},"3763":{},"3835":{},"3907":{},"3975":{},"4043":{},"4115":{},"4173":{},"4236":{},"4303":{},"4365":{},"4433":{},"4520":{},"4578":{},"5775":{},"5787":{},"5799":{},"5811":{},"5823":{},"5835":{},"5847":{},"5859":{},"5871":{},"5883":{},"5895":{},"5907":{},"5919":{},"5931":{},"5943":{},"5992":{},"6004":{},"6016":{},"6028":{},"6040":{},"6052":{},"6064":{},"6076":{},"6088":{},"6100":{},"6112":{},"6124":{},"6136":{},"6148":{},"6160":{},"6307":{},"6330":{},"6560":{},"6567":{},"6574":{},"6634":{},"6747":{},"6830":{}},"parent":{}}],["where1",{"_index":1085,"name":{"2850":{},"2918":{},"2990":{},"3048":{},"3106":{},"3168":{},"3230":{},"3298":{},"3370":{},"3423":{},"3476":{},"3533":{},"3586":{},"3643":{},"3700":{},"3768":{},"3840":{},"3912":{},"3980":{},"4048":{},"4120":{},"4178":{},"4241":{},"4308":{},"4370":{},"4438":{},"4525":{},"4583":{}},"parent":{}}],["where2",{"_index":1090,"name":{"2855":{},"2923":{},"2995":{},"3053":{},"3111":{},"3173":{},"3235":{},"3303":{},"3481":{},"3591":{},"3648":{},"3705":{},"3773":{},"3845":{},"3917":{},"3985":{},"4053":{},"4125":{},"4183":{},"4246":{},"4313":{},"4375":{},"4443":{},"4530":{},"4588":{}},"parent":{}}],["where3",{"_index":1095,"name":{"2860":{},"2928":{},"3116":{},"3178":{},"3240":{},"3308":{},"3710":{},"3778":{},"3850":{},"3922":{},"3990":{},"4058":{},"4188":{},"4251":{},"4318":{},"4380":{},"4448":{},"4593":{}},"parent":{}}],["where4",{"_index":1100,"name":{"2865":{},"2933":{},"3245":{},"3313":{},"3715":{},"3783":{},"3855":{},"3927":{},"3995":{},"4063":{},"4256":{},"4385":{},"4453":{},"4598":{}},"parent":{}}],["where5",{"_index":1111,"name":{"2938":{},"3318":{},"3788":{},"3860":{},"4068":{},"4458":{}},"parent":{}}],["where6",{"_index":1264,"name":{"4463":{}},"parent":{}}],["where7",{"_index":1269,"name":{"4468":{}},"parent":{}}],["where8",{"_index":1274,"name":{"4473":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/_commands__meta_index_._meta.html b/docs/classes/_commands__meta_index_._meta.html new file mode 100644 index 0000000..ea96b35 --- /dev/null +++ b/docs/classes/_commands__meta_index_._meta.html @@ -0,0 +1,1024 @@ + + + + + + _meta | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class _meta

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + _meta +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new _meta(argv: string[], config: IConfig): _meta
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns _meta

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_bundle_index_.bundle.html b/docs/classes/_commands_bundle_index_.bundle.html new file mode 100644 index 0000000..15b4fb1 --- /dev/null +++ b/docs/classes/_commands_bundle_index_.bundle.html @@ -0,0 +1,1034 @@ + + + + + + bundle | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class bundle

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + bundle +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new bundle(argv: string[], config: IConfig): bundle
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns bundle

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_bundles_index_.bundles.html b/docs/classes/_commands_bundles_index_.bundles.html new file mode 100644 index 0000000..49e679d --- /dev/null +++ b/docs/classes/_commands_bundles_index_.bundles.html @@ -0,0 +1,1074 @@ + + + + + + bundles | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class bundles

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + bundles +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new bundles(argv: string[], config: IConfig): bundles
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns bundles

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_burn_index_.burn.html b/docs/classes/_commands_burn_index_.burn.html new file mode 100644 index 0000000..6cb023b --- /dev/null +++ b/docs/classes/_commands_burn_index_.burn.html @@ -0,0 +1,1284 @@ + + + + + + burn | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class burn

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + burn +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new burn(argv: string[], config: IConfig): burn
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns burn

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_burns_index_.burns.html b/docs/classes/_commands_burns_index_.burns.html new file mode 100644 index 0000000..3dbf073 --- /dev/null +++ b/docs/classes/_commands_burns_index_.burns.html @@ -0,0 +1,1324 @@ + + + + + + burns | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class burns

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + burns +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new burns(argv: string[], config: IConfig): burns
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns burns

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_liquidityposition_index_.liquidityposition.html b/docs/classes/_commands_liquidityposition_index_.liquidityposition.html new file mode 100644 index 0000000..c8eab4d --- /dev/null +++ b/docs/classes/_commands_liquidityposition_index_.liquidityposition.html @@ -0,0 +1,1184 @@ + + + + + + liquidityPosition | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class liquidityPosition

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + liquidityPosition +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns liquidityPosition

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_liquiditypositions_index_.liquiditypositions.html b/docs/classes/_commands_liquiditypositions_index_.liquiditypositions.html new file mode 100644 index 0000000..1e32d73 --- /dev/null +++ b/docs/classes/_commands_liquiditypositions_index_.liquiditypositions.html @@ -0,0 +1,1224 @@ + + + + + + liquidityPositions | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class liquidityPositions

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + liquidityPositions +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns liquidityPositions

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html b/docs/classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html new file mode 100644 index 0000000..28ff44e --- /dev/null +++ b/docs/classes/_commands_liquiditypositionsnapshot_index_.liquiditypositionsnapshot.html @@ -0,0 +1,1184 @@ + + + + + + liquidityPositionSnapshot | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class liquidityPositionSnapshot

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + liquidityPositionSnapshot +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns liquidityPositionSnapshot

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html b/docs/classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html new file mode 100644 index 0000000..3f16d75 --- /dev/null +++ b/docs/classes/_commands_liquiditypositionsnapshots_index_.liquiditypositionsnapshots.html @@ -0,0 +1,1224 @@ + + + + + + liquidityPositionSnapshots | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class liquidityPositionSnapshots

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + liquidityPositionSnapshots +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ + +
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_mint_index_.mint.html b/docs/classes/_commands_mint_index_.mint.html new file mode 100644 index 0000000..bb961ab --- /dev/null +++ b/docs/classes/_commands_mint_index_.mint.html @@ -0,0 +1,1284 @@ + + + + + + mint | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class mint

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + mint +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new mint(argv: string[], config: IConfig): mint
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns mint

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_mints_index_.mints.html b/docs/classes/_commands_mints_index_.mints.html new file mode 100644 index 0000000..28ef218 --- /dev/null +++ b/docs/classes/_commands_mints_index_.mints.html @@ -0,0 +1,1324 @@ + + + + + + mints | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class mints

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + mints +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new mints(argv: string[], config: IConfig): mints
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns mints

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pair_index_.pair.html b/docs/classes/_commands_pair_index_.pair.html new file mode 100644 index 0000000..610eee2 --- /dev/null +++ b/docs/classes/_commands_pair_index_.pair.html @@ -0,0 +1,1134 @@ + + + + + + pair | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pair

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pair +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pair(argv: string[], config: IConfig): pair
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pair

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pairdaydata_index_.pairdaydata.html b/docs/classes/_commands_pairdaydata_index_.pairdaydata.html new file mode 100644 index 0000000..97ec5da --- /dev/null +++ b/docs/classes/_commands_pairdaydata_index_.pairdaydata.html @@ -0,0 +1,1134 @@ + + + + + + pairDayData | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pairDayData

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pairDayData +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pairDayData(argv: string[], config: IConfig): pairDayData
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pairDayData

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pairdaydatas_index_.pairdaydatas.html b/docs/classes/_commands_pairdaydatas_index_.pairdaydatas.html new file mode 100644 index 0000000..da84461 --- /dev/null +++ b/docs/classes/_commands_pairdaydatas_index_.pairdaydatas.html @@ -0,0 +1,1174 @@ + + + + + + pairDayDatas | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pairDayDatas

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pairDayDatas +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pairDayDatas(argv: string[], config: IConfig): pairDayDatas
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pairDayDatas

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pairhourdata_index_.pairhourdata.html b/docs/classes/_commands_pairhourdata_index_.pairhourdata.html new file mode 100644 index 0000000..af0412b --- /dev/null +++ b/docs/classes/_commands_pairhourdata_index_.pairhourdata.html @@ -0,0 +1,1134 @@ + + + + + + pairHourData | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pairHourData

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pairHourData +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pairHourData(argv: string[], config: IConfig): pairHourData
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pairHourData

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pairhourdatas_index_.pairhourdatas.html b/docs/classes/_commands_pairhourdatas_index_.pairhourdatas.html new file mode 100644 index 0000000..d466032 --- /dev/null +++ b/docs/classes/_commands_pairhourdatas_index_.pairhourdatas.html @@ -0,0 +1,1174 @@ + + + + + + pairHourDatas | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pairHourDatas

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pairHourDatas +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pairHourDatas(argv: string[], config: IConfig): pairHourDatas
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pairHourDatas

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_pairs_index_.pairs.html b/docs/classes/_commands_pairs_index_.pairs.html new file mode 100644 index 0000000..e6108a5 --- /dev/null +++ b/docs/classes/_commands_pairs_index_.pairs.html @@ -0,0 +1,1174 @@ + + + + + + pairs | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class pairs

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + pairs +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new pairs(argv: string[], config: IConfig): pairs
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns pairs

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html b/docs/classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html new file mode 100644 index 0000000..3f54799 --- /dev/null +++ b/docs/classes/_commands_sushiswapdaydata_index_.sushiswapdaydata.html @@ -0,0 +1,1284 @@ + + + + + + sushiswapDayData | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class sushiswapDayData

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + sushiswapDayData +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns sushiswapDayData

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html b/docs/classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html new file mode 100644 index 0000000..d167037 --- /dev/null +++ b/docs/classes/_commands_sushiswapdaydatas_index_.sushiswapdaydatas.html @@ -0,0 +1,1324 @@ + + + + + + sushiswapDayDatas | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class sushiswapDayDatas

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + sushiswapDayDatas +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns sushiswapDayDatas

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_sushiswapfactories_index_.sushiswapfactories.html b/docs/classes/_commands_sushiswapfactories_index_.sushiswapfactories.html new file mode 100644 index 0000000..bd772e6 --- /dev/null +++ b/docs/classes/_commands_sushiswapfactories_index_.sushiswapfactories.html @@ -0,0 +1,1324 @@ + + + + + + sushiswapFactories | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class sushiswapFactories

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + sushiswapFactories +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns sushiswapFactories

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_sushiswapfactory_index_.sushiswapfactory.html b/docs/classes/_commands_sushiswapfactory_index_.sushiswapfactory.html new file mode 100644 index 0000000..54f593c --- /dev/null +++ b/docs/classes/_commands_sushiswapfactory_index_.sushiswapfactory.html @@ -0,0 +1,1284 @@ + + + + + + sushiswapFactory | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class sushiswapFactory

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + sushiswapFactory +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+ +
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns sushiswapFactory

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_swap_index_.swap.html b/docs/classes/_commands_swap_index_.swap.html new file mode 100644 index 0000000..ab15281 --- /dev/null +++ b/docs/classes/_commands_swap_index_.swap.html @@ -0,0 +1,1284 @@ + + + + + + swap | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class swap

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + swap +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new swap(argv: string[], config: IConfig): swap
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns swap

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_swaps_index_.swaps.html b/docs/classes/_commands_swaps_index_.swaps.html new file mode 100644 index 0000000..13411eb --- /dev/null +++ b/docs/classes/_commands_swaps_index_.swaps.html @@ -0,0 +1,1324 @@ + + + + + + swaps | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class swaps

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + swaps +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new swaps(argv: string[], config: IConfig): swaps
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns swaps

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_token_index_.token.html b/docs/classes/_commands_token_index_.token.html new file mode 100644 index 0000000..f69c401 --- /dev/null +++ b/docs/classes/_commands_token_index_.token.html @@ -0,0 +1,1184 @@ + + + + + + token | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class token

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + token +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new token(argv: string[], config: IConfig): token
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns token

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_tokendaydata_index_.tokendaydata.html b/docs/classes/_commands_tokendaydata_index_.tokendaydata.html new file mode 100644 index 0000000..fd9b8f1 --- /dev/null +++ b/docs/classes/_commands_tokendaydata_index_.tokendaydata.html @@ -0,0 +1,1234 @@ + + + + + + tokenDayData | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class tokenDayData

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + tokenDayData +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new tokenDayData(argv: string[], config: IConfig): tokenDayData
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns tokenDayData

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_tokendaydatas_index_.tokendaydatas.html b/docs/classes/_commands_tokendaydatas_index_.tokendaydatas.html new file mode 100644 index 0000000..2f5a2c9 --- /dev/null +++ b/docs/classes/_commands_tokendaydatas_index_.tokendaydatas.html @@ -0,0 +1,1274 @@ + + + + + + tokenDayDatas | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class tokenDayDatas

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + tokenDayDatas +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new tokenDayDatas(argv: string[], config: IConfig): tokenDayDatas
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns tokenDayDatas

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_tokens_index_.tokens.html b/docs/classes/_commands_tokens_index_.tokens.html new file mode 100644 index 0000000..3edbfe6 --- /dev/null +++ b/docs/classes/_commands_tokens_index_.tokens.html @@ -0,0 +1,1224 @@ + + + + + + tokens | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class tokens

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + tokens +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new tokens(argv: string[], config: IConfig): tokens
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns tokens

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_transaction_index_.transaction.html b/docs/classes/_commands_transaction_index_.transaction.html new file mode 100644 index 0000000..7f82dc2 --- /dev/null +++ b/docs/classes/_commands_transaction_index_.transaction.html @@ -0,0 +1,1284 @@ + + + + + + transaction | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class transaction

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + transaction +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new transaction(argv: string[], config: IConfig): transaction
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns transaction

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_transactions_index_.transactions.html b/docs/classes/_commands_transactions_index_.transactions.html new file mode 100644 index 0000000..5b524f0 --- /dev/null +++ b/docs/classes/_commands_transactions_index_.transactions.html @@ -0,0 +1,1516 @@ + + + + + + transactions | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class transactions

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + transactions +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new transactions(argv: string[], config: IConfig): transactions
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns transactions

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+
+
static
+

commands

+
+
memberof
+

transactions

+
+
+
+
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first5

+
first5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first6

+
first6: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first7

+
first7: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

first8

+
first8: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy5

+
orderBy5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy6

+
orderBy6: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy7

+
orderBy7: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy8

+
orderBy8: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection5

+
orderDirection5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection6

+
orderDirection6: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection7

+
orderDirection7: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection8

+
orderDirection8: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip5

+
skip5: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip6

+
skip6: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip7

+
skip7: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

skip8

+
skip8: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where5

+
where5: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where6

+
where6: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where7

+
where7: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where8

+
where8: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_user_index_.user.html b/docs/classes/_commands_user_index_.user.html new file mode 100644 index 0000000..d998055 --- /dev/null +++ b/docs/classes/_commands_user_index_.user.html @@ -0,0 +1,1210 @@ + + + + + + user | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class user

+
+
+
+
+
+
+
+
+
+

Description placeholder

+
+
+
date
+

9/3/2021 - 11:10:12 PM

+
+
export
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + user +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new user(argv: string[], config: IConfig): user
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns user

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+
+

Description placeholder

+
+
+
date
+

9/3/2021 - 11:10:12 PM

+
+
static
+
+
+
+
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

id

+
id: IOptionFlag<string> = flags.string({multiple: false,required: true,})
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/classes/_commands_users_index_.users.html b/docs/classes/_commands_users_index_.users.html new file mode 100644 index 0000000..9f92182 --- /dev/null +++ b/docs/classes/_commands_users_index_.users.html @@ -0,0 +1,1285 @@ + + + + + + users | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Class users

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + Command +
      +
    • + users +
    • +
    +
  • +
+
+
+

Index

+
+
+
+

Constructors

+ +
+
+

Properties

+ +
+
+

Accessors

+ +
+
+

Methods

+ +
+
+

Object literals

+ +
+
+
+
+
+

Constructors

+
+ +

constructor

+
    +
  • new users(argv: string[], config: IConfig): users
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      argv: string[]
      +
    • +
    • +
      config: IConfig
      +
    • +
    +

    Returns users

    +
  • +
+
+
+
+

Properties

+
+ +

argv

+
argv: string[]
+ +
+
+ +

config

+
config: IConfig
+ +
+
+ +

Protected debug

+
debug: (...args: any[]) => void
+ +
+

Type declaration

+
    +
  • +
      +
    • (...args: any[]): void
    • +
    +
      +
    • +

      Parameters

      +
        +
      • +
        Rest ...args: any[]
        +
      • +
      +

      Returns void

      +
    • +
    +
  • +
+
+
+
+ +

id

+
id: string | undefined
+ +
+
+ +

Static _base

+
_base: string
+ +
+
+ +

Static aliases

+
aliases: string[]
+ +
+
+

An array of aliases for this command

+
+
+
+
+ +

Static Optional args

+
args: Parser.args.Input
+ +
+
+

An order-dependent array of arguments for the command

+
+
+
+
+ +

Static description

+
description: string | undefined
+ +
+
+

The tweet-sized description for your class, used in a parent-commands + sub-command listing and as the header for the command help

+
+
+
+
+ +

Static examples

+
examples: string[] | undefined
+ +
+
+

An array of example strings to show at the end of the command's help

+
+
+
+
+ +

Static help

+
help: string | undefined
+ +
+
+ +

Static hidden

+
hidden: boolean
+ +
+
+

hide the command from help?

+
+
+
+
+ +

Static id

+
id: string
+ +
+
+

A command ID, used mostly in error or verbose reporting

+
+
+
+
+ +

Static parse

+
parse: boolean
+ +
+
+ +

Static parserOptions

+
parserOptions: {}
+ +
+

Type declaration

+
    +
+
+
+
+ +

Static plugin

+
plugin: IPlugin | undefined
+ +
+
+ +

Static run

+
run: Class["run"]
+ +
+
+

instantiate and run the command

+
+
+
param
+

Class

+
+
param
+

argv

+
+
param
+

options

+
+
+
+
+
+ +

Static strict

+
strict: boolean
+ +
+
+

When set to false, allows a variable amount of arguments

+
+
+
+
+ +

Static title

+
title: string | undefined
+ +
+
+ +

Static usage

+
usage: string | string[] | undefined
+ +
+
+

An override string (or strings) for the default usage documentation

+
+
+
+
+
+

Accessors

+
+ +

ctor

+
    +
  • get ctor(): typeof Command
  • +
+
    +
  • + +

    Returns typeof Command

    +
  • +
+
+
+
+

Methods

+
+ +

Protected _help

+
    +
  • _help(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected _helpOverride

+
    +
  • _helpOverride(): boolean
  • +
+
    +
  • + +

    Returns boolean

    +
  • +
+
+
+ +

_run

+
    +
  • _run<T>(): Promise<T | undefined>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      T

      +
    • +
    +

    Returns Promise<T | undefined>

    +
  • +
+
+
+ +

Protected _version

+
    +
  • _version(): never
  • +
+
    +
  • + +

    Returns never

    +
  • +
+
+
+ +

Protected catch

+
    +
  • catch(err: any): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      err: any
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

error

+
    +
  • error(input: string | Error, options: { code?: undefined | string; exit: false } & PrettyPrintableError): void
  • +
  • error(input: string | Error, options?: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      options: { code?: undefined | string; exit: false } & PrettyPrintableError
      +
    • +
    +

    Returns void

    +
  • +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    • +
      Optional options: { code?: undefined | string; exit?: undefined | number } & PrettyPrintableError
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

exit

+
    +
  • exit(code?: undefined | number): never
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional code: undefined | number
      +
    • +
    +

    Returns never

    +
  • +
+
+
+ +

Protected finally

+
    +
  • finally(_: Error | undefined): Promise<any>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      _: Error | undefined
      +
    • +
    +

    Returns Promise<any>

    +
  • +
+
+
+ +

Protected init

+
    +
  • init(): Promise<any>
  • +
+
    +
  • + +

    Returns Promise<any>

    +
  • +
+
+
+ +

log

+
    +
  • log(message?: undefined | string, ...args: any[]): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      Optional message: undefined | string
      +
    • +
    • +
      Rest ...args: any[]
      +
    • +
    +

    Returns void

    +
  • +
+
+
+ +

Protected parse

+
    +
  • parse<F, A>(options?: Parser.Input<F>, argv?: string[]): Parser.Output<F, A>
  • +
+
    +
  • + +

    Type parameters

    +
      +
    • +

      F

      +
    • +
    • +

      A: {}

      +
    • +
    +

    Parameters

    +
      +
    • +
      Optional options: Parser.Input<F>
      +
    • +
    • +
      Optional argv: string[]
      +
    • +
    +

    Returns Parser.Output<F, A>

    +
  • +
+
+
+ +

run

+
    +
  • run(): Promise<void>
  • +
+ +
+
+ +

warn

+
    +
  • warn(input: string | Error): void
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      input: string | Error
      +
    • +
    +

    Returns void

    +
  • +
+
+
+
+

Object literals

+
+ +

Static flags

+
flags: object
+ +
+
+
todo
+

upgrade migration to oclif/core

+

class users extends Command { + constructor(args, opts) { + super(args, opts) + }

+
+
+
+
+ +

block

+
block: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

first

+
first: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first1

+
first1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first2

+
first2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first3

+
first3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

first4

+
first4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

help

+
help: IBooleanFlag<void> = flags.help({ char: 'h' })
+ +
+
+ +

orderBy

+
orderBy: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy1

+
orderBy1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy2

+
orderBy2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy3

+
orderBy3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderBy4

+
orderBy4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection

+
orderDirection: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection1

+
orderDirection1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection2

+
orderDirection2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection3

+
orderDirection3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

orderDirection4

+
orderDirection4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

skip

+
skip: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip1

+
skip1: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip2

+
skip2: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip3

+
skip3: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

skip4

+
skip4: IOptionFlag<undefined | number> = flags.integer({multiple: false,required: false,})
+ +
+
+ +

where

+
where: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where1

+
where1: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where2

+
where2: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where3

+
where3: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+ +

where4

+
where4: IOptionFlag<undefined | string> = flags.string({multiple: false,required: false,})
+ +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Inherited constructor
  • +
  • Inherited property
  • +
  • Inherited method
  • +
+
    +
  • Class
  • +
  • Method
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_._subgrapherrorpolicy_.html b/docs/enums/_generated_graphql_._subgrapherrorpolicy_.html new file mode 100644 index 0000000..588f8f5 --- /dev/null +++ b/docs/enums/_generated_graphql_._subgrapherrorpolicy_.html @@ -0,0 +1,181 @@ + + + + + + _SubgraphErrorPolicy_ | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration _SubgraphErrorPolicy_

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Allow

+
Allow: = "allow"
+ +
+
+

Data will be returned even if the subgraph has indexing errors

+
+
+
+
+ +

Deny

+
Deny: = "deny"
+ +
+
+

If the subgraph has indexing errors, data will be omitted. The default.

+
+
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.bundle_orderby.html b/docs/enums/_generated_graphql_.bundle_orderby.html new file mode 100644 index 0000000..d3fec1a --- /dev/null +++ b/docs/enums/_generated_graphql_.bundle_orderby.html @@ -0,0 +1,171 @@ + + + + + + Bundle_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Bundle_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

EthPrice

+
EthPrice: = "ethPrice"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.burn_orderby.html b/docs/enums/_generated_graphql_.burn_orderby.html new file mode 100644 index 0000000..bed95ee --- /dev/null +++ b/docs/enums/_generated_graphql_.burn_orderby.html @@ -0,0 +1,339 @@ + + + + + + Burn_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Burn_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0

+
Amount0: = "amount0"
+ +
+
+ +

Amount1

+
Amount1: = "amount1"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

FeeLiquidity

+
FeeLiquidity: = "feeLiquidity"
+ +
+
+ +

FeeTo

+
FeeTo: = "feeTo"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

NeedsComplete

+
NeedsComplete: = "needsComplete"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.liquidityposition_orderby.html b/docs/enums/_generated_graphql_.liquidityposition_orderby.html new file mode 100644 index 0000000..ee9debe --- /dev/null +++ b/docs/enums/_generated_graphql_.liquidityposition_orderby.html @@ -0,0 +1,199 @@ + + + + + + LiquidityPosition_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration LiquidityPosition_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityTokenBalance

+
LiquidityTokenBalance: = "liquidityTokenBalance"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

User

+
User: = "user"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html b/docs/enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html new file mode 100644 index 0000000..bda0635 --- /dev/null +++ b/docs/enums/_generated_graphql_.liquiditypositionsnapshot_orderby.html @@ -0,0 +1,325 @@ + + + + + + LiquidityPositionSnapshot_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration LiquidityPositionSnapshot_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

Block

+
Block: = "block"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityPosition

+
LiquidityPosition: = "liquidityPosition"
+ +
+
+ +

LiquidityTokenBalance

+
LiquidityTokenBalance: = "liquidityTokenBalance"
+ +
+
+ +

LiquidityTokenTotalSupply

+
LiquidityTokenTotalSupply: = "liquidityTokenTotalSupply"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

Token0PriceUsd

+
Token0PriceUsd: = "token0PriceUSD"
+ +
+
+ +

Token1PriceUsd

+
Token1PriceUsd: = "token1PriceUSD"
+ +
+
+ +

User

+
User: = "user"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.mint_orderby.html b/docs/enums/_generated_graphql_.mint_orderby.html new file mode 100644 index 0000000..a90ad9c --- /dev/null +++ b/docs/enums/_generated_graphql_.mint_orderby.html @@ -0,0 +1,325 @@ + + + + + + Mint_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Mint_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0

+
Amount0: = "amount0"
+ +
+
+ +

Amount1

+
Amount1: = "amount1"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

FeeLiquidity

+
FeeLiquidity: = "feeLiquidity"
+ +
+
+ +

FeeTo

+
FeeTo: = "feeTo"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.orderdirection.html b/docs/enums/_generated_graphql_.orderdirection.html new file mode 100644 index 0000000..7b1f76e --- /dev/null +++ b/docs/enums/_generated_graphql_.orderdirection.html @@ -0,0 +1,171 @@ + + + + + + OrderDirection | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration OrderDirection

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Asc

+
Asc: = "asc"
+ +
+
+ +

Desc

+
Desc: = "desc"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.pair_orderby.html b/docs/enums/_generated_graphql_.pair_orderby.html new file mode 100644 index 0000000..6c91b5a --- /dev/null +++ b/docs/enums/_generated_graphql_.pair_orderby.html @@ -0,0 +1,409 @@ + + + + + + Pair_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Pair_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

CreatedAtBlockNumber

+
CreatedAtBlockNumber: = "createdAtBlockNumber"
+ +
+
+ +

CreatedAtTimestamp

+
CreatedAtTimestamp: = "createdAtTimestamp"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityProviderCount

+
LiquidityProviderCount: = "liquidityProviderCount"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveEth

+
ReserveEth: = "reserveETH"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Token0

+
Token0: = "token0"
+ +
+
+ +

Token0Price

+
Token0Price: = "token0Price"
+ +
+
+ +

Token1

+
Token1: = "token1"
+ +
+
+ +

Token1Price

+
Token1Price: = "token1Price"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+ +

TrackedReserveEth

+
TrackedReserveEth: = "trackedReserveETH"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+ +

VolumeToken0

+
VolumeToken0: = "volumeToken0"
+ +
+
+ +

VolumeToken1

+
VolumeToken1: = "volumeToken1"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.pairdaydata_orderby.html b/docs/enums/_generated_graphql_.pairdaydata_orderby.html new file mode 100644 index 0000000..4b04043 --- /dev/null +++ b/docs/enums/_generated_graphql_.pairdaydata_orderby.html @@ -0,0 +1,325 @@ + + + + + + PairDayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration PairDayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

DailyTxns

+
DailyTxns: = "dailyTxns"
+ +
+
+ +

DailyVolumeToken0

+
DailyVolumeToken0: = "dailyVolumeToken0"
+ +
+
+ +

DailyVolumeToken1

+
DailyVolumeToken1: = "dailyVolumeToken1"
+ +
+
+ +

DailyVolumeUsd

+
DailyVolumeUsd: = "dailyVolumeUSD"
+ +
+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

PairAddress

+
PairAddress: = "pairAddress"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Token0

+
Token0: = "token0"
+ +
+
+ +

Token1

+
Token1: = "token1"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.pairhourdata_orderby.html b/docs/enums/_generated_graphql_.pairhourdata_orderby.html new file mode 100644 index 0000000..201eba9 --- /dev/null +++ b/docs/enums/_generated_graphql_.pairhourdata_orderby.html @@ -0,0 +1,283 @@ + + + + + + PairHourData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration PairHourData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

HourStartUnix

+
HourStartUnix: = "hourStartUnix"
+ +
+
+ +

HourlyTxns

+
HourlyTxns: = "hourlyTxns"
+ +
+
+ +

HourlyVolumeToken0

+
HourlyVolumeToken0: = "hourlyVolumeToken0"
+ +
+
+ +

HourlyVolumeToken1

+
HourlyVolumeToken1: = "hourlyVolumeToken1"
+ +
+
+ +

HourlyVolumeUsd

+
HourlyVolumeUsd: = "hourlyVolumeUSD"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.sushiswapdaydata_orderby.html b/docs/enums/_generated_graphql_.sushiswapdaydata_orderby.html new file mode 100644 index 0000000..d562287 --- /dev/null +++ b/docs/enums/_generated_graphql_.sushiswapdaydata_orderby.html @@ -0,0 +1,311 @@ + + + + + + SushiswapDayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration SushiswapDayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

DailyVolumeEth

+
DailyVolumeEth: = "dailyVolumeETH"
+ +
+
+ +

DailyVolumeUntracked

+
DailyVolumeUntracked: = "dailyVolumeUntracked"
+ +
+
+ +

DailyVolumeUsd

+
DailyVolumeUsd: = "dailyVolumeUSD"
+ +
+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

MaxStored

+
MaxStored: = "maxStored"
+ +
+
+ +

MostLiquidTokens

+
MostLiquidTokens: = "mostLiquidTokens"
+ +
+
+ +

TotalLiquidityEth

+
TotalLiquidityEth: = "totalLiquidityETH"
+ +
+
+ +

TotalLiquidityUsd

+
TotalLiquidityUsd: = "totalLiquidityUSD"
+ +
+
+ +

TotalVolumeEth

+
TotalVolumeEth: = "totalVolumeETH"
+ +
+
+ +

TotalVolumeUsd

+
TotalVolumeUsd: = "totalVolumeUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.sushiswapfactory_orderby.html b/docs/enums/_generated_graphql_.sushiswapfactory_orderby.html new file mode 100644 index 0000000..e1b20d4 --- /dev/null +++ b/docs/enums/_generated_graphql_.sushiswapfactory_orderby.html @@ -0,0 +1,269 @@ + + + + + + SushiswapFactory_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration SushiswapFactory_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

Id

+
Id: = "id"
+ +
+
+ +

MostLiquidTokens

+
MostLiquidTokens: = "mostLiquidTokens"
+ +
+
+ +

PairCount

+
PairCount: = "pairCount"
+ +
+
+ +

TotalLiquidityEth

+
TotalLiquidityEth: = "totalLiquidityETH"
+ +
+
+ +

TotalLiquidityUsd

+
TotalLiquidityUsd: = "totalLiquidityUSD"
+ +
+
+ +

TotalVolumeEth

+
TotalVolumeEth: = "totalVolumeETH"
+ +
+
+ +

TotalVolumeUsd

+
TotalVolumeUsd: = "totalVolumeUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.swap_orderby.html b/docs/enums/_generated_graphql_.swap_orderby.html new file mode 100644 index 0000000..9770108 --- /dev/null +++ b/docs/enums/_generated_graphql_.swap_orderby.html @@ -0,0 +1,311 @@ + + + + + + Swap_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Swap_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0In

+
Amount0In: = "amount0In"
+ +
+
+ +

Amount0Out

+
Amount0Out: = "amount0Out"
+ +
+
+ +

Amount1In

+
Amount1In: = "amount1In"
+ +
+
+ +

Amount1Out

+
Amount1Out: = "amount1Out"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.token_orderby.html b/docs/enums/_generated_graphql_.token_orderby.html new file mode 100644 index 0000000..7666c9e --- /dev/null +++ b/docs/enums/_generated_graphql_.token_orderby.html @@ -0,0 +1,311 @@ + + + + + + Token_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Token_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

Decimals

+
Decimals: = "decimals"
+ +
+
+ +

DerivedEth

+
DerivedEth: = "derivedETH"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

MostLiquidPairs

+
MostLiquidPairs: = "mostLiquidPairs"
+ +
+
+ +

Name

+
Name: = "name"
+ +
+
+ +

Symbol

+
Symbol: = "symbol"
+ +
+
+ +

TotalLiquidity

+
TotalLiquidity: = "totalLiquidity"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+ +

TradeVolume

+
TradeVolume: = "tradeVolume"
+ +
+
+ +

TradeVolumeUsd

+
TradeVolumeUsd: = "tradeVolumeUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.tokendaydata_orderby.html b/docs/enums/_generated_graphql_.tokendaydata_orderby.html new file mode 100644 index 0000000..9592356 --- /dev/null +++ b/docs/enums/_generated_graphql_.tokendaydata_orderby.html @@ -0,0 +1,325 @@ + + + + + + TokenDayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration TokenDayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

DailyTxns

+
DailyTxns: = "dailyTxns"
+ +
+
+ +

DailyVolumeEth

+
DailyVolumeEth: = "dailyVolumeETH"
+ +
+
+ +

DailyVolumeToken

+
DailyVolumeToken: = "dailyVolumeToken"
+ +
+
+ +

DailyVolumeUsd

+
DailyVolumeUsd: = "dailyVolumeUSD"
+ +
+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

MaxStored

+
MaxStored: = "maxStored"
+ +
+
+ +

MostLiquidPairs

+
MostLiquidPairs: = "mostLiquidPairs"
+ +
+
+ +

PriceUsd

+
PriceUsd: = "priceUSD"
+ +
+
+ +

Token

+
Token: = "token"
+ +
+
+ +

TotalLiquidityEth

+
TotalLiquidityEth: = "totalLiquidityETH"
+ +
+
+ +

TotalLiquidityToken

+
TotalLiquidityToken: = "totalLiquidityToken"
+ +
+
+ +

TotalLiquidityUsd

+
TotalLiquidityUsd: = "totalLiquidityUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.transaction_orderby.html b/docs/enums/_generated_graphql_.transaction_orderby.html new file mode 100644 index 0000000..2cfc54d --- /dev/null +++ b/docs/enums/_generated_graphql_.transaction_orderby.html @@ -0,0 +1,227 @@ + + + + + + Transaction_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Transaction_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

BlockNumber

+
BlockNumber: = "blockNumber"
+ +
+
+ +

Burns

+
Burns: = "burns"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Mints

+
Mints: = "mints"
+ +
+
+ +

Swaps

+
Swaps: = "swaps"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_generated_graphql_.user_orderby.html b/docs/enums/_generated_graphql_.user_orderby.html new file mode 100644 index 0000000..e2a4799 --- /dev/null +++ b/docs/enums/_generated_graphql_.user_orderby.html @@ -0,0 +1,185 @@ + + + + + + User_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration User_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityPositions

+
LiquidityPositions: = "liquidityPositions"
+ +
+
+ +

UsdSwapped

+
UsdSwapped: = "usdSwapped"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_._subgrapherrorpolicy_.html b/docs/enums/_types_._subgrapherrorpolicy_.html new file mode 100644 index 0000000..049aa07 --- /dev/null +++ b/docs/enums/_types_._subgrapherrorpolicy_.html @@ -0,0 +1,181 @@ + + + + + + _SubgraphErrorPolicy_ | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration _SubgraphErrorPolicy_

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Allow

+
Allow: = "allow"
+ +
+
+

Data will be returned even if the subgraph has indexing errors

+
+
+
+
+ +

Deny

+
Deny: = "deny"
+ +
+
+

If the subgraph has indexing errors, data will be omitted. The default.

+
+
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.bundle_orderby.html b/docs/enums/_types_.bundle_orderby.html new file mode 100644 index 0000000..4b91c26 --- /dev/null +++ b/docs/enums/_types_.bundle_orderby.html @@ -0,0 +1,171 @@ + + + + + + Bundle_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Bundle_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

EthPrice

+
EthPrice: = "ethPrice"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.burn_orderby.html b/docs/enums/_types_.burn_orderby.html new file mode 100644 index 0000000..f073de3 --- /dev/null +++ b/docs/enums/_types_.burn_orderby.html @@ -0,0 +1,339 @@ + + + + + + Burn_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Burn_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0

+
Amount0: = "amount0"
+ +
+
+ +

Amount1

+
Amount1: = "amount1"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

Complete

+
Complete: = "complete"
+ +
+
+ +

FeeLiquidity

+
FeeLiquidity: = "feeLiquidity"
+ +
+
+ +

FeeTo

+
FeeTo: = "feeTo"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.daydata_orderby.html b/docs/enums/_types_.daydata_orderby.html new file mode 100644 index 0000000..4b8606c --- /dev/null +++ b/docs/enums/_types_.daydata_orderby.html @@ -0,0 +1,269 @@ + + + + + + DayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration DayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Factory

+
Factory: = "factory"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityEth

+
LiquidityEth: = "liquidityETH"
+ +
+
+ +

LiquidityUsd

+
LiquidityUsd: = "liquidityUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolume

+
UntrackedVolume: = "untrackedVolume"
+ +
+
+ +

VolumeEth

+
VolumeEth: = "volumeETH"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.factory_orderby.html b/docs/enums/_types_.factory_orderby.html new file mode 100644 index 0000000..37e8f22 --- /dev/null +++ b/docs/enums/_types_.factory_orderby.html @@ -0,0 +1,339 @@ + + + + + + Factory_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Factory_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

DayData

+
DayData: = "dayData"
+ +
+
+ +

HourData

+
HourData: = "hourData"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityEth

+
LiquidityEth: = "liquidityETH"
+ +
+
+ +

LiquidityUsd

+
LiquidityUsd: = "liquidityUSD"
+ +
+
+ +

PairCount

+
PairCount: = "pairCount"
+ +
+
+ +

Pairs

+
Pairs: = "pairs"
+ +
+
+ +

TokenCount

+
TokenCount: = "tokenCount"
+ +
+
+ +

Tokens

+
Tokens: = "tokens"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+ +

UserCount

+
UserCount: = "userCount"
+ +
+
+ +

VolumeEth

+
VolumeEth: = "volumeETH"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.hourdata_orderby.html b/docs/enums/_types_.hourdata_orderby.html new file mode 100644 index 0000000..d9487df --- /dev/null +++ b/docs/enums/_types_.hourdata_orderby.html @@ -0,0 +1,269 @@ + + + + + + HourData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration HourData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Factory

+
Factory: = "factory"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityEth

+
LiquidityEth: = "liquidityETH"
+ +
+
+ +

LiquidityUsd

+
LiquidityUsd: = "liquidityUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolume

+
UntrackedVolume: = "untrackedVolume"
+ +
+
+ +

VolumeEth

+
VolumeEth: = "volumeETH"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.liquidityposition_orderby.html b/docs/enums/_types_.liquidityposition_orderby.html new file mode 100644 index 0000000..62ae537 --- /dev/null +++ b/docs/enums/_types_.liquidityposition_orderby.html @@ -0,0 +1,241 @@ + + + + + + LiquidityPosition_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration LiquidityPosition_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Block

+
Block: = "block"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityTokenBalance

+
LiquidityTokenBalance: = "liquidityTokenBalance"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Snapshots

+
Snapshots: = "snapshots"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

User

+
User: = "user"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.liquiditypositionsnapshot_orderby.html b/docs/enums/_types_.liquiditypositionsnapshot_orderby.html new file mode 100644 index 0000000..04008b9 --- /dev/null +++ b/docs/enums/_types_.liquiditypositionsnapshot_orderby.html @@ -0,0 +1,325 @@ + + + + + + LiquidityPositionSnapshot_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration LiquidityPositionSnapshot_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

Block

+
Block: = "block"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityPosition

+
LiquidityPosition: = "liquidityPosition"
+ +
+
+ +

LiquidityTokenBalance

+
LiquidityTokenBalance: = "liquidityTokenBalance"
+ +
+
+ +

LiquidityTokenTotalSupply

+
LiquidityTokenTotalSupply: = "liquidityTokenTotalSupply"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

Token0PriceUsd

+
Token0PriceUsd: = "token0PriceUSD"
+ +
+
+ +

Token1PriceUsd

+
Token1PriceUsd: = "token1PriceUSD"
+ +
+
+ +

User

+
User: = "user"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.mint_orderby.html b/docs/enums/_types_.mint_orderby.html new file mode 100644 index 0000000..13bb9ee --- /dev/null +++ b/docs/enums/_types_.mint_orderby.html @@ -0,0 +1,325 @@ + + + + + + Mint_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Mint_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0

+
Amount0: = "amount0"
+ +
+
+ +

Amount1

+
Amount1: = "amount1"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

FeeLiquidity

+
FeeLiquidity: = "feeLiquidity"
+ +
+
+ +

FeeTo

+
FeeTo: = "feeTo"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.orderdirection.html b/docs/enums/_types_.orderdirection.html new file mode 100644 index 0000000..7fc7934 --- /dev/null +++ b/docs/enums/_types_.orderdirection.html @@ -0,0 +1,171 @@ + + + + + + OrderDirection | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration OrderDirection

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Asc

+
Asc: = "asc"
+ +
+
+ +

Desc

+
Desc: = "desc"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.pair_orderby.html b/docs/enums/_types_.pair_orderby.html new file mode 100644 index 0000000..99688f0 --- /dev/null +++ b/docs/enums/_types_.pair_orderby.html @@ -0,0 +1,535 @@ + + + + + + Pair_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Pair_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

Block

+
Block: = "block"
+ +
+
+ +

Burns

+
Burns: = "burns"
+ +
+
+ +

DayData

+
DayData: = "dayData"
+ +
+
+ +

Factory

+
Factory: = "factory"
+ +
+
+ +

HourData

+
HourData: = "hourData"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityPositionSnapshots

+
LiquidityPositionSnapshots: = "liquidityPositionSnapshots"
+ +
+
+ +

LiquidityPositions

+
LiquidityPositions: = "liquidityPositions"
+ +
+
+ +

LiquidityProviderCount

+
LiquidityProviderCount: = "liquidityProviderCount"
+ +
+
+ +

Mints

+
Mints: = "mints"
+ +
+
+ +

Name

+
Name: = "name"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveEth

+
ReserveEth: = "reserveETH"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Swaps

+
Swaps: = "swaps"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

Token0

+
Token0: = "token0"
+ +
+
+ +

Token0Price

+
Token0Price: = "token0Price"
+ +
+
+ +

Token1

+
Token1: = "token1"
+ +
+
+ +

Token1Price

+
Token1Price: = "token1Price"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+ +

TrackedReserveEth

+
TrackedReserveEth: = "trackedReserveETH"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+ +

VolumeToken0

+
VolumeToken0: = "volumeToken0"
+ +
+
+ +

VolumeToken1

+
VolumeToken1: = "volumeToken1"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.pairdaydata_orderby.html b/docs/enums/_types_.pairdaydata_orderby.html new file mode 100644 index 0000000..929adb4 --- /dev/null +++ b/docs/enums/_types_.pairdaydata_orderby.html @@ -0,0 +1,325 @@ + + + + + + PairDayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration PairDayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

Token0

+
Token0: = "token0"
+ +
+
+ +

Token1

+
Token1: = "token1"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

VolumeToken0

+
VolumeToken0: = "volumeToken0"
+ +
+
+ +

VolumeToken1

+
VolumeToken1: = "volumeToken1"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.pairhourdata_orderby.html b/docs/enums/_types_.pairhourdata_orderby.html new file mode 100644 index 0000000..8f286c1 --- /dev/null +++ b/docs/enums/_types_.pairhourdata_orderby.html @@ -0,0 +1,283 @@ + + + + + + PairHourData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration PairHourData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Reserve0

+
Reserve0: = "reserve0"
+ +
+
+ +

Reserve1

+
Reserve1: = "reserve1"
+ +
+
+ +

ReserveUsd

+
ReserveUsd: = "reserveUSD"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

VolumeToken0

+
VolumeToken0: = "volumeToken0"
+ +
+
+ +

VolumeToken1

+
VolumeToken1: = "volumeToken1"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.swap_orderby.html b/docs/enums/_types_.swap_orderby.html new file mode 100644 index 0000000..865a28c --- /dev/null +++ b/docs/enums/_types_.swap_orderby.html @@ -0,0 +1,311 @@ + + + + + + Swap_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Swap_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Amount0In

+
Amount0In: = "amount0In"
+ +
+
+ +

Amount0Out

+
Amount0Out: = "amount0Out"
+ +
+
+ +

Amount1In

+
Amount1In: = "amount1In"
+ +
+
+ +

Amount1Out

+
Amount1Out: = "amount1Out"
+ +
+
+ +

AmountUsd

+
AmountUsd: = "amountUSD"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LogIndex

+
LogIndex: = "logIndex"
+ +
+
+ +

Pair

+
Pair: = "pair"
+ +
+
+ +

Sender

+
Sender: = "sender"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+ +

To

+
To: = "to"
+ +
+
+ +

Transaction

+
Transaction: = "transaction"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.token_orderby.html b/docs/enums/_types_.token_orderby.html new file mode 100644 index 0000000..5690b94 --- /dev/null +++ b/docs/enums/_types_.token_orderby.html @@ -0,0 +1,395 @@ + + + + + + Token_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Token_OrderBy

+
+
+
+
+
+
+
+

Index

+
+ +
+
+
+

Enumeration members

+
+ +

BasePairs

+
BasePairs: = "basePairs"
+ +
+
+ +

BasePairsDayData

+
BasePairsDayData: = "basePairsDayData"
+ +
+
+ +

DayData

+
DayData: = "dayData"
+ +
+
+ +

Decimals

+
Decimals: = "decimals"
+ +
+
+ +

DerivedEth

+
DerivedEth: = "derivedETH"
+ +
+
+ +

Factory

+
Factory: = "factory"
+ +
+
+ +

HourData

+
HourData: = "hourData"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

Name

+
Name: = "name"
+ +
+
+ +

QuotePairs

+
QuotePairs: = "quotePairs"
+ +
+
+ +

QuotePairsDayData

+
QuotePairsDayData: = "quotePairsDayData"
+ +
+
+ +

Symbol

+
Symbol: = "symbol"
+ +
+
+ +

TotalSupply

+
TotalSupply: = "totalSupply"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

UntrackedVolumeUsd

+
UntrackedVolumeUsd: = "untrackedVolumeUSD"
+ +
+
+ +

Volume

+
Volume: = "volume"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.tokendaydata_orderby.html b/docs/enums/_types_.tokendaydata_orderby.html new file mode 100644 index 0000000..bdb75e9 --- /dev/null +++ b/docs/enums/_types_.tokendaydata_orderby.html @@ -0,0 +1,297 @@ + + + + + + TokenDayData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration TokenDayData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LiquidityEth

+
LiquidityEth: = "liquidityETH"
+ +
+
+ +

LiquidityUsd

+
LiquidityUsd: = "liquidityUSD"
+ +
+
+ +

PriceUsd

+
PriceUsd: = "priceUSD"
+ +
+
+ +

Token

+
Token: = "token"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

Volume

+
Volume: = "volume"
+ +
+
+ +

VolumeEth

+
VolumeEth: = "volumeETH"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.tokenhourdata_orderby.html b/docs/enums/_types_.tokenhourdata_orderby.html new file mode 100644 index 0000000..f0207c2 --- /dev/null +++ b/docs/enums/_types_.tokenhourdata_orderby.html @@ -0,0 +1,297 @@ + + + + + + TokenHourData_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration TokenHourData_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Date

+
Date: = "date"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Liquidity

+
Liquidity: = "liquidity"
+ +
+
+ +

LiquidityEth

+
LiquidityEth: = "liquidityETH"
+ +
+
+ +

LiquidityUsd

+
LiquidityUsd: = "liquidityUSD"
+ +
+
+ +

PriceUsd

+
PriceUsd: = "priceUSD"
+ +
+
+ +

Token

+
Token: = "token"
+ +
+
+ +

TxCount

+
TxCount: = "txCount"
+ +
+
+ +

Volume

+
Volume: = "volume"
+ +
+
+ +

VolumeEth

+
VolumeEth: = "volumeETH"
+ +
+
+ +

VolumeUsd

+
VolumeUsd: = "volumeUSD"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.transaction_orderby.html b/docs/enums/_types_.transaction_orderby.html new file mode 100644 index 0000000..5ef3291 --- /dev/null +++ b/docs/enums/_types_.transaction_orderby.html @@ -0,0 +1,227 @@ + + + + + + Transaction_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration Transaction_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

BlockNumber

+
BlockNumber: = "blockNumber"
+ +
+
+ +

Burns

+
Burns: = "burns"
+ +
+
+ +

Id

+
Id: = "id"
+ +
+
+ +

Mints

+
Mints: = "mints"
+ +
+
+ +

Swaps

+
Swaps: = "swaps"
+ +
+
+ +

Timestamp

+
Timestamp: = "timestamp"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/enums/_types_.user_orderby.html b/docs/enums/_types_.user_orderby.html new file mode 100644 index 0000000..e71b86d --- /dev/null +++ b/docs/enums/_types_.user_orderby.html @@ -0,0 +1,171 @@ + + + + + + User_OrderBy | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Enumeration User_OrderBy

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumeration members

+ +
+
+
+
+
+

Enumeration members

+
+ +

Id

+
Id: = "id"
+ +
+
+ +

LiquidityPositions

+
LiquidityPositions: = "liquidityPositions"
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/globals.html b/docs/globals.html new file mode 100644 index 0000000..1fdefd6 --- /dev/null +++ b/docs/globals.html @@ -0,0 +1,262 @@ + + + + + + sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

sushi-sh

+
+
+
+
+
+ + +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..06859c7 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,242 @@ + + + + + + sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

sushi-sh

+
+
+
+ +
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..6d198b2 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,141 @@ +# Documentation + +[sushi.org](https://www.sushi.org) + +# Commands + +## sushi _meta + +* [`sushi _meta`] + +## sushi autocomplete [SHELL] + +* [`sushi autocomplete [SHELL]`] + +## sushi bundle + +* [`sushi bundle`] + +## sushi bundles + +* [`sushi bundles`] + +## sushi burn + +* [`sushi burn`] + +## sushi burns + +* [`sushi burns`] + +## sushi commands + +* [`sushi commands`] + +## uncli help + +* [`sushi help [COMMAND]`] + +## sushi liquidityPosition + +* [`sushi liquidityPosition`] + +## sushi liquidityPositionSnapshot + +* [`sushi liquidityPositionSnapshot`] + +## liquidityPositionSnapshots + +* [`sushi liquidityPositionSnapshots`] + +## sushi liquidityPositions + +* [`sushi liquidityPositions`] + +## sushi mint + +* [`sushi mint`] + +## sushi mints + +* [`sushi mints`] + +## sushi pair + +* [`sushi pair`] + +## sushi pairDayData + +* [`sushi pairDayData`] + +## sushi pairDayDatas + +* [`sushi pairDayDatas`] + +## sushi pairHourData + +* [`sushi pairHourData`] + +## sushi pairHourDatas + +* [`sushi pairHourDatas`] + +## sushi pairs + +* [`sushi pairs`] + +## sushi swap + +* [`sushi swap`] + +## sushi swaps + +* [`sushi swaps`] + +## sushi token + +* [`sushi token`] + +## sushi tokenDayData + +* [`sushi tokenDayData`] + +## sushi tokenDayDatas + +* [`sushi tokenDayDatas`] + +## sushi tokens + +* [`sushi tokens`] + +## sushi transaction + +* [`sushi transaction`] + +## sushi transactions + +* [`sushi transactions`] + +## sushi sushiswapDayData + +* [`sushi sushiswapDayData`] + +## sushi sushiswapDayDatas + +* [`sushi sushiswapDayDatas`] + +## sushi sushiswapFactories + +* [`sushi sushiswapFactories`] + +## sushi sushiswapFactory + +* [`sushi sushiswapFactory`] + +## sushi user + +* [`sushi user`] + +## sushi users + +* [`sushi users`] diff --git a/docs/interfaces/_handler_.queryhandlerprops.html b/docs/interfaces/_handler_.queryhandlerprops.html new file mode 100644 index 0000000..69f90c7 --- /dev/null +++ b/docs/interfaces/_handler_.queryhandlerprops.html @@ -0,0 +1,200 @@ + + + + + + QueryHandlerProps | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Interface QueryHandlerProps

+
+
+
+
+
+
+
+

Hierarchy

+
    +
  • + QueryHandlerProps +
  • +
+
+
+

Index

+
+
+
+

Properties

+ +
+
+
+
+
+

Properties

+
+ +

command

+
command: Command
+ +
+
+ +

query

+
query: string
+ +
+
+ +

Optional variables

+
variables: Record<string, any>
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Interface
  • +
  • Property
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands__meta_index_.html b/docs/modules/_commands__meta_index_.html new file mode 100644 index 0000000..41e62ea --- /dev/null +++ b/docs/modules/_commands__meta_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/_meta/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/_meta/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const _MetaDocument

+
_MetaDocument: "query _meta($block: Block_height) {_meta(block: $block) {block {hashnumber}deploymenthasIndexingErrors}}" = `query _meta($block: Block_height) {_meta(block: $block) {block {hashnumber}deploymenthasIndexingErrors}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_bundle_index_.html b/docs/modules/_commands_bundle_index_.html new file mode 100644 index 0000000..1c5b693 --- /dev/null +++ b/docs/modules/_commands_bundle_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/bundle/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/bundle/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const BundleDocument

+
BundleDocument: "query bundle($id: ID!, $block: Block_height) {bundle(id: $id, block: $block) {idethPrice}}" = `query bundle($id: ID!, $block: Block_height) {bundle(id: $id, block: $block) {idethPrice}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_bundles_index_.html b/docs/modules/_commands_bundles_index_.html new file mode 100644 index 0000000..233f07c --- /dev/null +++ b/docs/modules/_commands_bundles_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/bundles/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/bundles/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const BundlesDocument

+
BundlesDocument: "query bundles($skip: Int, $first: Int, $orderBy: Bundle_orderBy, $orderDirection: OrderDirection, $where: Bundle_filter, $block: Block_height) {bundles(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $whereblock: $block) {idethPrice}}" = `query bundles($skip: Int, $first: Int, $orderBy: Bundle_orderBy, $orderDirection: OrderDirection, $where: Bundle_filter, $block: Block_height) {bundles(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $whereblock: $block) {idethPrice}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_burn_index_.html b/docs/modules/_commands_burn_index_.html new file mode 100644 index 0000000..5b850c6 --- /dev/null +++ b/docs/modules/_commands_burn_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/burn/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/burn/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const BurnDocument

+
BurnDocument: "query burn($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {burn(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}" = `query burn($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {burn(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_burns_index_.html b/docs/modules/_commands_burns_index_.html new file mode 100644 index 0000000..ba4d20c --- /dev/null +++ b/docs/modules/_commands_burns_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/burns/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/burns/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const BurnsDocument

+
BurnsDocument: "query burns($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Burn_orderBy, $orderDirection2: OrderDirection, $where2: Burn_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Burn_orderBy, $orderDirection5: OrderDirection, $where5: Burn_filter, $block: Block_height) {burns(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}swaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestampliquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}" = `query burns($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Burn_orderBy, $orderDirection2: OrderDirection, $where2: Burn_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Burn_orderBy, $orderDirection5: OrderDirection, $where5: Burn_filter, $block: Block_height) {burns(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}swaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestampliquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_liquidityposition_index_.html b/docs/modules/_commands_liquidityposition_index_.html new file mode 100644 index 0000000..72add8e --- /dev/null +++ b/docs/modules/_commands_liquidityposition_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/liquidityPosition/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/liquidityPosition/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const LiquidityPositionDocument

+
LiquidityPositionDocument: "query liquidityPosition($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {liquidityPosition(id: $id, block: $block) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}}" = `query liquidityPosition($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {liquidityPosition(id: $id, block: $block) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_liquiditypositions_index_.html b/docs/modules/_commands_liquiditypositions_index_.html new file mode 100644 index 0000000..c0fc565 --- /dev/null +++ b/docs/modules/_commands_liquiditypositions_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/liquidityPositions/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/liquidityPositions/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const LiquidityPositionsDocument

+
LiquidityPositionsDocument: "query liquidityPositions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $block: Block_height) {liquidityPositions(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}liquidityTokenBalance}}" = `query liquidityPositions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $block: Block_height) {liquidityPositions(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}liquidityTokenBalance}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_liquiditypositionsnapshot_index_.html b/docs/modules/_commands_liquiditypositionsnapshot_index_.html new file mode 100644 index 0000000..7ba6a74 --- /dev/null +++ b/docs/modules/_commands_liquiditypositionsnapshot_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/liquidityPositionSnapshot/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/liquidityPositionSnapshot/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const LiquidityPositionSnapshotDocument

+
LiquidityPositionSnapshotDocument: "query liquidityPositionSnapshot($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {liquidityPositionSnapshot(id: $id, block: $block) {idliquidityPosition {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}timestampblockuser {idusdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}token0PriceUSDtoken1PriceUSDreserve0reserve1reserveUSDliquidityTokenTotalSupplyliquidityTokenBalance}}" = `query liquidityPositionSnapshot($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {liquidityPositionSnapshot(id: $id, block: $block) {idliquidityPosition {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}timestampblockuser {idusdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}token0PriceUSDtoken1PriceUSDreserve0reserve1reserveUSDliquidityTokenTotalSupplyliquidityTokenBalance}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_liquiditypositionsnapshots_index_.html b/docs/modules/_commands_liquiditypositionsnapshots_index_.html new file mode 100644 index 0000000..453d313 --- /dev/null +++ b/docs/modules/_commands_liquiditypositionsnapshots_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/liquidityPositionSnapshots/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/liquidityPositionSnapshots/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const LiquidityPositionSnapshotsDocument

+
LiquidityPositionSnapshotsDocument: "query liquidityPositionSnapshots($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPositionSnapshot_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPositionSnapshot_filter, $block: Block_height) {liquidityPositionSnapshots(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {idliquidityPosition {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}timestampblockuser {idusdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}token0PriceUSDtoken1PriceUSDreserve0reserve1reserveUSDliquidityTokenTotalSupplyliquidityTokenBalance}}" = `query liquidityPositionSnapshots($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPositionSnapshot_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPositionSnapshot_filter, $block: Block_height) {liquidityPositionSnapshots(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {idliquidityPosition {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}timestampblockuser {idusdSwapped}pair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}token0PriceUSDtoken1PriceUSDreserve0reserve1reserveUSDliquidityTokenTotalSupplyliquidityTokenBalance}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_mint_index_.html b/docs/modules/_commands_mint_index_.html new file mode 100644 index 0000000..64c08f1 --- /dev/null +++ b/docs/modules/_commands_mint_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/mint/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/mint/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const MintDocument

+
MintDocument: "query mint($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {mint(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}" = `query mint($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {mint(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_mints_index_.html b/docs/modules/_commands_mints_index_.html new file mode 100644 index 0000000..3b6ed04 --- /dev/null +++ b/docs/modules/_commands_mints_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/mints/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/mints/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const MintsDocument

+
MintsDocument: "query mints($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $block: Block_height) {mints(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampswaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamptoliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}" = `query mints($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $block: Block_height) {mints(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampswaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamptoliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pair_index_.html b/docs/modules/_commands_pair_index_.html new file mode 100644 index 0000000..57ee233 --- /dev/null +++ b/docs/modules/_commands_pair_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pair/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pair/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairDocument

+
PairDocument: "query pair($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pair(id: $id, block: $block) {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}}" = `query pair($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pair(id: $id, block: $block) {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pairdaydata_index_.html b/docs/modules/_commands_pairdaydata_index_.html new file mode 100644 index 0000000..89d2760 --- /dev/null +++ b/docs/modules/_commands_pairdaydata_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pairDayData/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pairDayData/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairDayDataDocument

+
PairDayDataDocument: "query pairDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pairDayData(id: $id, block: $block) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}" = `query pairDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pairDayData(id: $id, block: $block) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pairdaydatas_index_.html b/docs/modules/_commands_pairdaydatas_index_.html new file mode 100644 index 0000000..f5660ff --- /dev/null +++ b/docs/modules/_commands_pairdaydatas_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pairDayDatas/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pairDayDatas/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairDayDatasDocument

+
PairDayDatasDocument: "query pairDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $block: Block_height) {pairDayDatas(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}" = `query pairDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $block: Block_height) {pairDayDatas(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pairhourdata_index_.html b/docs/modules/_commands_pairhourdata_index_.html new file mode 100644 index 0000000..87bd416 --- /dev/null +++ b/docs/modules/_commands_pairhourdata_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pairHourData/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pairHourData/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairHourDataDocument

+
PairHourDataDocument: "query pairHourData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pairHourData(id: $id, block: $block) {idhourStartUnixpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}reserve0reserve1reserveUSDhourlyVolumeToken0hourlyVolumeToken1hourlyVolumeUSDhourlyTxns}}" = `query pairHourData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) {pairHourData(id: $id, block: $block) {idhourStartUnixpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}reserve0reserve1reserveUSDhourlyVolumeToken0hourlyVolumeToken1hourlyVolumeUSDhourlyTxns}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pairhourdatas_index_.html b/docs/modules/_commands_pairhourdatas_index_.html new file mode 100644 index 0000000..5576464 --- /dev/null +++ b/docs/modules/_commands_pairhourdatas_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pairHourDatas/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pairHourDatas/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairHourDatasDocument

+
PairHourDatasDocument: "query pairHourDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairHourData_orderBy, $orderDirection2: OrderDirection, $where2: PairHourData_filter, $block: Block_height) {pairHourDatas(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {idhourStartUnixpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}reserve0reserve1reserveUSDhourlyVolumeToken0hourlyVolumeToken1hourlyVolumeUSDhourlyTxns}}" = `query pairHourDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairHourData_orderBy, $orderDirection2: OrderDirection, $where2: PairHourData_filter, $block: Block_height) {pairHourDatas(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {idhourStartUnixpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}reserve0reserve1reserveUSDhourlyVolumeToken0hourlyVolumeToken1hourlyVolumeUSDhourlyTxns}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_pairs_index_.html b/docs/modules/_commands_pairs_index_.html new file mode 100644 index 0000000..e9290ce --- /dev/null +++ b/docs/modules/_commands_pairs_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/pairs/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/pairs/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const PairsDocument

+
PairsDocument: "query pairs($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Pair_orderBy, $orderDirection2: OrderDirection, $where2: Pair_filter, $block: Block_height) {pairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}}" = `query pairs($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Pair_orderBy, $orderDirection2: OrderDirection, $where2: Pair_filter, $block: Block_height) {pairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2block: $block) {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_sushiswapdaydata_index_.html b/docs/modules/_commands_sushiswapdaydata_index_.html new file mode 100644 index 0000000..b4147e2 --- /dev/null +++ b/docs/modules/_commands_sushiswapdaydata_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/sushiswapDayData/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/sushiswapDayData/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SushiswapDayDataDocument

+
SushiswapDayDataDocument: "query sushiswapDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) {sushiswapDayData(id: $id, block: $block) {iddatedailyVolumeETHdailyVolumeUSDdailyVolumeUntrackedtotalVolumeETHtotalLiquidityETHtotalVolumeUSDtotalLiquidityUSDmaxStoredmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}txCount}}" = `query sushiswapDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) {sushiswapDayData(id: $id, block: $block) {iddatedailyVolumeETHdailyVolumeUSDdailyVolumeUntrackedtotalVolumeETHtotalLiquidityETHtotalVolumeUSDtotalLiquidityUSDmaxStoredmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}txCount}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_sushiswapdaydatas_index_.html b/docs/modules/_commands_sushiswapdaydatas_index_.html new file mode 100644 index 0000000..8782da3 --- /dev/null +++ b/docs/modules/_commands_sushiswapdaydatas_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/sushiswapDayDatas/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/sushiswapDayDatas/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SushiswapDayDatasDocument

+
SushiswapDayDatasDocument: "query sushiswapDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapDayData_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapDayData_filter, $block: Block_height) {sushiswapDayDatas(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {iddatedailyVolumeETHdailyVolumeUSDdailyVolumeUntrackedtotalVolumeETHtotalLiquidityETHtotalVolumeUSDtotalLiquidityUSDmaxStoredmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}txCount}}" = `query sushiswapDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapDayData_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapDayData_filter, $block: Block_height) {sushiswapDayDatas(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {iddatedailyVolumeETHdailyVolumeUSDdailyVolumeUntrackedtotalVolumeETHtotalLiquidityETHtotalVolumeUSDtotalLiquidityUSDmaxStoredmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}txCount}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_sushiswapfactories_index_.html b/docs/modules/_commands_sushiswapfactories_index_.html new file mode 100644 index 0000000..9d7d421 --- /dev/null +++ b/docs/modules/_commands_sushiswapfactories_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/sushiswapFactories/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/sushiswapFactories/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SushiswapFactoriesDocument

+
SushiswapFactoriesDocument: "query sushiswapFactories($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapFactory_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapFactory_filter, $block: Block_height) {sushiswapFactories(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idpairCounttotalVolumeUSDtotalVolumeETHuntrackedVolumeUSDtotalLiquidityUSDtotalLiquidityETHtxCountmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}}" = `query sushiswapFactories($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapFactory_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapFactory_filter, $block: Block_height) {sushiswapFactories(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idpairCounttotalVolumeUSDtotalVolumeETHuntrackedVolumeUSDtotalLiquidityUSDtotalLiquidityETHtxCountmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_sushiswapfactory_index_.html b/docs/modules/_commands_sushiswapfactory_index_.html new file mode 100644 index 0000000..60b5404 --- /dev/null +++ b/docs/modules/_commands_sushiswapfactory_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/sushiswapFactory/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/sushiswapFactory/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SushiswapFactoryDocument

+
SushiswapFactoryDocument: "query sushiswapFactory($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) {sushiswapFactory(id: $id, block: $block) {idpairCounttotalVolumeUSDtotalVolumeETHuntrackedVolumeUSDtotalLiquidityUSDtotalLiquidityETHtxCountmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}}" = `query sushiswapFactory($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) {sushiswapFactory(id: $id, block: $block) {idpairCounttotalVolumeUSDtotalVolumeETHuntrackedVolumeUSDtotalLiquidityUSDtotalLiquidityETHtxCountmostLiquidTokens(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_swap_index_.html b/docs/modules/_commands_swap_index_.html new file mode 100644 index 0000000..0e205f3 --- /dev/null +++ b/docs/modules/_commands_swap_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/swap/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/swap/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SwapDocument

+
SwapDocument: "query swap($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {swap(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}" = `query swap($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {swap(id: $id, block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_swaps_index_.html b/docs/modules/_commands_swaps_index_.html new file mode 100644 index 0000000..b18db5c --- /dev/null +++ b/docs/modules/_commands_swaps_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/swaps/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/swaps/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const SwapsDocument

+
SwapsDocument: "query swaps($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Swap_orderBy, $orderDirection5: OrderDirection, $where5: Swap_filter, $block: Block_height) {swaps(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestampsenderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}" = `query swaps($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Swap_orderBy, $orderDirection5: OrderDirection, $where5: Swap_filter, $block: Block_height) {swaps(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5block: $block) {idtransaction {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}timestampsenderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_token_index_.html b/docs/modules/_commands_token_index_.html new file mode 100644 index 0000000..a117390 --- /dev/null +++ b/docs/modules/_commands_token_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/token/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/token/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TokenDocument

+
TokenDocument: "query token($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $id: ID!, $block: Block_height) {token(id: $id, block: $block) {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}" = `query token($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $id: ID!, $block: Block_height) {token(id: $id, block: $block) {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_tokendaydata_index_.html b/docs/modules/_commands_tokendaydata_index_.html new file mode 100644 index 0000000..19ec82f --- /dev/null +++ b/docs/modules/_commands_tokendaydata_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/tokenDayData/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/tokenDayData/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TokenDayDataDocument

+
TokenDayDataDocument: "query tokenDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $id: ID!, $block: Block_height) {tokenDayData(id: $id, block: $block) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}" = `query tokenDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $id: ID!, $block: Block_height) {tokenDayData(id: $id, block: $block) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_tokendaydatas_index_.html b/docs/modules/_commands_tokendaydatas_index_.html new file mode 100644 index 0000000..d5060f7 --- /dev/null +++ b/docs/modules/_commands_tokendaydatas_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/tokenDayDatas/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/tokenDayDatas/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TokenDayDatasDocument

+
TokenDayDatasDocument: "query tokenDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $block: Block_height) {tokenDayDatas(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4block: $block) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}" = `query tokenDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $block: Block_height) {tokenDayDatas(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4block: $block) {iddatetoken {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}dailyVolumeTokendailyVolumeETHdailyVolumeUSDdailyTxnstotalLiquidityTokentotalLiquidityETHtotalLiquidityUSDpriceUSDmaxStoredmostLiquidPairs(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_tokens_index_.html b/docs/modules/_commands_tokens_index_.html new file mode 100644 index 0000000..93b3346 --- /dev/null +++ b/docs/modules/_commands_tokens_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/tokens/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/tokens/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TokensDocument

+
TokensDocument: "query tokens($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: Token_orderBy, $orderDirection3: OrderDirection, $where3: Token_filter, $block: Block_height) {tokens(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}" = `query tokens($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: Token_orderBy, $orderDirection3: OrderDirection, $where3: Token_filter, $block: Block_height) {tokens(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3block: $block) {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_transaction_index_.html b/docs/modules/_commands_transaction_index_.html new file mode 100644 index 0000000..57dd035 --- /dev/null +++ b/docs/modules/_commands_transaction_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/transaction/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/transaction/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TransactionDocument

+
TransactionDocument: "query transaction($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {transaction(id: $id, block: $block) {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}}" = `query transaction($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) {transaction(id: $id, block: $block) {idblockNumbertimestampmints(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampburns(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestampswaps(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtransaction {idblockNumbertimestamp}timestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_transactions_index_.html b/docs/modules/_commands_transactions_index_.html new file mode 100644 index 0000000..8dd6d26 --- /dev/null +++ b/docs/modules/_commands_transactions_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/transactions/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/transactions/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const TransactionsDocument

+
TransactionsDocument: "query transactions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $skip6: Int, $first6: Int, $orderBy6: Burn_orderBy, $orderDirection6: OrderDirection, $where6: Burn_filter, $skip7: Int, $first7: Int, $orderBy7: Swap_orderBy, $orderDirection7: OrderDirection, $where7: Swap_filter, $skip8: Int, $first8: Int, $orderBy8: Transaction_orderBy, $orderDirection8: OrderDirection, $where8: Transaction_filter, $block: Block_height) {transactions(skip: $skip8first: $first8orderBy: $orderBy8orderDirection: $orderDirection8where: $where8block: $block) {idblockNumbertimestampmints(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5) {idtransaction {idblockNumbertimestampmints(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampswaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamptoliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip6first: $first6orderBy: $orderBy6orderDirection: $orderDirection6where: $where6) {idtimestampliquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}swaps(skip: $skip7first: $first7orderBy: $orderBy7orderDirection: $orderDirection7where: $where7) {idtimestampsenderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}}" = `query transactions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $skip6: Int, $first6: Int, $orderBy6: Burn_orderBy, $orderDirection6: OrderDirection, $where6: Burn_filter, $skip7: Int, $first7: Int, $orderBy7: Swap_orderBy, $orderDirection7: OrderDirection, $where7: Swap_filter, $skip8: Int, $first8: Int, $orderBy8: Transaction_orderBy, $orderDirection8: OrderDirection, $where8: Transaction_filter, $block: Block_height) {transactions(skip: $skip8first: $first8orderBy: $orderBy8orderDirection: $orderDirection8where: $where8block: $block) {idblockNumbertimestampmints(skip: $skip5first: $first5orderBy: $orderBy5orderDirection: $orderDirection5where: $where5) {idtransaction {idblockNumbertimestampmints(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idtimestamppair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}toliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4) {idtransaction {idblockNumbertimestampswaps(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {idtransaction {idblockNumbertimestamp}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}senderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}timestamppair {idreserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}}timestamptoliquiditysenderamount0amount1logIndexamountUSDfeeTofeeLiquidity}burns(skip: $skip6first: $first6orderBy: $orderBy6orderDirection: $orderDirection6where: $where6) {idtimestampliquiditysenderamount0amount1tologIndexamountUSDneedsCompletefeeTofeeLiquidity}swaps(skip: $skip7first: $first7orderBy: $orderBy7orderDirection: $orderDirection7where: $where7) {idtimestampsenderamount0Inamount1Inamount0Outamount1OuttologIndexamountUSD}}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_user_index_.html b/docs/modules/_commands_user_index_.html new file mode 100644 index 0000000..518dfb1 --- /dev/null +++ b/docs/modules/_commands_user_index_.html @@ -0,0 +1,167 @@ + + + + + + "commands/user/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/user/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const UserDocument

+
UserDocument: "query user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {user(id: $id, block: $block) {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}}" = `query user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) {user(id: $id, block: $block) {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {iduser {idusdSwapped}pair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}}`
+ +
+
+

User Information Query

+
+
+
summary
+

GrraphQL Query for User Information

+
+
interface
+

{"\nquery user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy,...}

+
+
+
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_commands_users_index_.html b/docs/modules/_commands_users_index_.html new file mode 100644 index 0000000..4848a9a --- /dev/null +++ b/docs/modules/_commands_users_index_.html @@ -0,0 +1,154 @@ + + + + + + "commands/users/index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "commands/users/index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Classes

+ +
+
+

Variables

+ +
+
+
+
+
+

Variables

+
+ +

Const UsersDocument

+
UsersDocument: "query users($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $skip4: Int, $first4: Int, $orderBy4: User_orderBy, $orderDirection4: OrderDirection, $where4: User_filter, $block: Block_height) {users(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4block: $block) {idliquidityPositions(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}liquidityTokenBalance}usdSwapped}}" = `query users($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $skip4: Int, $first4: Int, $orderBy4: User_orderBy, $orderDirection4: OrderDirection, $where4: User_filter, $block: Block_height) {users(skip: $skip4first: $first4orderBy: $orderBy4orderDirection: $orderDirection4where: $where4block: $block) {idliquidityPositions(skip: $skip3first: $first3orderBy: $orderBy3orderDirection: $orderDirection3where: $where3) {iduser {idliquidityPositions(skip: $skip2first: $first2orderBy: $orderBy2orderDirection: $orderDirection2where: $where2) {idpair {idtoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skip1first: $first1orderBy: $orderBy1orderDirection: $orderDirection1where: $where1) {iddatepairAddresstoken0 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETHmostLiquidPairs(skip: $skipfirst: $firstorderBy: $orderByorderDirection: $orderDirectionwhere: $where) {iddatepairAddressreserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}reserve0reserve1totalSupplyreserveUSDdailyVolumeToken0dailyVolumeToken1dailyVolumeUSDdailyTxns}}token1 {idsymbolnamedecimalstotalSupplytradeVolumetradeVolumeUSDuntrackedVolumeUSDtxCounttotalLiquidityderivedETH}reserve0reserve1totalSupplyreserveETHreserveUSDtrackedReserveETHtoken0Pricetoken1PricevolumeToken0volumeToken1volumeUSDuntrackedVolumeUSDtxCountcreatedAtTimestampcreatedAtBlockNumberliquidityProviderCount}liquidityTokenBalance}usdSwapped}liquidityTokenBalance}usdSwapped}}`
+ +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_generated_graphql_.html b/docs/modules/_generated_graphql_.html new file mode 100644 index 0000000..fdcdd49 --- /dev/null +++ b/docs/modules/_generated_graphql_.html @@ -0,0 +1,7844 @@ + + + + + + "generated/graphql" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "generated/graphql"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumerations

+ +
+
+

Type aliases

+ +
+
+
+
+
+

Type aliases

+
+ +

Block_Height

+
Block_Height: { hash?: Maybe<Scalars["Bytes"]>; number?: Maybe<Scalars["Int"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional hash?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional number?: Maybe<Scalars["Int"]>
    +
  • +
+
+
+
+ +

Bundle

+
Bundle: { __typename?: undefined | "Bundle"; ethPrice: Scalars["BigDecimal"]; id: Scalars["ID"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Bundle"
    +
  • +
  • +
    ethPrice: Scalars["BigDecimal"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
+
+
+
+ +

Bundle_Filter

+
Bundle_Filter: { ethPrice?: Maybe<Scalars["BigDecimal"]>; ethPrice_gt?: Maybe<Scalars["BigDecimal"]>; ethPrice_gte?: Maybe<Scalars["BigDecimal"]>; ethPrice_in?: Maybe<Array<Scalars["BigDecimal"]>>; ethPrice_lt?: Maybe<Scalars["BigDecimal"]>; ethPrice_lte?: Maybe<Scalars["BigDecimal"]>; ethPrice_not?: Maybe<Scalars["BigDecimal"]>; ethPrice_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional ethPrice?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional ethPrice_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
+
+
+
+ +

Burn

+
Burn: { __typename?: undefined | "Burn"; amount0?: Maybe<Scalars["BigDecimal"]>; amount1?: Maybe<Scalars["BigDecimal"]>; amountUSD?: Maybe<Scalars["BigDecimal"]>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeTo?: Maybe<Scalars["Bytes"]>; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; logIndex?: Maybe<Scalars["BigInt"]>; needsComplete: Scalars["Boolean"]; pair: Pair; sender?: Maybe<Scalars["Bytes"]>; timestamp: Scalars["BigInt"]; to?: Maybe<Scalars["Bytes"]>; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Burn"
    +
  • +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    needsComplete: Scalars["Boolean"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Burn_Filter

+
Burn_Filter: { amount0?: Maybe<Scalars["BigDecimal"]>; amount0_gt?: Maybe<Scalars["BigDecimal"]>; amount0_gte?: Maybe<Scalars["BigDecimal"]>; amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0_lt?: Maybe<Scalars["BigDecimal"]>; amount0_lte?: Maybe<Scalars["BigDecimal"]>; amount0_not?: Maybe<Scalars["BigDecimal"]>; amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1?: Maybe<Scalars["BigDecimal"]>; amount1_gt?: Maybe<Scalars["BigDecimal"]>; amount1_gte?: Maybe<Scalars["BigDecimal"]>; amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1_lt?: Maybe<Scalars["BigDecimal"]>; amount1_lte?: Maybe<Scalars["BigDecimal"]>; amount1_not?: Maybe<Scalars["BigDecimal"]>; amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeTo?: Maybe<Scalars["Bytes"]>; feeTo_contains?: Maybe<Scalars["Bytes"]>; feeTo_in?: Maybe<Array<Scalars["Bytes"]>>; feeTo_not?: Maybe<Scalars["Bytes"]>; feeTo_not_contains?: Maybe<Scalars["Bytes"]>; feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; needsComplete?: Maybe<Scalars["Boolean"]>; needsComplete_in?: Maybe<Array<Scalars["Boolean"]>>; needsComplete_not?: Maybe<Scalars["Boolean"]>; needsComplete_not_in?: Maybe<Array<Scalars["Boolean"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional feeTo_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional needsComplete?: Maybe<Scalars["Boolean"]>
    +
  • +
  • +
    Optional needsComplete_in?: Maybe<Array<Scalars["Boolean"]>>
    +
  • +
  • +
    Optional needsComplete_not?: Maybe<Scalars["Boolean"]>
    +
  • +
  • +
    Optional needsComplete_not_in?: Maybe<Array<Scalars["Boolean"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

Exact

+
Exact<T>: {}
+ +

Type parameters

+
    +
  • +

    T: {}

    +
  • +
+
+

Type declaration

+
    +
+
+
+
+ +

LiquidityPosition

+
LiquidityPosition: { __typename?: undefined | "LiquidityPosition"; id: Scalars["ID"]; liquidityTokenBalance: Scalars["BigDecimal"]; pair: Pair; user: User }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "LiquidityPosition"
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityTokenBalance: Scalars["BigDecimal"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    user: User
    +
  • +
+
+
+
+ +

LiquidityPositionSnapshot

+
LiquidityPositionSnapshot: { __typename?: undefined | "LiquidityPositionSnapshot"; block: Scalars["Int"]; id: Scalars["ID"]; liquidityPosition: LiquidityPosition; liquidityTokenBalance: Scalars["BigDecimal"]; liquidityTokenTotalSupply: Scalars["BigDecimal"]; pair: Pair; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; timestamp: Scalars["Int"]; token0PriceUSD: Scalars["BigDecimal"]; token1PriceUSD: Scalars["BigDecimal"]; user: User }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "LiquidityPositionSnapshot"
    +
  • +
  • +
    block: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityPosition: LiquidityPosition
    +
  • +
  • +
    liquidityTokenBalance: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityTokenTotalSupply: Scalars["BigDecimal"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    timestamp: Scalars["Int"]
    +
  • +
  • +
    token0PriceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token1PriceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    user: User
    +
  • +
+
+
+
+ +

LiquidityPositionSnapshot_Filter

+
LiquidityPositionSnapshot_Filter: { block?: Maybe<Scalars["Int"]>; block_gt?: Maybe<Scalars["Int"]>; block_gte?: Maybe<Scalars["Int"]>; block_in?: Maybe<Array<Scalars["Int"]>>; block_lt?: Maybe<Scalars["Int"]>; block_lte?: Maybe<Scalars["Int"]>; block_not?: Maybe<Scalars["Int"]>; block_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityPosition?: Maybe<Scalars["String"]>; liquidityPosition_contains?: Maybe<Scalars["String"]>; liquidityPosition_ends_with?: Maybe<Scalars["String"]>; liquidityPosition_gt?: Maybe<Scalars["String"]>; liquidityPosition_gte?: Maybe<Scalars["String"]>; liquidityPosition_in?: Maybe<Array<Scalars["String"]>>; liquidityPosition_lt?: Maybe<Scalars["String"]>; liquidityPosition_lte?: Maybe<Scalars["String"]>; liquidityPosition_not?: Maybe<Scalars["String"]>; liquidityPosition_not_contains?: Maybe<Scalars["String"]>; liquidityPosition_not_ends_with?: Maybe<Scalars["String"]>; liquidityPosition_not_in?: Maybe<Array<Scalars["String"]>>; liquidityPosition_not_starts_with?: Maybe<Scalars["String"]>; liquidityPosition_starts_with?: Maybe<Scalars["String"]>; liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenTotalSupply?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenTotalSupply_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; timestamp?: Maybe<Scalars["Int"]>; timestamp_gt?: Maybe<Scalars["Int"]>; timestamp_gte?: Maybe<Scalars["Int"]>; timestamp_in?: Maybe<Array<Scalars["Int"]>>; timestamp_lt?: Maybe<Scalars["Int"]>; timestamp_lte?: Maybe<Scalars["Int"]>; timestamp_not?: Maybe<Scalars["Int"]>; timestamp_not_in?: Maybe<Array<Scalars["Int"]>>; token0PriceUSD?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_not?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1PriceUSD?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_not?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; user?: Maybe<Scalars["String"]>; user_contains?: Maybe<Scalars["String"]>; user_ends_with?: Maybe<Scalars["String"]>; user_gt?: Maybe<Scalars["String"]>; user_gte?: Maybe<Scalars["String"]>; user_in?: Maybe<Array<Scalars["String"]>>; user_lt?: Maybe<Scalars["String"]>; user_lte?: Maybe<Scalars["String"]>; user_not?: Maybe<Scalars["String"]>; user_not_contains?: Maybe<Scalars["String"]>; user_not_ends_with?: Maybe<Scalars["String"]>; user_not_in?: Maybe<Array<Scalars["String"]>>; user_not_starts_with?: Maybe<Scalars["String"]>; user_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional block_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityPosition?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional liquidityPosition_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional liquidityPosition_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional token0PriceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1PriceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional user?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

LiquidityPosition_Filter

+
LiquidityPosition_Filter: { id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; user?: Maybe<Scalars["String"]>; user_contains?: Maybe<Scalars["String"]>; user_ends_with?: Maybe<Scalars["String"]>; user_gt?: Maybe<Scalars["String"]>; user_gte?: Maybe<Scalars["String"]>; user_in?: Maybe<Array<Scalars["String"]>>; user_lt?: Maybe<Scalars["String"]>; user_lte?: Maybe<Scalars["String"]>; user_not?: Maybe<Scalars["String"]>; user_not_contains?: Maybe<Scalars["String"]>; user_not_ends_with?: Maybe<Scalars["String"]>; user_not_in?: Maybe<Array<Scalars["String"]>>; user_not_starts_with?: Maybe<Scalars["String"]>; user_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

MakeMaybe

+
MakeMaybe<T, K>: Omit<T, K> & {}
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
  • +

    K: keyof T

    +
  • +
+
+
+ +

MakeOptional

+
MakeOptional<T, K>: Omit<T, K> & {}
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
  • +

    K: keyof T

    +
  • +
+
+
+ +

Maybe

+
Maybe<T>: T | null
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
+
+
+ +

Mint

+
Mint: { __typename?: undefined | "Mint"; amount0?: Maybe<Scalars["BigDecimal"]>; amount1?: Maybe<Scalars["BigDecimal"]>; amountUSD?: Maybe<Scalars["BigDecimal"]>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeTo?: Maybe<Scalars["Bytes"]>; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; logIndex?: Maybe<Scalars["BigInt"]>; pair: Pair; sender?: Maybe<Scalars["Bytes"]>; timestamp: Scalars["BigInt"]; to: Scalars["Bytes"]; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Mint"
    +
  • +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    to: Scalars["Bytes"]
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Mint_Filter

+
Mint_Filter: { amount0?: Maybe<Scalars["BigDecimal"]>; amount0_gt?: Maybe<Scalars["BigDecimal"]>; amount0_gte?: Maybe<Scalars["BigDecimal"]>; amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0_lt?: Maybe<Scalars["BigDecimal"]>; amount0_lte?: Maybe<Scalars["BigDecimal"]>; amount0_not?: Maybe<Scalars["BigDecimal"]>; amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1?: Maybe<Scalars["BigDecimal"]>; amount1_gt?: Maybe<Scalars["BigDecimal"]>; amount1_gte?: Maybe<Scalars["BigDecimal"]>; amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1_lt?: Maybe<Scalars["BigDecimal"]>; amount1_lte?: Maybe<Scalars["BigDecimal"]>; amount1_not?: Maybe<Scalars["BigDecimal"]>; amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeTo?: Maybe<Scalars["Bytes"]>; feeTo_contains?: Maybe<Scalars["Bytes"]>; feeTo_in?: Maybe<Array<Scalars["Bytes"]>>; feeTo_not?: Maybe<Scalars["Bytes"]>; feeTo_not_contains?: Maybe<Scalars["Bytes"]>; feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional feeTo_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

Pair

+
Pair: { __typename?: undefined | "Pair"; createdAtBlockNumber: Scalars["BigInt"]; createdAtTimestamp: Scalars["BigInt"]; id: Scalars["ID"]; liquidityProviderCount: Scalars["BigInt"]; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveETH: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; token0: Token; token0Price: Scalars["BigDecimal"]; token1: Token; token1Price: Scalars["BigDecimal"]; totalSupply: Scalars["BigDecimal"]; trackedReserveETH: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"]; volumeToken0: Scalars["BigDecimal"]; volumeToken1: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Pair"
    +
  • +
  • +
    createdAtBlockNumber: Scalars["BigInt"]
    +
  • +
  • +
    createdAtTimestamp: Scalars["BigInt"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityProviderCount: Scalars["BigInt"]
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveETH: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token0: Token
    +
  • +
  • +
    token0Price: Scalars["BigDecimal"]
    +
  • +
  • +
    token1: Token
    +
  • +
  • +
    token1Price: Scalars["BigDecimal"]
    +
  • +
  • +
    totalSupply: Scalars["BigDecimal"]
    +
  • +
  • +
    trackedReserveETH: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairDayData

+
PairDayData: { __typename?: undefined | "PairDayData"; dailyTxns: Scalars["BigInt"]; dailyVolumeToken0: Scalars["BigDecimal"]; dailyVolumeToken1: Scalars["BigDecimal"]; dailyVolumeUSD: Scalars["BigDecimal"]; date: Scalars["Int"]; id: Scalars["ID"]; pairAddress: Scalars["Bytes"]; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; token0: Token; token1: Token; totalSupply: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "PairDayData"
    +
  • +
  • +
    dailyTxns: Scalars["BigInt"]
    +
  • +
  • +
    dailyVolumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    pairAddress: Scalars["Bytes"]
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token0: Token
    +
  • +
  • +
    token1: Token
    +
  • +
  • +
    totalSupply: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairDayData_Filter

+
PairDayData_Filter: { dailyTxns?: Maybe<Scalars["BigInt"]>; dailyTxns_gt?: Maybe<Scalars["BigInt"]>; dailyTxns_gte?: Maybe<Scalars["BigInt"]>; dailyTxns_in?: Maybe<Array<Scalars["BigInt"]>>; dailyTxns_lt?: Maybe<Scalars["BigInt"]>; dailyTxns_lte?: Maybe<Scalars["BigInt"]>; dailyTxns_not?: Maybe<Scalars["BigInt"]>; dailyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>; dailyVolumeToken0?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeToken1?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; pairAddress?: Maybe<Scalars["Bytes"]>; pairAddress_contains?: Maybe<Scalars["Bytes"]>; pairAddress_in?: Maybe<Array<Scalars["Bytes"]>>; pairAddress_not?: Maybe<Scalars["Bytes"]>; pairAddress_not_contains?: Maybe<Scalars["Bytes"]>; pairAddress_not_in?: Maybe<Array<Scalars["Bytes"]>>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0?: Maybe<Scalars["String"]>; token0_contains?: Maybe<Scalars["String"]>; token0_ends_with?: Maybe<Scalars["String"]>; token0_gt?: Maybe<Scalars["String"]>; token0_gte?: Maybe<Scalars["String"]>; token0_in?: Maybe<Array<Scalars["String"]>>; token0_lt?: Maybe<Scalars["String"]>; token0_lte?: Maybe<Scalars["String"]>; token0_not?: Maybe<Scalars["String"]>; token0_not_contains?: Maybe<Scalars["String"]>; token0_not_ends_with?: Maybe<Scalars["String"]>; token0_not_in?: Maybe<Array<Scalars["String"]>>; token0_not_starts_with?: Maybe<Scalars["String"]>; token0_starts_with?: Maybe<Scalars["String"]>; token1?: Maybe<Scalars["String"]>; token1_contains?: Maybe<Scalars["String"]>; token1_ends_with?: Maybe<Scalars["String"]>; token1_gt?: Maybe<Scalars["String"]>; token1_gte?: Maybe<Scalars["String"]>; token1_in?: Maybe<Array<Scalars["String"]>>; token1_lt?: Maybe<Scalars["String"]>; token1_lte?: Maybe<Scalars["String"]>; token1_not?: Maybe<Scalars["String"]>; token1_not_contains?: Maybe<Scalars["String"]>; token1_not_ends_with?: Maybe<Scalars["String"]>; token1_not_in?: Maybe<Array<Scalars["String"]>>; token1_not_starts_with?: Maybe<Scalars["String"]>; token1_starts_with?: Maybe<Scalars["String"]>; totalSupply?: Maybe<Scalars["BigDecimal"]>; totalSupply_gt?: Maybe<Scalars["BigDecimal"]>; totalSupply_gte?: Maybe<Scalars["BigDecimal"]>; totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalSupply_lt?: Maybe<Scalars["BigDecimal"]>; totalSupply_lte?: Maybe<Scalars["BigDecimal"]>; totalSupply_not?: Maybe<Scalars["BigDecimal"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional dailyTxns?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional dailyTxns_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional dailyVolumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional pairAddress?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional pairAddress_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional pairAddress_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional pairAddress_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional pairAddress_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional pairAddress_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

PairHourData

+
PairHourData: { __typename?: undefined | "PairHourData"; hourStartUnix: Scalars["Int"]; hourlyTxns: Scalars["BigInt"]; hourlyVolumeToken0: Scalars["BigDecimal"]; hourlyVolumeToken1: Scalars["BigDecimal"]; hourlyVolumeUSD: Scalars["BigDecimal"]; id: Scalars["ID"]; pair: Pair; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "PairHourData"
    +
  • +
  • +
    hourStartUnix: Scalars["Int"]
    +
  • +
  • +
    hourlyTxns: Scalars["BigInt"]
    +
  • +
  • +
    hourlyVolumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    hourlyVolumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    hourlyVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairHourData_Filter

+
PairHourData_Filter: { hourStartUnix?: Maybe<Scalars["Int"]>; hourStartUnix_gt?: Maybe<Scalars["Int"]>; hourStartUnix_gte?: Maybe<Scalars["Int"]>; hourStartUnix_in?: Maybe<Array<Scalars["Int"]>>; hourStartUnix_lt?: Maybe<Scalars["Int"]>; hourStartUnix_lte?: Maybe<Scalars["Int"]>; hourStartUnix_not?: Maybe<Scalars["Int"]>; hourStartUnix_not_in?: Maybe<Array<Scalars["Int"]>>; hourlyTxns?: Maybe<Scalars["BigInt"]>; hourlyTxns_gt?: Maybe<Scalars["BigInt"]>; hourlyTxns_gte?: Maybe<Scalars["BigInt"]>; hourlyTxns_in?: Maybe<Array<Scalars["BigInt"]>>; hourlyTxns_lt?: Maybe<Scalars["BigInt"]>; hourlyTxns_lte?: Maybe<Scalars["BigInt"]>; hourlyTxns_not?: Maybe<Scalars["BigInt"]>; hourlyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>; hourlyVolumeToken0?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; hourlyVolumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_not?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; hourlyVolumeToken1?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; hourlyVolumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_not?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; hourlyVolumeUSD?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; hourlyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; hourlyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional hourStartUnix?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional hourStartUnix_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional hourStartUnix_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional hourlyTxns?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional hourlyTxns_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional hourlyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional hourlyVolumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional hourlyVolumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional hourlyVolumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional hourlyVolumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional hourlyVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional hourlyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional hourlyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Pair_Filter

+
Pair_Filter: { createdAtBlockNumber?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_gt?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_gte?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_in?: Maybe<Array<Scalars["BigInt"]>>; createdAtBlockNumber_lt?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_lte?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_not?: Maybe<Scalars["BigInt"]>; createdAtBlockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>; createdAtTimestamp?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_gt?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_gte?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_in?: Maybe<Array<Scalars["BigInt"]>>; createdAtTimestamp_lt?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_lte?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_not?: Maybe<Scalars["BigInt"]>; createdAtTimestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityProviderCount?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_gt?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_gte?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_in?: Maybe<Array<Scalars["BigInt"]>>; liquidityProviderCount_lt?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_lte?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_not?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveETH?: Maybe<Scalars["BigDecimal"]>; reserveETH_gt?: Maybe<Scalars["BigDecimal"]>; reserveETH_gte?: Maybe<Scalars["BigDecimal"]>; reserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveETH_lt?: Maybe<Scalars["BigDecimal"]>; reserveETH_lte?: Maybe<Scalars["BigDecimal"]>; reserveETH_not?: Maybe<Scalars["BigDecimal"]>; reserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0?: Maybe<Scalars["String"]>; token0Price?: Maybe<Scalars["BigDecimal"]>; token0Price_gt?: Maybe<Scalars["BigDecimal"]>; token0Price_gte?: Maybe<Scalars["BigDecimal"]>; token0Price_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0Price_lt?: Maybe<Scalars["BigDecimal"]>; token0Price_lte?: Maybe<Scalars["BigDecimal"]>; token0Price_not?: Maybe<Scalars["BigDecimal"]>; token0Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0_contains?: Maybe<Scalars["String"]>; token0_ends_with?: Maybe<Scalars["String"]>; token0_gt?: Maybe<Scalars["String"]>; token0_gte?: Maybe<Scalars["String"]>; token0_in?: Maybe<Array<Scalars["String"]>>; token0_lt?: Maybe<Scalars["String"]>; token0_lte?: Maybe<Scalars["String"]>; token0_not?: Maybe<Scalars["String"]>; token0_not_contains?: Maybe<Scalars["String"]>; token0_not_ends_with?: Maybe<Scalars["String"]>; token0_not_in?: Maybe<Array<Scalars["String"]>>; token0_not_starts_with?: Maybe<Scalars["String"]>; token0_starts_with?: Maybe<Scalars["String"]>; token1?: Maybe<Scalars["String"]>; token1Price?: Maybe<Scalars["BigDecimal"]>; token1Price_gt?: Maybe<Scalars["BigDecimal"]>; token1Price_gte?: Maybe<Scalars["BigDecimal"]>; token1Price_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1Price_lt?: Maybe<Scalars["BigDecimal"]>; token1Price_lte?: Maybe<Scalars["BigDecimal"]>; token1Price_not?: Maybe<Scalars["BigDecimal"]>; token1Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1_contains?: Maybe<Scalars["String"]>; token1_ends_with?: Maybe<Scalars["String"]>; token1_gt?: Maybe<Scalars["String"]>; token1_gte?: Maybe<Scalars["String"]>; token1_in?: Maybe<Array<Scalars["String"]>>; token1_lt?: Maybe<Scalars["String"]>; token1_lte?: Maybe<Scalars["String"]>; token1_not?: Maybe<Scalars["String"]>; token1_not_contains?: Maybe<Scalars["String"]>; token1_not_ends_with?: Maybe<Scalars["String"]>; token1_not_in?: Maybe<Array<Scalars["String"]>>; token1_not_starts_with?: Maybe<Scalars["String"]>; token1_starts_with?: Maybe<Scalars["String"]>; totalSupply?: Maybe<Scalars["BigDecimal"]>; totalSupply_gt?: Maybe<Scalars["BigDecimal"]>; totalSupply_gte?: Maybe<Scalars["BigDecimal"]>; totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalSupply_lt?: Maybe<Scalars["BigDecimal"]>; totalSupply_lte?: Maybe<Scalars["BigDecimal"]>; totalSupply_not?: Maybe<Scalars["BigDecimal"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; trackedReserveETH?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_gt?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_gte?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; trackedReserveETH_lt?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_lte?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_not?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional createdAtBlockNumber?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional createdAtBlockNumber_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtBlockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional createdAtTimestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional createdAtTimestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional createdAtTimestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityProviderCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional liquidityProviderCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0Price?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0Price_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1Price?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1Price_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional trackedReserveETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional trackedReserveETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Query

+
Query: { __typename?: undefined | "Query"; _meta?: Maybe<_Meta_>; bundle?: Maybe<Bundle>; bundles: Array<Bundle>; burn?: Maybe<Burn>; burns: Array<Burn>; liquidityPosition?: Maybe<LiquidityPosition>; liquidityPositionSnapshot?: Maybe<LiquidityPositionSnapshot>; liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>; liquidityPositions: Array<LiquidityPosition>; mint?: Maybe<Mint>; mints: Array<Mint>; pair?: Maybe<Pair>; pairDayData?: Maybe<PairDayData>; pairDayDatas: Array<PairDayData>; pairHourData?: Maybe<PairHourData>; pairHourDatas: Array<PairHourData>; pairs: Array<Pair>; sushiswapDayData?: Maybe<SushiswapDayData>; sushiswapDayDatas: Array<SushiswapDayData>; sushiswapFactories: Array<SushiswapFactory>; sushiswapFactory?: Maybe<SushiswapFactory>; swap?: Maybe<Swap>; swaps: Array<Swap>; token?: Maybe<Token>; tokenDayData?: Maybe<TokenDayData>; tokenDayDatas: Array<TokenDayData>; tokens: Array<Token>; transaction?: Maybe<Transaction>; transactions: Array<Transaction>; user?: Maybe<User>; users: Array<User> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBundleArgs

+
QueryBundleArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBundlesArgs

+
QueryBundlesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Bundle_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Bundle_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBurnArgs

+
QueryBurnArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBurnsArgs

+
QueryBurnsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionArgs

+
QueryLiquidityPositionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionSnapshotArgs

+
QueryLiquidityPositionSnapshotArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionSnapshotsArgs

+
QueryLiquidityPositionSnapshotsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionsArgs

+
QueryLiquidityPositionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryMintArgs

+
QueryMintArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryMintsArgs

+
QueryMintsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairArgs

+
QueryPairArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairDayDataArgs

+
QueryPairDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairDayDatasArgs

+
QueryPairDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairHourDataArgs

+
QueryPairHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairHourDatasArgs

+
QueryPairHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairsArgs

+
QueryPairsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySushiswapDayDataArgs

+
QuerySushiswapDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySushiswapDayDatasArgs

+
QuerySushiswapDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<SushiswapDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<SushiswapDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySushiswapFactoriesArgs

+
QuerySushiswapFactoriesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<SushiswapFactory_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<SushiswapFactory_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySushiswapFactoryArgs

+
QuerySushiswapFactoryArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySwapArgs

+
QuerySwapArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySwapsArgs

+
QuerySwapsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenArgs

+
QueryTokenArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenDayDataArgs

+
QueryTokenDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenDayDatasArgs

+
QueryTokenDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokensArgs

+
QueryTokensArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Token_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Token_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTransactionArgs

+
QueryTransactionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTransactionsArgs

+
QueryTransactionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Transaction_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Transaction_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryUserArgs

+
QueryUserArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryUsersArgs

+
QueryUsersArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<User_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<User_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Query_MetaArgs

+
Query_MetaArgs: { block?: Maybe<Block_Height> }
+ +
+

Type declaration

+ +
+
+
+ +

Scalars

+
Scalars: { BigDecimal: any; BigInt: any; Boolean: boolean; Bytes: any; Float: number; ID: string; Int: number; String: string }
+ +
+
+

All built-in and custom scalars, mapped to their actual values

+
+
+
+

Type declaration

+
    +
  • +
    BigDecimal: any
    +
  • +
  • +
    BigInt: any
    +
  • +
  • +
    Boolean: boolean
    +
  • +
  • +
    Bytes: any
    +
  • +
  • +
    Float: number
    +
  • +
  • +
    ID: string
    +
  • +
  • +
    Int: number
    +
  • +
  • +
    String: string
    +
  • +
+
+
+
+ +

Subscription

+
Subscription: { __typename?: undefined | "Subscription"; _meta?: Maybe<_Meta_>; bundle?: Maybe<Bundle>; bundles: Array<Bundle>; burn?: Maybe<Burn>; burns: Array<Burn>; liquidityPosition?: Maybe<LiquidityPosition>; liquidityPositionSnapshot?: Maybe<LiquidityPositionSnapshot>; liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>; liquidityPositions: Array<LiquidityPosition>; mint?: Maybe<Mint>; mints: Array<Mint>; pair?: Maybe<Pair>; pairDayData?: Maybe<PairDayData>; pairDayDatas: Array<PairDayData>; pairHourData?: Maybe<PairHourData>; pairHourDatas: Array<PairHourData>; pairs: Array<Pair>; sushiswapDayData?: Maybe<SushiswapDayData>; sushiswapDayDatas: Array<SushiswapDayData>; sushiswapFactories: Array<SushiswapFactory>; sushiswapFactory?: Maybe<SushiswapFactory>; swap?: Maybe<Swap>; swaps: Array<Swap>; token?: Maybe<Token>; tokenDayData?: Maybe<TokenDayData>; tokenDayDatas: Array<TokenDayData>; tokens: Array<Token>; transaction?: Maybe<Transaction>; transactions: Array<Transaction>; user?: Maybe<User>; users: Array<User> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBundleArgs

+
SubscriptionBundleArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBundlesArgs

+
SubscriptionBundlesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Bundle_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Bundle_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBurnArgs

+
SubscriptionBurnArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBurnsArgs

+
SubscriptionBurnsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionArgs

+
SubscriptionLiquidityPositionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionSnapshotArgs

+
SubscriptionLiquidityPositionSnapshotArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionSnapshotsArgs

+
SubscriptionLiquidityPositionSnapshotsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionsArgs

+
SubscriptionLiquidityPositionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionMintArgs

+
SubscriptionMintArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionMintsArgs

+
SubscriptionMintsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairArgs

+
SubscriptionPairArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairDayDataArgs

+
SubscriptionPairDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairDayDatasArgs

+
SubscriptionPairDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairHourDataArgs

+
SubscriptionPairHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairHourDatasArgs

+
SubscriptionPairHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairsArgs

+
SubscriptionPairsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSushiswapDayDataArgs

+
SubscriptionSushiswapDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSushiswapDayDatasArgs

+
SubscriptionSushiswapDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<SushiswapDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<SushiswapDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSushiswapFactoriesArgs

+
SubscriptionSushiswapFactoriesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<SushiswapFactory_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<SushiswapFactory_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSushiswapFactoryArgs

+
SubscriptionSushiswapFactoryArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSwapArgs

+
SubscriptionSwapArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSwapsArgs

+
SubscriptionSwapsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenArgs

+
SubscriptionTokenArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenDayDataArgs

+
SubscriptionTokenDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenDayDatasArgs

+
SubscriptionTokenDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokensArgs

+
SubscriptionTokensArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Token_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Token_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTransactionArgs

+
SubscriptionTransactionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTransactionsArgs

+
SubscriptionTransactionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Transaction_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Transaction_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionUserArgs

+
SubscriptionUserArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionUsersArgs

+
SubscriptionUsersArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<User_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<User_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Subscription_MetaArgs

+
Subscription_MetaArgs: { block?: Maybe<Block_Height> }
+ +
+

Type declaration

+ +
+
+
+ +

SushiswapDayData

+
SushiswapDayData: { __typename?: undefined | "SushiswapDayData"; dailyVolumeETH: Scalars["BigDecimal"]; dailyVolumeUSD: Scalars["BigDecimal"]; dailyVolumeUntracked: Scalars["BigDecimal"]; date: Scalars["Int"]; id: Scalars["ID"]; maxStored?: Maybe<Scalars["Int"]>; mostLiquidTokens: Array<TokenDayData>; totalLiquidityETH: Scalars["BigDecimal"]; totalLiquidityUSD: Scalars["BigDecimal"]; totalVolumeETH: Scalars["BigDecimal"]; totalVolumeUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "SushiswapDayData"
    +
  • +
  • +
    dailyVolumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeUntracked: Scalars["BigDecimal"]
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    Optional maxStored?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    mostLiquidTokens: Array<TokenDayData>
    +
  • +
  • +
    totalLiquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    totalLiquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    totalVolumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    totalVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
+
+
+
+ +

SushiswapDayDataMostLiquidTokensArgs

+
SushiswapDayDataMostLiquidTokensArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SushiswapDayData_Filter

+
SushiswapDayData_Filter: { dailyVolumeETH?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUntracked?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUntracked_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUntracked_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; maxStored?: Maybe<Scalars["Int"]>; maxStored_gt?: Maybe<Scalars["Int"]>; maxStored_gte?: Maybe<Scalars["Int"]>; maxStored_in?: Maybe<Array<Scalars["Int"]>>; maxStored_lt?: Maybe<Scalars["Int"]>; maxStored_lte?: Maybe<Scalars["Int"]>; maxStored_not?: Maybe<Scalars["Int"]>; maxStored_not_in?: Maybe<Array<Scalars["Int"]>>; mostLiquidTokens?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_contains?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_not?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_not_contains?: Maybe<Array<Scalars["String"]>>; totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeETH?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_not?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeUSD?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional dailyVolumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUntracked?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUntracked_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUntracked_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional maxStored?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional maxStored_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional mostLiquidTokens?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
+
+
+
+ +

SushiswapFactory

+
SushiswapFactory: { __typename?: undefined | "SushiswapFactory"; id: Scalars["ID"]; mostLiquidTokens: Array<TokenDayData>; pairCount: Scalars["Int"]; totalLiquidityETH: Scalars["BigDecimal"]; totalLiquidityUSD: Scalars["BigDecimal"]; totalVolumeETH: Scalars["BigDecimal"]; totalVolumeUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "SushiswapFactory"
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    mostLiquidTokens: Array<TokenDayData>
    +
  • +
  • +
    pairCount: Scalars["Int"]
    +
  • +
  • +
    totalLiquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    totalLiquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    totalVolumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    totalVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

SushiswapFactoryMostLiquidTokensArgs

+
SushiswapFactoryMostLiquidTokensArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SushiswapFactory_Filter

+
SushiswapFactory_Filter: { id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; mostLiquidTokens?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_contains?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_not?: Maybe<Array<Scalars["String"]>>; mostLiquidTokens_not_contains?: Maybe<Array<Scalars["String"]>>; pairCount?: Maybe<Scalars["Int"]>; pairCount_gt?: Maybe<Scalars["Int"]>; pairCount_gte?: Maybe<Scalars["Int"]>; pairCount_in?: Maybe<Array<Scalars["Int"]>>; pairCount_lt?: Maybe<Scalars["Int"]>; pairCount_lte?: Maybe<Scalars["Int"]>; pairCount_not?: Maybe<Scalars["Int"]>; pairCount_not_in?: Maybe<Array<Scalars["Int"]>>; totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeETH?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_not?: Maybe<Scalars["BigDecimal"]>; totalVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeUSD?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; totalVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional mostLiquidTokens?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidTokens_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pairCount?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional pairCount_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional pairCount_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Swap

+
Swap: { __typename?: undefined | "Swap"; amount0In: Scalars["BigDecimal"]; amount0Out: Scalars["BigDecimal"]; amount1In: Scalars["BigDecimal"]; amount1Out: Scalars["BigDecimal"]; amountUSD: Scalars["BigDecimal"]; id: Scalars["ID"]; logIndex?: Maybe<Scalars["BigInt"]>; pair: Pair; sender: Scalars["Bytes"]; timestamp: Scalars["BigInt"]; to: Scalars["Bytes"]; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Swap"
    +
  • +
  • +
    amount0In: Scalars["BigDecimal"]
    +
  • +
  • +
    amount0Out: Scalars["BigDecimal"]
    +
  • +
  • +
    amount1In: Scalars["BigDecimal"]
    +
  • +
  • +
    amount1Out: Scalars["BigDecimal"]
    +
  • +
  • +
    amountUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    sender: Scalars["Bytes"]
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    to: Scalars["Bytes"]
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Swap_Filter

+
Swap_Filter: { amount0In?: Maybe<Scalars["BigDecimal"]>; amount0In_gt?: Maybe<Scalars["BigDecimal"]>; amount0In_gte?: Maybe<Scalars["BigDecimal"]>; amount0In_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0In_lt?: Maybe<Scalars["BigDecimal"]>; amount0In_lte?: Maybe<Scalars["BigDecimal"]>; amount0In_not?: Maybe<Scalars["BigDecimal"]>; amount0In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0Out?: Maybe<Scalars["BigDecimal"]>; amount0Out_gt?: Maybe<Scalars["BigDecimal"]>; amount0Out_gte?: Maybe<Scalars["BigDecimal"]>; amount0Out_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0Out_lt?: Maybe<Scalars["BigDecimal"]>; amount0Out_lte?: Maybe<Scalars["BigDecimal"]>; amount0Out_not?: Maybe<Scalars["BigDecimal"]>; amount0Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1In?: Maybe<Scalars["BigDecimal"]>; amount1In_gt?: Maybe<Scalars["BigDecimal"]>; amount1In_gte?: Maybe<Scalars["BigDecimal"]>; amount1In_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1In_lt?: Maybe<Scalars["BigDecimal"]>; amount1In_lte?: Maybe<Scalars["BigDecimal"]>; amount1In_not?: Maybe<Scalars["BigDecimal"]>; amount1In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1Out?: Maybe<Scalars["BigDecimal"]>; amount1Out_gt?: Maybe<Scalars["BigDecimal"]>; amount1Out_gte?: Maybe<Scalars["BigDecimal"]>; amount1Out_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1Out_lt?: Maybe<Scalars["BigDecimal"]>; amount1Out_lte?: Maybe<Scalars["BigDecimal"]>; amount1Out_not?: Maybe<Scalars["BigDecimal"]>; amount1Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0In?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0In_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0Out?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0Out_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1In?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1In_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1Out?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1Out_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

Token

+
Token: { __typename?: undefined | "Token"; decimals: Scalars["BigInt"]; derivedETH?: Maybe<Scalars["BigDecimal"]>; id: Scalars["ID"]; mostLiquidPairs: Array<Maybe<PairDayData>>; name: Scalars["String"]; symbol: Scalars["String"]; totalLiquidity: Scalars["BigDecimal"]; totalSupply: Scalars["BigInt"]; tradeVolume: Scalars["BigDecimal"]; tradeVolumeUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Token"
    +
  • +
  • +
    decimals: Scalars["BigInt"]
    +
  • +
  • +
    Optional derivedETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    mostLiquidPairs: Array<Maybe<PairDayData>>
    +
  • +
  • +
    name: Scalars["String"]
    +
  • +
  • +
    symbol: Scalars["String"]
    +
  • +
  • +
    totalLiquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    totalSupply: Scalars["BigInt"]
    +
  • +
  • +
    tradeVolume: Scalars["BigDecimal"]
    +
  • +
  • +
    tradeVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

TokenDayData

+
TokenDayData: { __typename?: undefined | "TokenDayData"; dailyTxns: Scalars["BigInt"]; dailyVolumeETH: Scalars["BigDecimal"]; dailyVolumeToken: Scalars["BigDecimal"]; dailyVolumeUSD: Scalars["BigDecimal"]; date: Scalars["Int"]; id: Scalars["ID"]; maxStored: Scalars["Int"]; mostLiquidPairs: Array<PairDayData>; priceUSD: Scalars["BigDecimal"]; token: Token; totalLiquidityETH: Scalars["BigDecimal"]; totalLiquidityToken: Scalars["BigDecimal"]; totalLiquidityUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "TokenDayData"
    +
  • +
  • +
    dailyTxns: Scalars["BigInt"]
    +
  • +
  • +
    dailyVolumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeToken: Scalars["BigDecimal"]
    +
  • +
  • +
    dailyVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    maxStored: Scalars["Int"]
    +
  • +
  • +
    mostLiquidPairs: Array<PairDayData>
    +
  • +
  • +
    priceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token: Token
    +
  • +
  • +
    totalLiquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    totalLiquidityToken: Scalars["BigDecimal"]
    +
  • +
  • +
    totalLiquidityUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

TokenDayDataMostLiquidPairsArgs

+
TokenDayDataMostLiquidPairsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenDayData_Filter

+
TokenDayData_Filter: { dailyTxns?: Maybe<Scalars["BigInt"]>; dailyTxns_gt?: Maybe<Scalars["BigInt"]>; dailyTxns_gte?: Maybe<Scalars["BigInt"]>; dailyTxns_in?: Maybe<Array<Scalars["BigInt"]>>; dailyTxns_lt?: Maybe<Scalars["BigInt"]>; dailyTxns_lte?: Maybe<Scalars["BigInt"]>; dailyTxns_not?: Maybe<Scalars["BigInt"]>; dailyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>; dailyVolumeETH?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeToken?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeToken_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeToken_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; maxStored?: Maybe<Scalars["Int"]>; maxStored_gt?: Maybe<Scalars["Int"]>; maxStored_gte?: Maybe<Scalars["Int"]>; maxStored_in?: Maybe<Array<Scalars["Int"]>>; maxStored_lt?: Maybe<Scalars["Int"]>; maxStored_lte?: Maybe<Scalars["Int"]>; maxStored_not?: Maybe<Scalars["Int"]>; maxStored_not_in?: Maybe<Array<Scalars["Int"]>>; mostLiquidPairs?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_contains?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_not?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_not_contains?: Maybe<Array<Scalars["String"]>>; priceUSD?: Maybe<Scalars["BigDecimal"]>; priceUSD_gt?: Maybe<Scalars["BigDecimal"]>; priceUSD_gte?: Maybe<Scalars["BigDecimal"]>; priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; priceUSD_lt?: Maybe<Scalars["BigDecimal"]>; priceUSD_lte?: Maybe<Scalars["BigDecimal"]>; priceUSD_not?: Maybe<Scalars["BigDecimal"]>; priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token?: Maybe<Scalars["String"]>; token_contains?: Maybe<Scalars["String"]>; token_ends_with?: Maybe<Scalars["String"]>; token_gt?: Maybe<Scalars["String"]>; token_gte?: Maybe<Scalars["String"]>; token_in?: Maybe<Array<Scalars["String"]>>; token_lt?: Maybe<Scalars["String"]>; token_lte?: Maybe<Scalars["String"]>; token_not?: Maybe<Scalars["String"]>; token_not_contains?: Maybe<Scalars["String"]>; token_not_ends_with?: Maybe<Scalars["String"]>; token_not_in?: Maybe<Array<Scalars["String"]>>; token_not_starts_with?: Maybe<Scalars["String"]>; token_starts_with?: Maybe<Scalars["String"]>; totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityToken?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityToken_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityToken_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional dailyTxns?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional dailyTxns_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional dailyTxns_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional dailyVolumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeToken?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeToken_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeToken_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional dailyVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional dailyVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional maxStored?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional maxStored_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional maxStored_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional mostLiquidPairs?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional priceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional priceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalLiquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityToken?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityToken_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityToken_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

TokenMostLiquidPairsArgs

+
TokenMostLiquidPairsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Token_Filter

+
Token_Filter: { decimals?: Maybe<Scalars["BigInt"]>; decimals_gt?: Maybe<Scalars["BigInt"]>; decimals_gte?: Maybe<Scalars["BigInt"]>; decimals_in?: Maybe<Array<Scalars["BigInt"]>>; decimals_lt?: Maybe<Scalars["BigInt"]>; decimals_lte?: Maybe<Scalars["BigInt"]>; decimals_not?: Maybe<Scalars["BigInt"]>; decimals_not_in?: Maybe<Array<Scalars["BigInt"]>>; derivedETH?: Maybe<Scalars["BigDecimal"]>; derivedETH_gt?: Maybe<Scalars["BigDecimal"]>; derivedETH_gte?: Maybe<Scalars["BigDecimal"]>; derivedETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; derivedETH_lt?: Maybe<Scalars["BigDecimal"]>; derivedETH_lte?: Maybe<Scalars["BigDecimal"]>; derivedETH_not?: Maybe<Scalars["BigDecimal"]>; derivedETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; mostLiquidPairs?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_contains?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_not?: Maybe<Array<Scalars["String"]>>; mostLiquidPairs_not_contains?: Maybe<Array<Scalars["String"]>>; name?: Maybe<Scalars["String"]>; name_contains?: Maybe<Scalars["String"]>; name_ends_with?: Maybe<Scalars["String"]>; name_gt?: Maybe<Scalars["String"]>; name_gte?: Maybe<Scalars["String"]>; name_in?: Maybe<Array<Scalars["String"]>>; name_lt?: Maybe<Scalars["String"]>; name_lte?: Maybe<Scalars["String"]>; name_not?: Maybe<Scalars["String"]>; name_not_contains?: Maybe<Scalars["String"]>; name_not_ends_with?: Maybe<Scalars["String"]>; name_not_in?: Maybe<Array<Scalars["String"]>>; name_not_starts_with?: Maybe<Scalars["String"]>; name_starts_with?: Maybe<Scalars["String"]>; symbol?: Maybe<Scalars["String"]>; symbol_contains?: Maybe<Scalars["String"]>; symbol_ends_with?: Maybe<Scalars["String"]>; symbol_gt?: Maybe<Scalars["String"]>; symbol_gte?: Maybe<Scalars["String"]>; symbol_in?: Maybe<Array<Scalars["String"]>>; symbol_lt?: Maybe<Scalars["String"]>; symbol_lte?: Maybe<Scalars["String"]>; symbol_not?: Maybe<Scalars["String"]>; symbol_not_contains?: Maybe<Scalars["String"]>; symbol_not_ends_with?: Maybe<Scalars["String"]>; symbol_not_in?: Maybe<Array<Scalars["String"]>>; symbol_not_starts_with?: Maybe<Scalars["String"]>; symbol_starts_with?: Maybe<Scalars["String"]>; totalLiquidity?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_gt?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_gte?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalLiquidity_lt?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_lte?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_not?: Maybe<Scalars["BigDecimal"]>; totalLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalSupply?: Maybe<Scalars["BigInt"]>; totalSupply_gt?: Maybe<Scalars["BigInt"]>; totalSupply_gte?: Maybe<Scalars["BigInt"]>; totalSupply_in?: Maybe<Array<Scalars["BigInt"]>>; totalSupply_lt?: Maybe<Scalars["BigInt"]>; totalSupply_lte?: Maybe<Scalars["BigInt"]>; totalSupply_not?: Maybe<Scalars["BigInt"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigInt"]>>; tradeVolume?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; tradeVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; tradeVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; tradeVolume_gt?: Maybe<Scalars["BigDecimal"]>; tradeVolume_gte?: Maybe<Scalars["BigDecimal"]>; tradeVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>; tradeVolume_lt?: Maybe<Scalars["BigDecimal"]>; tradeVolume_lte?: Maybe<Scalars["BigDecimal"]>; tradeVolume_not?: Maybe<Scalars["BigDecimal"]>; tradeVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional decimals?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional decimals_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional derivedETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional derivedETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional mostLiquidPairs?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mostLiquidPairs_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional symbol_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional symbol_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalLiquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional tradeVolume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional tradeVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional tradeVolume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional tradeVolume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional tradeVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Transaction

+
Transaction: { __typename?: undefined | "Transaction"; blockNumber: Scalars["BigInt"]; burns: Array<Maybe<Burn>>; id: Scalars["ID"]; mints: Array<Maybe<Mint>>; swaps: Array<Maybe<Swap>>; timestamp: Scalars["BigInt"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Transaction"
    +
  • +
  • +
    blockNumber: Scalars["BigInt"]
    +
  • +
  • +
    burns: Array<Maybe<Burn>>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    mints: Array<Maybe<Mint>>
    +
  • +
  • +
    swaps: Array<Maybe<Swap>>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
+
+
+
+ +

TransactionBurnsArgs

+
TransactionBurnsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TransactionMintsArgs

+
TransactionMintsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TransactionSwapsArgs

+
TransactionSwapsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Transaction_Filter

+
Transaction_Filter: { blockNumber?: Maybe<Scalars["BigInt"]>; blockNumber_gt?: Maybe<Scalars["BigInt"]>; blockNumber_gte?: Maybe<Scalars["BigInt"]>; blockNumber_in?: Maybe<Array<Scalars["BigInt"]>>; blockNumber_lt?: Maybe<Scalars["BigInt"]>; blockNumber_lte?: Maybe<Scalars["BigInt"]>; blockNumber_not?: Maybe<Scalars["BigInt"]>; blockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>; burns?: Maybe<Array<Scalars["String"]>>; burns_contains?: Maybe<Array<Scalars["String"]>>; burns_not?: Maybe<Array<Scalars["String"]>>; burns_not_contains?: Maybe<Array<Scalars["String"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; mints?: Maybe<Array<Scalars["String"]>>; mints_contains?: Maybe<Array<Scalars["String"]>>; mints_not?: Maybe<Array<Scalars["String"]>>; mints_not_contains?: Maybe<Array<Scalars["String"]>>; swaps?: Maybe<Array<Scalars["String"]>>; swaps_contains?: Maybe<Array<Scalars["String"]>>; swaps_not?: Maybe<Array<Scalars["String"]>>; swaps_not_contains?: Maybe<Array<Scalars["String"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional blockNumber?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional blockNumber_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional burns?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional mints?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
+
+
+
+ +

User

+
User: { __typename?: undefined | "User"; id: Scalars["ID"]; liquidityPositions?: Maybe<Array<LiquidityPosition>>; usdSwapped: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "User"
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    Optional liquidityPositions?: Maybe<Array<LiquidityPosition>>
    +
  • +
  • +
    usdSwapped: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

UserLiquidityPositionsArgs

+
UserLiquidityPositionsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

User_Filter

+
User_Filter: { id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; usdSwapped?: Maybe<Scalars["BigDecimal"]>; usdSwapped_gt?: Maybe<Scalars["BigDecimal"]>; usdSwapped_gte?: Maybe<Scalars["BigDecimal"]>; usdSwapped_in?: Maybe<Array<Scalars["BigDecimal"]>>; usdSwapped_lt?: Maybe<Scalars["BigDecimal"]>; usdSwapped_lte?: Maybe<Scalars["BigDecimal"]>; usdSwapped_not?: Maybe<Scalars["BigDecimal"]>; usdSwapped_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional usdSwapped?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional usdSwapped_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional usdSwapped_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

_Block_

+
_Block_: { __typename?: undefined | "_Block_"; hash?: Maybe<Scalars["Bytes"]>; number: Scalars["Int"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "_Block_"
    +
  • +
  • +
    Optional hash?: Maybe<Scalars["Bytes"]>
    +
    +
    +

    The hash of the block

    +
    +
    +
  • +
  • +
    number: Scalars["Int"]
    +
    +
    +

    The block number

    +
    +
    +
  • +
+
+
+
+ +

_Meta_

+
_Meta_: { __typename?: undefined | "_Meta_"; block: _Block_; deployment: Scalars["String"]; hasIndexingErrors: Scalars["Boolean"] }
+ +
+
+

The type for the top-level _meta field

+
+
+
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "_Meta_"
    +
  • +
  • +
    block: _Block_
    +
    +
    +

    Information about a specific subgraph block. The hash of the block + will be null if the _meta field has a block constraint that asks for + a block number. It will be filled if the _meta field has no block constraint + and therefore asks for the latest block

    +
    +
    +
  • +
  • +
    deployment: Scalars["String"]
    +
    +
    +

    The deployment ID

    +
    +
    +
  • +
  • +
    hasIndexingErrors: Scalars["Boolean"]
    +
    +
    +

    If true, the subgraph encountered indexing errors at some past block

    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_handler_.html b/docs/modules/_handler_.html new file mode 100644 index 0000000..b890f5d --- /dev/null +++ b/docs/modules/_handler_.html @@ -0,0 +1,200 @@ + + + + + + "handler" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "handler"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Interfaces

+ +
+
+

Variables

+ +
+
+

Functions

+ +
+
+
+
+
+

Variables

+
+ +

Const client

+
client: GraphQLClient = new GraphQLClient('https://api.thegraph.com/subgraphs/name/sushiswap/exchange')
+ +
+
+
+

Functions

+
+ +

Const handler

+
    +
  • handler(__namedParameters: { command: Command; query: string; variables: undefined | Record<string, any> }): Promise<void>
  • +
+
    +
  • + +

    Parameters

    +
      +
    • +
      __namedParameters: { command: Command; query: string; variables: undefined | Record<string, any> }
      +
        +
      • +
        command: Command
        +
      • +
      • +
        query: string
        +
      • +
      • +
        variables: undefined | Record<string, any>
        +
      • +
      +
    • +
    +

    Returns Promise<void>

    +
  • +
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_index_.html b/docs/modules/_index_.html new file mode 100644 index 0000000..b10602b --- /dev/null +++ b/docs/modules/_index_.html @@ -0,0 +1,140 @@ + + + + + + "index" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "index"

+
+
+
+
+
+
+
+

Index

+
+
+
+

References

+ +
+
+
+
+
+

References

+
+ +

run

+ Re-exports run +
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/modules/_types_.html b/docs/modules/_types_.html new file mode 100644 index 0000000..dbaf789 --- /dev/null +++ b/docs/modules/_types_.html @@ -0,0 +1,9531 @@ + + + + + + "types" | sushi-sh + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +

Module "types"

+
+
+
+
+
+
+
+

Index

+
+
+
+

Enumerations

+ +
+
+

Type aliases

+ +
+
+
+
+
+

Type aliases

+
+ +

Block_Height

+
Block_Height: { hash?: Maybe<Scalars["Bytes"]>; number?: Maybe<Scalars["Int"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional hash?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional number?: Maybe<Scalars["Int"]>
    +
  • +
+
+
+
+ +

Bundle

+
Bundle: { __typename?: undefined | "Bundle"; ethPrice: Scalars["BigDecimal"]; id: Scalars["ID"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Bundle"
    +
  • +
  • +
    ethPrice: Scalars["BigDecimal"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
+
+
+
+ +

Bundle_Filter

+
Bundle_Filter: { ethPrice?: Maybe<Scalars["BigDecimal"]>; ethPrice_gt?: Maybe<Scalars["BigDecimal"]>; ethPrice_gte?: Maybe<Scalars["BigDecimal"]>; ethPrice_in?: Maybe<Array<Scalars["BigDecimal"]>>; ethPrice_lt?: Maybe<Scalars["BigDecimal"]>; ethPrice_lte?: Maybe<Scalars["BigDecimal"]>; ethPrice_not?: Maybe<Scalars["BigDecimal"]>; ethPrice_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional ethPrice?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional ethPrice_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional ethPrice_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
+
+
+
+ +

Burn

+
Burn: { __typename?: undefined | "Burn"; amount0?: Maybe<Scalars["BigDecimal"]>; amount1?: Maybe<Scalars["BigDecimal"]>; amountUSD?: Maybe<Scalars["BigDecimal"]>; complete: Scalars["Boolean"]; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeTo?: Maybe<Scalars["Bytes"]>; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; logIndex?: Maybe<Scalars["BigInt"]>; pair: Pair; sender?: Maybe<Scalars["Bytes"]>; timestamp: Scalars["BigInt"]; to?: Maybe<Scalars["Bytes"]>; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Burn"
    +
  • +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    complete: Scalars["Boolean"]
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Burn_Filter

+
Burn_Filter: { amount0?: Maybe<Scalars["BigDecimal"]>; amount0_gt?: Maybe<Scalars["BigDecimal"]>; amount0_gte?: Maybe<Scalars["BigDecimal"]>; amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0_lt?: Maybe<Scalars["BigDecimal"]>; amount0_lte?: Maybe<Scalars["BigDecimal"]>; amount0_not?: Maybe<Scalars["BigDecimal"]>; amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1?: Maybe<Scalars["BigDecimal"]>; amount1_gt?: Maybe<Scalars["BigDecimal"]>; amount1_gte?: Maybe<Scalars["BigDecimal"]>; amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1_lt?: Maybe<Scalars["BigDecimal"]>; amount1_lte?: Maybe<Scalars["BigDecimal"]>; amount1_not?: Maybe<Scalars["BigDecimal"]>; amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; complete?: Maybe<Scalars["Boolean"]>; complete_in?: Maybe<Array<Scalars["Boolean"]>>; complete_not?: Maybe<Scalars["Boolean"]>; complete_not_in?: Maybe<Array<Scalars["Boolean"]>>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeTo?: Maybe<Scalars["Bytes"]>; feeTo_contains?: Maybe<Scalars["Bytes"]>; feeTo_in?: Maybe<Array<Scalars["Bytes"]>>; feeTo_not?: Maybe<Scalars["Bytes"]>; feeTo_not_contains?: Maybe<Scalars["Bytes"]>; feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional complete?: Maybe<Scalars["Boolean"]>
    +
  • +
  • +
    Optional complete_in?: Maybe<Array<Scalars["Boolean"]>>
    +
  • +
  • +
    Optional complete_not?: Maybe<Scalars["Boolean"]>
    +
  • +
  • +
    Optional complete_not_in?: Maybe<Array<Scalars["Boolean"]>>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional feeTo_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

DayData

+
DayData: { __typename?: undefined | "DayData"; date: Scalars["Int"]; factory: Factory; id: Scalars["ID"]; liquidityETH: Scalars["BigDecimal"]; liquidityUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolume: Scalars["BigDecimal"]; volumeETH: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "DayData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    factory: Factory
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolume: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

DayData_Filter

+
DayData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; factory?: Maybe<Scalars["String"]>; factory_contains?: Maybe<Scalars["String"]>; factory_ends_with?: Maybe<Scalars["String"]>; factory_gt?: Maybe<Scalars["String"]>; factory_gte?: Maybe<Scalars["String"]>; factory_in?: Maybe<Array<Scalars["String"]>>; factory_lt?: Maybe<Scalars["String"]>; factory_lte?: Maybe<Scalars["String"]>; factory_not?: Maybe<Scalars["String"]>; factory_not_contains?: Maybe<Scalars["String"]>; factory_not_ends_with?: Maybe<Scalars["String"]>; factory_not_in?: Maybe<Array<Scalars["String"]>>; factory_not_starts_with?: Maybe<Scalars["String"]>; factory_starts_with?: Maybe<Scalars["String"]>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityETH?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolume?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolume_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH?: Maybe<Scalars["BigDecimal"]>; volumeETH_gt?: Maybe<Scalars["BigDecimal"]>; volumeETH_gte?: Maybe<Scalars["BigDecimal"]>; volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH_lt?: Maybe<Scalars["BigDecimal"]>; volumeETH_lte?: Maybe<Scalars["BigDecimal"]>; volumeETH_not?: Maybe<Scalars["BigDecimal"]>; volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional factory?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Exact

+
Exact<T>: {}
+ +

Type parameters

+
    +
  • +

    T: {}

    +
  • +
+
+

Type declaration

+
    +
+
+
+
+ +

Factory

+
Factory: { __typename?: undefined | "Factory"; dayData: Array<DayData>; hourData: Array<HourData>; id: Scalars["ID"]; liquidityETH: Scalars["BigDecimal"]; liquidityUSD: Scalars["BigDecimal"]; pairCount: Scalars["BigInt"]; pairs: Array<Pair>; tokenCount: Scalars["BigInt"]; tokens: Array<Token>; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"]; userCount: Scalars["BigInt"]; volumeETH: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Factory"
    +
  • +
  • +
    dayData: Array<DayData>
    +
  • +
  • +
    hourData: Array<HourData>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    pairCount: Scalars["BigInt"]
    +
  • +
  • +
    pairs: Array<Pair>
    +
  • +
  • +
    tokenCount: Scalars["BigInt"]
    +
  • +
  • +
    tokens: Array<Token>
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    userCount: Scalars["BigInt"]
    +
  • +
  • +
    volumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

FactoryDayDataArgs

+
FactoryDayDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<DayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<DayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

FactoryHourDataArgs

+
FactoryHourDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<HourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<HourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

FactoryPairsArgs

+
FactoryPairsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

FactoryTokensArgs

+
FactoryTokensArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Token_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Token_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Factory_Filter

+
Factory_Filter: { id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityETH?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; pairCount?: Maybe<Scalars["BigInt"]>; pairCount_gt?: Maybe<Scalars["BigInt"]>; pairCount_gte?: Maybe<Scalars["BigInt"]>; pairCount_in?: Maybe<Array<Scalars["BigInt"]>>; pairCount_lt?: Maybe<Scalars["BigInt"]>; pairCount_lte?: Maybe<Scalars["BigInt"]>; pairCount_not?: Maybe<Scalars["BigInt"]>; pairCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; tokenCount?: Maybe<Scalars["BigInt"]>; tokenCount_gt?: Maybe<Scalars["BigInt"]>; tokenCount_gte?: Maybe<Scalars["BigInt"]>; tokenCount_in?: Maybe<Array<Scalars["BigInt"]>>; tokenCount_lt?: Maybe<Scalars["BigInt"]>; tokenCount_lte?: Maybe<Scalars["BigInt"]>; tokenCount_not?: Maybe<Scalars["BigInt"]>; tokenCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; userCount?: Maybe<Scalars["BigInt"]>; userCount_gt?: Maybe<Scalars["BigInt"]>; userCount_gte?: Maybe<Scalars["BigInt"]>; userCount_in?: Maybe<Array<Scalars["BigInt"]>>; userCount_lt?: Maybe<Scalars["BigInt"]>; userCount_lte?: Maybe<Scalars["BigInt"]>; userCount_not?: Maybe<Scalars["BigInt"]>; userCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; volumeETH?: Maybe<Scalars["BigDecimal"]>; volumeETH_gt?: Maybe<Scalars["BigDecimal"]>; volumeETH_gte?: Maybe<Scalars["BigDecimal"]>; volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH_lt?: Maybe<Scalars["BigDecimal"]>; volumeETH_lte?: Maybe<Scalars["BigDecimal"]>; volumeETH_not?: Maybe<Scalars["BigDecimal"]>; volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional pairCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pairCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional pairCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional tokenCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional tokenCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional tokenCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional userCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional userCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional userCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional volumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

HourData

+
HourData: { __typename?: undefined | "HourData"; date: Scalars["Int"]; factory: Factory; id: Scalars["ID"]; liquidityETH: Scalars["BigDecimal"]; liquidityUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolume: Scalars["BigDecimal"]; volumeETH: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "HourData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    factory: Factory
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolume: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

HourData_Filter

+
HourData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; factory?: Maybe<Scalars["String"]>; factory_contains?: Maybe<Scalars["String"]>; factory_ends_with?: Maybe<Scalars["String"]>; factory_gt?: Maybe<Scalars["String"]>; factory_gte?: Maybe<Scalars["String"]>; factory_in?: Maybe<Array<Scalars["String"]>>; factory_lt?: Maybe<Scalars["String"]>; factory_lte?: Maybe<Scalars["String"]>; factory_not?: Maybe<Scalars["String"]>; factory_not_contains?: Maybe<Scalars["String"]>; factory_not_ends_with?: Maybe<Scalars["String"]>; factory_not_in?: Maybe<Array<Scalars["String"]>>; factory_not_starts_with?: Maybe<Scalars["String"]>; factory_starts_with?: Maybe<Scalars["String"]>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityETH?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolume?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolume_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH?: Maybe<Scalars["BigDecimal"]>; volumeETH_gt?: Maybe<Scalars["BigDecimal"]>; volumeETH_gte?: Maybe<Scalars["BigDecimal"]>; volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH_lt?: Maybe<Scalars["BigDecimal"]>; volumeETH_lte?: Maybe<Scalars["BigDecimal"]>; volumeETH_not?: Maybe<Scalars["BigDecimal"]>; volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional factory?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

LiquidityPosition

+
LiquidityPosition: { __typename?: undefined | "LiquidityPosition"; block: Scalars["Int"]; id: Scalars["ID"]; liquidityTokenBalance: Scalars["BigDecimal"]; pair: Pair; snapshots: Array<Maybe<LiquidityPositionSnapshot>>; timestamp: Scalars["Int"]; user: User }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "LiquidityPosition"
    +
  • +
  • +
    block: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityTokenBalance: Scalars["BigDecimal"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    snapshots: Array<Maybe<LiquidityPositionSnapshot>>
    +
  • +
  • +
    timestamp: Scalars["Int"]
    +
  • +
  • +
    user: User
    +
  • +
+
+
+
+ +

LiquidityPositionSnapshot

+
LiquidityPositionSnapshot: { __typename?: undefined | "LiquidityPositionSnapshot"; block: Scalars["Int"]; id: Scalars["ID"]; liquidityPosition: LiquidityPosition; liquidityTokenBalance: Scalars["BigDecimal"]; liquidityTokenTotalSupply: Scalars["BigDecimal"]; pair: Pair; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; timestamp: Scalars["Int"]; token0PriceUSD: Scalars["BigDecimal"]; token1PriceUSD: Scalars["BigDecimal"]; user: User }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "LiquidityPositionSnapshot"
    +
  • +
  • +
    block: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityPosition: LiquidityPosition
    +
  • +
  • +
    liquidityTokenBalance: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityTokenTotalSupply: Scalars["BigDecimal"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    timestamp: Scalars["Int"]
    +
  • +
  • +
    token0PriceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token1PriceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    user: User
    +
  • +
+
+
+
+ +

LiquidityPositionSnapshot_Filter

+
LiquidityPositionSnapshot_Filter: { block?: Maybe<Scalars["Int"]>; block_gt?: Maybe<Scalars["Int"]>; block_gte?: Maybe<Scalars["Int"]>; block_in?: Maybe<Array<Scalars["Int"]>>; block_lt?: Maybe<Scalars["Int"]>; block_lte?: Maybe<Scalars["Int"]>; block_not?: Maybe<Scalars["Int"]>; block_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityPosition?: Maybe<Scalars["String"]>; liquidityPosition_contains?: Maybe<Scalars["String"]>; liquidityPosition_ends_with?: Maybe<Scalars["String"]>; liquidityPosition_gt?: Maybe<Scalars["String"]>; liquidityPosition_gte?: Maybe<Scalars["String"]>; liquidityPosition_in?: Maybe<Array<Scalars["String"]>>; liquidityPosition_lt?: Maybe<Scalars["String"]>; liquidityPosition_lte?: Maybe<Scalars["String"]>; liquidityPosition_not?: Maybe<Scalars["String"]>; liquidityPosition_not_contains?: Maybe<Scalars["String"]>; liquidityPosition_not_ends_with?: Maybe<Scalars["String"]>; liquidityPosition_not_in?: Maybe<Array<Scalars["String"]>>; liquidityPosition_not_starts_with?: Maybe<Scalars["String"]>; liquidityPosition_starts_with?: Maybe<Scalars["String"]>; liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenTotalSupply?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenTotalSupply_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenTotalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; timestamp?: Maybe<Scalars["Int"]>; timestamp_gt?: Maybe<Scalars["Int"]>; timestamp_gte?: Maybe<Scalars["Int"]>; timestamp_in?: Maybe<Array<Scalars["Int"]>>; timestamp_lt?: Maybe<Scalars["Int"]>; timestamp_lte?: Maybe<Scalars["Int"]>; timestamp_not?: Maybe<Scalars["Int"]>; timestamp_not_in?: Maybe<Array<Scalars["Int"]>>; token0PriceUSD?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_not?: Maybe<Scalars["BigDecimal"]>; token0PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1PriceUSD?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_not?: Maybe<Scalars["BigDecimal"]>; token1PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; user?: Maybe<Scalars["String"]>; user_contains?: Maybe<Scalars["String"]>; user_ends_with?: Maybe<Scalars["String"]>; user_gt?: Maybe<Scalars["String"]>; user_gte?: Maybe<Scalars["String"]>; user_in?: Maybe<Array<Scalars["String"]>>; user_lt?: Maybe<Scalars["String"]>; user_lte?: Maybe<Scalars["String"]>; user_not?: Maybe<Scalars["String"]>; user_not_contains?: Maybe<Scalars["String"]>; user_not_ends_with?: Maybe<Scalars["String"]>; user_not_in?: Maybe<Array<Scalars["String"]>>; user_not_starts_with?: Maybe<Scalars["String"]>; user_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional block_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityPosition?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional liquidityPosition_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional liquidityPosition_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityPosition_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenTotalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional token0PriceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1PriceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1PriceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1PriceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional user?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

LiquidityPositionSnapshotsArgs

+
LiquidityPositionSnapshotsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

LiquidityPosition_Filter

+
LiquidityPosition_Filter: { block?: Maybe<Scalars["Int"]>; block_gt?: Maybe<Scalars["Int"]>; block_gte?: Maybe<Scalars["Int"]>; block_in?: Maybe<Array<Scalars["Int"]>>; block_lt?: Maybe<Scalars["Int"]>; block_lte?: Maybe<Scalars["Int"]>; block_not?: Maybe<Scalars["Int"]>; block_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>; liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; timestamp?: Maybe<Scalars["Int"]>; timestamp_gt?: Maybe<Scalars["Int"]>; timestamp_gte?: Maybe<Scalars["Int"]>; timestamp_in?: Maybe<Array<Scalars["Int"]>>; timestamp_lt?: Maybe<Scalars["Int"]>; timestamp_lte?: Maybe<Scalars["Int"]>; timestamp_not?: Maybe<Scalars["Int"]>; timestamp_not_in?: Maybe<Array<Scalars["Int"]>>; user?: Maybe<Scalars["String"]>; user_contains?: Maybe<Scalars["String"]>; user_ends_with?: Maybe<Scalars["String"]>; user_gt?: Maybe<Scalars["String"]>; user_gte?: Maybe<Scalars["String"]>; user_in?: Maybe<Array<Scalars["String"]>>; user_lt?: Maybe<Scalars["String"]>; user_lte?: Maybe<Scalars["String"]>; user_not?: Maybe<Scalars["String"]>; user_not_contains?: Maybe<Scalars["String"]>; user_not_ends_with?: Maybe<Scalars["String"]>; user_not_in?: Maybe<Array<Scalars["String"]>>; user_not_starts_with?: Maybe<Scalars["String"]>; user_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional block_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional block_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityTokenBalance_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityTokenBalance_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional user?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional user_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional user_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

MakeMaybe

+
MakeMaybe<T, K>: Omit<T, K> & {}
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
  • +

    K: keyof T

    +
  • +
+
+
+ +

MakeOptional

+
MakeOptional<T, K>: Omit<T, K> & {}
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
  • +

    K: keyof T

    +
  • +
+
+
+ +

Maybe

+
Maybe<T>: T | null
+ +

Type parameters

+
    +
  • +

    T

    +
  • +
+
+
+ +

Mint

+
Mint: { __typename?: undefined | "Mint"; amount0?: Maybe<Scalars["BigDecimal"]>; amount1?: Maybe<Scalars["BigDecimal"]>; amountUSD?: Maybe<Scalars["BigDecimal"]>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeTo?: Maybe<Scalars["Bytes"]>; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; logIndex?: Maybe<Scalars["BigInt"]>; pair: Pair; sender?: Maybe<Scalars["Bytes"]>; timestamp: Scalars["BigInt"]; to: Scalars["Bytes"]; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Mint"
    +
  • +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    to: Scalars["Bytes"]
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Mint_Filter

+
Mint_Filter: { amount0?: Maybe<Scalars["BigDecimal"]>; amount0_gt?: Maybe<Scalars["BigDecimal"]>; amount0_gte?: Maybe<Scalars["BigDecimal"]>; amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0_lt?: Maybe<Scalars["BigDecimal"]>; amount0_lte?: Maybe<Scalars["BigDecimal"]>; amount0_not?: Maybe<Scalars["BigDecimal"]>; amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1?: Maybe<Scalars["BigDecimal"]>; amount1_gt?: Maybe<Scalars["BigDecimal"]>; amount1_gte?: Maybe<Scalars["BigDecimal"]>; amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1_lt?: Maybe<Scalars["BigDecimal"]>; amount1_lte?: Maybe<Scalars["BigDecimal"]>; amount1_not?: Maybe<Scalars["BigDecimal"]>; amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>; feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; feeTo?: Maybe<Scalars["Bytes"]>; feeTo_contains?: Maybe<Scalars["Bytes"]>; feeTo_in?: Maybe<Array<Scalars["Bytes"]>>; feeTo_not?: Maybe<Scalars["Bytes"]>; feeTo_not_contains?: Maybe<Scalars["Bytes"]>; feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeLiquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional feeLiquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional feeTo?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional feeTo_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional feeTo_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

Pair

+
Pair: { __typename?: undefined | "Pair"; block: Scalars["BigInt"]; burns: Array<Burn>; dayData: Array<PairDayData>; factory: Factory; hourData: Array<PairHourData>; id: Scalars["ID"]; liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>; liquidityPositions: Array<LiquidityPosition>; liquidityProviderCount: Scalars["BigInt"]; mints: Array<Mint>; name: Scalars["String"]; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveETH: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; swaps: Array<Swap>; timestamp: Scalars["BigInt"]; token0: Token; token0Price: Scalars["BigDecimal"]; token1: Token; token1Price: Scalars["BigDecimal"]; totalSupply: Scalars["BigDecimal"]; trackedReserveETH: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"]; volumeToken0: Scalars["BigDecimal"]; volumeToken1: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Pair"
    +
  • +
  • +
    block: Scalars["BigInt"]
    +
  • +
  • +
    burns: Array<Burn>
    +
  • +
  • +
    dayData: Array<PairDayData>
    +
  • +
  • +
    factory: Factory
    +
  • +
  • +
    hourData: Array<PairHourData>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>
    +
  • +
  • +
    liquidityPositions: Array<LiquidityPosition>
    +
  • +
  • +
    liquidityProviderCount: Scalars["BigInt"]
    +
  • +
  • +
    mints: Array<Mint>
    +
  • +
  • +
    name: Scalars["String"]
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveETH: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    swaps: Array<Swap>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    token0: Token
    +
  • +
  • +
    token0Price: Scalars["BigDecimal"]
    +
  • +
  • +
    token1: Token
    +
  • +
  • +
    token1Price: Scalars["BigDecimal"]
    +
  • +
  • +
    totalSupply: Scalars["BigDecimal"]
    +
  • +
  • +
    trackedReserveETH: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairBurnsArgs

+
PairBurnsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairDayData

+
PairDayData: { __typename?: undefined | "PairDayData"; date: Scalars["Int"]; id: Scalars["ID"]; pair: Pair; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; token0: Token; token1: Token; totalSupply: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; volumeToken0: Scalars["BigDecimal"]; volumeToken1: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "PairDayData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token0: Token
    +
  • +
  • +
    token1: Token
    +
  • +
  • +
    totalSupply: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    volumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairDayDataArgs

+
PairDayDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairDayData_Filter

+
PairDayData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0?: Maybe<Scalars["String"]>; token0_contains?: Maybe<Scalars["String"]>; token0_ends_with?: Maybe<Scalars["String"]>; token0_gt?: Maybe<Scalars["String"]>; token0_gte?: Maybe<Scalars["String"]>; token0_in?: Maybe<Array<Scalars["String"]>>; token0_lt?: Maybe<Scalars["String"]>; token0_lte?: Maybe<Scalars["String"]>; token0_not?: Maybe<Scalars["String"]>; token0_not_contains?: Maybe<Scalars["String"]>; token0_not_ends_with?: Maybe<Scalars["String"]>; token0_not_in?: Maybe<Array<Scalars["String"]>>; token0_not_starts_with?: Maybe<Scalars["String"]>; token0_starts_with?: Maybe<Scalars["String"]>; token1?: Maybe<Scalars["String"]>; token1_contains?: Maybe<Scalars["String"]>; token1_ends_with?: Maybe<Scalars["String"]>; token1_gt?: Maybe<Scalars["String"]>; token1_gte?: Maybe<Scalars["String"]>; token1_in?: Maybe<Array<Scalars["String"]>>; token1_lt?: Maybe<Scalars["String"]>; token1_lte?: Maybe<Scalars["String"]>; token1_not?: Maybe<Scalars["String"]>; token1_not_contains?: Maybe<Scalars["String"]>; token1_not_ends_with?: Maybe<Scalars["String"]>; token1_not_in?: Maybe<Array<Scalars["String"]>>; token1_not_starts_with?: Maybe<Scalars["String"]>; token1_starts_with?: Maybe<Scalars["String"]>; totalSupply?: Maybe<Scalars["BigDecimal"]>; totalSupply_gt?: Maybe<Scalars["BigDecimal"]>; totalSupply_gte?: Maybe<Scalars["BigDecimal"]>; totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalSupply_lt?: Maybe<Scalars["BigDecimal"]>; totalSupply_lte?: Maybe<Scalars["BigDecimal"]>; totalSupply_not?: Maybe<Scalars["BigDecimal"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; volumeToken0?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional volumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

PairHourData

+
PairHourData: { __typename?: undefined | "PairHourData"; date: Scalars["Int"]; id: Scalars["ID"]; pair: Pair; reserve0: Scalars["BigDecimal"]; reserve1: Scalars["BigDecimal"]; reserveUSD: Scalars["BigDecimal"]; txCount: Scalars["BigInt"]; volumeToken0: Scalars["BigDecimal"]; volumeToken1: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "PairHourData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    reserve0: Scalars["BigDecimal"]
    +
  • +
  • +
    reserve1: Scalars["BigDecimal"]
    +
  • +
  • +
    reserveUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    volumeToken0: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeToken1: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

PairHourDataArgs

+
PairHourDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairHourData_Filter

+
PairHourData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; volumeToken0?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional volumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

PairLiquidityPositionSnapshotsArgs

+
PairLiquidityPositionSnapshotsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairLiquidityPositionsArgs

+
PairLiquidityPositionsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairMintsArgs

+
PairMintsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

PairSwapsArgs

+
PairSwapsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Pair_Filter

+
Pair_Filter: { block?: Maybe<Scalars["BigInt"]>; block_gt?: Maybe<Scalars["BigInt"]>; block_gte?: Maybe<Scalars["BigInt"]>; block_in?: Maybe<Array<Scalars["BigInt"]>>; block_lt?: Maybe<Scalars["BigInt"]>; block_lte?: Maybe<Scalars["BigInt"]>; block_not?: Maybe<Scalars["BigInt"]>; block_not_in?: Maybe<Array<Scalars["BigInt"]>>; factory?: Maybe<Scalars["String"]>; factory_contains?: Maybe<Scalars["String"]>; factory_ends_with?: Maybe<Scalars["String"]>; factory_gt?: Maybe<Scalars["String"]>; factory_gte?: Maybe<Scalars["String"]>; factory_in?: Maybe<Array<Scalars["String"]>>; factory_lt?: Maybe<Scalars["String"]>; factory_lte?: Maybe<Scalars["String"]>; factory_not?: Maybe<Scalars["String"]>; factory_not_contains?: Maybe<Scalars["String"]>; factory_not_ends_with?: Maybe<Scalars["String"]>; factory_not_in?: Maybe<Array<Scalars["String"]>>; factory_not_starts_with?: Maybe<Scalars["String"]>; factory_starts_with?: Maybe<Scalars["String"]>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidityProviderCount?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_gt?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_gte?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_in?: Maybe<Array<Scalars["BigInt"]>>; liquidityProviderCount_lt?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_lte?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_not?: Maybe<Scalars["BigInt"]>; liquidityProviderCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; name?: Maybe<Scalars["String"]>; name_contains?: Maybe<Scalars["String"]>; name_ends_with?: Maybe<Scalars["String"]>; name_gt?: Maybe<Scalars["String"]>; name_gte?: Maybe<Scalars["String"]>; name_in?: Maybe<Array<Scalars["String"]>>; name_lt?: Maybe<Scalars["String"]>; name_lte?: Maybe<Scalars["String"]>; name_not?: Maybe<Scalars["String"]>; name_not_contains?: Maybe<Scalars["String"]>; name_not_ends_with?: Maybe<Scalars["String"]>; name_not_in?: Maybe<Array<Scalars["String"]>>; name_not_starts_with?: Maybe<Scalars["String"]>; name_starts_with?: Maybe<Scalars["String"]>; reserve0?: Maybe<Scalars["BigDecimal"]>; reserve0_gt?: Maybe<Scalars["BigDecimal"]>; reserve0_gte?: Maybe<Scalars["BigDecimal"]>; reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve0_lt?: Maybe<Scalars["BigDecimal"]>; reserve0_lte?: Maybe<Scalars["BigDecimal"]>; reserve0_not?: Maybe<Scalars["BigDecimal"]>; reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1?: Maybe<Scalars["BigDecimal"]>; reserve1_gt?: Maybe<Scalars["BigDecimal"]>; reserve1_gte?: Maybe<Scalars["BigDecimal"]>; reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserve1_lt?: Maybe<Scalars["BigDecimal"]>; reserve1_lte?: Maybe<Scalars["BigDecimal"]>; reserve1_not?: Maybe<Scalars["BigDecimal"]>; reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveETH?: Maybe<Scalars["BigDecimal"]>; reserveETH_gt?: Maybe<Scalars["BigDecimal"]>; reserveETH_gte?: Maybe<Scalars["BigDecimal"]>; reserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveETH_lt?: Maybe<Scalars["BigDecimal"]>; reserveETH_lte?: Maybe<Scalars["BigDecimal"]>; reserveETH_not?: Maybe<Scalars["BigDecimal"]>; reserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>; reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not?: Maybe<Scalars["BigDecimal"]>; reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; token0?: Maybe<Scalars["String"]>; token0Price?: Maybe<Scalars["BigDecimal"]>; token0Price_gt?: Maybe<Scalars["BigDecimal"]>; token0Price_gte?: Maybe<Scalars["BigDecimal"]>; token0Price_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0Price_lt?: Maybe<Scalars["BigDecimal"]>; token0Price_lte?: Maybe<Scalars["BigDecimal"]>; token0Price_not?: Maybe<Scalars["BigDecimal"]>; token0Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token0_contains?: Maybe<Scalars["String"]>; token0_ends_with?: Maybe<Scalars["String"]>; token0_gt?: Maybe<Scalars["String"]>; token0_gte?: Maybe<Scalars["String"]>; token0_in?: Maybe<Array<Scalars["String"]>>; token0_lt?: Maybe<Scalars["String"]>; token0_lte?: Maybe<Scalars["String"]>; token0_not?: Maybe<Scalars["String"]>; token0_not_contains?: Maybe<Scalars["String"]>; token0_not_ends_with?: Maybe<Scalars["String"]>; token0_not_in?: Maybe<Array<Scalars["String"]>>; token0_not_starts_with?: Maybe<Scalars["String"]>; token0_starts_with?: Maybe<Scalars["String"]>; token1?: Maybe<Scalars["String"]>; token1Price?: Maybe<Scalars["BigDecimal"]>; token1Price_gt?: Maybe<Scalars["BigDecimal"]>; token1Price_gte?: Maybe<Scalars["BigDecimal"]>; token1Price_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1Price_lt?: Maybe<Scalars["BigDecimal"]>; token1Price_lte?: Maybe<Scalars["BigDecimal"]>; token1Price_not?: Maybe<Scalars["BigDecimal"]>; token1Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token1_contains?: Maybe<Scalars["String"]>; token1_ends_with?: Maybe<Scalars["String"]>; token1_gt?: Maybe<Scalars["String"]>; token1_gte?: Maybe<Scalars["String"]>; token1_in?: Maybe<Array<Scalars["String"]>>; token1_lt?: Maybe<Scalars["String"]>; token1_lte?: Maybe<Scalars["String"]>; token1_not?: Maybe<Scalars["String"]>; token1_not_contains?: Maybe<Scalars["String"]>; token1_not_ends_with?: Maybe<Scalars["String"]>; token1_not_in?: Maybe<Array<Scalars["String"]>>; token1_not_starts_with?: Maybe<Scalars["String"]>; token1_starts_with?: Maybe<Scalars["String"]>; totalSupply?: Maybe<Scalars["BigDecimal"]>; totalSupply_gt?: Maybe<Scalars["BigDecimal"]>; totalSupply_gte?: Maybe<Scalars["BigDecimal"]>; totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>; totalSupply_lt?: Maybe<Scalars["BigDecimal"]>; totalSupply_lte?: Maybe<Scalars["BigDecimal"]>; totalSupply_not?: Maybe<Scalars["BigDecimal"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; trackedReserveETH?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_gt?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_gte?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; trackedReserveETH_lt?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_lte?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_not?: Maybe<Scalars["BigDecimal"]>; trackedReserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not?: Maybe<Scalars["BigDecimal"]>; volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>; volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not?: Maybe<Scalars["BigDecimal"]>; volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional block_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional block_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional factory?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidityProviderCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional liquidityProviderCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional liquidityProviderCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional name?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional reserve0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserve1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserve1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional reserveUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional reserveUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional token0?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0Price?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0Price_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token0Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token0_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token0_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token0_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1Price?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1Price_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional token1Price_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token1_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token1_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token1_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional trackedReserveETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional trackedReserveETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional trackedReserveETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken0_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken0_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeToken1_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeToken1_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Query

+
Query: { __typename?: undefined | "Query"; _meta?: Maybe<_Meta_>; bundle?: Maybe<Bundle>; bundles: Array<Bundle>; burn?: Maybe<Burn>; burns: Array<Burn>; dayData?: Maybe<DayData>; dayDatas: Array<DayData>; factories: Array<Factory>; factory?: Maybe<Factory>; hourData?: Maybe<HourData>; hourDatas: Array<HourData>; liquidityPosition?: Maybe<LiquidityPosition>; liquidityPositionSnapshot?: Maybe<LiquidityPositionSnapshot>; liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>; liquidityPositions: Array<LiquidityPosition>; mint?: Maybe<Mint>; mints: Array<Mint>; pair?: Maybe<Pair>; pairDayData?: Maybe<PairDayData>; pairDayDatas: Array<PairDayData>; pairHourData?: Maybe<PairHourData>; pairHourDatas: Array<PairHourData>; pairSearch: Array<Pair>; pairs: Array<Pair>; swap?: Maybe<Swap>; swaps: Array<Swap>; token?: Maybe<Token>; tokenDayData?: Maybe<TokenDayData>; tokenDayDatas: Array<TokenDayData>; tokenHourData?: Maybe<TokenHourData>; tokenHourDatas: Array<TokenHourData>; tokenSearch: Array<Token>; tokens: Array<Token>; transaction?: Maybe<Transaction>; transactions: Array<Transaction>; user?: Maybe<User>; userSearch: Array<User>; users: Array<User> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBundleArgs

+
QueryBundleArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBundlesArgs

+
QueryBundlesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Bundle_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Bundle_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBurnArgs

+
QueryBurnArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryBurnsArgs

+
QueryBurnsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryDayDataArgs

+
QueryDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryDayDatasArgs

+
QueryDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<DayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<DayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryFactoriesArgs

+
QueryFactoriesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Factory_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Factory_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryFactoryArgs

+
QueryFactoryArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryHourDataArgs

+
QueryHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryHourDatasArgs

+
QueryHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<HourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<HourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionArgs

+
QueryLiquidityPositionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionSnapshotArgs

+
QueryLiquidityPositionSnapshotArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionSnapshotsArgs

+
QueryLiquidityPositionSnapshotsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryLiquidityPositionsArgs

+
QueryLiquidityPositionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryMintArgs

+
QueryMintArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryMintsArgs

+
QueryMintsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairArgs

+
QueryPairArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairDayDataArgs

+
QueryPairDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairDayDatasArgs

+
QueryPairDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairHourDataArgs

+
QueryPairHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairHourDatasArgs

+
QueryPairHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryPairSearchArgs

+
QueryPairSearchArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; skip?: Maybe<Scalars["Int"]>; text: Scalars["String"] }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Block_Height>
    +
  • +
  • +
    Optional first?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional skip?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    text: Scalars["String"]
    +
  • +
+
+
+
+ +

QueryPairsArgs

+
QueryPairsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySwapArgs

+
QuerySwapArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QuerySwapsArgs

+
QuerySwapsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenArgs

+
QueryTokenArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenDayDataArgs

+
QueryTokenDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenDayDatasArgs

+
QueryTokenDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenHourDataArgs

+
QueryTokenHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenHourDatasArgs

+
QueryTokenHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTokenSearchArgs

+
QueryTokenSearchArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; skip?: Maybe<Scalars["Int"]>; text: Scalars["String"] }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Block_Height>
    +
  • +
  • +
    Optional first?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional skip?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    text: Scalars["String"]
    +
  • +
+
+
+
+ +

QueryTokensArgs

+
QueryTokensArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Token_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Token_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTransactionArgs

+
QueryTransactionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryTransactionsArgs

+
QueryTransactionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Transaction_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Transaction_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

QueryUserArgs

+
QueryUserArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

QueryUserSearchArgs

+
QueryUserSearchArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; skip?: Maybe<Scalars["Int"]>; text: Scalars["String"] }
+ +
+

Type declaration

+
    +
  • +
    Optional block?: Maybe<Block_Height>
    +
  • +
  • +
    Optional first?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional skip?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    text: Scalars["String"]
    +
  • +
+
+
+
+ +

QueryUsersArgs

+
QueryUsersArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<User_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<User_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Query_MetaArgs

+
Query_MetaArgs: { block?: Maybe<Block_Height> }
+ +
+

Type declaration

+ +
+
+
+ +

Scalars

+
Scalars: { BigDecimal: any; BigInt: any; Boolean: boolean; Bytes: any; Float: number; ID: string; Int: number; String: string }
+ +
+
+

All built-in and custom scalars, mapped to their actual values

+
+
+
+

Type declaration

+
    +
  • +
    BigDecimal: any
    +
  • +
  • +
    BigInt: any
    +
  • +
  • +
    Boolean: boolean
    +
  • +
  • +
    Bytes: any
    +
  • +
  • +
    Float: number
    +
  • +
  • +
    ID: string
    +
  • +
  • +
    Int: number
    +
  • +
  • +
    String: string
    +
  • +
+
+
+
+ +

Subscription

+
Subscription: { __typename?: undefined | "Subscription"; _meta?: Maybe<_Meta_>; bundle?: Maybe<Bundle>; bundles: Array<Bundle>; burn?: Maybe<Burn>; burns: Array<Burn>; dayData?: Maybe<DayData>; dayDatas: Array<DayData>; factories: Array<Factory>; factory?: Maybe<Factory>; hourData?: Maybe<HourData>; hourDatas: Array<HourData>; liquidityPosition?: Maybe<LiquidityPosition>; liquidityPositionSnapshot?: Maybe<LiquidityPositionSnapshot>; liquidityPositionSnapshots: Array<LiquidityPositionSnapshot>; liquidityPositions: Array<LiquidityPosition>; mint?: Maybe<Mint>; mints: Array<Mint>; pair?: Maybe<Pair>; pairDayData?: Maybe<PairDayData>; pairDayDatas: Array<PairDayData>; pairHourData?: Maybe<PairHourData>; pairHourDatas: Array<PairHourData>; pairs: Array<Pair>; swap?: Maybe<Swap>; swaps: Array<Swap>; token?: Maybe<Token>; tokenDayData?: Maybe<TokenDayData>; tokenDayDatas: Array<TokenDayData>; tokenHourData?: Maybe<TokenHourData>; tokenHourDatas: Array<TokenHourData>; tokens: Array<Token>; transaction?: Maybe<Transaction>; transactions: Array<Transaction>; user?: Maybe<User>; users: Array<User> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBundleArgs

+
SubscriptionBundleArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBundlesArgs

+
SubscriptionBundlesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Bundle_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Bundle_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBurnArgs

+
SubscriptionBurnArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionBurnsArgs

+
SubscriptionBurnsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionDayDataArgs

+
SubscriptionDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionDayDatasArgs

+
SubscriptionDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<DayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<DayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionFactoriesArgs

+
SubscriptionFactoriesArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Factory_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Factory_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionFactoryArgs

+
SubscriptionFactoryArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionHourDataArgs

+
SubscriptionHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionHourDatasArgs

+
SubscriptionHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<HourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<HourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionArgs

+
SubscriptionLiquidityPositionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionSnapshotArgs

+
SubscriptionLiquidityPositionSnapshotArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionSnapshotsArgs

+
SubscriptionLiquidityPositionSnapshotsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPositionSnapshot_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPositionSnapshot_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionLiquidityPositionsArgs

+
SubscriptionLiquidityPositionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionMintArgs

+
SubscriptionMintArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionMintsArgs

+
SubscriptionMintsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairArgs

+
SubscriptionPairArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairDayDataArgs

+
SubscriptionPairDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairDayDatasArgs

+
SubscriptionPairDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairHourDataArgs

+
SubscriptionPairHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairHourDatasArgs

+
SubscriptionPairHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionPairsArgs

+
SubscriptionPairsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSwapArgs

+
SubscriptionSwapArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionSwapsArgs

+
SubscriptionSwapsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenArgs

+
SubscriptionTokenArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenDayDataArgs

+
SubscriptionTokenDayDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenDayDatasArgs

+
SubscriptionTokenDayDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenHourDataArgs

+
SubscriptionTokenHourDataArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokenHourDatasArgs

+
SubscriptionTokenHourDatasArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTokensArgs

+
SubscriptionTokensArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Token_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Token_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTransactionArgs

+
SubscriptionTransactionArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionTransactionsArgs

+
SubscriptionTransactionsArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Transaction_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Transaction_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionUserArgs

+
SubscriptionUserArgs: { block?: Maybe<Block_Height>; id: Scalars["ID"] }
+ +
+

Type declaration

+ +
+
+
+ +

SubscriptionUsersArgs

+
SubscriptionUsersArgs: { block?: Maybe<Block_Height>; first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<User_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<User_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Subscription_MetaArgs

+
Subscription_MetaArgs: { block?: Maybe<Block_Height> }
+ +
+

Type declaration

+ +
+
+
+ +

Swap

+
Swap: { __typename?: undefined | "Swap"; amount0In: Scalars["BigDecimal"]; amount0Out: Scalars["BigDecimal"]; amount1In: Scalars["BigDecimal"]; amount1Out: Scalars["BigDecimal"]; amountUSD: Scalars["BigDecimal"]; id: Scalars["ID"]; logIndex?: Maybe<Scalars["BigInt"]>; pair: Pair; sender: Scalars["Bytes"]; timestamp: Scalars["BigInt"]; to: Scalars["Bytes"]; transaction: Transaction }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Swap"
    +
  • +
  • +
    amount0In: Scalars["BigDecimal"]
    +
  • +
  • +
    amount0Out: Scalars["BigDecimal"]
    +
  • +
  • +
    amount1In: Scalars["BigDecimal"]
    +
  • +
  • +
    amount1Out: Scalars["BigDecimal"]
    +
  • +
  • +
    amountUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    pair: Pair
    +
  • +
  • +
    sender: Scalars["Bytes"]
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
  • +
    to: Scalars["Bytes"]
    +
  • +
  • +
    transaction: Transaction
    +
  • +
+
+
+
+ +

Swap_Filter

+
Swap_Filter: { amount0In?: Maybe<Scalars["BigDecimal"]>; amount0In_gt?: Maybe<Scalars["BigDecimal"]>; amount0In_gte?: Maybe<Scalars["BigDecimal"]>; amount0In_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0In_lt?: Maybe<Scalars["BigDecimal"]>; amount0In_lte?: Maybe<Scalars["BigDecimal"]>; amount0In_not?: Maybe<Scalars["BigDecimal"]>; amount0In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0Out?: Maybe<Scalars["BigDecimal"]>; amount0Out_gt?: Maybe<Scalars["BigDecimal"]>; amount0Out_gte?: Maybe<Scalars["BigDecimal"]>; amount0Out_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount0Out_lt?: Maybe<Scalars["BigDecimal"]>; amount0Out_lte?: Maybe<Scalars["BigDecimal"]>; amount0Out_not?: Maybe<Scalars["BigDecimal"]>; amount0Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1In?: Maybe<Scalars["BigDecimal"]>; amount1In_gt?: Maybe<Scalars["BigDecimal"]>; amount1In_gte?: Maybe<Scalars["BigDecimal"]>; amount1In_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1In_lt?: Maybe<Scalars["BigDecimal"]>; amount1In_lte?: Maybe<Scalars["BigDecimal"]>; amount1In_not?: Maybe<Scalars["BigDecimal"]>; amount1In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1Out?: Maybe<Scalars["BigDecimal"]>; amount1Out_gt?: Maybe<Scalars["BigDecimal"]>; amount1Out_gte?: Maybe<Scalars["BigDecimal"]>; amount1Out_in?: Maybe<Array<Scalars["BigDecimal"]>>; amount1Out_lt?: Maybe<Scalars["BigDecimal"]>; amount1Out_lte?: Maybe<Scalars["BigDecimal"]>; amount1Out_not?: Maybe<Scalars["BigDecimal"]>; amount1Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD?: Maybe<Scalars["BigDecimal"]>; amountUSD_gt?: Maybe<Scalars["BigDecimal"]>; amountUSD_gte?: Maybe<Scalars["BigDecimal"]>; amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; amountUSD_lt?: Maybe<Scalars["BigDecimal"]>; amountUSD_lte?: Maybe<Scalars["BigDecimal"]>; amountUSD_not?: Maybe<Scalars["BigDecimal"]>; amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; logIndex?: Maybe<Scalars["BigInt"]>; logIndex_gt?: Maybe<Scalars["BigInt"]>; logIndex_gte?: Maybe<Scalars["BigInt"]>; logIndex_in?: Maybe<Array<Scalars["BigInt"]>>; logIndex_lt?: Maybe<Scalars["BigInt"]>; logIndex_lte?: Maybe<Scalars["BigInt"]>; logIndex_not?: Maybe<Scalars["BigInt"]>; logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>; pair?: Maybe<Scalars["String"]>; pair_contains?: Maybe<Scalars["String"]>; pair_ends_with?: Maybe<Scalars["String"]>; pair_gt?: Maybe<Scalars["String"]>; pair_gte?: Maybe<Scalars["String"]>; pair_in?: Maybe<Array<Scalars["String"]>>; pair_lt?: Maybe<Scalars["String"]>; pair_lte?: Maybe<Scalars["String"]>; pair_not?: Maybe<Scalars["String"]>; pair_not_contains?: Maybe<Scalars["String"]>; pair_not_ends_with?: Maybe<Scalars["String"]>; pair_not_in?: Maybe<Array<Scalars["String"]>>; pair_not_starts_with?: Maybe<Scalars["String"]>; pair_starts_with?: Maybe<Scalars["String"]>; sender?: Maybe<Scalars["Bytes"]>; sender_contains?: Maybe<Scalars["Bytes"]>; sender_in?: Maybe<Array<Scalars["Bytes"]>>; sender_not?: Maybe<Scalars["Bytes"]>; sender_not_contains?: Maybe<Scalars["Bytes"]>; sender_not_in?: Maybe<Array<Scalars["Bytes"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>; to?: Maybe<Scalars["Bytes"]>; to_contains?: Maybe<Scalars["Bytes"]>; to_in?: Maybe<Array<Scalars["Bytes"]>>; to_not?: Maybe<Scalars["Bytes"]>; to_not_contains?: Maybe<Scalars["Bytes"]>; to_not_in?: Maybe<Array<Scalars["Bytes"]>>; transaction?: Maybe<Scalars["String"]>; transaction_contains?: Maybe<Scalars["String"]>; transaction_ends_with?: Maybe<Scalars["String"]>; transaction_gt?: Maybe<Scalars["String"]>; transaction_gte?: Maybe<Scalars["String"]>; transaction_in?: Maybe<Array<Scalars["String"]>>; transaction_lt?: Maybe<Scalars["String"]>; transaction_lte?: Maybe<Scalars["String"]>; transaction_not?: Maybe<Scalars["String"]>; transaction_not_contains?: Maybe<Scalars["String"]>; transaction_not_ends_with?: Maybe<Scalars["String"]>; transaction_not_in?: Maybe<Array<Scalars["String"]>>; transaction_not_starts_with?: Maybe<Scalars["String"]>; transaction_starts_with?: Maybe<Scalars["String"]> }
+ +
+

Type declaration

+
    +
  • +
    Optional amount0In?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0In_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0Out?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount0Out_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount0Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1In?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1In_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1In_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1Out?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amount1Out_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amount1Out_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional amountUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional amountUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional logIndex?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional logIndex_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional logIndex_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional pair?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional pair_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional pair_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional sender?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional sender_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional sender_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional to?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional to_not?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_contains?: Maybe<Scalars["Bytes"]>
    +
  • +
  • +
    Optional to_not_in?: Maybe<Array<Scalars["Bytes"]>>
    +
  • +
  • +
    Optional transaction?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional transaction_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional transaction_starts_with?: Maybe<Scalars["String"]>
    +
  • +
+
+
+
+ +

Token

+
Token: { __typename?: undefined | "Token"; basePairs: Array<Pair>; basePairsDayData: Array<PairDayData>; dayData: Array<TokenDayData>; decimals: Scalars["BigInt"]; derivedETH: Scalars["BigDecimal"]; factory: Factory; hourData: Array<TokenHourData>; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; name: Scalars["String"]; quotePairs: Array<Pair>; quotePairsDayData: Array<PairDayData>; symbol: Scalars["String"]; totalSupply: Scalars["BigInt"]; txCount: Scalars["BigInt"]; untrackedVolumeUSD: Scalars["BigDecimal"]; volume: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Token"
    +
  • +
  • +
    basePairs: Array<Pair>
    +
  • +
  • +
    basePairsDayData: Array<PairDayData>
    +
  • +
  • +
    dayData: Array<TokenDayData>
    +
  • +
  • +
    decimals: Scalars["BigInt"]
    +
  • +
  • +
    derivedETH: Scalars["BigDecimal"]
    +
  • +
  • +
    factory: Factory
    +
  • +
  • +
    hourData: Array<TokenHourData>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    name: Scalars["String"]
    +
  • +
  • +
    quotePairs: Array<Pair>
    +
  • +
  • +
    quotePairsDayData: Array<PairDayData>
    +
  • +
  • +
    symbol: Scalars["String"]
    +
  • +
  • +
    totalSupply: Scalars["BigInt"]
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    untrackedVolumeUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    volume: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

TokenBasePairsArgs

+
TokenBasePairsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenBasePairsDayDataArgs

+
TokenBasePairsDayDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenDayData

+
TokenDayData: { __typename?: undefined | "TokenDayData"; date: Scalars["Int"]; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; liquidityETH: Scalars["BigDecimal"]; liquidityUSD: Scalars["BigDecimal"]; priceUSD: Scalars["BigDecimal"]; token: Token; txCount: Scalars["BigInt"]; volume: Scalars["BigDecimal"]; volumeETH: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "TokenDayData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    priceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token: Token
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    volume: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

TokenDayDataArgs

+
TokenDayDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenDayData_Filter

+
TokenDayData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidityETH?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; priceUSD?: Maybe<Scalars["BigDecimal"]>; priceUSD_gt?: Maybe<Scalars["BigDecimal"]>; priceUSD_gte?: Maybe<Scalars["BigDecimal"]>; priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; priceUSD_lt?: Maybe<Scalars["BigDecimal"]>; priceUSD_lte?: Maybe<Scalars["BigDecimal"]>; priceUSD_not?: Maybe<Scalars["BigDecimal"]>; priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token?: Maybe<Scalars["String"]>; token_contains?: Maybe<Scalars["String"]>; token_ends_with?: Maybe<Scalars["String"]>; token_gt?: Maybe<Scalars["String"]>; token_gte?: Maybe<Scalars["String"]>; token_in?: Maybe<Array<Scalars["String"]>>; token_lt?: Maybe<Scalars["String"]>; token_lte?: Maybe<Scalars["String"]>; token_not?: Maybe<Scalars["String"]>; token_not_contains?: Maybe<Scalars["String"]>; token_not_ends_with?: Maybe<Scalars["String"]>; token_not_in?: Maybe<Array<Scalars["String"]>>; token_not_starts_with?: Maybe<Scalars["String"]>; token_starts_with?: Maybe<Scalars["String"]>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; volume?: Maybe<Scalars["BigDecimal"]>; volumeETH?: Maybe<Scalars["BigDecimal"]>; volumeETH_gt?: Maybe<Scalars["BigDecimal"]>; volumeETH_gte?: Maybe<Scalars["BigDecimal"]>; volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH_lt?: Maybe<Scalars["BigDecimal"]>; volumeETH_lte?: Maybe<Scalars["BigDecimal"]>; volumeETH_not?: Maybe<Scalars["BigDecimal"]>; volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_gt?: Maybe<Scalars["BigDecimal"]>; volume_gte?: Maybe<Scalars["BigDecimal"]>; volume_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_lt?: Maybe<Scalars["BigDecimal"]>; volume_lte?: Maybe<Scalars["BigDecimal"]>; volume_not?: Maybe<Scalars["BigDecimal"]>; volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional priceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional priceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional volume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

TokenHourData

+
TokenHourData: { __typename?: undefined | "TokenHourData"; date: Scalars["Int"]; id: Scalars["ID"]; liquidity: Scalars["BigDecimal"]; liquidityETH: Scalars["BigDecimal"]; liquidityUSD: Scalars["BigDecimal"]; priceUSD: Scalars["BigDecimal"]; token: Token; txCount: Scalars["BigInt"]; volume: Scalars["BigDecimal"]; volumeETH: Scalars["BigDecimal"]; volumeUSD: Scalars["BigDecimal"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "TokenHourData"
    +
  • +
  • +
    date: Scalars["Int"]
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidity: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityETH: Scalars["BigDecimal"]
    +
  • +
  • +
    liquidityUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    priceUSD: Scalars["BigDecimal"]
    +
  • +
  • +
    token: Token
    +
  • +
  • +
    txCount: Scalars["BigInt"]
    +
  • +
  • +
    volume: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeETH: Scalars["BigDecimal"]
    +
  • +
  • +
    volumeUSD: Scalars["BigDecimal"]
    +
  • +
+
+
+
+ +

TokenHourDataArgs

+
TokenHourDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<TokenHourData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<TokenHourData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenHourData_Filter

+
TokenHourData_Filter: { date?: Maybe<Scalars["Int"]>; date_gt?: Maybe<Scalars["Int"]>; date_gte?: Maybe<Scalars["Int"]>; date_in?: Maybe<Array<Scalars["Int"]>>; date_lt?: Maybe<Scalars["Int"]>; date_lte?: Maybe<Scalars["Int"]>; date_not?: Maybe<Scalars["Int"]>; date_not_in?: Maybe<Array<Scalars["Int"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidityETH?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>; liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not?: Maybe<Scalars["BigDecimal"]>; liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>; liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; priceUSD?: Maybe<Scalars["BigDecimal"]>; priceUSD_gt?: Maybe<Scalars["BigDecimal"]>; priceUSD_gte?: Maybe<Scalars["BigDecimal"]>; priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; priceUSD_lt?: Maybe<Scalars["BigDecimal"]>; priceUSD_lte?: Maybe<Scalars["BigDecimal"]>; priceUSD_not?: Maybe<Scalars["BigDecimal"]>; priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; token?: Maybe<Scalars["String"]>; token_contains?: Maybe<Scalars["String"]>; token_ends_with?: Maybe<Scalars["String"]>; token_gt?: Maybe<Scalars["String"]>; token_gte?: Maybe<Scalars["String"]>; token_in?: Maybe<Array<Scalars["String"]>>; token_lt?: Maybe<Scalars["String"]>; token_lte?: Maybe<Scalars["String"]>; token_not?: Maybe<Scalars["String"]>; token_not_contains?: Maybe<Scalars["String"]>; token_not_ends_with?: Maybe<Scalars["String"]>; token_not_in?: Maybe<Array<Scalars["String"]>>; token_not_starts_with?: Maybe<Scalars["String"]>; token_starts_with?: Maybe<Scalars["String"]>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; volume?: Maybe<Scalars["BigDecimal"]>; volumeETH?: Maybe<Scalars["BigDecimal"]>; volumeETH_gt?: Maybe<Scalars["BigDecimal"]>; volumeETH_gte?: Maybe<Scalars["BigDecimal"]>; volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeETH_lt?: Maybe<Scalars["BigDecimal"]>; volumeETH_lte?: Maybe<Scalars["BigDecimal"]>; volumeETH_not?: Maybe<Scalars["BigDecimal"]>; volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_gt?: Maybe<Scalars["BigDecimal"]>; volume_gte?: Maybe<Scalars["BigDecimal"]>; volume_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_lt?: Maybe<Scalars["BigDecimal"]>; volume_lte?: Maybe<Scalars["BigDecimal"]>; volume_not?: Maybe<Scalars["BigDecimal"]>; volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional date?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_gte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional date_lt?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_lte?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not?: Maybe<Scalars["Int"]>
    +
  • +
  • +
    Optional date_not_in?: Maybe<Array<Scalars["Int"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidityUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidityUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional priceUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional priceUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional priceUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional token?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional token_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional token_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional volume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

TokenQuotePairsArgs

+
TokenQuotePairsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Pair_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Pair_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TokenQuotePairsDayDataArgs

+
TokenQuotePairsDayDataArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<PairDayData_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<PairDayData_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Token_Filter

+
Token_Filter: { decimals?: Maybe<Scalars["BigInt"]>; decimals_gt?: Maybe<Scalars["BigInt"]>; decimals_gte?: Maybe<Scalars["BigInt"]>; decimals_in?: Maybe<Array<Scalars["BigInt"]>>; decimals_lt?: Maybe<Scalars["BigInt"]>; decimals_lte?: Maybe<Scalars["BigInt"]>; decimals_not?: Maybe<Scalars["BigInt"]>; decimals_not_in?: Maybe<Array<Scalars["BigInt"]>>; derivedETH?: Maybe<Scalars["BigDecimal"]>; derivedETH_gt?: Maybe<Scalars["BigDecimal"]>; derivedETH_gte?: Maybe<Scalars["BigDecimal"]>; derivedETH_in?: Maybe<Array<Scalars["BigDecimal"]>>; derivedETH_lt?: Maybe<Scalars["BigDecimal"]>; derivedETH_lte?: Maybe<Scalars["BigDecimal"]>; derivedETH_not?: Maybe<Scalars["BigDecimal"]>; derivedETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; factory?: Maybe<Scalars["String"]>; factory_contains?: Maybe<Scalars["String"]>; factory_ends_with?: Maybe<Scalars["String"]>; factory_gt?: Maybe<Scalars["String"]>; factory_gte?: Maybe<Scalars["String"]>; factory_in?: Maybe<Array<Scalars["String"]>>; factory_lt?: Maybe<Scalars["String"]>; factory_lte?: Maybe<Scalars["String"]>; factory_not?: Maybe<Scalars["String"]>; factory_not_contains?: Maybe<Scalars["String"]>; factory_not_ends_with?: Maybe<Scalars["String"]>; factory_not_in?: Maybe<Array<Scalars["String"]>>; factory_not_starts_with?: Maybe<Scalars["String"]>; factory_starts_with?: Maybe<Scalars["String"]>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; liquidity?: Maybe<Scalars["BigDecimal"]>; liquidity_gt?: Maybe<Scalars["BigDecimal"]>; liquidity_gte?: Maybe<Scalars["BigDecimal"]>; liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>; liquidity_lt?: Maybe<Scalars["BigDecimal"]>; liquidity_lte?: Maybe<Scalars["BigDecimal"]>; liquidity_not?: Maybe<Scalars["BigDecimal"]>; liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; name?: Maybe<Scalars["String"]>; name_contains?: Maybe<Scalars["String"]>; name_ends_with?: Maybe<Scalars["String"]>; name_gt?: Maybe<Scalars["String"]>; name_gte?: Maybe<Scalars["String"]>; name_in?: Maybe<Array<Scalars["String"]>>; name_lt?: Maybe<Scalars["String"]>; name_lte?: Maybe<Scalars["String"]>; name_not?: Maybe<Scalars["String"]>; name_not_contains?: Maybe<Scalars["String"]>; name_not_ends_with?: Maybe<Scalars["String"]>; name_not_in?: Maybe<Array<Scalars["String"]>>; name_not_starts_with?: Maybe<Scalars["String"]>; name_starts_with?: Maybe<Scalars["String"]>; symbol?: Maybe<Scalars["String"]>; symbol_contains?: Maybe<Scalars["String"]>; symbol_ends_with?: Maybe<Scalars["String"]>; symbol_gt?: Maybe<Scalars["String"]>; symbol_gte?: Maybe<Scalars["String"]>; symbol_in?: Maybe<Array<Scalars["String"]>>; symbol_lt?: Maybe<Scalars["String"]>; symbol_lte?: Maybe<Scalars["String"]>; symbol_not?: Maybe<Scalars["String"]>; symbol_not_contains?: Maybe<Scalars["String"]>; symbol_not_ends_with?: Maybe<Scalars["String"]>; symbol_not_in?: Maybe<Array<Scalars["String"]>>; symbol_not_starts_with?: Maybe<Scalars["String"]>; symbol_starts_with?: Maybe<Scalars["String"]>; totalSupply?: Maybe<Scalars["BigInt"]>; totalSupply_gt?: Maybe<Scalars["BigInt"]>; totalSupply_gte?: Maybe<Scalars["BigInt"]>; totalSupply_in?: Maybe<Array<Scalars["BigInt"]>>; totalSupply_lt?: Maybe<Scalars["BigInt"]>; totalSupply_lte?: Maybe<Scalars["BigInt"]>; totalSupply_not?: Maybe<Scalars["BigInt"]>; totalSupply_not_in?: Maybe<Array<Scalars["BigInt"]>>; txCount?: Maybe<Scalars["BigInt"]>; txCount_gt?: Maybe<Scalars["BigInt"]>; txCount_gte?: Maybe<Scalars["BigInt"]>; txCount_in?: Maybe<Array<Scalars["BigInt"]>>; txCount_lt?: Maybe<Scalars["BigInt"]>; txCount_lte?: Maybe<Scalars["BigInt"]>; txCount_not?: Maybe<Scalars["BigInt"]>; txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>; untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>; untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume?: Maybe<Scalars["BigDecimal"]>; volumeUSD?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>; volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>; volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not?: Maybe<Scalars["BigDecimal"]>; volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_gt?: Maybe<Scalars["BigDecimal"]>; volume_gte?: Maybe<Scalars["BigDecimal"]>; volume_in?: Maybe<Array<Scalars["BigDecimal"]>>; volume_lt?: Maybe<Scalars["BigDecimal"]>; volume_lte?: Maybe<Scalars["BigDecimal"]>; volume_not?: Maybe<Scalars["BigDecimal"]>; volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional decimals?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional decimals_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional decimals_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional derivedETH?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional derivedETH_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional derivedETH_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional factory?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional factory_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional factory_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional liquidity?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional liquidity_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional liquidity_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional name?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional name_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional name_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_gt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_gte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional symbol_lt?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_lte?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_contains?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_ends_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_not_in?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional symbol_not_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional symbol_starts_with?: Maybe<Scalars["String"]>
    +
  • +
  • +
    Optional totalSupply?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional totalSupply_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional totalSupply_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional txCount_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional txCount_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional untrackedVolumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volumeUSD_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volumeUSD_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_gt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_gte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
  • +
    Optional volume_lt?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_lte?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not?: Maybe<Scalars["BigDecimal"]>
    +
  • +
  • +
    Optional volume_not_in?: Maybe<Array<Scalars["BigDecimal"]>>
    +
  • +
+
+
+
+ +

Transaction

+
Transaction: { __typename?: undefined | "Transaction"; blockNumber: Scalars["BigInt"]; burns: Array<Maybe<Burn>>; id: Scalars["ID"]; mints: Array<Maybe<Mint>>; swaps: Array<Maybe<Swap>>; timestamp: Scalars["BigInt"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "Transaction"
    +
  • +
  • +
    blockNumber: Scalars["BigInt"]
    +
  • +
  • +
    burns: Array<Maybe<Burn>>
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    mints: Array<Maybe<Mint>>
    +
  • +
  • +
    swaps: Array<Maybe<Swap>>
    +
  • +
  • +
    timestamp: Scalars["BigInt"]
    +
  • +
+
+
+
+ +

TransactionBurnsArgs

+
TransactionBurnsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Burn_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Burn_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TransactionMintsArgs

+
TransactionMintsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Mint_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Mint_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

TransactionSwapsArgs

+
TransactionSwapsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<Swap_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<Swap_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

Transaction_Filter

+
Transaction_Filter: { blockNumber?: Maybe<Scalars["BigInt"]>; blockNumber_gt?: Maybe<Scalars["BigInt"]>; blockNumber_gte?: Maybe<Scalars["BigInt"]>; blockNumber_in?: Maybe<Array<Scalars["BigInt"]>>; blockNumber_lt?: Maybe<Scalars["BigInt"]>; blockNumber_lte?: Maybe<Scalars["BigInt"]>; blockNumber_not?: Maybe<Scalars["BigInt"]>; blockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>; burns?: Maybe<Array<Scalars["String"]>>; burns_contains?: Maybe<Array<Scalars["String"]>>; burns_not?: Maybe<Array<Scalars["String"]>>; burns_not_contains?: Maybe<Array<Scalars["String"]>>; id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>>; mints?: Maybe<Array<Scalars["String"]>>; mints_contains?: Maybe<Array<Scalars["String"]>>; mints_not?: Maybe<Array<Scalars["String"]>>; mints_not_contains?: Maybe<Array<Scalars["String"]>>; swaps?: Maybe<Array<Scalars["String"]>>; swaps_contains?: Maybe<Array<Scalars["String"]>>; swaps_not?: Maybe<Array<Scalars["String"]>>; swaps_not_contains?: Maybe<Array<Scalars["String"]>>; timestamp?: Maybe<Scalars["BigInt"]>; timestamp_gt?: Maybe<Scalars["BigInt"]>; timestamp_gte?: Maybe<Scalars["BigInt"]>; timestamp_in?: Maybe<Array<Scalars["BigInt"]>>; timestamp_lt?: Maybe<Scalars["BigInt"]>; timestamp_lte?: Maybe<Scalars["BigInt"]>; timestamp_not?: Maybe<Scalars["BigInt"]>; timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional blockNumber?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional blockNumber_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional blockNumber_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional burns?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional burns_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional mints?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional mints_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_not?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional swaps_not_contains?: Maybe<Array<Scalars["String"]>>
    +
  • +
  • +
    Optional timestamp?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_gte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
  • +
    Optional timestamp_lt?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_lte?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not?: Maybe<Scalars["BigInt"]>
    +
  • +
  • +
    Optional timestamp_not_in?: Maybe<Array<Scalars["BigInt"]>>
    +
  • +
+
+
+
+ +

User

+
User: { __typename?: undefined | "User"; id: Scalars["ID"]; liquidityPositions: Array<LiquidityPosition> }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "User"
    +
  • +
  • +
    id: Scalars["ID"]
    +
  • +
  • +
    liquidityPositions: Array<LiquidityPosition>
    +
  • +
+
+
+
+ +

UserLiquidityPositionsArgs

+
UserLiquidityPositionsArgs: { first?: Maybe<Scalars["Int"]>; orderBy?: Maybe<LiquidityPosition_OrderBy>; orderDirection?: Maybe<OrderDirection>; skip?: Maybe<Scalars["Int"]>; where?: Maybe<LiquidityPosition_Filter> }
+ +
+

Type declaration

+ +
+
+
+ +

User_Filter

+
User_Filter: { id?: Maybe<Scalars["ID"]>; id_gt?: Maybe<Scalars["ID"]>; id_gte?: Maybe<Scalars["ID"]>; id_in?: Maybe<Array<Scalars["ID"]>>; id_lt?: Maybe<Scalars["ID"]>; id_lte?: Maybe<Scalars["ID"]>; id_not?: Maybe<Scalars["ID"]>; id_not_in?: Maybe<Array<Scalars["ID"]>> }
+ +
+

Type declaration

+
    +
  • +
    Optional id?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_gte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
  • +
    Optional id_lt?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_lte?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not?: Maybe<Scalars["ID"]>
    +
  • +
  • +
    Optional id_not_in?: Maybe<Array<Scalars["ID"]>>
    +
  • +
+
+
+
+ +

_Block_

+
_Block_: { __typename?: undefined | "_Block_"; hash?: Maybe<Scalars["Bytes"]>; number: Scalars["Int"] }
+ +
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "_Block_"
    +
  • +
  • +
    Optional hash?: Maybe<Scalars["Bytes"]>
    +
    +
    +

    The hash of the block

    +
    +
    +
  • +
  • +
    number: Scalars["Int"]
    +
    +
    +

    The block number

    +
    +
    +
  • +
+
+
+
+ +

_Meta_

+
_Meta_: { __typename?: undefined | "_Meta_"; block: _Block_; deployment: Scalars["String"]; hasIndexingErrors: Scalars["Boolean"] }
+ +
+
+

The type for the top-level _meta field

+
+
+
+

Type declaration

+
    +
  • +
    Optional __typename?: undefined | "_Meta_"
    +
  • +
  • +
    block: _Block_
    +
    +
    +

    Information about a specific subgraph block. The hash of the block + will be null if the _meta field has a block constraint that asks for + a block number. It will be filled if the _meta field has no block constraint + and therefore asks for the latest block

    +
    +
    +
  • +
  • +
    deployment: Scalars["String"]
    +
    +
    +

    The deployment ID

    +
    +
    +
  • +
  • +
    hasIndexingErrors: Scalars["Boolean"]
    +
    +
    +

    If true, the subgraph encountered indexing errors at some past block

    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+
+

Legend

+
+
    +
  • Variable
  • +
  • Function
  • +
  • Type alias
  • +
  • Type alias with type parameter
  • +
+
    +
  • Enumeration
  • +
+
    +
  • Interface
  • +
+
    +
  • Class
  • +
+
+
+
+
+

Generated using TypeDoc

+
+
+ + + \ No newline at end of file diff --git a/docs/sushi_logo.svg b/docs/sushi_logo.svg new file mode 100644 index 0000000..b7bb149 --- /dev/null +++ b/docs/sushi_logo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..f9e8f34 --- /dev/null +++ b/package.json @@ -0,0 +1,114 @@ +{ + "name": "sushi-sh", + "description": "Shell Client for Sushiswap protocol", + "version": "1.1.0", + "license": "MIT", + "main": "lib/index.js", + "bin": { + "sushi": "bin/run" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/manifoldfinance/sushi-sh.git" + }, + "scripts": { + "build": "npx tsc -b", + "postpack": "rm -f oclif.manifest.json", + "prepack": "rm -rf lib && tsc -b && oclif-dev manifest", + "test": "exit 0", + "docs": "npx typedoc src/index.ts", + "version": "npx oclif-dev readme && git add README.md", + "codegen": "npx graphql-codegen --config codegen.yml", + "release": "npx oclif-dev pack:macos && oclif-dev pack:win && npm publish --access public", + "lint": "npx eslint src --ext .ts --fix" + }, + "types": "lib/index.d.ts", + "dependencies": { + "@graphql-codegen/typescript-oclif": "^2.1.3", + "@graphql-codegen/typescript-operations": "^2.1.2", + "@oclif/command": "^1.8.0", + "@oclif/config": "^1.17.0", + "@oclif/core": "^0.5.34", + "@oclif/plugin-autocomplete": "^0.3.0", + "@oclif/plugin-commands": "^1.3.0", + "@oclif/plugin-help": "^3", + "@oclif/plugin-not-found": "^1.2.4", + "@oclif/plugin-update": "^1.3.10", + "@oclif/plugin-warn-if-update-available": "^1.7.0", + "graphql": "^15.5.0", + "graphql-request": "^3.5.0", + "graphql-tag": "^2.12.4" + }, + "devDependencies": { + "@graphprotocol/graph-cli": "^0.21.1", + "@graphprotocol/graph-ts": "^0.20.0", + "@graphql-codegen/cli": "^2.1.1", + "@graphql-codegen/near-operation-file-preset": "^2.1.2", + "@graphql-codegen/typescript": "^2.2.0", + "@oclif/dev-cli": "^1.26.0", + "@oclif/test": "^1", + "@types/node": "^14", + "eslint": "^7.26.0", + "eslint-config-airbnb-base": "^14.2.0", + "eslint-config-oclif": "^3.1", + "eslint-config-oclif-typescript": "^0.2.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-prettier": "^3.1.4", + "globby": "^11.0.3", + "prettier": "^2.1.1", + "shx": "^0.3.3", + "ts-node": "^9.1.1", + "tslib": "^2.3.1", + "typedoc": "^0.20.36", + "typedoc-neo-theme": "^1.1.1", + "typescript": "^4.2.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "files": [ + "/bin", + "/lib", + "/oclif.manifest.json" + ], + "homepage": "https://github.com/manifoldfinance/sushi-sh", + "bugs": { + "url": "https://github.com/manifoldfinance/sushi-sh/issues" + }, + "keywords": [ + "oclif", + "ethereum", + "sushiswap", + "sushi", + "terminal", + "blockchian", + "client", + "defi" + ], + "author": "SEE CONTRIBUTORS", + "publishConfig": { + "registry": "https://registry.npmjs.org/" + }, + "oclif": { + "commands": "./lib/commands", + "bin": "sushi", + "macos": { + "identifier": "com.sushi.cli" + }, + "plugins": [ + "@oclif/plugin-help", + "@oclif/plugin-autocomplete", + "@oclif/plugin-commands", + "@oclif/plugin-help", + "@oclif/plugin-not-found", + "@oclif/plugin-update", + "@oclif/plugin-warn-if-update-available" + ] + }, + "directories": { + "lib": "lib", + "bin": "bin", + "docs": "docs" + } +} diff --git a/src/commands/_meta/_meta.gql b/src/commands/_meta/_meta.gql new file mode 100644 index 0000000..25e28c7 --- /dev/null +++ b/src/commands/_meta/_meta.gql @@ -0,0 +1,10 @@ +query _meta($block: Block_height){ + _meta(block: $block){ + block{ + hash + number + } + deployment + hasIndexingErrors + } +} \ No newline at end of file diff --git a/src/commands/_meta/index.ts b/src/commands/_meta/index.ts new file mode 100644 index 0000000..5963f2c --- /dev/null +++ b/src/commands/_meta/index.ts @@ -0,0 +1,34 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const _MetaDocument = ` +query _meta($block: Block_height) { + _meta(block: $block) { + block { + hash + number + } + deployment + hasIndexingErrors + } +}` + +export default class _meta extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(_meta); + await handler({ command: this, query: _MetaDocument, variables: flags }); + } +} diff --git a/src/commands/bundle/bundle.gql b/src/commands/bundle/bundle.gql new file mode 100644 index 0000000..e0c66ab --- /dev/null +++ b/src/commands/bundle/bundle.gql @@ -0,0 +1,6 @@ +query bundle($id: ID!, $block: Block_height){ + bundle(id: $id, block: $block){ + id + ethPrice + } +} \ No newline at end of file diff --git a/src/commands/bundle/index.ts b/src/commands/bundle/index.ts new file mode 100644 index 0000000..8bede40 --- /dev/null +++ b/src/commands/bundle/index.ts @@ -0,0 +1,34 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const BundleDocument = ` +query bundle($id: ID!, $block: Block_height) { + bundle(id: $id, block: $block) { + id + ethPrice + } +}` + +export default class bundle extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(bundle); + await handler({ command: this, query: BundleDocument, variables: flags }); + } +} diff --git a/src/commands/bundles/bundles.gql b/src/commands/bundles/bundles.gql new file mode 100644 index 0000000..8d988ad --- /dev/null +++ b/src/commands/bundles/bundles.gql @@ -0,0 +1,6 @@ +query bundles($skip: Int, $first: Int, $orderBy: Bundle_orderBy, $orderDirection: OrderDirection, $where: Bundle_filter, $block: Block_height){ + bundles(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where, block: $block){ + id + ethPrice + } +} \ No newline at end of file diff --git a/src/commands/bundles/index.ts b/src/commands/bundles/index.ts new file mode 100644 index 0000000..c642652 --- /dev/null +++ b/src/commands/bundles/index.ts @@ -0,0 +1,57 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const BundlesDocument = ` +query bundles($skip: Int, $first: Int, $orderBy: Bundle_orderBy, $orderDirection: OrderDirection, $where: Bundle_filter, $block: Block_height) { + bundles( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + block: $block + ) { + id + ethPrice + } +}` + +export default class bundles extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(bundles); + await handler({ command: this, query: BundlesDocument, variables: flags }); + } +} diff --git a/src/commands/burn/burn.gql b/src/commands/burn/burn.gql new file mode 100644 index 0000000..202ab71 --- /dev/null +++ b/src/commands/burn/burn.gql @@ -0,0 +1,229 @@ +query burn($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height){ + burn(id: $id, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } +} \ No newline at end of file diff --git a/src/commands/burn/index.ts b/src/commands/burn/index.ts new file mode 100644 index 0000000..6fd33a1 --- /dev/null +++ b/src/commands/burn/index.ts @@ -0,0 +1,387 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const BurnDocument = ` +query burn($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) { + burn(id: $id, block: $block) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } +}` + +export default class burn extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(burn); + await handler({ command: this, query: BurnDocument, variables: flags }); + } +} diff --git a/src/commands/burns/burns.gql b/src/commands/burns/burns.gql new file mode 100644 index 0000000..2141045 --- /dev/null +++ b/src/commands/burns/burns.gql @@ -0,0 +1,205 @@ +query burns($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Burn_orderBy, $orderDirection2: OrderDirection, $where2: Burn_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Burn_orderBy, $orderDirection5: OrderDirection, $where5: Burn_filter, $block: Block_height){ + burns(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + swaps(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } +} \ No newline at end of file diff --git a/src/commands/burns/index.ts b/src/commands/burns/index.ts new file mode 100644 index 0000000..841a701 --- /dev/null +++ b/src/commands/burns/index.ts @@ -0,0 +1,386 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const BurnsDocument = ` +query burns($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Burn_orderBy, $orderDirection2: OrderDirection, $where2: Burn_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Burn_orderBy, $orderDirection5: OrderDirection, $where5: Burn_filter, $block: Block_height) { + burns( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + block: $block + ) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + swaps( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } +}` + +export default class burns extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + skip5: flags.integer({ + multiple: false, + required: false, + }), + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(burns); + await handler({ command: this, query: BurnsDocument, variables: flags }); + } +} diff --git a/src/commands/liquidityPosition/index.ts b/src/commands/liquidityPosition/index.ts new file mode 100644 index 0000000..b17f3ff --- /dev/null +++ b/src/commands/liquidityPosition/index.ts @@ -0,0 +1,240 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const LiquidityPositionDocument = ` +query liquidityPosition($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) { + liquidityPosition(id: $id, block: $block) { + id + user { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + user { + id + usdSwapped + } + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } +}` + +export default class liquidityPosition extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(liquidityPosition); + await handler({ command: this, query: LiquidityPositionDocument, variables: flags }); + } +} diff --git a/src/commands/liquidityPosition/liquidityPosition.gql b/src/commands/liquidityPosition/liquidityPosition.gql new file mode 100644 index 0000000..7a047a4 --- /dev/null +++ b/src/commands/liquidityPosition/liquidityPosition.gql @@ -0,0 +1,134 @@ +query liquidityPosition($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height){ + liquidityPosition(id: $id, block: $block){ + id + user{ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + user{ + id + usdSwapped + } + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } +} \ No newline at end of file diff --git a/src/commands/liquidityPositionSnapshot/index.ts b/src/commands/liquidityPositionSnapshot/index.ts new file mode 100644 index 0000000..928ccd9 --- /dev/null +++ b/src/commands/liquidityPositionSnapshot/index.ts @@ -0,0 +1,275 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const LiquidityPositionSnapshotDocument = ` +query liquidityPositionSnapshot($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) { + liquidityPositionSnapshot(id: $id, block: $block) { + id + liquidityPosition { + id + user { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + user { + id + usdSwapped + } + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + timestamp + block + user { + id + usdSwapped + } + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + token0PriceUSD + token1PriceUSD + reserve0 + reserve1 + reserveUSD + liquidityTokenTotalSupply + liquidityTokenBalance + } +}` + +export default class liquidityPositionSnapshot extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(liquidityPositionSnapshot); + await handler({ command: this, query: LiquidityPositionSnapshotDocument, variables: flags }); + } +} diff --git a/src/commands/liquidityPositionSnapshot/liquidityPositionSnapshot.gql b/src/commands/liquidityPositionSnapshot/liquidityPositionSnapshot.gql new file mode 100644 index 0000000..18be8cd --- /dev/null +++ b/src/commands/liquidityPositionSnapshot/liquidityPositionSnapshot.gql @@ -0,0 +1,169 @@ +query liquidityPositionSnapshot($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height){ + liquidityPositionSnapshot(id: $id, block: $block){ + id + liquidityPosition{ + id + user{ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + user{ + id + usdSwapped + } + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + timestamp + block + user{ + id + usdSwapped + } + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + token0PriceUSD + token1PriceUSD + reserve0 + reserve1 + reserveUSD + liquidityTokenTotalSupply + liquidityTokenBalance + } +} \ No newline at end of file diff --git a/src/commands/liquidityPositionSnapshots/index.ts b/src/commands/liquidityPositionSnapshots/index.ts new file mode 100644 index 0000000..d3cf843 --- /dev/null +++ b/src/commands/liquidityPositionSnapshots/index.ts @@ -0,0 +1,298 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const LiquidityPositionSnapshotsDocument = ` +query liquidityPositionSnapshots($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPositionSnapshot_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPositionSnapshot_filter, $block: Block_height) { + liquidityPositionSnapshots( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + block: $block + ) { + id + liquidityPosition { + id + user { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + user { + id + usdSwapped + } + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + timestamp + block + user { + id + usdSwapped + } + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + token0PriceUSD + token1PriceUSD + reserve0 + reserve1 + reserveUSD + liquidityTokenTotalSupply + liquidityTokenBalance + } +}` + +export default class liquidityPositionSnapshots extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(liquidityPositionSnapshots); + await handler({ command: this, query: LiquidityPositionSnapshotsDocument, variables: flags }); + } +} diff --git a/src/commands/liquidityPositionSnapshots/liquidityPositionSnapshots.gql b/src/commands/liquidityPositionSnapshots/liquidityPositionSnapshots.gql new file mode 100644 index 0000000..af60984 --- /dev/null +++ b/src/commands/liquidityPositionSnapshots/liquidityPositionSnapshots.gql @@ -0,0 +1,169 @@ +query liquidityPositionSnapshots($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPositionSnapshot_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPositionSnapshot_filter, $block: Block_height){ + liquidityPositionSnapshots(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3, block: $block){ + id + liquidityPosition{ + id + user{ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + user{ + id + usdSwapped + } + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + timestamp + block + user{ + id + usdSwapped + } + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + token0PriceUSD + token1PriceUSD + reserve0 + reserve1 + reserveUSD + liquidityTokenTotalSupply + liquidityTokenBalance + } +} \ No newline at end of file diff --git a/src/commands/liquidityPositions/index.ts b/src/commands/liquidityPositions/index.ts new file mode 100644 index 0000000..5700e85 --- /dev/null +++ b/src/commands/liquidityPositions/index.ts @@ -0,0 +1,240 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const LiquidityPositionsDocument = ` +query liquidityPositions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $block: Block_height) { + liquidityPositions( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + block: $block + ) { + id + user { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + liquidityTokenBalance + } +}` + +export default class liquidityPositions extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(liquidityPositions); + await handler({ command: this, query: LiquidityPositionsDocument, variables: flags }); + } +} diff --git a/src/commands/liquidityPositions/liquidityPositions.gql b/src/commands/liquidityPositions/liquidityPositions.gql new file mode 100644 index 0000000..d1d8866 --- /dev/null +++ b/src/commands/liquidityPositions/liquidityPositions.gql @@ -0,0 +1,111 @@ +query liquidityPositions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $block: Block_height){ + liquidityPositions(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3, block: $block){ + id + user{ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + liquidityTokenBalance + } +} \ No newline at end of file diff --git a/src/commands/mint/index.ts b/src/commands/mint/index.ts new file mode 100644 index 0000000..039c604 --- /dev/null +++ b/src/commands/mint/index.ts @@ -0,0 +1,386 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const MintDocument = ` +query mint($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) { + mint(id: $id, block: $block) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } +}` + +export default class mint extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(mint); + await handler({ command: this, query: MintDocument, variables: flags }); + } +} diff --git a/src/commands/mint/mint.gql b/src/commands/mint/mint.gql new file mode 100644 index 0000000..54aa0af --- /dev/null +++ b/src/commands/mint/mint.gql @@ -0,0 +1,228 @@ +query mint($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height){ + mint(id: $id, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } +} \ No newline at end of file diff --git a/src/commands/mints/index.ts b/src/commands/mints/index.ts new file mode 100644 index 0000000..2557ec3 --- /dev/null +++ b/src/commands/mints/index.ts @@ -0,0 +1,385 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const MintsDocument = ` +query mints($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $block: Block_height) { + mints( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + block: $block + ) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } +}` + +export default class mints extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + skip5: flags.integer({ + multiple: false, + required: false, + }), + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(mints); + await handler({ command: this, query: MintsDocument, variables: flags }); + } +} diff --git a/src/commands/mints/mints.gql b/src/commands/mints/mints.gql new file mode 100644 index 0000000..718fcb5 --- /dev/null +++ b/src/commands/mints/mints.gql @@ -0,0 +1,204 @@ +query mints($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $block: Block_height){ + mints(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } +} \ No newline at end of file diff --git a/src/commands/pair/index.ts b/src/commands/pair/index.ts new file mode 100644 index 0000000..b8572d6 --- /dev/null +++ b/src/commands/pair/index.ts @@ -0,0 +1,179 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairDocument = ` +query pair($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) { + pair(id: $id, block: $block) { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } +}` + +export default class pair extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pair); + await handler({ command: this, query: PairDocument, variables: flags }); + } +} diff --git a/src/commands/pair/pair.gql b/src/commands/pair/pair.gql new file mode 100644 index 0000000..dc610e8 --- /dev/null +++ b/src/commands/pair/pair.gql @@ -0,0 +1,99 @@ +query pair($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height){ + pair(id: $id, block: $block){ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } +} \ No newline at end of file diff --git a/src/commands/pairDayData/index.ts b/src/commands/pairDayData/index.ts new file mode 100644 index 0000000..4f092ee --- /dev/null +++ b/src/commands/pairDayData/index.ts @@ -0,0 +1,173 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairDayDataDocument = ` +query pairDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) { + pairDayData(id: $id, block: $block) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } +}` + +export default class pairDayData extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pairDayData); + await handler({ command: this, query: PairDayDataDocument, variables: flags }); + } +} diff --git a/src/commands/pairDayData/pairDayData.gql b/src/commands/pairDayData/pairDayData.gql new file mode 100644 index 0000000..acc37f4 --- /dev/null +++ b/src/commands/pairDayData/pairDayData.gql @@ -0,0 +1,93 @@ +query pairDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height){ + pairDayData(id: $id, block: $block){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } +} \ No newline at end of file diff --git a/src/commands/pairDayDatas/index.ts b/src/commands/pairDayDatas/index.ts new file mode 100644 index 0000000..780ffcb --- /dev/null +++ b/src/commands/pairDayDatas/index.ts @@ -0,0 +1,196 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairDayDatasDocument = ` +query pairDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $block: Block_height) { + pairDayDatas( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + block: $block + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } +}` + +export default class pairDayDatas extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pairDayDatas); + await handler({ command: this, query: PairDayDatasDocument, variables: flags }); + } +} diff --git a/src/commands/pairDayDatas/pairDayDatas.gql b/src/commands/pairDayDatas/pairDayDatas.gql new file mode 100644 index 0000000..012c874 --- /dev/null +++ b/src/commands/pairDayDatas/pairDayDatas.gql @@ -0,0 +1,93 @@ +query pairDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $block: Block_height){ + pairDayDatas(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2, block: $block){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } +} \ No newline at end of file diff --git a/src/commands/pairHourData/index.ts b/src/commands/pairHourData/index.ts new file mode 100644 index 0000000..ce8746a --- /dev/null +++ b/src/commands/pairHourData/index.ts @@ -0,0 +1,190 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairHourDataDocument = ` +query pairHourData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height) { + pairHourData(id: $id, block: $block) { + id + hourStartUnix + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + reserve0 + reserve1 + reserveUSD + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns + } +}` + +export default class pairHourData extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pairHourData); + await handler({ command: this, query: PairHourDataDocument, variables: flags }); + } +} diff --git a/src/commands/pairHourData/pairHourData.gql b/src/commands/pairHourData/pairHourData.gql new file mode 100644 index 0000000..d7bc10f --- /dev/null +++ b/src/commands/pairHourData/pairHourData.gql @@ -0,0 +1,110 @@ +query pairHourData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $id: ID!, $block: Block_height){ + pairHourData(id: $id, block: $block){ + id + hourStartUnix + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + reserve0 + reserve1 + reserveUSD + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns + } +} \ No newline at end of file diff --git a/src/commands/pairHourDatas/index.ts b/src/commands/pairHourDatas/index.ts new file mode 100644 index 0000000..4c7830c --- /dev/null +++ b/src/commands/pairHourDatas/index.ts @@ -0,0 +1,213 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairHourDatasDocument = ` +query pairHourDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairHourData_orderBy, $orderDirection2: OrderDirection, $where2: PairHourData_filter, $block: Block_height) { + pairHourDatas( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + block: $block + ) { + id + hourStartUnix + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + reserve0 + reserve1 + reserveUSD + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns + } +}` + +export default class pairHourDatas extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pairHourDatas); + await handler({ command: this, query: PairHourDatasDocument, variables: flags }); + } +} diff --git a/src/commands/pairHourDatas/pairHourDatas.gql b/src/commands/pairHourDatas/pairHourDatas.gql new file mode 100644 index 0000000..612aeba --- /dev/null +++ b/src/commands/pairHourDatas/pairHourDatas.gql @@ -0,0 +1,110 @@ +query pairHourDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairHourData_orderBy, $orderDirection2: OrderDirection, $where2: PairHourData_filter, $block: Block_height){ + pairHourDatas(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2, block: $block){ + id + hourStartUnix + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + reserve0 + reserve1 + reserveUSD + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns + } +} \ No newline at end of file diff --git a/src/commands/pairs/index.ts b/src/commands/pairs/index.ts new file mode 100644 index 0000000..bafa34f --- /dev/null +++ b/src/commands/pairs/index.ts @@ -0,0 +1,202 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const PairsDocument = ` +query pairs($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Pair_orderBy, $orderDirection2: OrderDirection, $where2: Pair_filter, $block: Block_height) { + pairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + block: $block + ) { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } +}` + +export default class pairs extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(pairs); + await handler({ command: this, query: PairsDocument, variables: flags }); + } +} diff --git a/src/commands/pairs/pairs.gql b/src/commands/pairs/pairs.gql new file mode 100644 index 0000000..d3094ff --- /dev/null +++ b/src/commands/pairs/pairs.gql @@ -0,0 +1,99 @@ +query pairs($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Pair_orderBy, $orderDirection2: OrderDirection, $where2: Pair_filter, $block: Block_height){ + pairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2, block: $block){ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } +} \ No newline at end of file diff --git a/src/commands/sushiswapBar/.gitkeep b/src/commands/sushiswapBar/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/commands/sushiswapBento/.gitkeep b/src/commands/sushiswapBento/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/commands/sushiswapChef/.gitkeep b/src/commands/sushiswapChef/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/commands/sushiswapDayData/index.ts b/src/commands/sushiswapDayData/index.ts new file mode 100644 index 0000000..cedea3d --- /dev/null +++ b/src/commands/sushiswapDayData/index.ts @@ -0,0 +1,277 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SushiswapDayDataDocument = ` +query sushiswapDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) { + sushiswapDayData(id: $id, block: $block) { + id + date + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + maxStored + mostLiquidTokens( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + txCount + } +}` + +export default class sushiswapDayData extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(sushiswapDayData); + await handler({ command: this, query: SushiswapDayDataDocument, variables: flags }); + } +} diff --git a/src/commands/sushiswapDayData/sushiswapDayData.gql b/src/commands/sushiswapDayData/sushiswapDayData.gql new file mode 100644 index 0000000..627680b --- /dev/null +++ b/src/commands/sushiswapDayData/sushiswapDayData.gql @@ -0,0 +1,119 @@ +query sushiswapDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height){ + sushiswapDayData(id: $id, block: $block){ + id + date + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + maxStored + mostLiquidTokens(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + txCount + } +} \ No newline at end of file diff --git a/src/commands/sushiswapDayDatas/index.ts b/src/commands/sushiswapDayDatas/index.ts new file mode 100644 index 0000000..d94d2de --- /dev/null +++ b/src/commands/sushiswapDayDatas/index.ts @@ -0,0 +1,300 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SushiswapDayDatasDocument = ` +query sushiswapDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapDayData_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapDayData_filter, $block: Block_height) { + sushiswapDayDatas( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + block: $block + ) { + id + date + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + maxStored + mostLiquidTokens( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + txCount + } +}` + +export default class sushiswapDayDatas extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + skip5: flags.integer({ + multiple: false, + required: false, + }), + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(sushiswapDayDatas); + await handler({ command: this, query: SushiswapDayDatasDocument, variables: flags }); + } +} diff --git a/src/commands/sushiswapDayDatas/sushiswapDayDatas.gql b/src/commands/sushiswapDayDatas/sushiswapDayDatas.gql new file mode 100644 index 0000000..3edefd1 --- /dev/null +++ b/src/commands/sushiswapDayDatas/sushiswapDayDatas.gql @@ -0,0 +1,119 @@ +query sushiswapDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapDayData_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapDayData_filter, $block: Block_height){ + sushiswapDayDatas(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5, block: $block){ + id + date + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + maxStored + mostLiquidTokens(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + txCount + } +} \ No newline at end of file diff --git a/src/commands/sushiswapFactories/index.ts b/src/commands/sushiswapFactories/index.ts new file mode 100644 index 0000000..a3e0396 --- /dev/null +++ b/src/commands/sushiswapFactories/index.ts @@ -0,0 +1,297 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SushiswapFactoriesDocument = ` +query sushiswapFactories($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapFactory_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapFactory_filter, $block: Block_height) { + sushiswapFactories( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + block: $block + ) { + id + pairCount + totalVolumeUSD + totalVolumeETH + untrackedVolumeUSD + totalLiquidityUSD + totalLiquidityETH + txCount + mostLiquidTokens( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + } +}` + +export default class sushiswapFactories extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + skip5: flags.integer({ + multiple: false, + required: false, + }), + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(sushiswapFactories); + await handler({ command: this, query: SushiswapFactoriesDocument, variables: flags }); + } +} diff --git a/src/commands/sushiswapFactories/sushiswapFactories.gql b/src/commands/sushiswapFactories/sushiswapFactories.gql new file mode 100644 index 0000000..57d7c12 --- /dev/null +++ b/src/commands/sushiswapFactories/sushiswapFactories.gql @@ -0,0 +1,116 @@ +query sushiswapFactories($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $skip5: Int, $first5: Int, $orderBy5: SushiswapFactory_orderBy, $orderDirection5: OrderDirection, $where5: SushiswapFactory_filter, $block: Block_height){ + sushiswapFactories(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5, block: $block){ + id + pairCount + totalVolumeUSD + totalVolumeETH + untrackedVolumeUSD + totalLiquidityUSD + totalLiquidityETH + txCount + mostLiquidTokens(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + } +} \ No newline at end of file diff --git a/src/commands/sushiswapFactory/index.ts b/src/commands/sushiswapFactory/index.ts new file mode 100644 index 0000000..2e4fa44 --- /dev/null +++ b/src/commands/sushiswapFactory/index.ts @@ -0,0 +1,274 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SushiswapFactoryDocument = ` +query sushiswapFactory($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height) { + sushiswapFactory(id: $id, block: $block) { + id + pairCount + totalVolumeUSD + totalVolumeETH + untrackedVolumeUSD + totalLiquidityUSD + totalLiquidityETH + txCount + mostLiquidTokens( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + } +}` + +export default class sushiswapFactory extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(sushiswapFactory); + await handler({ command: this, query: SushiswapFactoryDocument, variables: flags }); + } +} diff --git a/src/commands/sushiswapFactory/sushiswapFactory.gql b/src/commands/sushiswapFactory/sushiswapFactory.gql new file mode 100644 index 0000000..dd9aab5 --- /dev/null +++ b/src/commands/sushiswapFactory/sushiswapFactory.gql @@ -0,0 +1,116 @@ +query sushiswapFactory($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $id: ID!, $block: Block_height){ + sushiswapFactory(id: $id, block: $block){ + id + pairCount + totalVolumeUSD + totalVolumeETH + untrackedVolumeUSD + totalLiquidityUSD + totalLiquidityETH + txCount + mostLiquidTokens(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + } +} \ No newline at end of file diff --git a/src/commands/sushiswapMiso/.gitkeep b/src/commands/sushiswapMiso/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/commands/swap/index.ts b/src/commands/swap/index.ts new file mode 100644 index 0000000..e10826e --- /dev/null +++ b/src/commands/swap/index.ts @@ -0,0 +1,385 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SwapDocument = ` +query swap($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) { + swap(id: $id, block: $block) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } +}` + +export default class swap extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(swap); + await handler({ command: this, query: SwapDocument, variables: flags }); + } +} diff --git a/src/commands/swap/swap.gql b/src/commands/swap/swap.gql new file mode 100644 index 0000000..162ab79 --- /dev/null +++ b/src/commands/swap/swap.gql @@ -0,0 +1,227 @@ +query swap($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height){ + swap(id: $id, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } +} \ No newline at end of file diff --git a/src/commands/swaps/index.ts b/src/commands/swaps/index.ts new file mode 100644 index 0000000..60aa20f --- /dev/null +++ b/src/commands/swaps/index.ts @@ -0,0 +1,384 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const SwapsDocument = ` +query swaps($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Swap_orderBy, $orderDirection5: OrderDirection, $where5: Swap_filter, $block: Block_height) { + swaps( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + block: $block + ) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } +}` + +export default class swaps extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + skip5: flags.integer({ + multiple: false, + required: false, + }), + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(swaps); + await handler({ command: this, query: SwapsDocument, variables: flags }); + } +} diff --git a/src/commands/swaps/swaps.gql b/src/commands/swaps/swaps.gql new file mode 100644 index 0000000..9e234bd --- /dev/null +++ b/src/commands/swaps/swaps.gql @@ -0,0 +1,203 @@ +query swaps($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $skip5: Int, $first5: Int, $orderBy5: Swap_orderBy, $orderDirection5: OrderDirection, $where5: Swap_filter, $block: Block_height){ + swaps(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5, block: $block){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } + timestamp + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } +} \ No newline at end of file diff --git a/src/commands/token/index.ts b/src/commands/token/index.ts new file mode 100644 index 0000000..95e67f7 --- /dev/null +++ b/src/commands/token/index.ts @@ -0,0 +1,186 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TokenDocument = ` +query token($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $id: ID!, $block: Block_height) { + token(id: $id, block: $block) { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +}` + +export default class token extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(token); + await handler({ command: this, query: TokenDocument, variables: flags }); + } +} diff --git a/src/commands/token/token.gql b/src/commands/token/token.gql new file mode 100644 index 0000000..8d14e80 --- /dev/null +++ b/src/commands/token/token.gql @@ -0,0 +1,80 @@ +query token($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $id: ID!, $block: Block_height){ + token(id: $id, block: $block){ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +} \ No newline at end of file diff --git a/src/commands/tokenDayData/index.ts b/src/commands/tokenDayData/index.ts new file mode 100644 index 0000000..432c0bb --- /dev/null +++ b/src/commands/tokenDayData/index.ts @@ -0,0 +1,238 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TokenDayDataDocument = ` +query tokenDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $id: ID!, $block: Block_height) { + tokenDayData(id: $id, block: $block) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +}` + +export default class tokenDayData extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(tokenDayData); + await handler({ command: this, query: TokenDayDataDocument, variables: flags }); + } +} diff --git a/src/commands/tokenDayData/tokenDayData.gql b/src/commands/tokenDayData/tokenDayData.gql new file mode 100644 index 0000000..497ff6e --- /dev/null +++ b/src/commands/tokenDayData/tokenDayData.gql @@ -0,0 +1,106 @@ +query tokenDayData($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $id: ID!, $block: Block_height){ + tokenDayData(id: $id, block: $block){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +} \ No newline at end of file diff --git a/src/commands/tokenDayDatas/index.ts b/src/commands/tokenDayDatas/index.ts new file mode 100644 index 0000000..03d0ee4 --- /dev/null +++ b/src/commands/tokenDayDatas/index.ts @@ -0,0 +1,261 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TokenDayDatasDocument = ` +query tokenDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $block: Block_height) { + tokenDayDatas( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + block: $block + ) { + id + date + token { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +}` + +export default class tokenDayDatas extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(tokenDayDatas); + await handler({ command: this, query: TokenDayDatasDocument, variables: flags }); + } +} diff --git a/src/commands/tokenDayDatas/tokenDayDatas.gql b/src/commands/tokenDayDatas/tokenDayDatas.gql new file mode 100644 index 0000000..04eee72 --- /dev/null +++ b/src/commands/tokenDayDatas/tokenDayDatas.gql @@ -0,0 +1,106 @@ +query tokenDayDatas($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: PairDayData_orderBy, $orderDirection3: OrderDirection, $where3: PairDayData_filter, $skip4: Int, $first4: Int, $orderBy4: TokenDayData_orderBy, $orderDirection4: OrderDirection, $where4: TokenDayData_filter, $block: Block_height){ + tokenDayDatas(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4, block: $block){ + id + date + token{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD + priceUSD + maxStored + mostLiquidPairs(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +} \ No newline at end of file diff --git a/src/commands/tokens/index.ts b/src/commands/tokens/index.ts new file mode 100644 index 0000000..b331bf1 --- /dev/null +++ b/src/commands/tokens/index.ts @@ -0,0 +1,209 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TokensDocument = ` +query tokens($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: Token_orderBy, $orderDirection3: OrderDirection, $where3: Token_filter, $block: Block_height) { + tokens( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + block: $block + ) { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +}` + +export default class tokens extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(tokens); + await handler({ command: this, query: TokensDocument, variables: flags }); + } +} diff --git a/src/commands/tokens/tokens.gql b/src/commands/tokens/tokens.gql new file mode 100644 index 0000000..1e6b75f --- /dev/null +++ b/src/commands/tokens/tokens.gql @@ -0,0 +1,80 @@ +query tokens($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: PairDayData_orderBy, $orderDirection2: OrderDirection, $where2: PairDayData_filter, $skip3: Int, $first3: Int, $orderBy3: Token_orderBy, $orderDirection3: OrderDirection, $where3: Token_filter, $block: Block_height){ + tokens(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3, block: $block){ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } +} \ No newline at end of file diff --git a/src/commands/transaction/index.ts b/src/commands/transaction/index.ts new file mode 100644 index 0000000..c110812 --- /dev/null +++ b/src/commands/transaction/index.ts @@ -0,0 +1,354 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TransactionDocument = ` +query transaction($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height) { + transaction(id: $id, block: $block) { + id + blockNumber + timestamp + mints( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + burns( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } +}` + +export default class transaction extends Command { + + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(transaction); + await handler({ command: this, query: TransactionDocument, variables: flags }); + } +} diff --git a/src/commands/transaction/transaction.gql b/src/commands/transaction/transaction.gql new file mode 100644 index 0000000..776e487 --- /dev/null +++ b/src/commands/transaction/transaction.gql @@ -0,0 +1,196 @@ +query transaction($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Swap_orderBy, $orderDirection2: OrderDirection, $where2: Swap_filter, $skip3: Int, $first3: Int, $orderBy3: Burn_orderBy, $orderDirection3: OrderDirection, $where3: Burn_filter, $skip4: Int, $first4: Int, $orderBy4: Mint_orderBy, $orderDirection4: OrderDirection, $where4: Mint_filter, $id: ID!, $block: Block_height){ + transaction(id: $id, block: $block){ + id + blockNumber + timestamp + mints(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + burns(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + } +} \ No newline at end of file diff --git a/src/commands/transactions/index.ts b/src/commands/transactions/index.ts new file mode 100644 index 0000000..e2d10d7 --- /dev/null +++ b/src/commands/transactions/index.ts @@ -0,0 +1,516 @@ +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const TransactionsDocument = ` +query transactions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $skip6: Int, $first6: Int, $orderBy6: Burn_orderBy, $orderDirection6: OrderDirection, $where6: Burn_filter, $skip7: Int, $first7: Int, $orderBy7: Swap_orderBy, $orderDirection7: OrderDirection, $where7: Swap_filter, $skip8: Int, $first8: Int, $orderBy8: Transaction_orderBy, $orderDirection8: OrderDirection, $where8: Transaction_filter, $block: Block_height) { + transactions( + skip: $skip8 + first: $first8 + orderBy: $orderBy8 + orderDirection: $orderDirection8 + where: $where8 + block: $block + ) { + id + blockNumber + timestamp + mints( + skip: $skip5 + first: $first5 + orderBy: $orderBy5 + orderDirection: $orderDirection5 + where: $where5 + ) { + id + transaction { + id + blockNumber + timestamp + mints( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + timestamp + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + ) { + id + transaction { + id + blockNumber + timestamp + swaps( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + transaction { + id + blockNumber + timestamp + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair { + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns( + skip: $skip6 + first: $first6 + orderBy: $orderBy6 + orderDirection: $orderDirection6 + where: $where6 + ) { + id + timestamp + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + swaps( + skip: $skip7 + first: $first7 + orderBy: $orderBy7 + orderDirection: $orderDirection7 + where: $where7 + ) { + id + timestamp + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } +}` + +export default class transactions extends Command { + + /** + * + * + * @static commands + * @memberof transactions + */ + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + // @type int + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip1: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip2: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip3: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip4: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip5: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first5: flags.integer({ + multiple: false, + required: false, + }), + orderBy5: flags.string({ + multiple: false, + required: false, + }), + orderDirection5: flags.string({ + multiple: false, + required: false, + }), + where5: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip6: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first6: flags.integer({ + multiple: false, + required: false, + }), + orderBy6: flags.string({ + multiple: false, + required: false, + }), + orderDirection6: flags.string({ + multiple: false, + required: false, + }), + where6: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip7: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first7: flags.integer({ + multiple: false, + required: false, + }), + orderBy7: flags.string({ + multiple: false, + required: false, + }), + orderDirection7: flags.string({ + multiple: false, + required: false, + }), + where7: flags.string({ + multiple: false, + required: false, + }), + /** @type integer */ + skip8: flags.integer({ + multiple: false, + required: false, + }), + /** @type integer */ + first8: flags.integer({ + multiple: false, + required: false, + }), + orderBy8: flags.string({ + multiple: false, + required: false, + }), + orderDirection8: flags.string({ + multiple: false, + required: false, + }), + where8: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + async run() { + const { flags } = this.parse(transactions); + await handler({ command: this, query: TransactionsDocument, variables: flags }); + } +} diff --git a/src/commands/transactions/transactions.gql b/src/commands/transactions/transactions.gql new file mode 100644 index 0000000..ede7ecb --- /dev/null +++ b/src/commands/transactions/transactions.gql @@ -0,0 +1,235 @@ +query transactions($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: Mint_orderBy, $orderDirection2: OrderDirection, $where2: Mint_filter, $skip3: Int, $first3: Int, $orderBy3: Swap_orderBy, $orderDirection3: OrderDirection, $where3: Swap_filter, $skip4: Int, $first4: Int, $orderBy4: Burn_orderBy, $orderDirection4: OrderDirection, $where4: Burn_filter, $skip5: Int, $first5: Int, $orderBy5: Mint_orderBy, $orderDirection5: OrderDirection, $where5: Mint_filter, $skip6: Int, $first6: Int, $orderBy6: Burn_orderBy, $orderDirection6: OrderDirection, $where6: Burn_filter, $skip7: Int, $first7: Int, $orderBy7: Swap_orderBy, $orderDirection7: OrderDirection, $where7: Swap_filter, $skip8: Int, $first8: Int, $orderBy8: Transaction_orderBy, $orderDirection8: OrderDirection, $where8: Transaction_filter, $block: Block_height){ + transactions(skip: $skip8, first: $first8, orderBy: $orderBy8, orderDirection: $orderDirection8, where: $where8, block: $block){ + id + blockNumber + timestamp + mints(skip: $skip5, first: $first5, orderBy: $orderBy5, orderDirection: $orderDirection5, where: $where5){ + id + transaction{ + id + blockNumber + timestamp + mints(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + timestamp + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4){ + id + transaction{ + id + blockNumber + timestamp + swaps(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + transaction{ + id + blockNumber + timestamp + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } + timestamp + pair{ + id + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + } + timestamp + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity + } + burns(skip: $skip6, first: $first6, orderBy: $orderBy6, orderDirection: $orderDirection6, where: $where6){ + id + timestamp + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + needsComplete + feeTo + feeLiquidity + } + swaps(skip: $skip7, first: $first7, orderBy: $orderBy7, orderDirection: $orderDirection7, where: $where7){ + id + timestamp + sender + amount0In + amount1In + amount0Out + amount1Out + to + logIndex + amountUSD + } + } +} \ No newline at end of file diff --git a/src/commands/user/index.ts b/src/commands/user/index.ts new file mode 100644 index 0000000..8c14c05 --- /dev/null +++ b/src/commands/user/index.ts @@ -0,0 +1,244 @@ +/** + * @fileoverview User Information Command + * + */ + +import * as Types from '../../types'; + +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +/** + * User Information Query + * @summary GrraphQL Query for User Information + * @interface {"\nquery user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy,...} + */ +const UserDocument = ` +query user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height) { + user(id: $id, block: $block) { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + user { + id + usdSwapped + } + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } +}` + +/** + * Description placeholder + * @date 9/3/2021 - 11:10:12 PM + * + * @export + * @class user + * @typedef {user} + * @extends {Command} + */ +export default class user extends Command { + + + /** + * Description placeholder + * @date 9/3/2021 - 11:10:12 PM + * + * @static + * @type {{ help: any; skip: any; first: any; orderBy: any; orderDirection: any; where: any; skip1: any; first1: any; orderBy1: any; orderDirection1: any; where1: any; skip2: any; first2: any; orderBy2: any; orderDirection2: any; where2: any; id: any; block: any; }} + */ + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + id: flags.string({ + multiple: false, + required: true, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + + async run() { + const { flags } = await this.parse(user); + await handler({ command: this, query: UserDocument, variables: flags }); + } +} diff --git a/src/commands/user/user.gql b/src/commands/user/user.gql new file mode 100644 index 0000000..64b8aeb --- /dev/null +++ b/src/commands/user/user.gql @@ -0,0 +1,111 @@ +query user($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $id: ID!, $block: Block_height){ + user(id: $id, block: $block){ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + user{ + id + usdSwapped + } + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } +} \ No newline at end of file diff --git a/src/commands/users/index.ts b/src/commands/users/index.ts new file mode 100644 index 0000000..06afdfb --- /dev/null +++ b/src/commands/users/index.ts @@ -0,0 +1,280 @@ +import * as Types from '../../types'; +// const {Command, flags} = require('@oclif/core') +import { Command, flags } from '@oclif/command' +import handler from '../../handler' +import gql from 'graphql-tag'; + +const UsersDocument = ` +query users($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $skip4: Int, $first4: Int, $orderBy4: User_orderBy, $orderDirection4: OrderDirection, $where4: User_filter, $block: Block_height) { + users( + skip: $skip4 + first: $first4 + orderBy: $orderBy4 + orderDirection: $orderDirection4 + where: $where4 + block: $block + ) { + id + liquidityPositions( + skip: $skip3 + first: $first3 + orderBy: $orderBy3 + orderDirection: $orderDirection3 + where: $where3 + ) { + id + user { + id + liquidityPositions( + skip: $skip2 + first: $first2 + orderBy: $orderBy2 + orderDirection: $orderDirection2 + where: $where2 + ) { + id + pair { + id + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip1 + first: $first1 + orderBy: $orderBy1 + orderDirection: $orderDirection1 + where: $where1 + ) { + id + date + pairAddress + token0 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs( + skip: $skip + first: $first + orderBy: $orderBy + orderDirection: $orderDirection + where: $where + ) { + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1 { + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + liquidityTokenBalance + } + usdSwapped + } +}` + +export default class users extends Command { +/** + * @TODO upgrade migration to oclif/core + + class users extends Command { + constructor(args, opts) { + super(args, opts) + } +*/ + + static flags = { + help: flags.help({ char: 'h' }), + skip: flags.integer({ + multiple: false, + required: false, + }), + first: flags.integer({ + multiple: false, + required: false, + }), + orderBy: flags.string({ + multiple: false, + required: false, + }), + orderDirection: flags.string({ + multiple: false, + required: false, + }), + where: flags.string({ + multiple: false, + required: false, + }), + skip1: flags.integer({ + multiple: false, + required: false, + }), + first1: flags.integer({ + multiple: false, + required: false, + }), + orderBy1: flags.string({ + multiple: false, + required: false, + }), + orderDirection1: flags.string({ + multiple: false, + required: false, + }), + where1: flags.string({ + multiple: false, + required: false, + }), + skip2: flags.integer({ + multiple: false, + required: false, + }), + first2: flags.integer({ + multiple: false, + required: false, + }), + orderBy2: flags.string({ + multiple: false, + required: false, + }), + orderDirection2: flags.string({ + multiple: false, + required: false, + }), + where2: flags.string({ + multiple: false, + required: false, + }), + skip3: flags.integer({ + multiple: false, + required: false, + }), + first3: flags.integer({ + multiple: false, + required: false, + }), + orderBy3: flags.string({ + multiple: false, + required: false, + }), + orderDirection3: flags.string({ + multiple: false, + required: false, + }), + where3: flags.string({ + multiple: false, + required: false, + }), + skip4: flags.integer({ + multiple: false, + required: false, + }), + first4: flags.integer({ + multiple: false, + required: false, + }), + orderBy4: flags.string({ + multiple: false, + required: false, + }), + orderDirection4: flags.string({ + multiple: false, + required: false, + }), + where4: flags.string({ + multiple: false, + required: false, + }), + block: flags.string({ + multiple: false, + required: false, + }) + }; + + + + async run() { + const { flags } = await this.parse(users); + await handler({ command: this, query: UsersDocument, variables: flags }); + } +} + diff --git a/src/commands/users/users.gql b/src/commands/users/users.gql new file mode 100644 index 0000000..e6225b9 --- /dev/null +++ b/src/commands/users/users.gql @@ -0,0 +1,115 @@ +query users($skip: Int, $first: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter, $skip1: Int, $first1: Int, $orderBy1: PairDayData_orderBy, $orderDirection1: OrderDirection, $where1: PairDayData_filter, $skip2: Int, $first2: Int, $orderBy2: LiquidityPosition_orderBy, $orderDirection2: OrderDirection, $where2: LiquidityPosition_filter, $skip3: Int, $first3: Int, $orderBy3: LiquidityPosition_orderBy, $orderDirection3: OrderDirection, $where3: LiquidityPosition_filter, $skip4: Int, $first4: Int, $orderBy4: User_orderBy, $orderDirection4: OrderDirection, $where4: User_filter, $block: Block_height){ + users(skip: $skip4, first: $first4, orderBy: $orderBy4, orderDirection: $orderDirection4, where: $where4, block: $block){ + id + liquidityPositions(skip: $skip3, first: $first3, orderBy: $orderBy3, orderDirection: $orderDirection3, where: $where3){ + id + user{ + id + liquidityPositions(skip: $skip2, first: $first2, orderBy: $orderBy2, orderDirection: $orderDirection2, where: $where2){ + id + pair{ + id + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip1, first: $first1, orderBy: $orderBy1, orderDirection: $orderDirection1, where: $where1){ + id + date + pairAddress + token0{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + mostLiquidPairs(skip: $skip, first: $first, orderBy: $orderBy, orderDirection: $orderDirection, where: $where){ + id + date + pairAddress + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } + } + token1{ + id + symbol + name + decimals + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD + txCount + totalLiquidity + derivedETH + } + reserve0 + reserve1 + totalSupply + reserveETH + reserveUSD + trackedReserveETH + token0Price + token1Price + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + } + liquidityTokenBalance + } + usdSwapped + } + liquidityTokenBalance + } + usdSwapped + } +} \ No newline at end of file diff --git a/src/generated/graphql.ts b/src/generated/graphql.ts new file mode 100644 index 0000000..8395b46 --- /dev/null +++ b/src/generated/graphql.ts @@ -0,0 +1,2452 @@ +export type Maybe = T | null; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: string; + String: string; + Boolean: boolean; + Int: number; + Float: number; + BigDecimal: any; + BigInt: any; + Bytes: any; +}; + + + + + + +export type Block_Height = { + hash?: Maybe; + number?: Maybe; +}; + +export type Bundle = { + __typename?: 'Bundle'; + id: Scalars['ID']; + ethPrice: Scalars['BigDecimal']; +}; + +export type Bundle_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + ethPrice?: Maybe; + ethPrice_not?: Maybe; + ethPrice_gt?: Maybe; + ethPrice_lt?: Maybe; + ethPrice_gte?: Maybe; + ethPrice_lte?: Maybe; + ethPrice_in?: Maybe>; + ethPrice_not_in?: Maybe>; +}; + +export enum Bundle_OrderBy { + Id = 'id', + EthPrice = 'ethPrice' +} + +export type Burn = { + __typename?: 'Burn'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + liquidity: Scalars['BigDecimal']; + sender?: Maybe; + amount0?: Maybe; + amount1?: Maybe; + to?: Maybe; + logIndex?: Maybe; + amountUSD?: Maybe; + needsComplete: Scalars['Boolean']; + feeTo?: Maybe; + feeLiquidity?: Maybe; +}; + +export type Burn_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0?: Maybe; + amount0_not?: Maybe; + amount0_gt?: Maybe; + amount0_lt?: Maybe; + amount0_gte?: Maybe; + amount0_lte?: Maybe; + amount0_in?: Maybe>; + amount0_not_in?: Maybe>; + amount1?: Maybe; + amount1_not?: Maybe; + amount1_gt?: Maybe; + amount1_lt?: Maybe; + amount1_gte?: Maybe; + amount1_lte?: Maybe; + amount1_in?: Maybe>; + amount1_not_in?: Maybe>; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; + needsComplete?: Maybe; + needsComplete_not?: Maybe; + needsComplete_in?: Maybe>; + needsComplete_not_in?: Maybe>; + feeTo?: Maybe; + feeTo_not?: Maybe; + feeTo_in?: Maybe>; + feeTo_not_in?: Maybe>; + feeTo_contains?: Maybe; + feeTo_not_contains?: Maybe; + feeLiquidity?: Maybe; + feeLiquidity_not?: Maybe; + feeLiquidity_gt?: Maybe; + feeLiquidity_lt?: Maybe; + feeLiquidity_gte?: Maybe; + feeLiquidity_lte?: Maybe; + feeLiquidity_in?: Maybe>; + feeLiquidity_not_in?: Maybe>; +}; + +export enum Burn_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + Liquidity = 'liquidity', + Sender = 'sender', + Amount0 = 'amount0', + Amount1 = 'amount1', + To = 'to', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD', + NeedsComplete = 'needsComplete', + FeeTo = 'feeTo', + FeeLiquidity = 'feeLiquidity' +} + + +export type LiquidityPosition = { + __typename?: 'LiquidityPosition'; + id: Scalars['ID']; + user: User; + pair: Pair; + liquidityTokenBalance: Scalars['BigDecimal']; +}; + +export type LiquidityPositionSnapshot = { + __typename?: 'LiquidityPositionSnapshot'; + id: Scalars['ID']; + liquidityPosition: LiquidityPosition; + timestamp: Scalars['Int']; + block: Scalars['Int']; + user: User; + pair: Pair; + token0PriceUSD: Scalars['BigDecimal']; + token1PriceUSD: Scalars['BigDecimal']; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + liquidityTokenTotalSupply: Scalars['BigDecimal']; + liquidityTokenBalance: Scalars['BigDecimal']; +}; + +export type LiquidityPositionSnapshot_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + liquidityPosition?: Maybe; + liquidityPosition_not?: Maybe; + liquidityPosition_gt?: Maybe; + liquidityPosition_lt?: Maybe; + liquidityPosition_gte?: Maybe; + liquidityPosition_lte?: Maybe; + liquidityPosition_in?: Maybe>; + liquidityPosition_not_in?: Maybe>; + liquidityPosition_contains?: Maybe; + liquidityPosition_not_contains?: Maybe; + liquidityPosition_starts_with?: Maybe; + liquidityPosition_not_starts_with?: Maybe; + liquidityPosition_ends_with?: Maybe; + liquidityPosition_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + block?: Maybe; + block_not?: Maybe; + block_gt?: Maybe; + block_lt?: Maybe; + block_gte?: Maybe; + block_lte?: Maybe; + block_in?: Maybe>; + block_not_in?: Maybe>; + user?: Maybe; + user_not?: Maybe; + user_gt?: Maybe; + user_lt?: Maybe; + user_gte?: Maybe; + user_lte?: Maybe; + user_in?: Maybe>; + user_not_in?: Maybe>; + user_contains?: Maybe; + user_not_contains?: Maybe; + user_starts_with?: Maybe; + user_not_starts_with?: Maybe; + user_ends_with?: Maybe; + user_not_ends_with?: Maybe; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + token0PriceUSD?: Maybe; + token0PriceUSD_not?: Maybe; + token0PriceUSD_gt?: Maybe; + token0PriceUSD_lt?: Maybe; + token0PriceUSD_gte?: Maybe; + token0PriceUSD_lte?: Maybe; + token0PriceUSD_in?: Maybe>; + token0PriceUSD_not_in?: Maybe>; + token1PriceUSD?: Maybe; + token1PriceUSD_not?: Maybe; + token1PriceUSD_gt?: Maybe; + token1PriceUSD_lt?: Maybe; + token1PriceUSD_gte?: Maybe; + token1PriceUSD_lte?: Maybe; + token1PriceUSD_in?: Maybe>; + token1PriceUSD_not_in?: Maybe>; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + liquidityTokenTotalSupply?: Maybe; + liquidityTokenTotalSupply_not?: Maybe; + liquidityTokenTotalSupply_gt?: Maybe; + liquidityTokenTotalSupply_lt?: Maybe; + liquidityTokenTotalSupply_gte?: Maybe; + liquidityTokenTotalSupply_lte?: Maybe; + liquidityTokenTotalSupply_in?: Maybe>; + liquidityTokenTotalSupply_not_in?: Maybe>; + liquidityTokenBalance?: Maybe; + liquidityTokenBalance_not?: Maybe; + liquidityTokenBalance_gt?: Maybe; + liquidityTokenBalance_lt?: Maybe; + liquidityTokenBalance_gte?: Maybe; + liquidityTokenBalance_lte?: Maybe; + liquidityTokenBalance_in?: Maybe>; + liquidityTokenBalance_not_in?: Maybe>; +}; + +export enum LiquidityPositionSnapshot_OrderBy { + Id = 'id', + LiquidityPosition = 'liquidityPosition', + Timestamp = 'timestamp', + Block = 'block', + User = 'user', + Pair = 'pair', + Token0PriceUsd = 'token0PriceUSD', + Token1PriceUsd = 'token1PriceUSD', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + ReserveUsd = 'reserveUSD', + LiquidityTokenTotalSupply = 'liquidityTokenTotalSupply', + LiquidityTokenBalance = 'liquidityTokenBalance' +} + +export type LiquidityPosition_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + user?: Maybe; + user_not?: Maybe; + user_gt?: Maybe; + user_lt?: Maybe; + user_gte?: Maybe; + user_lte?: Maybe; + user_in?: Maybe>; + user_not_in?: Maybe>; + user_contains?: Maybe; + user_not_contains?: Maybe; + user_starts_with?: Maybe; + user_not_starts_with?: Maybe; + user_ends_with?: Maybe; + user_not_ends_with?: Maybe; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + liquidityTokenBalance?: Maybe; + liquidityTokenBalance_not?: Maybe; + liquidityTokenBalance_gt?: Maybe; + liquidityTokenBalance_lt?: Maybe; + liquidityTokenBalance_gte?: Maybe; + liquidityTokenBalance_lte?: Maybe; + liquidityTokenBalance_in?: Maybe>; + liquidityTokenBalance_not_in?: Maybe>; +}; + +export enum LiquidityPosition_OrderBy { + Id = 'id', + User = 'user', + Pair = 'pair', + LiquidityTokenBalance = 'liquidityTokenBalance' +} + +export type Mint = { + __typename?: 'Mint'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + to: Scalars['Bytes']; + liquidity: Scalars['BigDecimal']; + sender?: Maybe; + amount0?: Maybe; + amount1?: Maybe; + logIndex?: Maybe; + amountUSD?: Maybe; + feeTo?: Maybe; + feeLiquidity?: Maybe; +}; + +export type Mint_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0?: Maybe; + amount0_not?: Maybe; + amount0_gt?: Maybe; + amount0_lt?: Maybe; + amount0_gte?: Maybe; + amount0_lte?: Maybe; + amount0_in?: Maybe>; + amount0_not_in?: Maybe>; + amount1?: Maybe; + amount1_not?: Maybe; + amount1_gt?: Maybe; + amount1_lt?: Maybe; + amount1_gte?: Maybe; + amount1_lte?: Maybe; + amount1_in?: Maybe>; + amount1_not_in?: Maybe>; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; + feeTo?: Maybe; + feeTo_not?: Maybe; + feeTo_in?: Maybe>; + feeTo_not_in?: Maybe>; + feeTo_contains?: Maybe; + feeTo_not_contains?: Maybe; + feeLiquidity?: Maybe; + feeLiquidity_not?: Maybe; + feeLiquidity_gt?: Maybe; + feeLiquidity_lt?: Maybe; + feeLiquidity_gte?: Maybe; + feeLiquidity_lte?: Maybe; + feeLiquidity_in?: Maybe>; + feeLiquidity_not_in?: Maybe>; +}; + +export enum Mint_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + To = 'to', + Liquidity = 'liquidity', + Sender = 'sender', + Amount0 = 'amount0', + Amount1 = 'amount1', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD', + FeeTo = 'feeTo', + FeeLiquidity = 'feeLiquidity' +} + +export enum OrderDirection { + Asc = 'asc', + Desc = 'desc' +} + +export type Pair = { + __typename?: 'Pair'; + id: Scalars['ID']; + token0: Token; + token1: Token; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + totalSupply: Scalars['BigDecimal']; + reserveETH: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + trackedReserveETH: Scalars['BigDecimal']; + token0Price: Scalars['BigDecimal']; + token1Price: Scalars['BigDecimal']; + volumeToken0: Scalars['BigDecimal']; + volumeToken1: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + createdAtTimestamp: Scalars['BigInt']; + createdAtBlockNumber: Scalars['BigInt']; + liquidityProviderCount: Scalars['BigInt']; +}; + +export type PairDayData = { + __typename?: 'PairDayData'; + id: Scalars['ID']; + date: Scalars['Int']; + pairAddress: Scalars['Bytes']; + token0: Token; + token1: Token; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + totalSupply: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + dailyVolumeToken0: Scalars['BigDecimal']; + dailyVolumeToken1: Scalars['BigDecimal']; + dailyVolumeUSD: Scalars['BigDecimal']; + dailyTxns: Scalars['BigInt']; +}; + +export type PairDayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + pairAddress?: Maybe; + pairAddress_not?: Maybe; + pairAddress_in?: Maybe>; + pairAddress_not_in?: Maybe>; + pairAddress_contains?: Maybe; + pairAddress_not_contains?: Maybe; + token0?: Maybe; + token0_not?: Maybe; + token0_gt?: Maybe; + token0_lt?: Maybe; + token0_gte?: Maybe; + token0_lte?: Maybe; + token0_in?: Maybe>; + token0_not_in?: Maybe>; + token0_contains?: Maybe; + token0_not_contains?: Maybe; + token0_starts_with?: Maybe; + token0_not_starts_with?: Maybe; + token0_ends_with?: Maybe; + token0_not_ends_with?: Maybe; + token1?: Maybe; + token1_not?: Maybe; + token1_gt?: Maybe; + token1_lt?: Maybe; + token1_gte?: Maybe; + token1_lte?: Maybe; + token1_in?: Maybe>; + token1_not_in?: Maybe>; + token1_contains?: Maybe; + token1_not_contains?: Maybe; + token1_starts_with?: Maybe; + token1_not_starts_with?: Maybe; + token1_ends_with?: Maybe; + token1_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + dailyVolumeToken0?: Maybe; + dailyVolumeToken0_not?: Maybe; + dailyVolumeToken0_gt?: Maybe; + dailyVolumeToken0_lt?: Maybe; + dailyVolumeToken0_gte?: Maybe; + dailyVolumeToken0_lte?: Maybe; + dailyVolumeToken0_in?: Maybe>; + dailyVolumeToken0_not_in?: Maybe>; + dailyVolumeToken1?: Maybe; + dailyVolumeToken1_not?: Maybe; + dailyVolumeToken1_gt?: Maybe; + dailyVolumeToken1_lt?: Maybe; + dailyVolumeToken1_gte?: Maybe; + dailyVolumeToken1_lte?: Maybe; + dailyVolumeToken1_in?: Maybe>; + dailyVolumeToken1_not_in?: Maybe>; + dailyVolumeUSD?: Maybe; + dailyVolumeUSD_not?: Maybe; + dailyVolumeUSD_gt?: Maybe; + dailyVolumeUSD_lt?: Maybe; + dailyVolumeUSD_gte?: Maybe; + dailyVolumeUSD_lte?: Maybe; + dailyVolumeUSD_in?: Maybe>; + dailyVolumeUSD_not_in?: Maybe>; + dailyTxns?: Maybe; + dailyTxns_not?: Maybe; + dailyTxns_gt?: Maybe; + dailyTxns_lt?: Maybe; + dailyTxns_gte?: Maybe; + dailyTxns_lte?: Maybe; + dailyTxns_in?: Maybe>; + dailyTxns_not_in?: Maybe>; +}; + +export enum PairDayData_OrderBy { + Id = 'id', + Date = 'date', + PairAddress = 'pairAddress', + Token0 = 'token0', + Token1 = 'token1', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + TotalSupply = 'totalSupply', + ReserveUsd = 'reserveUSD', + DailyVolumeToken0 = 'dailyVolumeToken0', + DailyVolumeToken1 = 'dailyVolumeToken1', + DailyVolumeUsd = 'dailyVolumeUSD', + DailyTxns = 'dailyTxns' +} + +export type PairHourData = { + __typename?: 'PairHourData'; + id: Scalars['ID']; + hourStartUnix: Scalars['Int']; + pair: Pair; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + hourlyVolumeToken0: Scalars['BigDecimal']; + hourlyVolumeToken1: Scalars['BigDecimal']; + hourlyVolumeUSD: Scalars['BigDecimal']; + hourlyTxns: Scalars['BigInt']; +}; + +export type PairHourData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + hourStartUnix?: Maybe; + hourStartUnix_not?: Maybe; + hourStartUnix_gt?: Maybe; + hourStartUnix_lt?: Maybe; + hourStartUnix_gte?: Maybe; + hourStartUnix_lte?: Maybe; + hourStartUnix_in?: Maybe>; + hourStartUnix_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + hourlyVolumeToken0?: Maybe; + hourlyVolumeToken0_not?: Maybe; + hourlyVolumeToken0_gt?: Maybe; + hourlyVolumeToken0_lt?: Maybe; + hourlyVolumeToken0_gte?: Maybe; + hourlyVolumeToken0_lte?: Maybe; + hourlyVolumeToken0_in?: Maybe>; + hourlyVolumeToken0_not_in?: Maybe>; + hourlyVolumeToken1?: Maybe; + hourlyVolumeToken1_not?: Maybe; + hourlyVolumeToken1_gt?: Maybe; + hourlyVolumeToken1_lt?: Maybe; + hourlyVolumeToken1_gte?: Maybe; + hourlyVolumeToken1_lte?: Maybe; + hourlyVolumeToken1_in?: Maybe>; + hourlyVolumeToken1_not_in?: Maybe>; + hourlyVolumeUSD?: Maybe; + hourlyVolumeUSD_not?: Maybe; + hourlyVolumeUSD_gt?: Maybe; + hourlyVolumeUSD_lt?: Maybe; + hourlyVolumeUSD_gte?: Maybe; + hourlyVolumeUSD_lte?: Maybe; + hourlyVolumeUSD_in?: Maybe>; + hourlyVolumeUSD_not_in?: Maybe>; + hourlyTxns?: Maybe; + hourlyTxns_not?: Maybe; + hourlyTxns_gt?: Maybe; + hourlyTxns_lt?: Maybe; + hourlyTxns_gte?: Maybe; + hourlyTxns_lte?: Maybe; + hourlyTxns_in?: Maybe>; + hourlyTxns_not_in?: Maybe>; +}; + +export enum PairHourData_OrderBy { + Id = 'id', + HourStartUnix = 'hourStartUnix', + Pair = 'pair', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + ReserveUsd = 'reserveUSD', + HourlyVolumeToken0 = 'hourlyVolumeToken0', + HourlyVolumeToken1 = 'hourlyVolumeToken1', + HourlyVolumeUsd = 'hourlyVolumeUSD', + HourlyTxns = 'hourlyTxns' +} + +export type Pair_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + token0?: Maybe; + token0_not?: Maybe; + token0_gt?: Maybe; + token0_lt?: Maybe; + token0_gte?: Maybe; + token0_lte?: Maybe; + token0_in?: Maybe>; + token0_not_in?: Maybe>; + token0_contains?: Maybe; + token0_not_contains?: Maybe; + token0_starts_with?: Maybe; + token0_not_starts_with?: Maybe; + token0_ends_with?: Maybe; + token0_not_ends_with?: Maybe; + token1?: Maybe; + token1_not?: Maybe; + token1_gt?: Maybe; + token1_lt?: Maybe; + token1_gte?: Maybe; + token1_lte?: Maybe; + token1_in?: Maybe>; + token1_not_in?: Maybe>; + token1_contains?: Maybe; + token1_not_contains?: Maybe; + token1_starts_with?: Maybe; + token1_not_starts_with?: Maybe; + token1_ends_with?: Maybe; + token1_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + reserveETH?: Maybe; + reserveETH_not?: Maybe; + reserveETH_gt?: Maybe; + reserveETH_lt?: Maybe; + reserveETH_gte?: Maybe; + reserveETH_lte?: Maybe; + reserveETH_in?: Maybe>; + reserveETH_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + trackedReserveETH?: Maybe; + trackedReserveETH_not?: Maybe; + trackedReserveETH_gt?: Maybe; + trackedReserveETH_lt?: Maybe; + trackedReserveETH_gte?: Maybe; + trackedReserveETH_lte?: Maybe; + trackedReserveETH_in?: Maybe>; + trackedReserveETH_not_in?: Maybe>; + token0Price?: Maybe; + token0Price_not?: Maybe; + token0Price_gt?: Maybe; + token0Price_lt?: Maybe; + token0Price_gte?: Maybe; + token0Price_lte?: Maybe; + token0Price_in?: Maybe>; + token0Price_not_in?: Maybe>; + token1Price?: Maybe; + token1Price_not?: Maybe; + token1Price_gt?: Maybe; + token1Price_lt?: Maybe; + token1Price_gte?: Maybe; + token1Price_lte?: Maybe; + token1Price_in?: Maybe>; + token1Price_not_in?: Maybe>; + volumeToken0?: Maybe; + volumeToken0_not?: Maybe; + volumeToken0_gt?: Maybe; + volumeToken0_lt?: Maybe; + volumeToken0_gte?: Maybe; + volumeToken0_lte?: Maybe; + volumeToken0_in?: Maybe>; + volumeToken0_not_in?: Maybe>; + volumeToken1?: Maybe; + volumeToken1_not?: Maybe; + volumeToken1_gt?: Maybe; + volumeToken1_lt?: Maybe; + volumeToken1_gte?: Maybe; + volumeToken1_lte?: Maybe; + volumeToken1_in?: Maybe>; + volumeToken1_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + createdAtTimestamp?: Maybe; + createdAtTimestamp_not?: Maybe; + createdAtTimestamp_gt?: Maybe; + createdAtTimestamp_lt?: Maybe; + createdAtTimestamp_gte?: Maybe; + createdAtTimestamp_lte?: Maybe; + createdAtTimestamp_in?: Maybe>; + createdAtTimestamp_not_in?: Maybe>; + createdAtBlockNumber?: Maybe; + createdAtBlockNumber_not?: Maybe; + createdAtBlockNumber_gt?: Maybe; + createdAtBlockNumber_lt?: Maybe; + createdAtBlockNumber_gte?: Maybe; + createdAtBlockNumber_lte?: Maybe; + createdAtBlockNumber_in?: Maybe>; + createdAtBlockNumber_not_in?: Maybe>; + liquidityProviderCount?: Maybe; + liquidityProviderCount_not?: Maybe; + liquidityProviderCount_gt?: Maybe; + liquidityProviderCount_lt?: Maybe; + liquidityProviderCount_gte?: Maybe; + liquidityProviderCount_lte?: Maybe; + liquidityProviderCount_in?: Maybe>; + liquidityProviderCount_not_in?: Maybe>; +}; + +export enum Pair_OrderBy { + Id = 'id', + Token0 = 'token0', + Token1 = 'token1', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + TotalSupply = 'totalSupply', + ReserveEth = 'reserveETH', + ReserveUsd = 'reserveUSD', + TrackedReserveEth = 'trackedReserveETH', + Token0Price = 'token0Price', + Token1Price = 'token1Price', + VolumeToken0 = 'volumeToken0', + VolumeToken1 = 'volumeToken1', + VolumeUsd = 'volumeUSD', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + TxCount = 'txCount', + CreatedAtTimestamp = 'createdAtTimestamp', + CreatedAtBlockNumber = 'createdAtBlockNumber', + LiquidityProviderCount = 'liquidityProviderCount' +} + +export type Query = { + __typename?: 'Query'; + sushiswapFactory?: Maybe; + sushiswapFactories: Array; + token?: Maybe; + tokens: Array; + pair?: Maybe; + pairs: Array; + user?: Maybe; + users: Array; + liquidityPosition?: Maybe; + liquidityPositions: Array; + liquidityPositionSnapshot?: Maybe; + liquidityPositionSnapshots: Array; + transaction?: Maybe; + transactions: Array; + mint?: Maybe; + mints: Array; + burn?: Maybe; + burns: Array; + swap?: Maybe; + swaps: Array; + bundle?: Maybe; + bundles: Array; + sushiswapDayData?: Maybe; + sushiswapDayDatas: Array; + pairHourData?: Maybe; + pairHourDatas: Array; + pairDayData?: Maybe; + pairDayDatas: Array; + tokenDayData?: Maybe; + tokenDayDatas: Array; + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_>; +}; + + +export type QuerySushiswapFactoryArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QuerySushiswapFactoriesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryUserArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryUsersArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryLiquidityPositionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryLiquidityPositionSnapshotArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryLiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTransactionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTransactionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryMintArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryBurnArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QuerySwapArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QuerySwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryBundleArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryBundlesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QuerySushiswapDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QuerySushiswapDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTokenDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type Query_MetaArgs = { + block?: Maybe; +}; + +export type Subscription = { + __typename?: 'Subscription'; + sushiswapFactory?: Maybe; + sushiswapFactories: Array; + token?: Maybe; + tokens: Array; + pair?: Maybe; + pairs: Array; + user?: Maybe; + users: Array; + liquidityPosition?: Maybe; + liquidityPositions: Array; + liquidityPositionSnapshot?: Maybe; + liquidityPositionSnapshots: Array; + transaction?: Maybe; + transactions: Array; + mint?: Maybe; + mints: Array; + burn?: Maybe; + burns: Array; + swap?: Maybe; + swaps: Array; + bundle?: Maybe; + bundles: Array; + sushiswapDayData?: Maybe; + sushiswapDayDatas: Array; + pairHourData?: Maybe; + pairHourDatas: Array; + pairDayData?: Maybe; + pairDayDatas: Array; + tokenDayData?: Maybe; + tokenDayDatas: Array; + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_>; +}; + + +export type SubscriptionSushiswapFactoryArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionSushiswapFactoriesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTokenArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionUserArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionUsersArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionSnapshotArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTransactionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTransactionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionMintArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionBurnArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionSwapArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionSwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionBundleArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionBundlesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionSushiswapDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionSushiswapDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTokenDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTokenDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type Subscription_MetaArgs = { + block?: Maybe; +}; + +export type Swap = { + __typename?: 'Swap'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + sender: Scalars['Bytes']; + amount0In: Scalars['BigDecimal']; + amount1In: Scalars['BigDecimal']; + amount0Out: Scalars['BigDecimal']; + amount1Out: Scalars['BigDecimal']; + to: Scalars['Bytes']; + logIndex?: Maybe; + amountUSD: Scalars['BigDecimal']; +}; + +export type Swap_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0In?: Maybe; + amount0In_not?: Maybe; + amount0In_gt?: Maybe; + amount0In_lt?: Maybe; + amount0In_gte?: Maybe; + amount0In_lte?: Maybe; + amount0In_in?: Maybe>; + amount0In_not_in?: Maybe>; + amount1In?: Maybe; + amount1In_not?: Maybe; + amount1In_gt?: Maybe; + amount1In_lt?: Maybe; + amount1In_gte?: Maybe; + amount1In_lte?: Maybe; + amount1In_in?: Maybe>; + amount1In_not_in?: Maybe>; + amount0Out?: Maybe; + amount0Out_not?: Maybe; + amount0Out_gt?: Maybe; + amount0Out_lt?: Maybe; + amount0Out_gte?: Maybe; + amount0Out_lte?: Maybe; + amount0Out_in?: Maybe>; + amount0Out_not_in?: Maybe>; + amount1Out?: Maybe; + amount1Out_not?: Maybe; + amount1Out_gt?: Maybe; + amount1Out_lt?: Maybe; + amount1Out_gte?: Maybe; + amount1Out_lte?: Maybe; + amount1Out_in?: Maybe>; + amount1Out_not_in?: Maybe>; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; +}; + +export enum Swap_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + Sender = 'sender', + Amount0In = 'amount0In', + Amount1In = 'amount1In', + Amount0Out = 'amount0Out', + Amount1Out = 'amount1Out', + To = 'to', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD' +} + +export type Token = { + __typename?: 'Token'; + id: Scalars['ID']; + symbol: Scalars['String']; + name: Scalars['String']; + decimals: Scalars['BigInt']; + totalSupply: Scalars['BigInt']; + tradeVolume: Scalars['BigDecimal']; + tradeVolumeUSD: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + totalLiquidity: Scalars['BigDecimal']; + derivedETH?: Maybe; + mostLiquidPairs: Array>; +}; + + +export type TokenMostLiquidPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type TokenDayData = { + __typename?: 'TokenDayData'; + id: Scalars['ID']; + date: Scalars['Int']; + token: Token; + dailyVolumeToken: Scalars['BigDecimal']; + dailyVolumeETH: Scalars['BigDecimal']; + dailyVolumeUSD: Scalars['BigDecimal']; + dailyTxns: Scalars['BigInt']; + totalLiquidityToken: Scalars['BigDecimal']; + totalLiquidityETH: Scalars['BigDecimal']; + totalLiquidityUSD: Scalars['BigDecimal']; + priceUSD: Scalars['BigDecimal']; + maxStored: Scalars['Int']; + mostLiquidPairs: Array; +}; + + +export type TokenDayDataMostLiquidPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type TokenDayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + token?: Maybe; + token_not?: Maybe; + token_gt?: Maybe; + token_lt?: Maybe; + token_gte?: Maybe; + token_lte?: Maybe; + token_in?: Maybe>; + token_not_in?: Maybe>; + token_contains?: Maybe; + token_not_contains?: Maybe; + token_starts_with?: Maybe; + token_not_starts_with?: Maybe; + token_ends_with?: Maybe; + token_not_ends_with?: Maybe; + dailyVolumeToken?: Maybe; + dailyVolumeToken_not?: Maybe; + dailyVolumeToken_gt?: Maybe; + dailyVolumeToken_lt?: Maybe; + dailyVolumeToken_gte?: Maybe; + dailyVolumeToken_lte?: Maybe; + dailyVolumeToken_in?: Maybe>; + dailyVolumeToken_not_in?: Maybe>; + dailyVolumeETH?: Maybe; + dailyVolumeETH_not?: Maybe; + dailyVolumeETH_gt?: Maybe; + dailyVolumeETH_lt?: Maybe; + dailyVolumeETH_gte?: Maybe; + dailyVolumeETH_lte?: Maybe; + dailyVolumeETH_in?: Maybe>; + dailyVolumeETH_not_in?: Maybe>; + dailyVolumeUSD?: Maybe; + dailyVolumeUSD_not?: Maybe; + dailyVolumeUSD_gt?: Maybe; + dailyVolumeUSD_lt?: Maybe; + dailyVolumeUSD_gte?: Maybe; + dailyVolumeUSD_lte?: Maybe; + dailyVolumeUSD_in?: Maybe>; + dailyVolumeUSD_not_in?: Maybe>; + dailyTxns?: Maybe; + dailyTxns_not?: Maybe; + dailyTxns_gt?: Maybe; + dailyTxns_lt?: Maybe; + dailyTxns_gte?: Maybe; + dailyTxns_lte?: Maybe; + dailyTxns_in?: Maybe>; + dailyTxns_not_in?: Maybe>; + totalLiquidityToken?: Maybe; + totalLiquidityToken_not?: Maybe; + totalLiquidityToken_gt?: Maybe; + totalLiquidityToken_lt?: Maybe; + totalLiquidityToken_gte?: Maybe; + totalLiquidityToken_lte?: Maybe; + totalLiquidityToken_in?: Maybe>; + totalLiquidityToken_not_in?: Maybe>; + totalLiquidityETH?: Maybe; + totalLiquidityETH_not?: Maybe; + totalLiquidityETH_gt?: Maybe; + totalLiquidityETH_lt?: Maybe; + totalLiquidityETH_gte?: Maybe; + totalLiquidityETH_lte?: Maybe; + totalLiquidityETH_in?: Maybe>; + totalLiquidityETH_not_in?: Maybe>; + totalLiquidityUSD?: Maybe; + totalLiquidityUSD_not?: Maybe; + totalLiquidityUSD_gt?: Maybe; + totalLiquidityUSD_lt?: Maybe; + totalLiquidityUSD_gte?: Maybe; + totalLiquidityUSD_lte?: Maybe; + totalLiquidityUSD_in?: Maybe>; + totalLiquidityUSD_not_in?: Maybe>; + priceUSD?: Maybe; + priceUSD_not?: Maybe; + priceUSD_gt?: Maybe; + priceUSD_lt?: Maybe; + priceUSD_gte?: Maybe; + priceUSD_lte?: Maybe; + priceUSD_in?: Maybe>; + priceUSD_not_in?: Maybe>; + maxStored?: Maybe; + maxStored_not?: Maybe; + maxStored_gt?: Maybe; + maxStored_lt?: Maybe; + maxStored_gte?: Maybe; + maxStored_lte?: Maybe; + maxStored_in?: Maybe>; + maxStored_not_in?: Maybe>; + mostLiquidPairs?: Maybe>; + mostLiquidPairs_not?: Maybe>; + mostLiquidPairs_contains?: Maybe>; + mostLiquidPairs_not_contains?: Maybe>; +}; + +export enum TokenDayData_OrderBy { + Id = 'id', + Date = 'date', + Token = 'token', + DailyVolumeToken = 'dailyVolumeToken', + DailyVolumeEth = 'dailyVolumeETH', + DailyVolumeUsd = 'dailyVolumeUSD', + DailyTxns = 'dailyTxns', + TotalLiquidityToken = 'totalLiquidityToken', + TotalLiquidityEth = 'totalLiquidityETH', + TotalLiquidityUsd = 'totalLiquidityUSD', + PriceUsd = 'priceUSD', + MaxStored = 'maxStored', + MostLiquidPairs = 'mostLiquidPairs' +} + +export type Token_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + symbol?: Maybe; + symbol_not?: Maybe; + symbol_gt?: Maybe; + symbol_lt?: Maybe; + symbol_gte?: Maybe; + symbol_lte?: Maybe; + symbol_in?: Maybe>; + symbol_not_in?: Maybe>; + symbol_contains?: Maybe; + symbol_not_contains?: Maybe; + symbol_starts_with?: Maybe; + symbol_not_starts_with?: Maybe; + symbol_ends_with?: Maybe; + symbol_not_ends_with?: Maybe; + name?: Maybe; + name_not?: Maybe; + name_gt?: Maybe; + name_lt?: Maybe; + name_gte?: Maybe; + name_lte?: Maybe; + name_in?: Maybe>; + name_not_in?: Maybe>; + name_contains?: Maybe; + name_not_contains?: Maybe; + name_starts_with?: Maybe; + name_not_starts_with?: Maybe; + name_ends_with?: Maybe; + name_not_ends_with?: Maybe; + decimals?: Maybe; + decimals_not?: Maybe; + decimals_gt?: Maybe; + decimals_lt?: Maybe; + decimals_gte?: Maybe; + decimals_lte?: Maybe; + decimals_in?: Maybe>; + decimals_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + tradeVolume?: Maybe; + tradeVolume_not?: Maybe; + tradeVolume_gt?: Maybe; + tradeVolume_lt?: Maybe; + tradeVolume_gte?: Maybe; + tradeVolume_lte?: Maybe; + tradeVolume_in?: Maybe>; + tradeVolume_not_in?: Maybe>; + tradeVolumeUSD?: Maybe; + tradeVolumeUSD_not?: Maybe; + tradeVolumeUSD_gt?: Maybe; + tradeVolumeUSD_lt?: Maybe; + tradeVolumeUSD_gte?: Maybe; + tradeVolumeUSD_lte?: Maybe; + tradeVolumeUSD_in?: Maybe>; + tradeVolumeUSD_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + totalLiquidity?: Maybe; + totalLiquidity_not?: Maybe; + totalLiquidity_gt?: Maybe; + totalLiquidity_lt?: Maybe; + totalLiquidity_gte?: Maybe; + totalLiquidity_lte?: Maybe; + totalLiquidity_in?: Maybe>; + totalLiquidity_not_in?: Maybe>; + derivedETH?: Maybe; + derivedETH_not?: Maybe; + derivedETH_gt?: Maybe; + derivedETH_lt?: Maybe; + derivedETH_gte?: Maybe; + derivedETH_lte?: Maybe; + derivedETH_in?: Maybe>; + derivedETH_not_in?: Maybe>; + mostLiquidPairs?: Maybe>; + mostLiquidPairs_not?: Maybe>; + mostLiquidPairs_contains?: Maybe>; + mostLiquidPairs_not_contains?: Maybe>; +}; + +export enum Token_OrderBy { + Id = 'id', + Symbol = 'symbol', + Name = 'name', + Decimals = 'decimals', + TotalSupply = 'totalSupply', + TradeVolume = 'tradeVolume', + TradeVolumeUsd = 'tradeVolumeUSD', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + TxCount = 'txCount', + TotalLiquidity = 'totalLiquidity', + DerivedEth = 'derivedETH', + MostLiquidPairs = 'mostLiquidPairs' +} + +export type Transaction = { + __typename?: 'Transaction'; + id: Scalars['ID']; + blockNumber: Scalars['BigInt']; + timestamp: Scalars['BigInt']; + mints: Array>; + burns: Array>; + swaps: Array>; +}; + + +export type TransactionMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TransactionBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TransactionSwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type Transaction_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + blockNumber?: Maybe; + blockNumber_not?: Maybe; + blockNumber_gt?: Maybe; + blockNumber_lt?: Maybe; + blockNumber_gte?: Maybe; + blockNumber_lte?: Maybe; + blockNumber_in?: Maybe>; + blockNumber_not_in?: Maybe>; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + mints?: Maybe>; + mints_not?: Maybe>; + mints_contains?: Maybe>; + mints_not_contains?: Maybe>; + burns?: Maybe>; + burns_not?: Maybe>; + burns_contains?: Maybe>; + burns_not_contains?: Maybe>; + swaps?: Maybe>; + swaps_not?: Maybe>; + swaps_contains?: Maybe>; + swaps_not_contains?: Maybe>; +}; + +export enum Transaction_OrderBy { + Id = 'id', + BlockNumber = 'blockNumber', + Timestamp = 'timestamp', + Mints = 'mints', + Burns = 'burns', + Swaps = 'swaps' +} + +export type SushiswapDayData = { + __typename?: 'SushiswapDayData'; + id: Scalars['ID']; + date: Scalars['Int']; + dailyVolumeETH: Scalars['BigDecimal']; + dailyVolumeUSD: Scalars['BigDecimal']; + dailyVolumeUntracked: Scalars['BigDecimal']; + totalVolumeETH: Scalars['BigDecimal']; + totalLiquidityETH: Scalars['BigDecimal']; + totalVolumeUSD: Scalars['BigDecimal']; + totalLiquidityUSD: Scalars['BigDecimal']; + maxStored?: Maybe; + mostLiquidTokens: Array; + txCount: Scalars['BigInt']; +}; + + +export type SushiswapDayDataMostLiquidTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type SushiswapDayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + dailyVolumeETH?: Maybe; + dailyVolumeETH_not?: Maybe; + dailyVolumeETH_gt?: Maybe; + dailyVolumeETH_lt?: Maybe; + dailyVolumeETH_gte?: Maybe; + dailyVolumeETH_lte?: Maybe; + dailyVolumeETH_in?: Maybe>; + dailyVolumeETH_not_in?: Maybe>; + dailyVolumeUSD?: Maybe; + dailyVolumeUSD_not?: Maybe; + dailyVolumeUSD_gt?: Maybe; + dailyVolumeUSD_lt?: Maybe; + dailyVolumeUSD_gte?: Maybe; + dailyVolumeUSD_lte?: Maybe; + dailyVolumeUSD_in?: Maybe>; + dailyVolumeUSD_not_in?: Maybe>; + dailyVolumeUntracked?: Maybe; + dailyVolumeUntracked_not?: Maybe; + dailyVolumeUntracked_gt?: Maybe; + dailyVolumeUntracked_lt?: Maybe; + dailyVolumeUntracked_gte?: Maybe; + dailyVolumeUntracked_lte?: Maybe; + dailyVolumeUntracked_in?: Maybe>; + dailyVolumeUntracked_not_in?: Maybe>; + totalVolumeETH?: Maybe; + totalVolumeETH_not?: Maybe; + totalVolumeETH_gt?: Maybe; + totalVolumeETH_lt?: Maybe; + totalVolumeETH_gte?: Maybe; + totalVolumeETH_lte?: Maybe; + totalVolumeETH_in?: Maybe>; + totalVolumeETH_not_in?: Maybe>; + totalLiquidityETH?: Maybe; + totalLiquidityETH_not?: Maybe; + totalLiquidityETH_gt?: Maybe; + totalLiquidityETH_lt?: Maybe; + totalLiquidityETH_gte?: Maybe; + totalLiquidityETH_lte?: Maybe; + totalLiquidityETH_in?: Maybe>; + totalLiquidityETH_not_in?: Maybe>; + totalVolumeUSD?: Maybe; + totalVolumeUSD_not?: Maybe; + totalVolumeUSD_gt?: Maybe; + totalVolumeUSD_lt?: Maybe; + totalVolumeUSD_gte?: Maybe; + totalVolumeUSD_lte?: Maybe; + totalVolumeUSD_in?: Maybe>; + totalVolumeUSD_not_in?: Maybe>; + totalLiquidityUSD?: Maybe; + totalLiquidityUSD_not?: Maybe; + totalLiquidityUSD_gt?: Maybe; + totalLiquidityUSD_lt?: Maybe; + totalLiquidityUSD_gte?: Maybe; + totalLiquidityUSD_lte?: Maybe; + totalLiquidityUSD_in?: Maybe>; + totalLiquidityUSD_not_in?: Maybe>; + maxStored?: Maybe; + maxStored_not?: Maybe; + maxStored_gt?: Maybe; + maxStored_lt?: Maybe; + maxStored_gte?: Maybe; + maxStored_lte?: Maybe; + maxStored_in?: Maybe>; + maxStored_not_in?: Maybe>; + mostLiquidTokens?: Maybe>; + mostLiquidTokens_not?: Maybe>; + mostLiquidTokens_contains?: Maybe>; + mostLiquidTokens_not_contains?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; +}; + +export enum SushiswapDayData_OrderBy { + Id = 'id', + Date = 'date', + DailyVolumeEth = 'dailyVolumeETH', + DailyVolumeUsd = 'dailyVolumeUSD', + DailyVolumeUntracked = 'dailyVolumeUntracked', + TotalVolumeEth = 'totalVolumeETH', + TotalLiquidityEth = 'totalLiquidityETH', + TotalVolumeUsd = 'totalVolumeUSD', + TotalLiquidityUsd = 'totalLiquidityUSD', + MaxStored = 'maxStored', + MostLiquidTokens = 'mostLiquidTokens', + TxCount = 'txCount' +} + +export type SushiswapFactory = { + __typename?: 'SushiswapFactory'; + id: Scalars['ID']; + pairCount: Scalars['Int']; + totalVolumeUSD: Scalars['BigDecimal']; + totalVolumeETH: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + totalLiquidityUSD: Scalars['BigDecimal']; + totalLiquidityETH: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + mostLiquidTokens: Array; +}; + + +export type SushiswapFactoryMostLiquidTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type SushiswapFactory_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + pairCount?: Maybe; + pairCount_not?: Maybe; + pairCount_gt?: Maybe; + pairCount_lt?: Maybe; + pairCount_gte?: Maybe; + pairCount_lte?: Maybe; + pairCount_in?: Maybe>; + pairCount_not_in?: Maybe>; + totalVolumeUSD?: Maybe; + totalVolumeUSD_not?: Maybe; + totalVolumeUSD_gt?: Maybe; + totalVolumeUSD_lt?: Maybe; + totalVolumeUSD_gte?: Maybe; + totalVolumeUSD_lte?: Maybe; + totalVolumeUSD_in?: Maybe>; + totalVolumeUSD_not_in?: Maybe>; + totalVolumeETH?: Maybe; + totalVolumeETH_not?: Maybe; + totalVolumeETH_gt?: Maybe; + totalVolumeETH_lt?: Maybe; + totalVolumeETH_gte?: Maybe; + totalVolumeETH_lte?: Maybe; + totalVolumeETH_in?: Maybe>; + totalVolumeETH_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + totalLiquidityUSD?: Maybe; + totalLiquidityUSD_not?: Maybe; + totalLiquidityUSD_gt?: Maybe; + totalLiquidityUSD_lt?: Maybe; + totalLiquidityUSD_gte?: Maybe; + totalLiquidityUSD_lte?: Maybe; + totalLiquidityUSD_in?: Maybe>; + totalLiquidityUSD_not_in?: Maybe>; + totalLiquidityETH?: Maybe; + totalLiquidityETH_not?: Maybe; + totalLiquidityETH_gt?: Maybe; + totalLiquidityETH_lt?: Maybe; + totalLiquidityETH_gte?: Maybe; + totalLiquidityETH_lte?: Maybe; + totalLiquidityETH_in?: Maybe>; + totalLiquidityETH_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + mostLiquidTokens?: Maybe>; + mostLiquidTokens_not?: Maybe>; + mostLiquidTokens_contains?: Maybe>; + mostLiquidTokens_not_contains?: Maybe>; +}; + +export enum SushiswapFactory_OrderBy { + Id = 'id', + PairCount = 'pairCount', + TotalVolumeUsd = 'totalVolumeUSD', + TotalVolumeEth = 'totalVolumeETH', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + TotalLiquidityUsd = 'totalLiquidityUSD', + TotalLiquidityEth = 'totalLiquidityETH', + TxCount = 'txCount', + MostLiquidTokens = 'mostLiquidTokens' +} + +export type User = { + __typename?: 'User'; + id: Scalars['ID']; + liquidityPositions?: Maybe>; + usdSwapped: Scalars['BigDecimal']; +}; + + +export type UserLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type User_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + usdSwapped?: Maybe; + usdSwapped_not?: Maybe; + usdSwapped_gt?: Maybe; + usdSwapped_lt?: Maybe; + usdSwapped_gte?: Maybe; + usdSwapped_lte?: Maybe; + usdSwapped_in?: Maybe>; + usdSwapped_not_in?: Maybe>; +}; + +export enum User_OrderBy { + Id = 'id', + LiquidityPositions = 'liquidityPositions', + UsdSwapped = 'usdSwapped' +} + +export type _Block_ = { + __typename?: '_Block_'; + /** The hash of the block */ + hash?: Maybe; + /** The block number */ + number: Scalars['Int']; +}; + +/** The type for the top-level _meta field */ +export type _Meta_ = { + __typename?: '_Meta_'; + /** + * Information about a specific subgraph block. The hash of the block + * will be null if the _meta field has a block constraint that asks for + * a block number. It will be filled if the _meta field has no block constraint + * and therefore asks for the latest block + */ + block: _Block_; + /** The deployment ID */ + deployment: Scalars['String']; + /** If `true`, the subgraph encountered indexing errors at some past block */ + hasIndexingErrors: Scalars['Boolean']; +}; + +export enum _SubgraphErrorPolicy_ { + /** Data will be returned even if the subgraph has indexing errors */ + Allow = 'allow', + /** If the subgraph has indexing errors, data will be omitted. The default. */ + Deny = 'deny' +} diff --git a/src/handler.ts b/src/handler.ts new file mode 100644 index 0000000..7cf29fe --- /dev/null +++ b/src/handler.ts @@ -0,0 +1,27 @@ +/** + * @package sushi-sh + * @license MIT + * @version 0.2.0 + * @summary SushiSwap Protocol command line client + * + */ + + +import { GraphQLClient } from 'graphql-request'; +import { Command } from '@oclif/command'; +// const { Command, Flags } = require('@oclif/core') + +interface QueryHandlerProps { + command: Command; + query: string; + variables?: Record; +} + +const client = new GraphQLClient('https://api.thegraph.com/subgraphs/name/sushiswap/exchange'); + +const handler = ({ command, query, variables }: QueryHandlerProps) => client + .request(query, variables) + .then(x => command.log(JSON.stringify(x, null, ' '))) + .catch(command.error); + +export default handler; diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..f8093a7 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,2 @@ +// @export run +export {run} from '@oclif/command' \ No newline at end of file diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..23ad5f2 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,2984 @@ +export type Maybe = T | null; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: string; + String: string; + Boolean: boolean; + Int: number; + Float: number; + BigDecimal: any; + BigInt: any; + Bytes: any; +}; + + + + + + +export type Block_Height = { + hash?: Maybe; + number?: Maybe; +}; + +export type Bundle = { + __typename?: 'Bundle'; + id: Scalars['ID']; + ethPrice: Scalars['BigDecimal']; +}; + +export type Bundle_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + ethPrice?: Maybe; + ethPrice_not?: Maybe; + ethPrice_gt?: Maybe; + ethPrice_lt?: Maybe; + ethPrice_gte?: Maybe; + ethPrice_lte?: Maybe; + ethPrice_in?: Maybe>; + ethPrice_not_in?: Maybe>; +}; + +export enum Bundle_OrderBy { + Id = 'id', + EthPrice = 'ethPrice' +} + +export type Burn = { + __typename?: 'Burn'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + liquidity: Scalars['BigDecimal']; + sender?: Maybe; + amount0?: Maybe; + amount1?: Maybe; + to?: Maybe; + logIndex?: Maybe; + amountUSD?: Maybe; + complete: Scalars['Boolean']; + feeTo?: Maybe; + feeLiquidity?: Maybe; +}; + +export type Burn_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0?: Maybe; + amount0_not?: Maybe; + amount0_gt?: Maybe; + amount0_lt?: Maybe; + amount0_gte?: Maybe; + amount0_lte?: Maybe; + amount0_in?: Maybe>; + amount0_not_in?: Maybe>; + amount1?: Maybe; + amount1_not?: Maybe; + amount1_gt?: Maybe; + amount1_lt?: Maybe; + amount1_gte?: Maybe; + amount1_lte?: Maybe; + amount1_in?: Maybe>; + amount1_not_in?: Maybe>; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; + complete?: Maybe; + complete_not?: Maybe; + complete_in?: Maybe>; + complete_not_in?: Maybe>; + feeTo?: Maybe; + feeTo_not?: Maybe; + feeTo_in?: Maybe>; + feeTo_not_in?: Maybe>; + feeTo_contains?: Maybe; + feeTo_not_contains?: Maybe; + feeLiquidity?: Maybe; + feeLiquidity_not?: Maybe; + feeLiquidity_gt?: Maybe; + feeLiquidity_lt?: Maybe; + feeLiquidity_gte?: Maybe; + feeLiquidity_lte?: Maybe; + feeLiquidity_in?: Maybe>; + feeLiquidity_not_in?: Maybe>; +}; + +export enum Burn_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + Liquidity = 'liquidity', + Sender = 'sender', + Amount0 = 'amount0', + Amount1 = 'amount1', + To = 'to', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD', + Complete = 'complete', + FeeTo = 'feeTo', + FeeLiquidity = 'feeLiquidity' +} + + +export type DayData = { + __typename?: 'DayData'; + id: Scalars['ID']; + date: Scalars['Int']; + factory: Factory; + volumeETH: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + untrackedVolume: Scalars['BigDecimal']; + liquidityETH: Scalars['BigDecimal']; + liquidityUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; +}; + +export type DayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + factory?: Maybe; + factory_not?: Maybe; + factory_gt?: Maybe; + factory_lt?: Maybe; + factory_gte?: Maybe; + factory_lte?: Maybe; + factory_in?: Maybe>; + factory_not_in?: Maybe>; + factory_contains?: Maybe; + factory_not_contains?: Maybe; + factory_starts_with?: Maybe; + factory_not_starts_with?: Maybe; + factory_ends_with?: Maybe; + factory_not_ends_with?: Maybe; + volumeETH?: Maybe; + volumeETH_not?: Maybe; + volumeETH_gt?: Maybe; + volumeETH_lt?: Maybe; + volumeETH_gte?: Maybe; + volumeETH_lte?: Maybe; + volumeETH_in?: Maybe>; + volumeETH_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + untrackedVolume?: Maybe; + untrackedVolume_not?: Maybe; + untrackedVolume_gt?: Maybe; + untrackedVolume_lt?: Maybe; + untrackedVolume_gte?: Maybe; + untrackedVolume_lte?: Maybe; + untrackedVolume_in?: Maybe>; + untrackedVolume_not_in?: Maybe>; + liquidityETH?: Maybe; + liquidityETH_not?: Maybe; + liquidityETH_gt?: Maybe; + liquidityETH_lt?: Maybe; + liquidityETH_gte?: Maybe; + liquidityETH_lte?: Maybe; + liquidityETH_in?: Maybe>; + liquidityETH_not_in?: Maybe>; + liquidityUSD?: Maybe; + liquidityUSD_not?: Maybe; + liquidityUSD_gt?: Maybe; + liquidityUSD_lt?: Maybe; + liquidityUSD_gte?: Maybe; + liquidityUSD_lte?: Maybe; + liquidityUSD_in?: Maybe>; + liquidityUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; +}; + +export enum DayData_OrderBy { + Id = 'id', + Date = 'date', + Factory = 'factory', + VolumeEth = 'volumeETH', + VolumeUsd = 'volumeUSD', + UntrackedVolume = 'untrackedVolume', + LiquidityEth = 'liquidityETH', + LiquidityUsd = 'liquidityUSD', + TxCount = 'txCount' +} + +export type Factory = { + __typename?: 'Factory'; + id: Scalars['ID']; + pairCount: Scalars['BigInt']; + volumeUSD: Scalars['BigDecimal']; + volumeETH: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + liquidityUSD: Scalars['BigDecimal']; + liquidityETH: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + tokenCount: Scalars['BigInt']; + userCount: Scalars['BigInt']; + pairs: Array; + tokens: Array; + hourData: Array; + dayData: Array; +}; + + +export type FactoryPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type FactoryTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type FactoryHourDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type FactoryDayDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type Factory_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + pairCount?: Maybe; + pairCount_not?: Maybe; + pairCount_gt?: Maybe; + pairCount_lt?: Maybe; + pairCount_gte?: Maybe; + pairCount_lte?: Maybe; + pairCount_in?: Maybe>; + pairCount_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + volumeETH?: Maybe; + volumeETH_not?: Maybe; + volumeETH_gt?: Maybe; + volumeETH_lt?: Maybe; + volumeETH_gte?: Maybe; + volumeETH_lte?: Maybe; + volumeETH_in?: Maybe>; + volumeETH_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + liquidityUSD?: Maybe; + liquidityUSD_not?: Maybe; + liquidityUSD_gt?: Maybe; + liquidityUSD_lt?: Maybe; + liquidityUSD_gte?: Maybe; + liquidityUSD_lte?: Maybe; + liquidityUSD_in?: Maybe>; + liquidityUSD_not_in?: Maybe>; + liquidityETH?: Maybe; + liquidityETH_not?: Maybe; + liquidityETH_gt?: Maybe; + liquidityETH_lt?: Maybe; + liquidityETH_gte?: Maybe; + liquidityETH_lte?: Maybe; + liquidityETH_in?: Maybe>; + liquidityETH_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + tokenCount?: Maybe; + tokenCount_not?: Maybe; + tokenCount_gt?: Maybe; + tokenCount_lt?: Maybe; + tokenCount_gte?: Maybe; + tokenCount_lte?: Maybe; + tokenCount_in?: Maybe>; + tokenCount_not_in?: Maybe>; + userCount?: Maybe; + userCount_not?: Maybe; + userCount_gt?: Maybe; + userCount_lt?: Maybe; + userCount_gte?: Maybe; + userCount_lte?: Maybe; + userCount_in?: Maybe>; + userCount_not_in?: Maybe>; +}; + +export enum Factory_OrderBy { + Id = 'id', + PairCount = 'pairCount', + VolumeUsd = 'volumeUSD', + VolumeEth = 'volumeETH', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + LiquidityUsd = 'liquidityUSD', + LiquidityEth = 'liquidityETH', + TxCount = 'txCount', + TokenCount = 'tokenCount', + UserCount = 'userCount', + Pairs = 'pairs', + Tokens = 'tokens', + HourData = 'hourData', + DayData = 'dayData' +} + +export type HourData = { + __typename?: 'HourData'; + id: Scalars['ID']; + date: Scalars['Int']; + factory: Factory; + volumeETH: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + untrackedVolume: Scalars['BigDecimal']; + liquidityETH: Scalars['BigDecimal']; + liquidityUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; +}; + +export type HourData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + factory?: Maybe; + factory_not?: Maybe; + factory_gt?: Maybe; + factory_lt?: Maybe; + factory_gte?: Maybe; + factory_lte?: Maybe; + factory_in?: Maybe>; + factory_not_in?: Maybe>; + factory_contains?: Maybe; + factory_not_contains?: Maybe; + factory_starts_with?: Maybe; + factory_not_starts_with?: Maybe; + factory_ends_with?: Maybe; + factory_not_ends_with?: Maybe; + volumeETH?: Maybe; + volumeETH_not?: Maybe; + volumeETH_gt?: Maybe; + volumeETH_lt?: Maybe; + volumeETH_gte?: Maybe; + volumeETH_lte?: Maybe; + volumeETH_in?: Maybe>; + volumeETH_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + untrackedVolume?: Maybe; + untrackedVolume_not?: Maybe; + untrackedVolume_gt?: Maybe; + untrackedVolume_lt?: Maybe; + untrackedVolume_gte?: Maybe; + untrackedVolume_lte?: Maybe; + untrackedVolume_in?: Maybe>; + untrackedVolume_not_in?: Maybe>; + liquidityETH?: Maybe; + liquidityETH_not?: Maybe; + liquidityETH_gt?: Maybe; + liquidityETH_lt?: Maybe; + liquidityETH_gte?: Maybe; + liquidityETH_lte?: Maybe; + liquidityETH_in?: Maybe>; + liquidityETH_not_in?: Maybe>; + liquidityUSD?: Maybe; + liquidityUSD_not?: Maybe; + liquidityUSD_gt?: Maybe; + liquidityUSD_lt?: Maybe; + liquidityUSD_gte?: Maybe; + liquidityUSD_lte?: Maybe; + liquidityUSD_in?: Maybe>; + liquidityUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; +}; + +export enum HourData_OrderBy { + Id = 'id', + Date = 'date', + Factory = 'factory', + VolumeEth = 'volumeETH', + VolumeUsd = 'volumeUSD', + UntrackedVolume = 'untrackedVolume', + LiquidityEth = 'liquidityETH', + LiquidityUsd = 'liquidityUSD', + TxCount = 'txCount' +} + +export type LiquidityPosition = { + __typename?: 'LiquidityPosition'; + id: Scalars['ID']; + user: User; + pair: Pair; + liquidityTokenBalance: Scalars['BigDecimal']; + snapshots: Array>; + block: Scalars['Int']; + timestamp: Scalars['Int']; +}; + + +export type LiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type LiquidityPositionSnapshot = { + __typename?: 'LiquidityPositionSnapshot'; + id: Scalars['ID']; + liquidityPosition: LiquidityPosition; + timestamp: Scalars['Int']; + block: Scalars['Int']; + user: User; + pair: Pair; + token0PriceUSD: Scalars['BigDecimal']; + token1PriceUSD: Scalars['BigDecimal']; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + liquidityTokenTotalSupply: Scalars['BigDecimal']; + liquidityTokenBalance: Scalars['BigDecimal']; +}; + +export type LiquidityPositionSnapshot_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + liquidityPosition?: Maybe; + liquidityPosition_not?: Maybe; + liquidityPosition_gt?: Maybe; + liquidityPosition_lt?: Maybe; + liquidityPosition_gte?: Maybe; + liquidityPosition_lte?: Maybe; + liquidityPosition_in?: Maybe>; + liquidityPosition_not_in?: Maybe>; + liquidityPosition_contains?: Maybe; + liquidityPosition_not_contains?: Maybe; + liquidityPosition_starts_with?: Maybe; + liquidityPosition_not_starts_with?: Maybe; + liquidityPosition_ends_with?: Maybe; + liquidityPosition_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + block?: Maybe; + block_not?: Maybe; + block_gt?: Maybe; + block_lt?: Maybe; + block_gte?: Maybe; + block_lte?: Maybe; + block_in?: Maybe>; + block_not_in?: Maybe>; + user?: Maybe; + user_not?: Maybe; + user_gt?: Maybe; + user_lt?: Maybe; + user_gte?: Maybe; + user_lte?: Maybe; + user_in?: Maybe>; + user_not_in?: Maybe>; + user_contains?: Maybe; + user_not_contains?: Maybe; + user_starts_with?: Maybe; + user_not_starts_with?: Maybe; + user_ends_with?: Maybe; + user_not_ends_with?: Maybe; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + token0PriceUSD?: Maybe; + token0PriceUSD_not?: Maybe; + token0PriceUSD_gt?: Maybe; + token0PriceUSD_lt?: Maybe; + token0PriceUSD_gte?: Maybe; + token0PriceUSD_lte?: Maybe; + token0PriceUSD_in?: Maybe>; + token0PriceUSD_not_in?: Maybe>; + token1PriceUSD?: Maybe; + token1PriceUSD_not?: Maybe; + token1PriceUSD_gt?: Maybe; + token1PriceUSD_lt?: Maybe; + token1PriceUSD_gte?: Maybe; + token1PriceUSD_lte?: Maybe; + token1PriceUSD_in?: Maybe>; + token1PriceUSD_not_in?: Maybe>; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + liquidityTokenTotalSupply?: Maybe; + liquidityTokenTotalSupply_not?: Maybe; + liquidityTokenTotalSupply_gt?: Maybe; + liquidityTokenTotalSupply_lt?: Maybe; + liquidityTokenTotalSupply_gte?: Maybe; + liquidityTokenTotalSupply_lte?: Maybe; + liquidityTokenTotalSupply_in?: Maybe>; + liquidityTokenTotalSupply_not_in?: Maybe>; + liquidityTokenBalance?: Maybe; + liquidityTokenBalance_not?: Maybe; + liquidityTokenBalance_gt?: Maybe; + liquidityTokenBalance_lt?: Maybe; + liquidityTokenBalance_gte?: Maybe; + liquidityTokenBalance_lte?: Maybe; + liquidityTokenBalance_in?: Maybe>; + liquidityTokenBalance_not_in?: Maybe>; +}; + +export enum LiquidityPositionSnapshot_OrderBy { + Id = 'id', + LiquidityPosition = 'liquidityPosition', + Timestamp = 'timestamp', + Block = 'block', + User = 'user', + Pair = 'pair', + Token0PriceUsd = 'token0PriceUSD', + Token1PriceUsd = 'token1PriceUSD', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + ReserveUsd = 'reserveUSD', + LiquidityTokenTotalSupply = 'liquidityTokenTotalSupply', + LiquidityTokenBalance = 'liquidityTokenBalance' +} + +export type LiquidityPosition_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + user?: Maybe; + user_not?: Maybe; + user_gt?: Maybe; + user_lt?: Maybe; + user_gte?: Maybe; + user_lte?: Maybe; + user_in?: Maybe>; + user_not_in?: Maybe>; + user_contains?: Maybe; + user_not_contains?: Maybe; + user_starts_with?: Maybe; + user_not_starts_with?: Maybe; + user_ends_with?: Maybe; + user_not_ends_with?: Maybe; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + liquidityTokenBalance?: Maybe; + liquidityTokenBalance_not?: Maybe; + liquidityTokenBalance_gt?: Maybe; + liquidityTokenBalance_lt?: Maybe; + liquidityTokenBalance_gte?: Maybe; + liquidityTokenBalance_lte?: Maybe; + liquidityTokenBalance_in?: Maybe>; + liquidityTokenBalance_not_in?: Maybe>; + block?: Maybe; + block_not?: Maybe; + block_gt?: Maybe; + block_lt?: Maybe; + block_gte?: Maybe; + block_lte?: Maybe; + block_in?: Maybe>; + block_not_in?: Maybe>; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; +}; + +export enum LiquidityPosition_OrderBy { + Id = 'id', + User = 'user', + Pair = 'pair', + LiquidityTokenBalance = 'liquidityTokenBalance', + Snapshots = 'snapshots', + Block = 'block', + Timestamp = 'timestamp' +} + +export type Mint = { + __typename?: 'Mint'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + to: Scalars['Bytes']; + liquidity: Scalars['BigDecimal']; + sender?: Maybe; + amount0?: Maybe; + amount1?: Maybe; + logIndex?: Maybe; + amountUSD?: Maybe; + feeTo?: Maybe; + feeLiquidity?: Maybe; +}; + +export type Mint_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0?: Maybe; + amount0_not?: Maybe; + amount0_gt?: Maybe; + amount0_lt?: Maybe; + amount0_gte?: Maybe; + amount0_lte?: Maybe; + amount0_in?: Maybe>; + amount0_not_in?: Maybe>; + amount1?: Maybe; + amount1_not?: Maybe; + amount1_gt?: Maybe; + amount1_lt?: Maybe; + amount1_gte?: Maybe; + amount1_lte?: Maybe; + amount1_in?: Maybe>; + amount1_not_in?: Maybe>; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; + feeTo?: Maybe; + feeTo_not?: Maybe; + feeTo_in?: Maybe>; + feeTo_not_in?: Maybe>; + feeTo_contains?: Maybe; + feeTo_not_contains?: Maybe; + feeLiquidity?: Maybe; + feeLiquidity_not?: Maybe; + feeLiquidity_gt?: Maybe; + feeLiquidity_lt?: Maybe; + feeLiquidity_gte?: Maybe; + feeLiquidity_lte?: Maybe; + feeLiquidity_in?: Maybe>; + feeLiquidity_not_in?: Maybe>; +}; + +export enum Mint_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + To = 'to', + Liquidity = 'liquidity', + Sender = 'sender', + Amount0 = 'amount0', + Amount1 = 'amount1', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD', + FeeTo = 'feeTo', + FeeLiquidity = 'feeLiquidity' +} + +export enum OrderDirection { + Asc = 'asc', + Desc = 'desc' +} + +export type Pair = { + __typename?: 'Pair'; + id: Scalars['ID']; + factory: Factory; + name: Scalars['String']; + token0: Token; + token1: Token; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + totalSupply: Scalars['BigDecimal']; + reserveETH: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + trackedReserveETH: Scalars['BigDecimal']; + token0Price: Scalars['BigDecimal']; + token1Price: Scalars['BigDecimal']; + volumeToken0: Scalars['BigDecimal']; + volumeToken1: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + liquidityProviderCount: Scalars['BigInt']; + liquidityPositions: Array; + liquidityPositionSnapshots: Array; + dayData: Array; + hourData: Array; + mints: Array; + burns: Array; + swaps: Array; + timestamp: Scalars['BigInt']; + block: Scalars['BigInt']; +}; + + +export type PairLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairLiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairDayDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairHourDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type PairSwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type PairDayData = { + __typename?: 'PairDayData'; + id: Scalars['ID']; + date: Scalars['Int']; + pair: Pair; + token0: Token; + token1: Token; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + totalSupply: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + volumeToken0: Scalars['BigDecimal']; + volumeToken1: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; +}; + +export type PairDayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + token0?: Maybe; + token0_not?: Maybe; + token0_gt?: Maybe; + token0_lt?: Maybe; + token0_gte?: Maybe; + token0_lte?: Maybe; + token0_in?: Maybe>; + token0_not_in?: Maybe>; + token0_contains?: Maybe; + token0_not_contains?: Maybe; + token0_starts_with?: Maybe; + token0_not_starts_with?: Maybe; + token0_ends_with?: Maybe; + token0_not_ends_with?: Maybe; + token1?: Maybe; + token1_not?: Maybe; + token1_gt?: Maybe; + token1_lt?: Maybe; + token1_gte?: Maybe; + token1_lte?: Maybe; + token1_in?: Maybe>; + token1_not_in?: Maybe>; + token1_contains?: Maybe; + token1_not_contains?: Maybe; + token1_starts_with?: Maybe; + token1_not_starts_with?: Maybe; + token1_ends_with?: Maybe; + token1_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + volumeToken0?: Maybe; + volumeToken0_not?: Maybe; + volumeToken0_gt?: Maybe; + volumeToken0_lt?: Maybe; + volumeToken0_gte?: Maybe; + volumeToken0_lte?: Maybe; + volumeToken0_in?: Maybe>; + volumeToken0_not_in?: Maybe>; + volumeToken1?: Maybe; + volumeToken1_not?: Maybe; + volumeToken1_gt?: Maybe; + volumeToken1_lt?: Maybe; + volumeToken1_gte?: Maybe; + volumeToken1_lte?: Maybe; + volumeToken1_in?: Maybe>; + volumeToken1_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; +}; + +export enum PairDayData_OrderBy { + Id = 'id', + Date = 'date', + Pair = 'pair', + Token0 = 'token0', + Token1 = 'token1', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + TotalSupply = 'totalSupply', + ReserveUsd = 'reserveUSD', + VolumeToken0 = 'volumeToken0', + VolumeToken1 = 'volumeToken1', + VolumeUsd = 'volumeUSD', + TxCount = 'txCount' +} + +export type PairHourData = { + __typename?: 'PairHourData'; + id: Scalars['ID']; + date: Scalars['Int']; + pair: Pair; + reserve0: Scalars['BigDecimal']; + reserve1: Scalars['BigDecimal']; + reserveUSD: Scalars['BigDecimal']; + volumeToken0: Scalars['BigDecimal']; + volumeToken1: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; +}; + +export type PairHourData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + volumeToken0?: Maybe; + volumeToken0_not?: Maybe; + volumeToken0_gt?: Maybe; + volumeToken0_lt?: Maybe; + volumeToken0_gte?: Maybe; + volumeToken0_lte?: Maybe; + volumeToken0_in?: Maybe>; + volumeToken0_not_in?: Maybe>; + volumeToken1?: Maybe; + volumeToken1_not?: Maybe; + volumeToken1_gt?: Maybe; + volumeToken1_lt?: Maybe; + volumeToken1_gte?: Maybe; + volumeToken1_lte?: Maybe; + volumeToken1_in?: Maybe>; + volumeToken1_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; +}; + +export enum PairHourData_OrderBy { + Id = 'id', + Date = 'date', + Pair = 'pair', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + ReserveUsd = 'reserveUSD', + VolumeToken0 = 'volumeToken0', + VolumeToken1 = 'volumeToken1', + VolumeUsd = 'volumeUSD', + TxCount = 'txCount' +} + +export type Pair_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + factory?: Maybe; + factory_not?: Maybe; + factory_gt?: Maybe; + factory_lt?: Maybe; + factory_gte?: Maybe; + factory_lte?: Maybe; + factory_in?: Maybe>; + factory_not_in?: Maybe>; + factory_contains?: Maybe; + factory_not_contains?: Maybe; + factory_starts_with?: Maybe; + factory_not_starts_with?: Maybe; + factory_ends_with?: Maybe; + factory_not_ends_with?: Maybe; + name?: Maybe; + name_not?: Maybe; + name_gt?: Maybe; + name_lt?: Maybe; + name_gte?: Maybe; + name_lte?: Maybe; + name_in?: Maybe>; + name_not_in?: Maybe>; + name_contains?: Maybe; + name_not_contains?: Maybe; + name_starts_with?: Maybe; + name_not_starts_with?: Maybe; + name_ends_with?: Maybe; + name_not_ends_with?: Maybe; + token0?: Maybe; + token0_not?: Maybe; + token0_gt?: Maybe; + token0_lt?: Maybe; + token0_gte?: Maybe; + token0_lte?: Maybe; + token0_in?: Maybe>; + token0_not_in?: Maybe>; + token0_contains?: Maybe; + token0_not_contains?: Maybe; + token0_starts_with?: Maybe; + token0_not_starts_with?: Maybe; + token0_ends_with?: Maybe; + token0_not_ends_with?: Maybe; + token1?: Maybe; + token1_not?: Maybe; + token1_gt?: Maybe; + token1_lt?: Maybe; + token1_gte?: Maybe; + token1_lte?: Maybe; + token1_in?: Maybe>; + token1_not_in?: Maybe>; + token1_contains?: Maybe; + token1_not_contains?: Maybe; + token1_starts_with?: Maybe; + token1_not_starts_with?: Maybe; + token1_ends_with?: Maybe; + token1_not_ends_with?: Maybe; + reserve0?: Maybe; + reserve0_not?: Maybe; + reserve0_gt?: Maybe; + reserve0_lt?: Maybe; + reserve0_gte?: Maybe; + reserve0_lte?: Maybe; + reserve0_in?: Maybe>; + reserve0_not_in?: Maybe>; + reserve1?: Maybe; + reserve1_not?: Maybe; + reserve1_gt?: Maybe; + reserve1_lt?: Maybe; + reserve1_gte?: Maybe; + reserve1_lte?: Maybe; + reserve1_in?: Maybe>; + reserve1_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + reserveETH?: Maybe; + reserveETH_not?: Maybe; + reserveETH_gt?: Maybe; + reserveETH_lt?: Maybe; + reserveETH_gte?: Maybe; + reserveETH_lte?: Maybe; + reserveETH_in?: Maybe>; + reserveETH_not_in?: Maybe>; + reserveUSD?: Maybe; + reserveUSD_not?: Maybe; + reserveUSD_gt?: Maybe; + reserveUSD_lt?: Maybe; + reserveUSD_gte?: Maybe; + reserveUSD_lte?: Maybe; + reserveUSD_in?: Maybe>; + reserveUSD_not_in?: Maybe>; + trackedReserveETH?: Maybe; + trackedReserveETH_not?: Maybe; + trackedReserveETH_gt?: Maybe; + trackedReserveETH_lt?: Maybe; + trackedReserveETH_gte?: Maybe; + trackedReserveETH_lte?: Maybe; + trackedReserveETH_in?: Maybe>; + trackedReserveETH_not_in?: Maybe>; + token0Price?: Maybe; + token0Price_not?: Maybe; + token0Price_gt?: Maybe; + token0Price_lt?: Maybe; + token0Price_gte?: Maybe; + token0Price_lte?: Maybe; + token0Price_in?: Maybe>; + token0Price_not_in?: Maybe>; + token1Price?: Maybe; + token1Price_not?: Maybe; + token1Price_gt?: Maybe; + token1Price_lt?: Maybe; + token1Price_gte?: Maybe; + token1Price_lte?: Maybe; + token1Price_in?: Maybe>; + token1Price_not_in?: Maybe>; + volumeToken0?: Maybe; + volumeToken0_not?: Maybe; + volumeToken0_gt?: Maybe; + volumeToken0_lt?: Maybe; + volumeToken0_gte?: Maybe; + volumeToken0_lte?: Maybe; + volumeToken0_in?: Maybe>; + volumeToken0_not_in?: Maybe>; + volumeToken1?: Maybe; + volumeToken1_not?: Maybe; + volumeToken1_gt?: Maybe; + volumeToken1_lt?: Maybe; + volumeToken1_gte?: Maybe; + volumeToken1_lte?: Maybe; + volumeToken1_in?: Maybe>; + volumeToken1_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + liquidityProviderCount?: Maybe; + liquidityProviderCount_not?: Maybe; + liquidityProviderCount_gt?: Maybe; + liquidityProviderCount_lt?: Maybe; + liquidityProviderCount_gte?: Maybe; + liquidityProviderCount_lte?: Maybe; + liquidityProviderCount_in?: Maybe>; + liquidityProviderCount_not_in?: Maybe>; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + block?: Maybe; + block_not?: Maybe; + block_gt?: Maybe; + block_lt?: Maybe; + block_gte?: Maybe; + block_lte?: Maybe; + block_in?: Maybe>; + block_not_in?: Maybe>; +}; + +export enum Pair_OrderBy { + Id = 'id', + Factory = 'factory', + Name = 'name', + Token0 = 'token0', + Token1 = 'token1', + Reserve0 = 'reserve0', + Reserve1 = 'reserve1', + TotalSupply = 'totalSupply', + ReserveEth = 'reserveETH', + ReserveUsd = 'reserveUSD', + TrackedReserveEth = 'trackedReserveETH', + Token0Price = 'token0Price', + Token1Price = 'token1Price', + VolumeToken0 = 'volumeToken0', + VolumeToken1 = 'volumeToken1', + VolumeUsd = 'volumeUSD', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + TxCount = 'txCount', + LiquidityProviderCount = 'liquidityProviderCount', + LiquidityPositions = 'liquidityPositions', + LiquidityPositionSnapshots = 'liquidityPositionSnapshots', + DayData = 'dayData', + HourData = 'hourData', + Mints = 'mints', + Burns = 'burns', + Swaps = 'swaps', + Timestamp = 'timestamp', + Block = 'block' +} + +export type Query = { + __typename?: 'Query'; + user?: Maybe; + users: Array; + bundle?: Maybe; + bundles: Array; + factory?: Maybe; + factories: Array; + hourData?: Maybe; + hourDatas: Array; + dayData?: Maybe; + dayDatas: Array; + token?: Maybe; + tokens: Array; + tokenHourData?: Maybe; + tokenHourDatas: Array; + tokenDayData?: Maybe; + tokenDayDatas: Array; + pair?: Maybe; + pairs: Array; + pairHourData?: Maybe; + pairHourDatas: Array; + pairDayData?: Maybe; + pairDayDatas: Array; + liquidityPosition?: Maybe; + liquidityPositions: Array; + liquidityPositionSnapshot?: Maybe; + liquidityPositionSnapshots: Array; + transaction?: Maybe; + transactions: Array; + mint?: Maybe; + mints: Array; + burn?: Maybe; + burns: Array; + swap?: Maybe; + swaps: Array; + tokenSearch: Array; + pairSearch: Array; + userSearch: Array; + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_>; +}; + + +export type QueryUserArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryUsersArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryBundleArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryBundlesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryFactoryArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryFactoriesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTokenHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTokenDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryPairDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryPairDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryLiquidityPositionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryLiquidityPositionSnapshotArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryLiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTransactionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryTransactionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryMintArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryBurnArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QueryBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QuerySwapArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type QuerySwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type QueryTokenSearchArgs = { + text: Scalars['String']; + first?: Maybe; + skip?: Maybe; + block?: Maybe; +}; + + +export type QueryPairSearchArgs = { + text: Scalars['String']; + first?: Maybe; + skip?: Maybe; + block?: Maybe; +}; + + +export type QueryUserSearchArgs = { + text: Scalars['String']; + first?: Maybe; + skip?: Maybe; + block?: Maybe; +}; + + +export type Query_MetaArgs = { + block?: Maybe; +}; + +export type Subscription = { + __typename?: 'Subscription'; + user?: Maybe; + users: Array; + bundle?: Maybe; + bundles: Array; + factory?: Maybe; + factories: Array; + hourData?: Maybe; + hourDatas: Array; + dayData?: Maybe; + dayDatas: Array; + token?: Maybe; + tokens: Array; + tokenHourData?: Maybe; + tokenHourDatas: Array; + tokenDayData?: Maybe; + tokenDayDatas: Array; + pair?: Maybe; + pairs: Array; + pairHourData?: Maybe; + pairHourDatas: Array; + pairDayData?: Maybe; + pairDayDatas: Array; + liquidityPosition?: Maybe; + liquidityPositions: Array; + liquidityPositionSnapshot?: Maybe; + liquidityPositionSnapshots: Array; + transaction?: Maybe; + transactions: Array; + mint?: Maybe; + mints: Array; + burn?: Maybe; + burns: Array; + swap?: Maybe; + swaps: Array; + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_>; +}; + + +export type SubscriptionUserArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionUsersArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionBundleArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionBundlesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionFactoryArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionFactoriesArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTokenArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTokensArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTokenHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTokenHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTokenDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTokenDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairHourDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairHourDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionPairDayDataArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionPairDayDatasArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionSnapshotArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionLiquidityPositionSnapshotsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionTransactionArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionTransactionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionMintArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionBurnArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type SubscriptionSwapArgs = { + id: Scalars['ID']; + block?: Maybe; +}; + + +export type SubscriptionSwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; + block?: Maybe; +}; + + +export type Subscription_MetaArgs = { + block?: Maybe; +}; + +export type Swap = { + __typename?: 'Swap'; + id: Scalars['ID']; + transaction: Transaction; + timestamp: Scalars['BigInt']; + pair: Pair; + sender: Scalars['Bytes']; + amount0In: Scalars['BigDecimal']; + amount1In: Scalars['BigDecimal']; + amount0Out: Scalars['BigDecimal']; + amount1Out: Scalars['BigDecimal']; + to: Scalars['Bytes']; + logIndex?: Maybe; + amountUSD: Scalars['BigDecimal']; +}; + +export type Swap_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + transaction?: Maybe; + transaction_not?: Maybe; + transaction_gt?: Maybe; + transaction_lt?: Maybe; + transaction_gte?: Maybe; + transaction_lte?: Maybe; + transaction_in?: Maybe>; + transaction_not_in?: Maybe>; + transaction_contains?: Maybe; + transaction_not_contains?: Maybe; + transaction_starts_with?: Maybe; + transaction_not_starts_with?: Maybe; + transaction_ends_with?: Maybe; + transaction_not_ends_with?: Maybe; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + pair?: Maybe; + pair_not?: Maybe; + pair_gt?: Maybe; + pair_lt?: Maybe; + pair_gte?: Maybe; + pair_lte?: Maybe; + pair_in?: Maybe>; + pair_not_in?: Maybe>; + pair_contains?: Maybe; + pair_not_contains?: Maybe; + pair_starts_with?: Maybe; + pair_not_starts_with?: Maybe; + pair_ends_with?: Maybe; + pair_not_ends_with?: Maybe; + sender?: Maybe; + sender_not?: Maybe; + sender_in?: Maybe>; + sender_not_in?: Maybe>; + sender_contains?: Maybe; + sender_not_contains?: Maybe; + amount0In?: Maybe; + amount0In_not?: Maybe; + amount0In_gt?: Maybe; + amount0In_lt?: Maybe; + amount0In_gte?: Maybe; + amount0In_lte?: Maybe; + amount0In_in?: Maybe>; + amount0In_not_in?: Maybe>; + amount1In?: Maybe; + amount1In_not?: Maybe; + amount1In_gt?: Maybe; + amount1In_lt?: Maybe; + amount1In_gte?: Maybe; + amount1In_lte?: Maybe; + amount1In_in?: Maybe>; + amount1In_not_in?: Maybe>; + amount0Out?: Maybe; + amount0Out_not?: Maybe; + amount0Out_gt?: Maybe; + amount0Out_lt?: Maybe; + amount0Out_gte?: Maybe; + amount0Out_lte?: Maybe; + amount0Out_in?: Maybe>; + amount0Out_not_in?: Maybe>; + amount1Out?: Maybe; + amount1Out_not?: Maybe; + amount1Out_gt?: Maybe; + amount1Out_lt?: Maybe; + amount1Out_gte?: Maybe; + amount1Out_lte?: Maybe; + amount1Out_in?: Maybe>; + amount1Out_not_in?: Maybe>; + to?: Maybe; + to_not?: Maybe; + to_in?: Maybe>; + to_not_in?: Maybe>; + to_contains?: Maybe; + to_not_contains?: Maybe; + logIndex?: Maybe; + logIndex_not?: Maybe; + logIndex_gt?: Maybe; + logIndex_lt?: Maybe; + logIndex_gte?: Maybe; + logIndex_lte?: Maybe; + logIndex_in?: Maybe>; + logIndex_not_in?: Maybe>; + amountUSD?: Maybe; + amountUSD_not?: Maybe; + amountUSD_gt?: Maybe; + amountUSD_lt?: Maybe; + amountUSD_gte?: Maybe; + amountUSD_lte?: Maybe; + amountUSD_in?: Maybe>; + amountUSD_not_in?: Maybe>; +}; + +export enum Swap_OrderBy { + Id = 'id', + Transaction = 'transaction', + Timestamp = 'timestamp', + Pair = 'pair', + Sender = 'sender', + Amount0In = 'amount0In', + Amount1In = 'amount1In', + Amount0Out = 'amount0Out', + Amount1Out = 'amount1Out', + To = 'to', + LogIndex = 'logIndex', + AmountUsd = 'amountUSD' +} + +export type Token = { + __typename?: 'Token'; + id: Scalars['ID']; + factory: Factory; + symbol: Scalars['String']; + name: Scalars['String']; + decimals: Scalars['BigInt']; + totalSupply: Scalars['BigInt']; + volume: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + untrackedVolumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + liquidity: Scalars['BigDecimal']; + derivedETH: Scalars['BigDecimal']; + hourData: Array; + dayData: Array; + basePairs: Array; + quotePairs: Array; + basePairsDayData: Array; + quotePairsDayData: Array; +}; + + +export type TokenHourDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TokenDayDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TokenBasePairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TokenQuotePairsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TokenBasePairsDayDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TokenQuotePairsDayDataArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type TokenDayData = { + __typename?: 'TokenDayData'; + id: Scalars['ID']; + date: Scalars['Int']; + token: Token; + volume: Scalars['BigDecimal']; + volumeETH: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + liquidity: Scalars['BigDecimal']; + liquidityETH: Scalars['BigDecimal']; + liquidityUSD: Scalars['BigDecimal']; + priceUSD: Scalars['BigDecimal']; +}; + +export type TokenDayData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + token?: Maybe; + token_not?: Maybe; + token_gt?: Maybe; + token_lt?: Maybe; + token_gte?: Maybe; + token_lte?: Maybe; + token_in?: Maybe>; + token_not_in?: Maybe>; + token_contains?: Maybe; + token_not_contains?: Maybe; + token_starts_with?: Maybe; + token_not_starts_with?: Maybe; + token_ends_with?: Maybe; + token_not_ends_with?: Maybe; + volume?: Maybe; + volume_not?: Maybe; + volume_gt?: Maybe; + volume_lt?: Maybe; + volume_gte?: Maybe; + volume_lte?: Maybe; + volume_in?: Maybe>; + volume_not_in?: Maybe>; + volumeETH?: Maybe; + volumeETH_not?: Maybe; + volumeETH_gt?: Maybe; + volumeETH_lt?: Maybe; + volumeETH_gte?: Maybe; + volumeETH_lte?: Maybe; + volumeETH_in?: Maybe>; + volumeETH_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + liquidityETH?: Maybe; + liquidityETH_not?: Maybe; + liquidityETH_gt?: Maybe; + liquidityETH_lt?: Maybe; + liquidityETH_gte?: Maybe; + liquidityETH_lte?: Maybe; + liquidityETH_in?: Maybe>; + liquidityETH_not_in?: Maybe>; + liquidityUSD?: Maybe; + liquidityUSD_not?: Maybe; + liquidityUSD_gt?: Maybe; + liquidityUSD_lt?: Maybe; + liquidityUSD_gte?: Maybe; + liquidityUSD_lte?: Maybe; + liquidityUSD_in?: Maybe>; + liquidityUSD_not_in?: Maybe>; + priceUSD?: Maybe; + priceUSD_not?: Maybe; + priceUSD_gt?: Maybe; + priceUSD_lt?: Maybe; + priceUSD_gte?: Maybe; + priceUSD_lte?: Maybe; + priceUSD_in?: Maybe>; + priceUSD_not_in?: Maybe>; +}; + +export enum TokenDayData_OrderBy { + Id = 'id', + Date = 'date', + Token = 'token', + Volume = 'volume', + VolumeEth = 'volumeETH', + VolumeUsd = 'volumeUSD', + TxCount = 'txCount', + Liquidity = 'liquidity', + LiquidityEth = 'liquidityETH', + LiquidityUsd = 'liquidityUSD', + PriceUsd = 'priceUSD' +} + +export type TokenHourData = { + __typename?: 'TokenHourData'; + id: Scalars['ID']; + date: Scalars['Int']; + token: Token; + volume: Scalars['BigDecimal']; + volumeETH: Scalars['BigDecimal']; + volumeUSD: Scalars['BigDecimal']; + txCount: Scalars['BigInt']; + liquidity: Scalars['BigDecimal']; + liquidityETH: Scalars['BigDecimal']; + liquidityUSD: Scalars['BigDecimal']; + priceUSD: Scalars['BigDecimal']; +}; + +export type TokenHourData_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + date?: Maybe; + date_not?: Maybe; + date_gt?: Maybe; + date_lt?: Maybe; + date_gte?: Maybe; + date_lte?: Maybe; + date_in?: Maybe>; + date_not_in?: Maybe>; + token?: Maybe; + token_not?: Maybe; + token_gt?: Maybe; + token_lt?: Maybe; + token_gte?: Maybe; + token_lte?: Maybe; + token_in?: Maybe>; + token_not_in?: Maybe>; + token_contains?: Maybe; + token_not_contains?: Maybe; + token_starts_with?: Maybe; + token_not_starts_with?: Maybe; + token_ends_with?: Maybe; + token_not_ends_with?: Maybe; + volume?: Maybe; + volume_not?: Maybe; + volume_gt?: Maybe; + volume_lt?: Maybe; + volume_gte?: Maybe; + volume_lte?: Maybe; + volume_in?: Maybe>; + volume_not_in?: Maybe>; + volumeETH?: Maybe; + volumeETH_not?: Maybe; + volumeETH_gt?: Maybe; + volumeETH_lt?: Maybe; + volumeETH_gte?: Maybe; + volumeETH_lte?: Maybe; + volumeETH_in?: Maybe>; + volumeETH_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + liquidityETH?: Maybe; + liquidityETH_not?: Maybe; + liquidityETH_gt?: Maybe; + liquidityETH_lt?: Maybe; + liquidityETH_gte?: Maybe; + liquidityETH_lte?: Maybe; + liquidityETH_in?: Maybe>; + liquidityETH_not_in?: Maybe>; + liquidityUSD?: Maybe; + liquidityUSD_not?: Maybe; + liquidityUSD_gt?: Maybe; + liquidityUSD_lt?: Maybe; + liquidityUSD_gte?: Maybe; + liquidityUSD_lte?: Maybe; + liquidityUSD_in?: Maybe>; + liquidityUSD_not_in?: Maybe>; + priceUSD?: Maybe; + priceUSD_not?: Maybe; + priceUSD_gt?: Maybe; + priceUSD_lt?: Maybe; + priceUSD_gte?: Maybe; + priceUSD_lte?: Maybe; + priceUSD_in?: Maybe>; + priceUSD_not_in?: Maybe>; +}; + +export enum TokenHourData_OrderBy { + Id = 'id', + Date = 'date', + Token = 'token', + Volume = 'volume', + VolumeEth = 'volumeETH', + VolumeUsd = 'volumeUSD', + TxCount = 'txCount', + Liquidity = 'liquidity', + LiquidityEth = 'liquidityETH', + LiquidityUsd = 'liquidityUSD', + PriceUsd = 'priceUSD' +} + +export type Token_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + factory?: Maybe; + factory_not?: Maybe; + factory_gt?: Maybe; + factory_lt?: Maybe; + factory_gte?: Maybe; + factory_lte?: Maybe; + factory_in?: Maybe>; + factory_not_in?: Maybe>; + factory_contains?: Maybe; + factory_not_contains?: Maybe; + factory_starts_with?: Maybe; + factory_not_starts_with?: Maybe; + factory_ends_with?: Maybe; + factory_not_ends_with?: Maybe; + symbol?: Maybe; + symbol_not?: Maybe; + symbol_gt?: Maybe; + symbol_lt?: Maybe; + symbol_gte?: Maybe; + symbol_lte?: Maybe; + symbol_in?: Maybe>; + symbol_not_in?: Maybe>; + symbol_contains?: Maybe; + symbol_not_contains?: Maybe; + symbol_starts_with?: Maybe; + symbol_not_starts_with?: Maybe; + symbol_ends_with?: Maybe; + symbol_not_ends_with?: Maybe; + name?: Maybe; + name_not?: Maybe; + name_gt?: Maybe; + name_lt?: Maybe; + name_gte?: Maybe; + name_lte?: Maybe; + name_in?: Maybe>; + name_not_in?: Maybe>; + name_contains?: Maybe; + name_not_contains?: Maybe; + name_starts_with?: Maybe; + name_not_starts_with?: Maybe; + name_ends_with?: Maybe; + name_not_ends_with?: Maybe; + decimals?: Maybe; + decimals_not?: Maybe; + decimals_gt?: Maybe; + decimals_lt?: Maybe; + decimals_gte?: Maybe; + decimals_lte?: Maybe; + decimals_in?: Maybe>; + decimals_not_in?: Maybe>; + totalSupply?: Maybe; + totalSupply_not?: Maybe; + totalSupply_gt?: Maybe; + totalSupply_lt?: Maybe; + totalSupply_gte?: Maybe; + totalSupply_lte?: Maybe; + totalSupply_in?: Maybe>; + totalSupply_not_in?: Maybe>; + volume?: Maybe; + volume_not?: Maybe; + volume_gt?: Maybe; + volume_lt?: Maybe; + volume_gte?: Maybe; + volume_lte?: Maybe; + volume_in?: Maybe>; + volume_not_in?: Maybe>; + volumeUSD?: Maybe; + volumeUSD_not?: Maybe; + volumeUSD_gt?: Maybe; + volumeUSD_lt?: Maybe; + volumeUSD_gte?: Maybe; + volumeUSD_lte?: Maybe; + volumeUSD_in?: Maybe>; + volumeUSD_not_in?: Maybe>; + untrackedVolumeUSD?: Maybe; + untrackedVolumeUSD_not?: Maybe; + untrackedVolumeUSD_gt?: Maybe; + untrackedVolumeUSD_lt?: Maybe; + untrackedVolumeUSD_gte?: Maybe; + untrackedVolumeUSD_lte?: Maybe; + untrackedVolumeUSD_in?: Maybe>; + untrackedVolumeUSD_not_in?: Maybe>; + txCount?: Maybe; + txCount_not?: Maybe; + txCount_gt?: Maybe; + txCount_lt?: Maybe; + txCount_gte?: Maybe; + txCount_lte?: Maybe; + txCount_in?: Maybe>; + txCount_not_in?: Maybe>; + liquidity?: Maybe; + liquidity_not?: Maybe; + liquidity_gt?: Maybe; + liquidity_lt?: Maybe; + liquidity_gte?: Maybe; + liquidity_lte?: Maybe; + liquidity_in?: Maybe>; + liquidity_not_in?: Maybe>; + derivedETH?: Maybe; + derivedETH_not?: Maybe; + derivedETH_gt?: Maybe; + derivedETH_lt?: Maybe; + derivedETH_gte?: Maybe; + derivedETH_lte?: Maybe; + derivedETH_in?: Maybe>; + derivedETH_not_in?: Maybe>; +}; + +export enum Token_OrderBy { + Id = 'id', + Factory = 'factory', + Symbol = 'symbol', + Name = 'name', + Decimals = 'decimals', + TotalSupply = 'totalSupply', + Volume = 'volume', + VolumeUsd = 'volumeUSD', + UntrackedVolumeUsd = 'untrackedVolumeUSD', + TxCount = 'txCount', + Liquidity = 'liquidity', + DerivedEth = 'derivedETH', + HourData = 'hourData', + DayData = 'dayData', + BasePairs = 'basePairs', + QuotePairs = 'quotePairs', + BasePairsDayData = 'basePairsDayData', + QuotePairsDayData = 'quotePairsDayData' +} + +export type Transaction = { + __typename?: 'Transaction'; + id: Scalars['ID']; + blockNumber: Scalars['BigInt']; + timestamp: Scalars['BigInt']; + mints: Array>; + burns: Array>; + swaps: Array>; +}; + + +export type TransactionMintsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TransactionBurnsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + + +export type TransactionSwapsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type Transaction_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; + blockNumber?: Maybe; + blockNumber_not?: Maybe; + blockNumber_gt?: Maybe; + blockNumber_lt?: Maybe; + blockNumber_gte?: Maybe; + blockNumber_lte?: Maybe; + blockNumber_in?: Maybe>; + blockNumber_not_in?: Maybe>; + timestamp?: Maybe; + timestamp_not?: Maybe; + timestamp_gt?: Maybe; + timestamp_lt?: Maybe; + timestamp_gte?: Maybe; + timestamp_lte?: Maybe; + timestamp_in?: Maybe>; + timestamp_not_in?: Maybe>; + mints?: Maybe>; + mints_not?: Maybe>; + mints_contains?: Maybe>; + mints_not_contains?: Maybe>; + burns?: Maybe>; + burns_not?: Maybe>; + burns_contains?: Maybe>; + burns_not_contains?: Maybe>; + swaps?: Maybe>; + swaps_not?: Maybe>; + swaps_contains?: Maybe>; + swaps_not_contains?: Maybe>; +}; + +export enum Transaction_OrderBy { + Id = 'id', + BlockNumber = 'blockNumber', + Timestamp = 'timestamp', + Mints = 'mints', + Burns = 'burns', + Swaps = 'swaps' +} + +export type User = { + __typename?: 'User'; + id: Scalars['ID']; + liquidityPositions: Array; +}; + + +export type UserLiquidityPositionsArgs = { + skip?: Maybe; + first?: Maybe; + orderBy?: Maybe; + orderDirection?: Maybe; + where?: Maybe; +}; + +export type User_Filter = { + id?: Maybe; + id_not?: Maybe; + id_gt?: Maybe; + id_lt?: Maybe; + id_gte?: Maybe; + id_lte?: Maybe; + id_in?: Maybe>; + id_not_in?: Maybe>; +}; + +export enum User_OrderBy { + Id = 'id', + LiquidityPositions = 'liquidityPositions' +} + +export type _Block_ = { + __typename?: '_Block_'; + /** The hash of the block */ + hash?: Maybe; + /** The block number */ + number: Scalars['Int']; +}; + +/** The type for the top-level _meta field */ +export type _Meta_ = { + __typename?: '_Meta_'; + /** + * Information about a specific subgraph block. The hash of the block + * will be null if the _meta field has a block constraint that asks for + * a block number. It will be filled if the _meta field has no block constraint + * and therefore asks for the latest block + * + */ + block: _Block_; + /** The deployment ID */ + deployment: Scalars['String']; + /** If `true`, the subgraph encountered indexing errors at some past block */ + hasIndexingErrors: Scalars['Boolean']; +}; + +export enum _SubgraphErrorPolicy_ { + /** Data will be returned even if the subgraph has indexing errors */ + Allow = 'allow', + /** If the subgraph has indexing errors, data will be omitted. The default. */ + Deny = 'deny' +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ae3b3c0 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "declaration": true, + "importHelpers": true, + "module": "commonjs", + "outDir": "lib", + "rootDir": "src", + "strict": true, + "moduleResolution": "node", + "noImplicitAny": false, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2017" + }, + "include": [ + "src/**/*" + ], +"exclude": [ "node_modules/**/*", "test/**/*", "tests/**/*"] +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..7bba1bd --- /dev/null +++ b/yarn.lock @@ -0,0 +1,7567 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ardatan/fetch-event-source@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@ardatan/fetch-event-source/-/fetch-event-source-2.0.2.tgz#734aa3eaa0da456453d24d8dc7c14d5e366a8d21" + integrity sha512-mcpz/wJ7s50PJIVz4OQ1Yim3w/AAchtYtIg0QMWiMR2cZZoI9t23hRyqeumtD5EmyJu0fxtjmQ5WY8GI86V4rQ== + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" + integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== + dependencies: + "@babel/highlight" "^7.14.5" + +"@babel/compat-data@^7.14.7", "@babel/compat-data@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" + integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== + +"@babel/core@^7.0.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.4.tgz#a70d06c58ae1fce39c23f8efd79f9d5eb8b2f397" + integrity sha512-Lkcv9I4a8bgUI8LJOLM6IKv6hnz1KOju6KM1lceqVMKlKKqNRopYd2Pc9MgIurqvMJ6BooemrnJz8jlIiQIpsA== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.4" + "@babel/helper-compilation-targets" "^7.15.4" + "@babel/helper-module-transforms" "^7.15.4" + "@babel/helpers" "^7.15.4" + "@babel/parser" "^7.15.4" + "@babel/template" "^7.15.4" + "@babel/traverse" "^7.15.4" + "@babel/types" "^7.15.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.1.2" + semver "^6.3.0" + source-map "^0.5.0" + +"@babel/generator@^7.15.0", "@babel/generator@^7.15.4", "@babel/generator@^7.5.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.4.tgz#85acb159a267ca6324f9793986991ee2022a05b0" + integrity sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw== + dependencies: + "@babel/types" "^7.15.4" + jsesc "^2.5.1" + source-map "^0.5.0" + +"@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835" + integrity sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" + integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ== + dependencies: + "@babel/compat-data" "^7.15.0" + "@babel/helper-validator-option" "^7.14.5" + browserslist "^4.16.6" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.14.5": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e" + integrity sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.15.4" + "@babel/helper-function-name" "^7.15.4" + "@babel/helper-member-expression-to-functions" "^7.15.4" + "@babel/helper-optimise-call-expression" "^7.15.4" + "@babel/helper-replace-supers" "^7.15.4" + "@babel/helper-split-export-declaration" "^7.15.4" + +"@babel/helper-function-name@^7.14.5", "@babel/helper-function-name@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" + integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw== + dependencies: + "@babel/helper-get-function-arity" "^7.15.4" + "@babel/template" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/helper-get-function-arity@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" + integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-hoist-variables@^7.14.5", "@babel/helper-hoist-variables@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" + integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-member-expression-to-functions@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" + integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" + integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-module-transforms@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz#962cc629a7f7f9a082dd62d0307fa75fe8788d7c" + integrity sha512-9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw== + dependencies: + "@babel/helper-module-imports" "^7.15.4" + "@babel/helper-replace-supers" "^7.15.4" + "@babel/helper-simple-access" "^7.15.4" + "@babel/helper-split-export-declaration" "^7.15.4" + "@babel/helper-validator-identifier" "^7.14.9" + "@babel/template" "^7.15.4" + "@babel/traverse" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/helper-optimise-call-expression@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" + integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" + integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== + +"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" + integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.15.4" + "@babel/helper-optimise-call-expression" "^7.15.4" + "@babel/traverse" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/helper-simple-access@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" + integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-skip-transparent-expression-wrappers@^7.14.5": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb" + integrity sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-split-export-declaration@^7.14.5", "@babel/helper-split-export-declaration@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" + integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw== + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" + integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== + +"@babel/helper-validator-option@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" + integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== + +"@babel/helpers@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" + integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ== + dependencies: + "@babel/template" "^7.15.4" + "@babel/traverse" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" + integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== + dependencies: + "@babel/helper-validator-identifier" "^7.14.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@7.15.3": + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz#3416d9bea748052cfcb63dbcc27368105b1ed862" + integrity sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA== + +"@babel/parser@^7.0.0", "@babel/parser@^7.15.0", "@babel/parser@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.4.tgz#02f2931b822512d3aad17d475ae83da74a255a84" + integrity sha512-xmzz+7fRpjrvDUj+GV7zfz/R3gSK2cOxGlazaXooxspCr539cbTXJKvBJzSVI2pPhcRGquoOtaIkKCsHQUiO3w== + +"@babel/plugin-proposal-class-properties@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" + integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-object-rest-spread@^7.0.0": + version "7.14.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz#5920a2b3df7f7901df0205974c0641b13fd9d363" + integrity sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g== + dependencies: + "@babel/compat-data" "^7.14.7" + "@babel/helper-compilation-targets" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.14.5" + +"@babel/plugin-syntax-class-properties@^7.0.0": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz#2ff654999497d7d7d142493260005263731da180" + integrity sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" + integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-transform-arrow-functions@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" + integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-block-scoped-functions@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" + integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-block-scoping@^7.0.0": + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf" + integrity sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-classes@^7.0.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1" + integrity sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.15.4" + "@babel/helper-function-name" "^7.15.4" + "@babel/helper-optimise-call-expression" "^7.15.4" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.15.4" + "@babel/helper-split-export-declaration" "^7.15.4" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" + integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-destructuring@^7.0.0": + version "7.14.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576" + integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-flow-strip-types@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz#0dc9c1d11dcdc873417903d6df4bed019ef0f85e" + integrity sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-flow" "^7.14.5" + +"@babel/plugin-transform-for-of@^7.0.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2" + integrity sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-function-name@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" + integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== + dependencies: + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-literals@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" + integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-member-expression-literals@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" + integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-modules-commonjs@^7.0.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c1" + integrity sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA== + dependencies: + "@babel/helper-module-transforms" "^7.15.4" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-simple-access" "^7.15.4" + babel-plugin-dynamic-import-node "^2.3.3" + +"@babel/plugin-transform-object-super@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" + integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.14.5": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62" + integrity sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" + integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-display-name@^7.0.0": + version "7.15.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz#6aaac6099f1fcf6589d35ae6be1b6e10c8c602b9" + integrity sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-jsx@^7.0.0": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz#3314b2163033abac5200a869c4de242cd50a914c" + integrity sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-jsx" "^7.14.5" + "@babel/types" "^7.14.9" + +"@babel/plugin-transform-shorthand-properties@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" + integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-spread@^7.0.0": + version "7.14.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144" + integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + +"@babel/plugin-transform-template-literals@^7.0.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" + integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/runtime@^7.0.0": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" + integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" + integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/parser" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/traverse@7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz#4cca838fd1b2a03283c1f38e141f639d60b3fc98" + integrity sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/parser" "^7.15.0" + "@babel/types" "^7.15.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" + integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.4" + "@babel/helper-function-name" "^7.15.4" + "@babel/helper-hoist-variables" "^7.15.4" + "@babel/helper-split-export-declaration" "^7.15.4" + "@babel/parser" "^7.15.4" + "@babel/types" "^7.15.4" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz#61af11f2286c4e9c69ca8deb5f4375a73c72dcbd" + integrity sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ== + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + to-fast-properties "^2.0.0" + +"@babel/types@^7.0.0", "@babel/types@^7.14.9", "@babel/types@^7.15.0", "@babel/types@^7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz#74eeb86dbd6748d2741396557b9860e57fce0a0d" + integrity sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw== + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + to-fast-properties "^2.0.0" + +"@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz#eea4635828dde372838b0909693ebd9aafeec22d" + integrity sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA== + dependencies: + lodash.get "^4" + make-error "^1" + ts-node "^9" + tslib "^2" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + espree "^7.3.0" + globals "^13.9.0" + ignore "^4.0.6" + import-fresh "^3.2.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + +"@graphprotocol/graph-cli@^0.21.1": + version "0.21.1" + resolved "https://registry.yarnpkg.com/@graphprotocol/graph-cli/-/graph-cli-0.21.1.tgz#06cc85f3b950c01ca12c87c1fa47cacf4deec078" + integrity sha512-bqHlHZTzfEJICUpGQQr4Pru07OiGiOpIiwkVSdQMJaiuwu+bflMmLJNYNbSRH2byqaWDZvc4MI3U9CwUYXdRRw== + dependencies: + assemblyscript "git+https://github.com/AssemblyScript/assemblyscript.git#v0.6" + chalk "^3.0.0" + chokidar "^3.0.2" + debug "^4.1.1" + docker-compose "^0.23.2" + dockerode "^2.5.8" + fs-extra "^9.0.0" + glob "^7.1.2" + gluegun "^4.3.1" + graphql "^15.5.0" + immutable "^3.8.2" + ipfs-http-client "^34.0.0" + jayson "^3.0.2" + js-yaml "^3.13.1" + node-fetch "^2.3.0" + pkginfo "^0.4.1" + prettier "^1.13.5" + request "^2.88.0" + tmp-promise "^3.0.2" + yaml "^1.5.1" + +"@graphprotocol/graph-ts@^0.20.0": + version "0.20.0" + resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.20.0.tgz#ed31ffd59a6aa9703a1ec5079f137a81220443cb" + integrity sha512-+R0Tu/MD4Fiq0Fo+v1l+xznz+ZrciQKWlzMtXjDrhM70vlMNVL9wDmf90MVFYpslgqIfw024hT6XwlmyNyOWbQ== + dependencies: + assemblyscript "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" + +"@graphql-codegen/add@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-3.1.0.tgz#cd02fd6d80a7f62839cb27160b62e48366a237c5" + integrity sha512-vRRHpuUFadYXnPrb5RNiIzm3Ao39UxjvrdX760lEfXh2qeG7YddM5QFC+ev2BH3X452R15gv/gf/rXy0+Hqm1A== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.0" + tslib "~2.3.0" + +"@graphql-codegen/cli@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-2.1.1.tgz#1123f7434292852ac1e101924b37d674ca1e92f3" + integrity sha512-burl5HdZeaAOhe3gx/3LBNxNyboqNHSDQLlZUazm1Gu8lUdVN1trtO3P5xF7MCBm4MFTjzaAXdPT7FoYvYaWMg== + dependencies: + "@graphql-codegen/core" "2.1.0" + "@graphql-codegen/plugin-helpers" "^2.1.0" + "@graphql-tools/apollo-engine-loader" "^7.0.5" + "@graphql-tools/code-file-loader" "^7.0.6" + "@graphql-tools/git-loader" "^7.0.5" + "@graphql-tools/github-loader" "^7.0.5" + "@graphql-tools/graphql-file-loader" "^7.0.5" + "@graphql-tools/json-file-loader" "^7.1.2" + "@graphql-tools/load" "^7.1.8" + "@graphql-tools/prisma-loader" "^7.0.6" + "@graphql-tools/url-loader" "^7.0.11" + "@graphql-tools/utils" "^8.1.1" + ansi-escapes "^4.3.1" + chalk "^4.1.0" + change-case-all "1.0.14" + chokidar "^3.5.2" + common-tags "^1.8.0" + cosmiconfig "^7.0.0" + debounce "^1.2.0" + dependency-graph "^0.11.0" + detect-indent "^6.0.0" + glob "^7.1.6" + globby "^11.0.4" + graphql-config "^4.0.1" + inquirer "^7.3.3" + is-glob "^4.0.1" + json-to-pretty-yaml "^1.2.2" + latest-version "5.1.0" + listr "^0.14.3" + listr-update-renderer "^0.5.0" + log-symbols "^4.0.0" + minimatch "^3.0.4" + mkdirp "^1.0.4" + string-env-interpolation "^1.0.1" + ts-log "^2.2.3" + tslib "~2.3.0" + valid-url "^1.0.9" + wrap-ansi "^7.0.0" + yaml "^1.10.0" + yargs "^17.0.0" + +"@graphql-codegen/core@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.1.0.tgz#c0b2d63ad3e77b794b6a84485c4a8ac72c291c6b" + integrity sha512-pNzpBZWP+B7doPtANN61CMoBq382KMuGierbZXyilrO6RAqgN/DgU4UEIaQFat1BfiVA5GFDAQryysOv4glU8g== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.0" + "@graphql-tools/schema" "^8.1.2" + "@graphql-tools/utils" "^8.1.1" + tslib "~2.3.0" + +"@graphql-codegen/near-operation-file-preset@^2.1.2": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@graphql-codegen/near-operation-file-preset/-/near-operation-file-preset-2.1.3.tgz#394c0a94b0527f5caa8239a6d6659411622023f0" + integrity sha512-sfdHWs8ldQwfXbTDRE+k/CXnbXNlmeglI9mKxfnVIiowcOocxidIKMv3oEj095A5g2h2+CZLTWwwWXjjEE7oUg== + dependencies: + "@graphql-codegen/add" "^3.1.0" + "@graphql-codegen/plugin-helpers" "^2.1.1" + "@graphql-codegen/visitor-plugin-common" "2.2.0" + parse-filepath "^1.0.2" + tslib "~2.3.0" + +"@graphql-codegen/plugin-helpers@^2.1.0", "@graphql-codegen/plugin-helpers@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz#fc13e735763574ef308045bbb95c3e7201ec0027" + integrity sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA== + dependencies: + "@graphql-tools/utils" "^8.1.1" + change-case-all "1.0.14" + common-tags "1.8.0" + import-from "4.0.0" + lodash "~4.17.0" + tslib "~2.3.0" + +"@graphql-codegen/typescript-oclif@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-oclif/-/typescript-oclif-2.1.3.tgz#6655b8d174b04f3e7340d05a363f6366efd31db4" + integrity sha512-Dky/pd/jtZfUlasn7Er/0/+htCUHhgkLWTneUMAOH+yJCyEk0MCmnUIQ3nTFsyZek3qGiBmbnWPMM49UwqyqfQ== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.1" + "@graphql-codegen/visitor-plugin-common" "2.2.0" + auto-bind "~4.0.0" + tslib "~2.3.0" + +"@graphql-codegen/typescript-operations@^2.1.2": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-2.1.3.tgz#34f94e323c69006788e7eb0f4d039522a95dd31f" + integrity sha512-CGRc2mu7NVW+U6J+a66YdLn7UAZFrVO1axBSzgQOCR9OaSJ9Kr2K3Iq/R8PX31YHWu6hDI93Nf8zc2TIiRLDwQ== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.1" + "@graphql-codegen/typescript" "^2.2.0" + "@graphql-codegen/visitor-plugin-common" "2.2.0" + auto-bind "~4.0.0" + tslib "~2.3.0" + +"@graphql-codegen/typescript@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.2.0.tgz#3ff0ea851180842d760df165d3272e78566ac005" + integrity sha512-36F7DDFpIenvziyCyu9pS7ztb122TRz4mPQGklDycdz97fyYy/7yLyTTNTfX9T4+RaNBfbL80U1CcqxYgnF9yQ== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.1" + "@graphql-codegen/visitor-plugin-common" "2.2.0" + auto-bind "~4.0.0" + tslib "~2.3.0" + +"@graphql-codegen/visitor-plugin-common@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.2.0.tgz#7e4c2b400dcc057ae446369bcd30d6f7775e0db3" + integrity sha512-DxLWp+Y7PRb2BnNK4U/bhNPYzU90SVpt/9MM/bVB/cl93bFxxqtKJhuu7UhsP9QdlT1uJ++gN5EOYbPxJrDshw== + dependencies: + "@graphql-codegen/plugin-helpers" "^2.1.1" + "@graphql-tools/optimize" "^1.0.1" + "@graphql-tools/relay-operation-optimizer" "^6.3.7" + "@graphql-tools/utils" "8.2.1" + auto-bind "~4.0.0" + change-case-all "1.0.14" + dependency-graph "^0.11.0" + graphql-tag "^2.11.0" + parse-filepath "^1.0.2" + tslib "~2.3.0" + +"@graphql-tools/apollo-engine-loader@^7.0.5": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.1.0.tgz#12d58a459da976b496c7632bd41b76f3aceed48e" + integrity sha512-JKK34xQiB1l2sBfi8G5c1HZZkleQbwOlLAkySycKTrU+VMzu5lEjhzYwowIbLLjTthjUHQkRFANHkxvB42t5SQ== + dependencies: + "@graphql-tools/utils" "^8.2.0" + cross-fetch "^3.1.4" + sync-fetch "0.3.0" + tslib "~2.3.0" + +"@graphql-tools/batch-execute@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.1.0.tgz#fd463bab0e870a662bb00f12d5ce0013b11ae990" + integrity sha512-PPf8SZto4elBtkaV65RldkjvxCuwYV7tLYKH+w6QnsxogfjrtiwijmewtqIlfnpPRnuhmMzmOlhoDyf0I8EwHw== + dependencies: + "@graphql-tools/utils" "^8.2.0" + dataloader "2.0.0" + tslib "~2.3.0" + value-or-promise "1.0.10" + +"@graphql-tools/code-file-loader@^7.0.6": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.1.0.tgz#3fd040ce92510a12c361bac85d0d954951e231f5" + integrity sha512-1EVuKGzTDcZoPQAjJYy0Fw2vwLN1ZnWYDlCZLaqml87tCUzJcqcHlQw26SRhDEvVnJC/oCV+mH+2QE55UxqWuA== + dependencies: + "@graphql-tools/graphql-tag-pluck" "^7.1.0" + "@graphql-tools/utils" "^8.2.0" + globby "^11.0.3" + tslib "~2.3.0" + unixify "^1.0.0" + +"@graphql-tools/delegate@^8.2.0": + version "8.2.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-8.2.1.tgz#750df27be7641836e0cb654b953581de30f2d1a6" + integrity sha512-fvQjSrCJCfchSQlLNHPcj1TwojyV1CPtXmwtSEVKvyp9axokuP37WGyliOWUYCepfwpklklLFUeTEiWlCoxv2Q== + dependencies: + "@graphql-tools/batch-execute" "^8.1.0" + "@graphql-tools/schema" "^8.2.0" + "@graphql-tools/utils" "^8.2.0" + dataloader "2.0.0" + tslib "~2.3.0" + value-or-promise "1.0.10" + +"@graphql-tools/git-loader@^7.0.5": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-7.1.0.tgz#6d4978752e058b69047bccca1d11c50b1e29b401" + integrity sha512-n6JBKc7Po8aE9/pueH0wO2EXicueuCT3VCo9YcFcCkdEl1tUZwIoIUgNUqgki2eS8u2Z76F2EWZwWBWO2ipXEw== + dependencies: + "@graphql-tools/graphql-tag-pluck" "^7.1.0" + "@graphql-tools/utils" "^8.2.0" + is-glob "4.0.1" + micromatch "^4.0.4" + tslib "~2.3.0" + unixify "^1.0.0" + +"@graphql-tools/github-loader@^7.0.5": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-7.1.0.tgz#2309460f3b5c931b406ffc2506f3d7504b6c6c8c" + integrity sha512-RL8bREscN+CO/gP58BE+aA+PXUIwMY7okmrWtrupjRyo1IYv0bfaZXKHRF+qb2gqlJxksM5Q9HevO/MIj6T1eQ== + dependencies: + "@graphql-tools/graphql-tag-pluck" "^7.1.0" + "@graphql-tools/utils" "^8.2.0" + cross-fetch "3.1.4" + tslib "~2.3.0" + +"@graphql-tools/graphql-file-loader@^7.0.1", "@graphql-tools/graphql-file-loader@^7.0.5": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.1.0.tgz#6249074a7d268a30c81e923ee2bb991ec9a4c7b7" + integrity sha512-VWGetkBuyWrUxSpMnbpzZs2yHWBFeo9nTYjc8+o+xyJKpG/CRfvQrhBRNRFfV/5C0j5/Z1FMfUgsroEAG5H3HQ== + dependencies: + "@graphql-tools/import" "^6.4.0" + "@graphql-tools/utils" "^8.2.0" + globby "^11.0.3" + tslib "~2.3.0" + unixify "^1.0.0" + +"@graphql-tools/graphql-tag-pluck@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.1.0.tgz#1116ef046370723b7d63ee1f66167129a6fcb8c9" + integrity sha512-Y0iRqHKoB0i1RCpskuFKmvnehBcKSu9awEq7ml4/RWSMHRkVlJs8PAFuChyOO6jASC2ttkyfssB6qLJugvc+DQ== + dependencies: + "@babel/parser" "7.15.3" + "@babel/traverse" "7.15.0" + "@babel/types" "7.15.0" + "@graphql-tools/utils" "^8.2.0" + tslib "~2.3.0" + +"@graphql-tools/import@^6.4.0": + version "6.4.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.4.0.tgz#eb2178d6df8d964e7b9d6b1ed75f80d12f9060a7" + integrity sha512-jfE01oPcmc4vzAcYLs6xT7XC4jJWrM1HNtIwc7HyyHTxrC3nf36XrF3txEZ2l20GT53+OWnMgYx1HhauLGdJmA== + dependencies: + resolve-from "5.0.0" + tslib "~2.3.0" + +"@graphql-tools/json-file-loader@^7.0.1", "@graphql-tools/json-file-loader@^7.1.2": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.2.0.tgz#0d5cdc372a5d925a470c7b2269f26dd659eef841" + integrity sha512-YMGjYtjYoalmGHUynypSqxm99fSBOXWqoDeDVYTHAZy970yo61yTi72owEtg7dwB4fQndL2wCoh6ZDS5ruiDDg== + dependencies: + "@graphql-tools/utils" "^8.2.0" + globby "^11.0.3" + tslib "~2.3.0" + unixify "^1.0.0" + +"@graphql-tools/load@^7.1.0", "@graphql-tools/load@^7.1.8": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.2.0.tgz#b5caae065aa3b671b5242b4e53e6b1f689b2a78c" + integrity sha512-wpMjONVcE47jjlTkoivOnl/WPxcDUyfyN+3++UOijrdSSzuItwmaWo14e+Egqd5Uz/wWlLPwfbSatbcN0rDKuQ== + dependencies: + "@graphql-tools/schema" "8.2.0" + "@graphql-tools/utils" "^8.2.0" + p-limit "3.1.0" + tslib "~2.3.0" + +"@graphql-tools/merge@^6.2.16": + version "6.2.17" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.17.tgz#4dedf87d8435a5e1091d7cc8d4f371ed1e029f1f" + integrity sha512-G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow== + dependencies: + "@graphql-tools/schema" "^8.0.2" + "@graphql-tools/utils" "8.0.2" + tslib "~2.3.0" + +"@graphql-tools/merge@^8.1.0": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.1.1.tgz#692ff0de5e6b025a1166e25d7cda4e20ec0c2df3" + integrity sha512-zyeUbFG5zasSQC6LnBxzhmPTLYeeT3c0ijYfmFlIlOLiTAdRgCjIba03l6kKHcCiMDJYr+P+Nz5kKYLGqPSSjQ== + dependencies: + "@graphql-tools/utils" "^8.2.2" + tslib "~2.3.0" + +"@graphql-tools/optimize@^1.0.1": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.1.0.tgz#c498f628907891b88378cdc5cbdecd8f875762a0" + integrity sha512-OW3tX3DHZ/5bRPPGI5UNgaQpaV7HihvV9zX6MYCLwERWRZTbc2DsNIq+H8L5Y5q2E2G8/H7vuz7q8LH8RgyP6A== + dependencies: + tslib "~2.3.0" + +"@graphql-tools/prisma-loader@^7.0.6": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-7.1.0.tgz#790dd29ad682f6c1fc7ceb3cf48b04cb1064b7f4" + integrity sha512-fehVzximGYuVkbl4mIbXjPz3XlL+7N4BlnXI5QEAif2DJ8fkTpPN7E9PoV80lxWkLDNokFFDHH6qq7hr99JyOg== + dependencies: + "@graphql-tools/url-loader" "^7.1.0" + "@graphql-tools/utils" "^8.2.0" + "@types/js-yaml" "^4.0.0" + "@types/json-stable-stringify" "^1.0.32" + "@types/jsonwebtoken" "^8.5.0" + chalk "^4.1.0" + debug "^4.3.1" + dotenv "^10.0.0" + graphql-request "^3.3.0" + http-proxy-agent "^4.0.1" + https-proxy-agent "^5.0.0" + isomorphic-fetch "^3.0.0" + js-yaml "^4.0.0" + json-stable-stringify "^1.0.1" + jsonwebtoken "^8.5.1" + lodash "^4.17.20" + replaceall "^0.1.6" + scuid "^1.1.0" + tslib "~2.3.0" + yaml-ast-parser "^0.0.43" + +"@graphql-tools/relay-operation-optimizer@^6.3.7": + version "6.4.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.0.tgz#3ef4d7ec0620239f3a4e9b9acfa3c263636c5ad2" + integrity sha512-auNvHC8gHu9BHBPnLA5c8Iv5VAXQG866KZJz7ljhKpXPdlPevK4zjHlVJwqnF8H6clJ9NgZpizN4kNNCe/3R9g== + dependencies: + "@graphql-tools/utils" "^8.2.0" + relay-compiler "11.0.2" + tslib "~2.3.0" + +"@graphql-tools/schema@8.2.0", "@graphql-tools/schema@^8.0.2", "@graphql-tools/schema@^8.1.2", "@graphql-tools/schema@^8.2.0": + version "8.2.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.2.0.tgz#ae75cbb2df6cee9ed6d89fce56be467ab23758dc" + integrity sha512-ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg== + dependencies: + "@graphql-tools/merge" "^8.1.0" + "@graphql-tools/utils" "^8.2.0" + tslib "~2.3.0" + value-or-promise "1.0.10" + +"@graphql-tools/url-loader@^7.0.11", "@graphql-tools/url-loader@^7.0.3", "@graphql-tools/url-loader@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.1.0.tgz#371fb4bc975364033cab892a344cc9f979d96ac4" + integrity sha512-h0NAcjPBei/Zf69OeFZWUbPXKA2aK5YXyfAZkAc+LP8pnBDBZW+mPr2lOZZJPJ8LMZPPjf5hwVHqXGImduHgmA== + dependencies: + "@ardatan/fetch-event-source" "2.0.2" + "@graphql-tools/delegate" "^8.2.0" + "@graphql-tools/utils" "^8.2.0" + "@graphql-tools/wrap" "^8.1.0" + "@n1ru4l/graphql-live-query" "0.7.1" + "@types/websocket" "1.0.4" + "@types/ws" "^7.4.7" + abort-controller "3.0.0" + cross-fetch "3.1.4" + extract-files "11.0.0" + form-data "4.0.0" + graphql-ws "^5.4.1" + is-promise "4.0.0" + isomorphic-ws "4.0.1" + lodash "4.17.21" + meros "1.1.4" + subscriptions-transport-ws "^0.10.0" + sync-fetch "0.3.0" + tslib "~2.3.0" + valid-url "1.0.9" + value-or-promise "1.0.10" + ws "8.2.1" + +"@graphql-tools/utils@8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.0.2.tgz#795a8383cdfdc89855707d62491c576f439f3c51" + integrity sha512-gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ== + dependencies: + tslib "~2.3.0" + +"@graphql-tools/utils@8.2.1": + version "8.2.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.2.1.tgz#381e79fa04041f91f132d252216adcb3970e3c1e" + integrity sha512-xjyetFpDy2/MY8P4+NiE7i1czCrAI36Twjm+jcoBfPctMnJegZkZnLfepmjwYQ92Sv9hnhr+x52OUQAddj29CQ== + dependencies: + tslib "~2.3.0" + +"@graphql-tools/utils@^8.0.1", "@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.2.0", "@graphql-tools/utils@^8.2.2": + version "8.2.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.2.2.tgz#d29420bf1003d2876cb30f373145be432c7f7c4b" + integrity sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g== + dependencies: + tslib "~2.3.0" + +"@graphql-tools/wrap@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.1.0.tgz#2e618c78de910725130e5231666ca69a75f6cf99" + integrity sha512-WLT/bFewOIY8KJMzgOJSM/02fXJSFktFvI+JRu39wDH+hwFy1y7pFC0Bs1TP8B/hAEJ+t9+7JspX0LQWAUFjDg== + dependencies: + "@graphql-tools/delegate" "^8.2.0" + "@graphql-tools/schema" "^8.2.0" + "@graphql-tools/utils" "^8.2.0" + tslib "~2.3.0" + value-or-promise "1.0.10" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + +"@iarna/toml@^2.2.5": + version "2.2.5" + resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c" + integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg== + +"@n1ru4l/graphql-live-query@0.7.1": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@n1ru4l/graphql-live-query/-/graphql-live-query-0.7.1.tgz#c020d017c3ed6bcfdde49a7106ba035e4d0774f5" + integrity sha512-5kJPe2FkPNsCGu9tocKIzUSNO986qAqdnbk8hIFqWlpVPBAmEAOYb1mr6PA18FYAlu7ojWm9Hm13k29aj2GGlQ== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@oclif/color@^0.1.0", "@oclif/color@^0.x": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@oclif/color/-/color-0.1.2.tgz#28b07e2850d9ce814d0b587ce3403b7ad8f7d987" + integrity sha512-M9o+DOrb8l603qvgz1FogJBUGLqcMFL1aFg2ZEL0FbXJofiNTLOWIeB4faeZTLwE6dt0xH9GpCVpzksMMzGbmA== + dependencies: + ansi-styles "^3.2.1" + chalk "^3.0.0" + strip-ansi "^5.2.0" + supports-color "^5.4.0" + tslib "^1" + +"@oclif/command@^1.5.10", "@oclif/command@^1.5.13", "@oclif/command@^1.5.20", "@oclif/command@^1.5.4", "@oclif/command@^1.6.0", "@oclif/command@^1.7.0", "@oclif/command@^1.8.0": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.0.tgz#c1a499b10d26e9d1a611190a81005589accbb339" + integrity sha512-5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw== + dependencies: + "@oclif/config" "^1.15.1" + "@oclif/errors" "^1.3.3" + "@oclif/parser" "^3.8.3" + "@oclif/plugin-help" "^3" + debug "^4.1.1" + semver "^7.3.2" + +"@oclif/config@^1.12.8", "@oclif/config@^1.13.0", "@oclif/config@^1.15.1", "@oclif/config@^1.16.0", "@oclif/config@^1.17.0", "@oclif/config@^1.8.7": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.0.tgz#ba8639118633102a7e481760c50054623d09fcab" + integrity sha512-Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA== + dependencies: + "@oclif/errors" "^1.3.3" + "@oclif/parser" "^3.8.0" + debug "^4.1.1" + globby "^11.0.1" + is-wsl "^2.1.1" + tslib "^2.0.0" + +"@oclif/core@^0.5.34": + version "0.5.34" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-0.5.34.tgz#d8cadcd609929560e6cc836c45d94bc99379e1f6" + integrity sha512-laLrm2tvIOr6uboDMVdAbBJMeAAgV0otkoF8imdyhYCsNcmXFyV3x0kwNGbEUYG945CQ0V00u7MS7tmlwdZlGw== + dependencies: + "@oclif/linewrap" "^1.0.0" + chalk "^4.1.0" + clean-stack "^3.0.0" + cli-ux "^5.1.0" + debug "^4.1.1" + fs-extra "^9.0.1" + get-package-type "^0.1.0" + globby "^11.0.1" + indent-string "^4.0.0" + is-wsl "^2.1.1" + lodash.template "^4.4.0" + semver "^7.3.2" + string-width "^4.2.0" + strip-ansi "^6.0.0" + tslib "^2.0.0" + widest-line "^3.1.0" + wrap-ansi "^7.0.0" + +"@oclif/dev-cli@^1.26.0": + version "1.26.0" + resolved "https://registry.yarnpkg.com/@oclif/dev-cli/-/dev-cli-1.26.0.tgz#e3ec294b362c010ffc8948003d3770955c7951fd" + integrity sha512-272udZP+bG4qahoAcpWcMTJKiA+V42kRMqQM7n4tgW35brYb2UP5kK+p08PpF8sgSfRTV8MoJVJG9ax5kY82PA== + dependencies: + "@oclif/command" "^1.8.0" + "@oclif/config" "^1.17.0" + "@oclif/errors" "^1.3.3" + "@oclif/plugin-help" "^3.2.0" + cli-ux "^5.2.1" + debug "^4.1.1" + find-yarn-workspace-root "^2.0.0" + fs-extra "^8.1" + github-slugger "^1.2.1" + lodash "^4.17.11" + normalize-package-data "^3.0.0" + qqjs "^0.3.10" + tslib "^2.0.3" + +"@oclif/errors@^1.2.1", "@oclif/errors@^1.2.2", "@oclif/errors@^1.3.3", "@oclif/errors@^1.3.4": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c" + integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ== + dependencies: + clean-stack "^3.0.0" + fs-extra "^8.1" + indent-string "^4.0.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +"@oclif/linewrap@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91" + integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw== + +"@oclif/parser@^3.8.0", "@oclif/parser@^3.8.3": + version "3.8.5" + resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.5.tgz#c5161766a1efca7343e1f25d769efbefe09f639b" + integrity sha512-yojzeEfmSxjjkAvMRj0KzspXlMjCfBzNRPkWw8ZwOSoNWoJn+OCS/m/S+yfV6BvAM4u2lTzX9Y5rCbrFIgkJLg== + dependencies: + "@oclif/errors" "^1.2.2" + "@oclif/linewrap" "^1.0.0" + chalk "^2.4.2" + tslib "^1.9.3" + +"@oclif/plugin-autocomplete@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.3.0.tgz#eec788596a88a4ca5170a9103b6c2835119a8fbd" + integrity sha512-gCuIUCswvoU1BxDDvHSUGxW8rFagiacle8jHqE49+WnuniXD/N8NmJvnzmlNyc8qLE192CnKK+qYyAF+vaFQBg== + dependencies: + "@oclif/command" "^1.5.13" + "@oclif/config" "^1.13.0" + chalk "^4.1.0" + cli-ux "^5.2.1" + debug "^4.0.0" + fs-extra "^9.0.1" + moment "^2.22.1" + +"@oclif/plugin-commands@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-1.3.0.tgz#ba95e2c7f7c50345b806aa3728fe7868452d08a0" + integrity sha512-Qx9gJ7/aPBgo+Q/DHmGcWyxn2/0bjqmCwt/nO0lWuTZQIH3ZTqclTm68TMZLS4QnQyDGeeYK0GqZ5qJlrXD+SQ== + dependencies: + "@oclif/command" "^1.5.4" + "@oclif/config" "^1.8.7" + cli-ux "^5.4.5" + lodash "^4.17.11" + +"@oclif/plugin-help@^3", "@oclif/plugin-help@^3.2.0": + version "3.2.3" + resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.3.tgz#cd24010e7eb326782843d3aa6d6b5a4affebb2c3" + integrity sha512-l2Pd0lbOMq4u/7xsl9hqISFqyR9gWEz/8+05xmrXFr67jXyS6EUCQB+mFBa0wepltrmJu0sAFg9AvA2mLaMMqQ== + dependencies: + "@oclif/command" "^1.5.20" + "@oclif/config" "^1.15.1" + "@oclif/errors" "^1.2.2" + chalk "^4.1.0" + indent-string "^4.0.0" + lodash.template "^4.4.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" + widest-line "^3.1.0" + wrap-ansi "^4.0.0" + +"@oclif/plugin-not-found@^1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-1.2.4.tgz#160108c82f0aa10f4fb52cee4e0135af34b7220b" + integrity sha512-G440PCuMi/OT8b71aWkR+kCWikngGtyRjOR24sPMDbpUFV4+B3r51fz1fcqeUiiEOYqUpr0Uy/sneUe1O/NfBg== + dependencies: + "@oclif/color" "^0.x" + "@oclif/command" "^1.6.0" + cli-ux "^4.9.0" + fast-levenshtein "^2.0.6" + lodash "^4.17.13" + +"@oclif/plugin-update@^1.3.10": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-1.5.0.tgz#a9e0092a9b7ae01e54708938e2a424903f5079ef" + integrity sha512-GsWK1CMeBBO8YknThoOZulj3xE+ZgZAXW1ouNJALXcs3mbROzszLDGjXV3RM6ffbJpnWLiMIqSFNOE8d+vGcgQ== + dependencies: + "@oclif/color" "^0.1.0" + "@oclif/command" "^1.7.0" + "@oclif/config" "^1.16.0" + "@oclif/errors" "^1.3.4" + "@types/semver" "^7.3.4" + cli-ux "^5.5.1" + cross-spawn "^7.0.3" + debug "^4.3.1" + filesize "^6.1.0" + fs-extra "^9.0.1" + http-call "^5.3.0" + lodash "^4.17.21" + log-chopper "^1.0.2" + semver "^7.3.5" + tar-fs "^2.1.1" + +"@oclif/plugin-warn-if-update-available@^1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-1.7.0.tgz#5a72abe39ce0b831eb4ae81cb64eb4b9f3ea424a" + integrity sha512-Nwyz3BJ8RhsfQ+OmFSsJSPIfn5YJqMrCzPh72Zgo2jqIjKIBWD8N9vTTe4kZlpeUUn77SyXFfwlBQbNCL5OEuQ== + dependencies: + "@oclif/command" "^1.5.10" + "@oclif/config" "^1.12.8" + "@oclif/errors" "^1.2.2" + chalk "^2.4.1" + debug "^4.1.0" + fs-extra "^7.0.0" + http-call "^5.2.2" + lodash.template "^4.4.0" + semver "^5.6.0" + +"@oclif/screen@^1.0.3": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.4.tgz#b740f68609dfae8aa71c3a6cab15d816407ba493" + integrity sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw== + +"@oclif/test@^1": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@oclif/test/-/test-1.2.8.tgz#a5b2ebd747832217d9af65ac30b58780c4c17c5e" + integrity sha512-HCh0qPge1JCqTEw4s2ScnicEZd4Ro4/0VvdjpsfCiX6fuDV53fRZ2uqLTgxKGHrVoqOZnVrRZHyhFyEsFGs+zQ== + dependencies: + fancy-test "^1.4.3" + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= + +"@samverschueren/stream-to-observable@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301" + integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== + dependencies: + any-observable "^0.3.0" + +"@sindresorhus/is@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + +"@sinonjs/commons@^1.7.0": + version "1.8.3" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^7.1.0": + version "7.1.2" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz#2524eae70c4910edccf99b2f4e6efc5894aff7b5" + integrity sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg== + dependencies: + "@sinonjs/commons" "^1.7.0" + +"@szmarczak/http-timer@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + dependencies: + defer-to-connect "^1.0.1" + +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + +"@types/chai@*": + version "4.2.21" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.21.tgz#9f35a5643129df132cf3b5c1ec64046ea1af0650" + integrity sha512-yd+9qKmJxm496BOV9CMNaey8TWsikaZOwMRwPHQIjcOJM9oV+fi9ZMNw3JsVnbEEbo2gRTDnGEBv8pjyn67hNg== + +"@types/connect@^3.4.33": + version "3.4.35" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + +"@types/express-serve-static-core@^4.17.9": + version "4.17.24" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz#ea41f93bf7e0d59cd5a76665068ed6aab6815c07" + integrity sha512-3UJuW+Qxhzwjq3xhwXm2onQcFHn76frIYVbTu+kn24LFxI+dEhdfISDFovPB8VpEgW8oQCTpRuCe+0zJxB7NEA== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + +"@types/glob@^7.1.1": + version "7.1.4" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz#ea59e21d2ee5c517914cb4bc8e4153b99e566672" + integrity sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA== + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/js-yaml@^4.0.0": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.3.tgz#9f33cd6fbf0d5ec575dc8c8fc69c7fec1b4eb200" + integrity sha512-5t9BhoORasuF5uCPr+d5/hdB++zRFUTMIZOzbNkr+jZh3yQht4HYbRDyj9fY8n2TZT30iW9huzav73x4NikqWg== + +"@types/json-schema@^7.0.3": + version "7.0.9" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" + integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== + +"@types/json-stable-stringify@^1.0.32": + version "1.0.33" + resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.33.tgz#099b0712d824d15e2660c20e1c16e6a8381f308c" + integrity sha512-qEWiQff6q2tA5gcJGWwzplQcXdJtm+0oy6IHGHzlOf3eFAkGE/FIPXZK9ofWgNSHVp8AFFI33PJJshS0ei3Gvw== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= + +"@types/jsonwebtoken@^8.5.0": + version "8.5.5" + resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.5.tgz#da5f2f4baee88f052ef3e4db4c1a0afb46cff22c" + integrity sha512-OGqtHQ7N5/Ap/TUwO6IgHDuLiAoTmHhGpNvgkCm/F4N6pKzx/RBSfr2OXZSwC6vkfnsEdb6+7DNZVtiXiwdwFw== + dependencies: + "@types/node" "*" + +"@types/lodash@*", "@types/lodash@^4.14.159": + version "4.14.172" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.172.tgz#aad774c28e7bfd7a67de25408e03ee5a8c3d028a" + integrity sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw== + +"@types/minimatch@*": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== + +"@types/node@*": + version "16.7.10" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.10.tgz#7aa732cc47341c12a16b7d562f519c2383b6d4fc" + integrity sha512-S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA== + +"@types/node@^12.12.54": + version "12.20.23" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.23.tgz#d0d5885bb885ee9b1ed114a04ea586540a1b2e2a" + integrity sha512-FW0q7NI8UnjbKrJK8NGr6QXY69ATw9IFe6ItIo5yozPwA9DU/xkhiPddctUVyrmFXvyFYerYgQak/qu200UBDw== + +"@types/node@^14": + version "14.17.14" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.14.tgz#6fda9785b41570eb628bac27be4b602769a3f938" + integrity sha512-rsAj2u8Xkqfc332iXV12SqIsjVi07H479bOP4q94NAcjzmAvapumEhuVIt53koEf7JFrpjgNKjBga5Pnn/GL8A== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/qs@*": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/range-parser@*": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== + +"@types/semver@^7.3.4": + version "7.3.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.8.tgz#508a27995498d7586dcecd77c25e289bfaf90c59" + integrity sha512-D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now== + +"@types/sinon@*": + version "10.0.2" + resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-10.0.2.tgz#f360d2f189c0fd433d14aeb97b9d705d7e4cc0e4" + integrity sha512-BHn8Bpkapj8Wdfxvh2jWIUoaYB/9/XhsL0oOvBfRagJtKlSl9NWPcFOz2lRukI9szwGxFtYZCTejJSqsGDbdmw== + dependencies: + "@sinonjs/fake-timers" "^7.1.0" + +"@types/websocket@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.4.tgz#1dc497280d8049a5450854dd698ee7e6ea9e60b8" + integrity sha512-qn1LkcFEKK8RPp459jkjzsfpbsx36BBt3oC3pITYtkoBw/aVX+EZFa5j3ThCRTNpLFvIMr5dSTD4RaMdilIOpA== + dependencies: + "@types/node" "*" + +"@types/ws@^7.4.4", "@types/ws@^7.4.7": + version "7.4.7" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== + dependencies: + "@types/node" "*" + +"@typescript-eslint/eslint-plugin@^2.6.1": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" + integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== + dependencies: + "@typescript-eslint/experimental-utils" "2.34.0" + functional-red-black-tree "^1.0.1" + regexpp "^3.0.0" + tsutils "^3.17.1" + +"@typescript-eslint/experimental-utils@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" + integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-scope "^5.0.0" + eslint-utils "^2.0.0" + +"@typescript-eslint/parser@^2.6.1": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" + integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.34.0" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/typescript-estree@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" + integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== + dependencies: + debug "^4.1.1" + eslint-visitor-keys "^1.1.0" + glob "^7.1.6" + is-glob "^4.0.1" + lodash "^4.17.15" + semver "^7.3.2" + tsutils "^3.17.1" + +JSONStream@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" + integrity sha1-wQI3G27Dp887hHygDCC7D85Mbeo= + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abort-controller@3.0.0, abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.1: + version "8.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" + integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@^3.2.1: + version "3.2.4" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" + integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== + +ansi-colors@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= + +any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +apisauce@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/apisauce/-/apisauce-2.1.1.tgz#0b8bc7f2544e6ef710a6fa1d6f49583856940dd2" + integrity sha512-P4SsLvmsH8BLLruBn/nsO+65j+ChZlGQ2zC5avCIjbWstYS4PgjxeVWtbeVwFGEWX7dEkLp85OvdapGXy1zS8g== + dependencies: + axios "^0.21.1" + ramda "^0.25.0" + +app-module-path@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" + integrity sha1-ZBqlXft9am8KgUHEucCqULbCTdU= + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-includes@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" + integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + get-intrinsic "^1.1.1" + is-string "^1.0.5" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.flat@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" + integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.1" + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +asmcrypto.js@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/asmcrypto.js/-/asmcrypto.js-2.3.2.tgz#b9f84bd0a1fb82f21f8c29cc284a707ad17bba2e" + integrity sha512-3FgFARf7RupsZETQ1nHnhLUUvpcttcCq1iZCaVAbJZbCZ5VNRrNyvpDyHTOb0KC3llFcsyOT/a99NZcCbeiEsA== + +asn1.js@^5.0.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +"assemblyscript@git+https://github.com/AssemblyScript/assemblyscript.git#v0.6": + version "0.6.0" + resolved "git+https://github.com/AssemblyScript/assemblyscript.git#3ed76a97f05335504166fce1653da75f4face28f" + dependencies: + "@protobufjs/utf8" "^1.1.0" + binaryen "77.0.0-nightly.20190407" + glob "^7.1.3" + long "^4.0.0" + opencollective-postinstall "^2.0.0" + source-map-support "^0.5.11" + +"assemblyscript@https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3": + version "0.6.0" + resolved "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" + dependencies: + "@protobufjs/utf8" "^1.1.0" + binaryen "77.0.0-nightly.20190407" + glob "^7.1.3" + long "^4.0.0" + opencollective-postinstall "^2.0.0" + source-map-support "^0.5.11" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +async@^2.6.1, async@^2.6.2, async@^2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +auto-bind@~4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb" + integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + +axios@^0.21.1: + version "0.21.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" + integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== + dependencies: + follow-redirects "^1.10.0" + +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + +babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: + version "7.0.0-beta.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" + integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== + +babel-preset-fbjs@^3.3.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c" + integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow== + dependencies: + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-syntax-class-properties" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoped-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-member-expression-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-super" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-property-literals" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" + +backo2@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2, base-x@^3.0.8: + version "3.0.8" + resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.8.tgz#1e1106c2537f0162e8b52474a557ebb09000018d" + integrity sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA== + dependencies: + safe-buffer "^5.0.1" + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +bignumber.js@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.1.tgz#8d7ba124c882bfd8e43260c67475518d0689e4e5" + integrity sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +binaryen@77.0.0-nightly.20190407: + version "77.0.0-nightly.20190407" + resolved "https://registry.yarnpkg.com/binaryen/-/binaryen-77.0.0-nightly.20190407.tgz#fbe4f8ba0d6bd0809a84eb519d2d5b5ddff3a7d1" + integrity sha512-1mxYNvQ0xywMe582K7V6Vo2zzhZZxMTeGHH8aE/+/AND8f64D8Q1GThVY3RVRwGY/4p+p95ccw9Xbw2ovFXRIg== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bip66@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/bip66/-/bip66-1.1.5.tgz#01fa8748785ca70955d5011217d1b3139969ca22" + integrity sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI= + dependencies: + safe-buffer "^5.0.1" + +bl@^1.0.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" + integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== + dependencies: + readable-stream "^2.3.5" + safe-buffer "^5.1.1" + +bl@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/bl/-/bl-3.0.1.tgz#1cbb439299609e419b5a74d7fce2f8b37d8e5c6f" + integrity sha512-jrCW5ZhfQ/Vt07WX1Ngs+yn9BDqPL/gw28S7s9H6QK/gupnizNzJAss5akW20ISgOrbLTlXOOCTJeNUQqruAWQ== + dependencies: + readable-stream "^3.0.1" + +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +blakejs@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/blakejs/-/blakejs-1.1.1.tgz#bf313053978b2cd4c444a48795710be05c785702" + integrity sha512-bLG6PHOCZJKNshTjGRBvET0vTciwQE6zFKOKKXPDJfwFBd4Ac0yBfPZqcGvGJap50l7ktvlpFqc2jGVaUgbJgg== + +bn.js@^4.0.0, bn.js@^4.11.8, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +borc@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/borc/-/borc-2.1.2.tgz#6ce75e7da5ce711b963755117dd1b187f6f8cf19" + integrity sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w== + dependencies: + bignumber.js "^9.0.0" + buffer "^5.5.0" + commander "^2.15.0" + ieee754 "^1.1.13" + iso-url "~0.4.7" + json-text-sequence "~0.1.0" + readable-stream "^3.6.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.1, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browserify-aes@^1.0.6, browserify-aes@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserslist@^4.16.6: + version "4.16.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.8.tgz#cb868b0b554f137ba6e33de0ecff2eda403c4fb0" + integrity sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ== + dependencies: + caniuse-lite "^1.0.30001251" + colorette "^1.3.0" + electron-to-chromium "^1.3.811" + escalade "^3.1.1" + node-releases "^1.1.75" + +bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha1-vhYedsNU9veIrkBx9j806MTwpCo= + dependencies: + base-x "^3.0.2" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-alloc-unsafe@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== + +buffer-alloc@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== + dependencies: + buffer-alloc-unsafe "^1.1.0" + buffer-fill "^1.0.0" + +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= + +buffer-fill@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@^5.2.1, buffer@^5.4.2, buffer@^5.4.3, buffer@^5.5.0, buffer@^5.6.0, buffer@^5.7.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +byline@5.x: + version "5.0.0" + resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" + integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE= + +cacheable-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^3.0.0" + lowercase-keys "^2.0.0" + normalize-url "^4.1.0" + responselike "^1.0.2" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-lite@^1.0.30001251: + version "1.0.30001252" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz#cb16e4e3dafe948fc4a9bb3307aea054b912019a" + integrity sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw== + +capital-case@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" + integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" + +cardinal@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" + integrity sha1-fMEFXYItISlU0HsIXeolHMe8VQU= + dependencies: + ansicolors "~0.3.2" + redeyed "~2.1.0" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +change-case-all@1.0.14: + version "1.0.14" + resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.14.tgz#bac04da08ad143278d0ac3dda7eccd39280bfba1" + integrity sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA== + dependencies: + change-case "^4.1.2" + is-lower-case "^2.0.2" + is-upper-case "^2.0.2" + lower-case "^2.0.2" + lower-case-first "^2.0.2" + sponge-case "^1.0.1" + swap-case "^2.0.2" + title-case "^3.0.3" + upper-case "^2.0.2" + upper-case-first "^2.0.2" + +change-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" + integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== + dependencies: + camel-case "^4.1.2" + capital-case "^1.0.4" + constant-case "^3.0.4" + dot-case "^3.0.4" + header-case "^2.0.4" + no-case "^3.0.4" + param-case "^3.0.4" + pascal-case "^3.1.2" + path-case "^3.0.4" + sentence-case "^3.0.4" + snake-case "^3.0.4" + tslib "^2.0.3" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +chokidar@^3.0.2, chokidar@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.0.1, chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +cids@~0.7.0, cids@~0.7.1: + version "0.7.5" + resolved "https://registry.yarnpkg.com/cids/-/cids-0.7.5.tgz#60a08138a99bfb69b6be4ceb63bfef7a396b28b2" + integrity sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA== + dependencies: + buffer "^5.5.0" + class-is "^1.1.0" + multibase "~0.6.0" + multicodec "^1.0.0" + multihashes "~0.4.15" + +cids@~0.8.0: + version "0.8.3" + resolved "https://registry.yarnpkg.com/cids/-/cids-0.8.3.tgz#aaf48ac8ed857c3d37dad94d8db1d8c9407b92db" + integrity sha512-yoXTbV3llpm+EBGWKeL9xKtksPE/s6DPoDSY4fn8I8TEW1zehWXPSB0pwAXVDlLaOlrw+sNynj995uD9abmPhA== + dependencies: + buffer "^5.6.0" + class-is "^1.1.0" + multibase "^1.0.0" + multicodec "^1.0.1" + multihashes "^1.0.1" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-is@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/class-is/-/class-is-1.1.0.tgz#9d3c0fba0440d211d843cec3dedfa48055005825" + integrity sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw== + +clean-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" + integrity sha1-jffHquUf02h06PjQW5GAvBGj/tc= + dependencies: + escape-string-regexp "^1.0.5" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +clean-stack@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8" + integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg== + dependencies: + escape-string-regexp "4.0.0" + +cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-progress@^3.4.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.9.0.tgz#25db83447deb812e62d05bac1af9aec5387ef3d4" + integrity sha512-g7rLWfhAo/7pF+a/STFH/xPyosaL1zgADhI0OM83hl3c7S43iGvJWEAV2QuDOnQ8i6EMBj/u4+NTd0d5L+4JfA== + dependencies: + colors "^1.1.2" + string-width "^4.2.0" + +cli-spinners@^2.2.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" + integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== + +cli-table3@~0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" + integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== + dependencies: + object-assign "^4.1.0" + string-width "^2.1.1" + optionalDependencies: + colors "^1.1.2" + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-ux@^4.9.0: + version "4.9.3" + resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-4.9.3.tgz#4c3e070c1ea23eef010bbdb041192e0661be84ce" + integrity sha512-/1owvF0SZ5Gn54cgrikJ0QskgTzeg30HGjkmjFoaHDJzAqFpuX1DBpFR8aLvsE1J5s9MgeYRENQK4BFwOag5VA== + dependencies: + "@oclif/errors" "^1.2.2" + "@oclif/linewrap" "^1.0.0" + "@oclif/screen" "^1.0.3" + ansi-escapes "^3.1.0" + ansi-styles "^3.2.1" + cardinal "^2.1.1" + chalk "^2.4.1" + clean-stack "^2.0.0" + extract-stack "^1.0.0" + fs-extra "^7.0.0" + hyperlinker "^1.0.0" + indent-string "^3.2.0" + is-wsl "^1.1.0" + lodash "^4.17.11" + password-prompt "^1.0.7" + semver "^5.6.0" + strip-ansi "^5.0.0" + supports-color "^5.5.0" + supports-hyperlinks "^1.0.1" + treeify "^1.1.0" + tslib "^1.9.3" + +cli-ux@^5.1.0, cli-ux@^5.2.1, cli-ux@^5.4.5, cli-ux@^5.5.1: + version "5.6.3" + resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-5.6.3.tgz#eecdb2e0261171f2b28f2be6b18c490291c3a287" + integrity sha512-/oDU4v8BiDjX2OKcSunGH0iGDiEtj2rZaGyqNuv9IT4CgcSMyVWAMfn0+rEHaOc4n9ka78B0wo1+N1QX89f7mw== + dependencies: + "@oclif/command" "^1.6.0" + "@oclif/errors" "^1.2.1" + "@oclif/linewrap" "^1.0.0" + "@oclif/screen" "^1.0.3" + ansi-escapes "^4.3.0" + ansi-styles "^4.2.0" + cardinal "^2.1.1" + chalk "^4.1.0" + clean-stack "^3.0.0" + cli-progress "^3.4.0" + extract-stack "^2.0.0" + fs-extra "^8.1" + hyperlinker "^1.0.0" + indent-string "^4.0.0" + is-wsl "^2.2.0" + js-yaml "^3.13.1" + lodash "^4.17.11" + natural-orderby "^2.0.1" + object-treeify "^1.1.4" + password-prompt "^1.1.2" + semver "^7.3.2" + string-width "^4.2.0" + strip-ansi "^6.0.0" + supports-color "^8.1.0" + supports-hyperlinks "^2.1.0" + tslib "^2.0.0" + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + dependencies: + mimic-response "^1.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.3.0.tgz#ff45d2f0edb244069d3b772adeb04fed38d0a0af" + integrity sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w== + +colors@^1.1.2, colors@^1.3.3, colors@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== + +combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.15.0, commander@^2.20.3: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +common-tags@1.8.0, common-tags@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" + integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +"concat-stream@github:hugomrdias/concat-stream#feat/smaller": + version "2.0.0" + resolved "https://codeload.github.com/hugomrdias/concat-stream/tar.gz/057bc7b5d6d8df26c8cf00a3f151b6721a0a8034" + dependencies: + inherits "^2.0.3" + readable-stream "^3.0.2" + +concat-stream@~1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +confusing-browser-globals@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59" + integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA== + +constant-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" + integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case "^2.0.2" + +content-type@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== + dependencies: + safe-buffer "~5.1.1" + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig-toml-loader@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz#0681383651cceff918177debe9084c0d3769509b" + integrity sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA== + dependencies: + "@iarna/toml" "^2.2.5" + +cosmiconfig@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +cosmiconfig@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" + integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cosmiconfig@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" + integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.4: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-fetch@3.1.4, cross-fetch@^3.0.4, cross-fetch@^3.0.6, cross-fetch@^3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" + integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== + dependencies: + node-fetch "2.6.1" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +dataloader@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.0.0.tgz#41eaf123db115987e21ca93c005cd7753c55fe6f" + integrity sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ== + +date-fns@^1.27.2: + version "1.30.1" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" + integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== + +debounce@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + +debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.6, debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + dependencies: + mimic-response "^1.0.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-is@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + +defer-to-connect@^1.0.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" + integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== + +define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delimit-stream@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/delimit-stream/-/delimit-stream-0.1.0.tgz#9b8319477c0e5f8aeb3ce357ae305fc25ea1cd2b" + integrity sha1-m4MZR3wOX4rrPONXrjBfwl6hzSs= + +dependency-graph@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27" + integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== + +detect-indent@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +docker-compose@^0.23.2: + version "0.23.13" + resolved "https://registry.yarnpkg.com/docker-compose/-/docker-compose-0.23.13.tgz#77d37bd05b6a966345f631e6d05e961c79514f06" + integrity sha512-/9fYC4g3AO+qsqxIZhmbVnFvJJPcYEV2yJbAPPXH+6AytU3urIY8lUAXOlvY8sl4u25pdKu1JrOfAmWC7lJDJg== + dependencies: + yaml "^1.10.2" + +docker-modem@^1.0.8: + version "1.0.9" + resolved "https://registry.yarnpkg.com/docker-modem/-/docker-modem-1.0.9.tgz#a1f13e50e6afb6cf3431b2d5e7aac589db6aaba8" + integrity sha512-lVjqCSCIAUDZPAZIeyM125HXfNvOmYYInciphNrLrylUtKyW66meAjSPXWchKVzoIYZx69TPnAepVSSkeawoIw== + dependencies: + JSONStream "1.3.2" + debug "^3.2.6" + readable-stream "~1.0.26-4" + split-ca "^1.0.0" + +dockerode@^2.5.8: + version "2.5.8" + resolved "https://registry.yarnpkg.com/dockerode/-/dockerode-2.5.8.tgz#1b661e36e1e4f860e25f56e0deabe9f87f1d0acc" + integrity sha512-+7iOUYBeDTScmOmQqpUYQaE7F4vvIt6+gIZNHWhqAQEI887tiPFB9OvXI/HzQYqfUNvukMK+9myLW63oTJPZpw== + dependencies: + concat-stream "~1.6.2" + docker-modem "^1.0.8" + tar-fs "~1.16.3" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +drbg.js@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" + integrity sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs= + dependencies: + browserify-aes "^1.0.6" + create-hash "^1.1.2" + create-hmac "^1.1.4" + +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ecdsa-sig-formatter@1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== + dependencies: + safe-buffer "^5.0.1" + +ejs@^2.6.1: + version "2.7.4" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" + integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== + +electron-to-chromium@^1.3.811: + version "1.3.830" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.830.tgz#40e3144204f8ca11b2cebec83cf14c20d3499236" + integrity sha512-gBN7wNAxV5vl1430dG+XRcQhD4pIeYeak6p6rjdCtlz5wWNwDad8jwvphe5oi1chL5MV6RNRikfffBBiFuj+rQ== + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= + +elliptic@^6.5.2: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enquirer@2.3.4: + version "2.3.4" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.4.tgz#c608f2e1134c7f68c1c9ee056de13f9b31076de9" + integrity sha512-pkYrrDZumL2VS6VBGDhqbajCM2xpkUNLuKfGPjfKaSIBKYopQbqEFyrOkRMIb2HDR/rO1kGhEt/5twBwtzKBXw== + dependencies: + ansi-colors "^3.2.1" + +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +err-code@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" + integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= + +err-code@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: + version "1.18.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz#9b10de7d4c206a3581fd5b2124233e04db49ae19" + integrity sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + get-intrinsic "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.2" + internal-slot "^1.0.3" + is-callable "^1.2.3" + is-negative-zero "^2.0.1" + is-regex "^1.1.3" + is-string "^1.0.6" + object-inspect "^1.11.0" + object-keys "^1.1.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.4" + string.prototype.trimstart "^1.0.4" + unbox-primitive "^1.0.1" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= + dependencies: + es6-promise "^4.0.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eslint-ast-utils@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586" + integrity sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA== + dependencies: + lodash.get "^4.4.2" + lodash.zip "^4.2.0" + +eslint-config-airbnb-base@^14.2.0: + version "14.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" + integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA== + dependencies: + confusing-browser-globals "^1.0.10" + object.assign "^4.1.2" + object.entries "^1.1.2" + +eslint-config-oclif-typescript@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-0.2.0.tgz#8e2a1c788ce47af73d5bf8a3a0b5b2b6a80f05d6" + integrity sha512-BdP5FgjxwqV9LmVnfd4TaxhwdQipY7GJVVuP2AKm+EkKoupSCflSiRqnd2cj8qvVq/IXYPK2eHpRDk5ts8hP9g== + dependencies: + "@typescript-eslint/eslint-plugin" "^2.6.1" + "@typescript-eslint/parser" "^2.6.1" + eslint-config-xo-space "^0.20.0" + eslint-plugin-mocha "^5.2.0" + eslint-plugin-node "^7.0.1" + eslint-plugin-unicorn "^6.0.1" + +eslint-config-oclif@^3.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-oclif/-/eslint-config-oclif-3.1.0.tgz#cbc207ced09e31676dcee2f724fc509cd20eb0bd" + integrity sha512-Tqgy43cNXsSdhTLWW4RuDYGFhV240sC4ISSv/ZiUEg/zFxExSEUpRE6J+AGnkKY9dYwIW4C9b2YSUVv8z/miMA== + dependencies: + eslint-config-xo-space "^0.20.0" + eslint-plugin-mocha "^5.2.0" + eslint-plugin-node "^7.0.1" + eslint-plugin-unicorn "^6.0.1" + +eslint-config-prettier@^6.11.0: + version "6.15.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9" + integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw== + dependencies: + get-stdin "^6.0.0" + +eslint-config-xo-space@^0.20.0: + version "0.20.0" + resolved "https://registry.yarnpkg.com/eslint-config-xo-space/-/eslint-config-xo-space-0.20.0.tgz#75e1fb86d1b052fc1cc3036ca2fa441fa92b85e4" + integrity sha512-bOsoZA8M6v1HviDUIGVq1fLVnSu3mMZzn85m2tqKb73tSzu4GKD4Jd2Py4ZKjCgvCbRRByEB5HPC3fTMnnJ1uw== + dependencies: + eslint-config-xo "^0.24.0" + +eslint-config-xo@^0.24.0: + version "0.24.2" + resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.24.2.tgz#f61b8ce692e9f9519bdb6edc4ed7ebcd5be48f48" + integrity sha512-ivQ7qISScW6gfBp+p31nQntz1rg34UCybd3uvlngcxt5Utsf4PMMi9QoAluLFcPUM5Tvqk4JGraR9qu3msKPKQ== + +eslint-import-resolver-node@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" + integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== + dependencies: + debug "^3.2.7" + resolve "^1.20.0" + +eslint-module-utils@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" + integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q== + dependencies: + debug "^3.2.7" + pkg-dir "^2.0.0" + +eslint-plugin-es@^1.3.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz#12acae0f4953e76ba444bfd1b2271081ac620998" + integrity sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA== + dependencies: + eslint-utils "^1.4.2" + regexpp "^2.0.1" + +eslint-plugin-import@^2.22.0: + version "2.24.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz#2c8cd2e341f3885918ee27d18479910ade7bb4da" + integrity sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q== + dependencies: + array-includes "^3.1.3" + array.prototype.flat "^1.2.4" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.6" + eslint-module-utils "^2.6.2" + find-up "^2.0.0" + has "^1.0.3" + is-core-module "^2.6.0" + minimatch "^3.0.4" + object.values "^1.1.4" + pkg-up "^2.0.0" + read-pkg-up "^3.0.0" + resolve "^1.20.0" + tsconfig-paths "^3.11.0" + +eslint-plugin-mocha@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-5.3.0.tgz#cf3eb18ae0e44e433aef7159637095a7cb19b15b" + integrity sha512-3uwlJVLijjEmBeNyH60nzqgA1gacUWLUmcKV8PIGNvj1kwP/CTgAWQHn2ayyJVwziX+KETkr9opNwT1qD/RZ5A== + dependencies: + ramda "^0.26.1" + +eslint-plugin-node@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz#a6e054e50199b2edd85518b89b4e7b323c9f36db" + integrity sha512-lfVw3TEqThwq0j2Ba/Ckn2ABdwmL5dkOgAux1rvOk6CO7A6yGyPI2+zIxN6FyNkp1X1X/BSvKOceD6mBWSj4Yw== + dependencies: + eslint-plugin-es "^1.3.1" + eslint-utils "^1.3.1" + ignore "^4.0.2" + minimatch "^3.0.4" + resolve "^1.8.1" + semver "^5.5.0" + +eslint-plugin-prettier@^3.1.4: + version "3.4.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz#e9ddb200efb6f3d05ffe83b1665a716af4a387e5" + integrity sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-unicorn@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-6.0.1.tgz#4a97f0bc9449e20b82848dad12094ee2ba72347e" + integrity sha512-hjy9LhTdtL7pz8WTrzS0CGXRkWK3VAPLDjihofj8JC+uxQLfXm0WwZPPPB7xKmcjRyoH+jruPHOCrHNEINpG/Q== + dependencies: + clean-regexp "^1.0.0" + eslint-ast-utils "^1.0.0" + import-modules "^1.1.0" + lodash.camelcase "^4.1.1" + lodash.kebabcase "^4.0.1" + lodash.snakecase "^4.0.1" + lodash.upperfirst "^4.2.0" + safe-regex "^1.1.0" + +eslint-scope@^5.0.0, eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^1.3.1, eslint-utils@^1.4.2: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^2.0.0, eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.26.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.0.1" + doctrine "^3.0.0" + enquirer "^2.3.5" + escape-string-regexp "^4.0.0" + eslint-scope "^5.1.1" + eslint-utils "^2.1.0" + eslint-visitor-keys "^2.0.0" + espree "^7.3.1" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.1.2" + globals "^13.6.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.0.4" + natural-compare "^1.4.0" + optionator "^0.9.1" + progress "^2.0.0" + regexpp "^3.1.0" + semver "^7.2.1" + strip-ansi "^6.0.0" + strip-json-comments "^3.1.0" + table "^6.0.9" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" + integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventemitter3@^3.1.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" + integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== + +evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" + integrity sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw== + dependencies: + cross-spawn "^6.0.0" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^3.0.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" + integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + p-finally "^2.0.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +explain-error@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/explain-error/-/explain-error-1.0.4.tgz#a793d3ac0cad4c6ab571e9968fbbab6cb2532929" + integrity sha1-p5PTrAytTGq1cemWj7urbLJTKSk= + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extract-files@11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a" + integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ== + +extract-files@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-9.0.0.tgz#8a7744f2437f81f5ed3250ed9f1550de902fe54a" + integrity sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ== + +extract-stack@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-1.0.0.tgz#b97acaf9441eea2332529624b732fc5a1c8165fa" + integrity sha1-uXrK+UQe6iMyUpYktzL8WhyBZfo= + +extract-stack@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-2.0.0.tgz#11367bc865bfcd9bc0db3123e5edb57786f11f9b" + integrity sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ== + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +eyes@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + integrity sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A= + +fancy-test@^1.4.3: + version "1.4.10" + resolved "https://registry.yarnpkg.com/fancy-test/-/fancy-test-1.4.10.tgz#310be93d4aa45d788bce56a573ae4d1b92b2e1a0" + integrity sha512-AaUX6wKS7D5OP2YK2q5G7c8PGx2lgoyLUD7Bbg8z323sb9aebBqzb9UN6phzI73UgO/ViihmNfOxF3kdfZLhew== + dependencies: + "@types/chai" "*" + "@types/lodash" "*" + "@types/node" "*" + "@types/sinon" "*" + lodash "^4.17.13" + mock-stdin "^1.0.0" + nock "^13.0.0" + stdout-stderr "^0.1.9" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-glob@^3.0.3, fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +fastq@^1.6.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.12.0.tgz#ed7b6ab5d62393fb2cc591c853652a5c318bf794" + integrity sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg== + dependencies: + reusify "^1.0.4" + +fb-watchman@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + dependencies: + bser "2.1.1" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + +fbjs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.0.tgz#0907067fb3f57a78f45d95f1eacffcacd623c165" + integrity sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg== + dependencies: + cross-fetch "^3.0.4" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +filesize@^6.1.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.4.0.tgz#914f50471dd66fdca3cefe628bd0cde4ef769bcd" + integrity sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== + dependencies: + micromatch "^4.0.2" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatmap@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/flatmap/-/flatmap-0.0.3.tgz#1f18a4d938152d495965f9c958d923ab2dd669b4" + integrity sha1-Hxik2TgVLUlZZfnJWNkjqy3WabQ= + +flatted@^3.1.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" + integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== + +follow-redirects@^1.10.0: + version "1.14.3" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz#6ada78118d8d24caee595595accdc0ac6abd022e" + integrity sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw== + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-extra@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" + integrity sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^8.1: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.0.0, fs-extra@^9.0.1, fs-extra@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-jetpack@^2.2.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/fs-jetpack/-/fs-jetpack-2.4.0.tgz#6080c4ab464a019d37a404baeb47f32af8835026" + integrity sha512-S/o9Dd7K9A7gicVU32eT8G0kHcmSu0rCVdP79P0MWInKFb8XpTc8Syhoo66k9no+HDshtlh4pUJTws8X+8fdFQ== + dependencies: + minimatch "^3.0.2" + rimraf "^2.6.3" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^5.0.0, get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +github-slugger@^1.2.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.4.0.tgz#206eb96cdb22ee56fdc53a28d5a302338463444e" + integrity sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.6.0, globals@^13.9.0: + version "13.11.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz#40ef678da117fe7bd2e28f1fab24951bd0255be7" + integrity sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g== + dependencies: + type-fest "^0.20.2" + +globby@^10.0.1: + version "10.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" + integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== + dependencies: + "@types/glob" "^7.1.1" + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.0.3" + glob "^7.1.3" + ignore "^5.1.1" + merge2 "^1.2.3" + slash "^3.0.0" + +globby@^11.0.1, globby@^11.0.3, globby@^11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + +gluegun@^4.3.1: + version "4.7.0" + resolved "https://registry.yarnpkg.com/gluegun/-/gluegun-4.7.0.tgz#d1e88828ec6737d966619fff07c04f7e689dc59e" + integrity sha512-St+J/rly0FoWLeISgBGDuymwF3/b8OdmxBCbSvK1hXEoRbaaATiRpPepJSJWuRYR7cGR7Hy9drgQwGFBAolhbQ== + dependencies: + apisauce "^2.0.1" + app-module-path "^2.2.0" + cli-table3 "~0.5.0" + colors "^1.3.3" + cosmiconfig "6.0.0" + cross-spawn "^7.0.0" + ejs "^2.6.1" + enquirer "2.3.4" + execa "^3.0.0" + fs-jetpack "^2.2.2" + lodash.camelcase "^4.3.0" + lodash.kebabcase "^4.1.1" + lodash.lowercase "^4.3.0" + lodash.lowerfirst "^4.3.1" + lodash.pad "^4.5.1" + lodash.padend "^4.6.1" + lodash.padstart "^4.6.1" + lodash.repeat "^4.1.0" + lodash.snakecase "^4.1.1" + lodash.startcase "^4.4.0" + lodash.trim "^4.5.1" + lodash.trimend "^4.5.1" + lodash.trimstart "^4.5.1" + lodash.uppercase "^4.3.0" + lodash.upperfirst "^4.3.1" + ora "^4.0.0" + pluralize "^8.0.0" + ramdasauce "^2.1.0" + semver "^7.0.0" + which "^2.0.0" + yargs-parser "^16.1.0" + +got@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== + dependencies: + "@sindresorhus/is" "^0.14.0" + "@szmarczak/http-timer" "^1.1.2" + cacheable-request "^6.0.0" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^4.1.0" + lowercase-keys "^1.0.1" + mimic-response "^1.0.1" + p-cancelable "^1.0.0" + to-readable-stream "^1.0.0" + url-parse-lax "^3.0.0" + +graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.8" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== + +graphql-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.0.1.tgz#4ce43cb54f3f39dde5f023d6f8f04064edc16e6e" + integrity sha512-JdXxFzBwjujJMGLHUZom9SrmP/M4gF57iTDa3fJVm3Q85+Xw2kj9jZIygaaSLpDKhaPnMQZqfJ5Hmc6afKxS9w== + dependencies: + "@endemolshinegroup/cosmiconfig-typescript-loader" "3.0.2" + "@graphql-tools/graphql-file-loader" "^7.0.1" + "@graphql-tools/json-file-loader" "^7.0.1" + "@graphql-tools/load" "^7.1.0" + "@graphql-tools/merge" "^6.2.16" + "@graphql-tools/url-loader" "^7.0.3" + "@graphql-tools/utils" "^8.0.1" + cosmiconfig "7.0.0" + cosmiconfig-toml-loader "1.0.0" + minimatch "3.0.4" + string-env-interpolation "1.0.1" + +graphql-request@^3.3.0, graphql-request@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-3.5.0.tgz#7e69574e15875fb3f660a4b4be3996ecd0bbc8b7" + integrity sha512-Io89QpfU4rqiMbqM/KwMBzKaDLOppi8FU8sEccCE4JqCgz95W9Q8bvxQ4NfPALLSMvg9nafgg8AkYRmgKSlukA== + dependencies: + cross-fetch "^3.0.6" + extract-files "^9.0.0" + form-data "^3.0.0" + +graphql-tag@^2.11.0, graphql-tag@^2.12.4: + version "2.12.5" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.5.tgz#5cff974a67b417747d05c8d9f5f3cb4495d0db8f" + integrity sha512-5xNhP4063d16Pz3HBtKprutsPrmHZi5IdUGOWRxA2B6VF7BIRGOHZ5WQvDmJXZuPcBg7rYwaFxvQYjqkSdR3TQ== + dependencies: + tslib "^2.1.0" + +graphql-ws@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.4.1.tgz#76fb4c39dfa44a961546995b6bb5320726ff5f71" + integrity sha512-maBduPneZOFYb3otLgc9/U+fU3f9MVXLKg6lVVLqA9BDQQ6YR7YhQO21Rf9+44IRBi4l8m35lynFMFQTzN3eAQ== + +graphql@^15.5.0: + version "15.5.2" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.5.2.tgz#efa19f8f2bf1a48eb7d5c85bf17e144ba8bb0480" + integrity sha512-dZjLPWNQqYv0dqV2RNbiFed0LtSp6yd4jchsDGnuhDKa9OQHJYCfovaOEvY91w9gqbYO7Se9LKDTl3xxYva/3w== + +handlebars@^4.7.7: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-bigints@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" + integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.1, has-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +header-case@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" + integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== + dependencies: + capital-case "^1.0.4" + tslib "^2.0.3" + +hi-base32@~0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/hi-base32/-/hi-base32-0.5.1.tgz#1279f2ddae2673219ea5870c2121d2a33132857e" + integrity sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" + integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== + dependencies: + lru-cache "^6.0.0" + +http-cache-semantics@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + +http-call@^5.1.2, http-call@^5.2.2, http-call@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db" + integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w== + dependencies: + content-type "^1.0.4" + debug "^4.1.1" + is-retry-allowed "^1.1.0" + is-stream "^2.0.0" + parse-json "^4.0.0" + tunnel-agent "^0.6.0" + +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + +hyperlinker@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e" + integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ== + +iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.2, ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.1.1, ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + +immutable@^3.8.2: + version "3.8.2" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" + integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM= + +immutable@~3.7.6: + version "3.7.6" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" + integrity sha1-E7TTyxK++hVIKib+Gy665kAHHks= + +import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2" + integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ== + +import-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" + integrity sha1-dI23nFzEK7lwHvq0JPiU5yYA6dw= + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^3.0.0, indent-string@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +inquirer@^7.3.3: + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.19" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.6.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ip-regex@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + +ip-regex@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" + integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== + +ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= + +ipfs-block@~0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/ipfs-block/-/ipfs-block-0.8.1.tgz#05e1068832775e8f1c2da5b64106cc837fd2acb9" + integrity sha512-0FaCpmij+jZBoUYhjoB5ptjdl9QzvrdRIoBmUU5JiBnK2GA+4YM/ifklaB8ePRhA/rRzhd+KYBjvMFMAL4NrVQ== + dependencies: + cids "~0.7.0" + class-is "^1.1.0" + +ipfs-http-client@^34.0.0: + version "34.0.0" + resolved "https://registry.yarnpkg.com/ipfs-http-client/-/ipfs-http-client-34.0.0.tgz#8804d06a11c22306332a8ffa0949b6f672a0c9c8" + integrity sha512-4RCkk8ix4Dqn6sxqFVwuXWCZ1eLFPsVaj6Ijvu1fs9VYgxgVudsW9PWwarlr4mw1xUCmPWYyXnEbGgzBrfMy0Q== + dependencies: + abort-controller "^3.0.0" + async "^2.6.1" + bignumber.js "^9.0.0" + bl "^3.0.0" + bs58 "^4.0.1" + buffer "^5.4.2" + cids "~0.7.1" + concat-stream "github:hugomrdias/concat-stream#feat/smaller" + debug "^4.1.0" + detect-node "^2.0.4" + end-of-stream "^1.4.1" + err-code "^2.0.0" + explain-error "^1.0.4" + flatmap "0.0.3" + glob "^7.1.3" + ipfs-block "~0.8.1" + ipfs-utils "~0.0.3" + ipld-dag-cbor "~0.15.0" + ipld-dag-pb "~0.17.3" + ipld-raw "^4.0.0" + is-ipfs "~0.6.1" + is-pull-stream "0.0.0" + is-stream "^2.0.0" + iso-stream-http "~0.1.2" + iso-url "~0.4.6" + iterable-ndjson "^1.1.0" + just-kebab-case "^1.1.0" + just-map-keys "^1.1.0" + kind-of "^6.0.2" + ky "^0.11.2" + ky-universal "^0.2.2" + lru-cache "^5.1.1" + multiaddr "^6.0.6" + multibase "~0.6.0" + multicodec "~0.5.1" + multihashes "~0.4.14" + ndjson "github:hugomrdias/ndjson#feat/readable-stream3" + once "^1.4.0" + peer-id "~0.12.3" + peer-info "~0.15.1" + promise-nodeify "^3.0.1" + promisify-es6 "^1.0.3" + pull-defer "~0.2.3" + pull-stream "^3.6.9" + pull-to-stream "~0.1.1" + pump "^3.0.0" + qs "^6.5.2" + readable-stream "^3.1.1" + stream-to-pull-stream "^1.7.2" + tar-stream "^2.0.1" + through2 "^3.0.1" + +ipfs-utils@~0.0.3: + version "0.0.4" + resolved "https://registry.yarnpkg.com/ipfs-utils/-/ipfs-utils-0.0.4.tgz#946114cfeb6afb4454b4ccb10d2327cd323b0cce" + integrity sha512-7cZf6aGj2FG3XJWhCNwn4mS93Q0GEWjtBZvEHqzgI43U2qzNDCyzfS1pei1Y5F+tw/zDJ5U4XG0G9reJxR53Ig== + dependencies: + buffer "^5.2.1" + is-buffer "^2.0.3" + is-electron "^2.2.0" + is-pull-stream "0.0.0" + is-stream "^2.0.0" + kind-of "^6.0.2" + readable-stream "^3.4.0" + +ipld-dag-cbor@~0.15.0: + version "0.15.3" + resolved "https://registry.yarnpkg.com/ipld-dag-cbor/-/ipld-dag-cbor-0.15.3.tgz#283afdb81d5b07db8e4fff7a10ef5e517e87f299" + integrity sha512-m23nG7ZyoVFnkK55/bLAErc7EfiMgaEQlqHWDTGzPI+O5r6bPfp+qbL5zTVSIT8tpbHmu174dwerVtLoVgeVyA== + dependencies: + borc "^2.1.2" + buffer "^5.5.0" + cids "~0.8.0" + is-circular "^1.0.2" + multicodec "^1.0.0" + multihashing-async "~0.8.0" + +ipld-dag-pb@~0.17.3: + version "0.17.4" + resolved "https://registry.yarnpkg.com/ipld-dag-pb/-/ipld-dag-pb-0.17.4.tgz#080841cfdd014d996f8da7f3a522ec8b1f6b6494" + integrity sha512-YwCxETEMuXVspOKOhjIOHJvKvB/OZfCDkpSFiYBQN2/JQjM9y/RFCYzIQGm0wg7dCFLrhvfjAZLTSaKs65jzWA== + dependencies: + cids "~0.7.0" + class-is "^1.1.0" + multicodec "~0.5.1" + multihashing-async "~0.7.0" + protons "^1.0.1" + stable "~0.1.8" + +ipld-raw@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/ipld-raw/-/ipld-raw-4.0.1.tgz#49a6f58cdfece5a4d581925b19ee19255be2a29d" + integrity sha512-WjIdtZ06jJEar8zh+BHB84tE6ZdbS/XNa7+XCArOYfmeJ/c01T9VQpeMwdJQYn5c3s5UvvCu7y4VIi3vk2g1bA== + dependencies: + cids "~0.7.0" + multicodec "^1.0.0" + multihashing-async "~0.8.0" + +is-absolute@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== + dependencies: + is-relative "^1.0.0" + is-windows "^1.0.1" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-buffer@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + +is-callable@^1.1.4, is-callable@^1.2.3: + version "1.2.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== + +is-circular@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-circular/-/is-circular-1.0.2.tgz#2e0ab4e9835f4c6b0ea2b9855a84acd501b8366c" + integrity sha512-YttjnrswnUYRVJvxCvu8z+PGMUSzC2JttP0OEXezlAEdp3EXzhf7IZ3j0gRAybJBQupedIZFhY61Tga6E0qASA== + +is-core-module@^2.2.0, is-core-module@^2.5.0, is-core-module@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19" + integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-electron@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-electron/-/is-electron-2.2.0.tgz#8943084f09e8b731b3a7a0298a7b5d56f6b7eef0" + integrity sha512-SpMppC2XR3YdxSzczXReBjqs2zGscWQpBIKqwXYBFic0ERaxNVgwLCHwOLZeESfdJQjX0RDvrJ1lBXX2ij+G1Q== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@4.0.1, is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-ip@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-2.0.0.tgz#68eea07e8a0a0a94c2d080dd674c731ab2a461ab" + integrity sha1-aO6gfooKCpTC0IDdZ0xzGrKkYas= + dependencies: + ip-regex "^2.0.0" + +is-ip@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-3.1.0.tgz#2ae5ddfafaf05cb8008a62093cf29734f657c5d8" + integrity sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q== + dependencies: + ip-regex "^4.0.0" + +is-ipfs@~0.6.1: + version "0.6.3" + resolved "https://registry.yarnpkg.com/is-ipfs/-/is-ipfs-0.6.3.tgz#82a5350e0a42d01441c40b369f8791e91404c497" + integrity sha512-HyRot1dvLcxImtDqPxAaY1miO6WsiP/z7Yxpg2qpaLWv5UdhAPtLvHJ4kMLM0w8GSl8AFsVF23PHe1LzuWrUlQ== + dependencies: + bs58 "^4.0.1" + cids "~0.7.0" + mafmt "^7.0.0" + multiaddr "^7.2.1" + multibase "~0.6.0" + multihashes "~0.4.13" + +is-lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-2.0.2.tgz#1c0884d3012c841556243483aa5d522f47396d2a" + integrity sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ== + dependencies: + tslib "^2.0.3" + +is-negative-zero@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" + integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== + +is-number-object@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" + integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + +is-plain-obj@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-promise@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" + integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== + +is-promise@^2.1.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + +is-promise@~1, is-promise@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5" + integrity sha1-MVc3YcBX4zwukaq56W2gjO++duU= + +is-pull-stream@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/is-pull-stream/-/is-pull-stream-0.0.0.tgz#a3bc3d1c6d3055151c46bde6f399efed21440ca9" + integrity sha1-o7w9HG0wVRUcRr3m85nv7SFEDKk= + +is-regex@^1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== + dependencies: + is-unc-path "^1.0.0" + +is-retry-allowed@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typedarray@^1.0.0, is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-unc-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== + dependencies: + unc-path-regex "^0.1.2" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-2.0.2.tgz#f1105ced1fe4de906a5f39553e7d3803fd804649" + integrity sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ== + dependencies: + tslib "^2.0.3" + +is-windows@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +iso-random-stream@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/iso-random-stream/-/iso-random-stream-1.1.2.tgz#c703da2c518db573277c5678cc43c5298283d64c" + integrity sha512-7y0tsBBgQs544iTYjyrMp5xvgrbYR8b+plQq1Bryp+03p0LssrxC9C1M0oHv4QESDt7d95c74XvMk/yawKqX+A== + dependencies: + buffer "^6.0.3" + readable-stream "^3.4.0" + +iso-stream-http@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/iso-stream-http/-/iso-stream-http-0.1.2.tgz#b3dfea4c9f23ff26d078d40c539cfc0dfebacd37" + integrity sha512-oHEDNOysIMTNypbg2f1SlydqRBvjl4ZbSE9+0awVxnkx3K2stGTFwB/kpVqnB6UEfF8QD36kAjDwZvqyXBLMnQ== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^3.1.1" + +iso-url@~0.4.6, iso-url@~0.4.7: + version "0.4.7" + resolved "https://registry.yarnpkg.com/iso-url/-/iso-url-0.4.7.tgz#de7e48120dae46921079fe78f325ac9e9217a385" + integrity sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog== + +isomorphic-fetch@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz#0267b005049046d2421207215d45d6a262b8b8b4" + integrity sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA== + dependencies: + node-fetch "^2.6.1" + whatwg-fetch "^3.4.1" + +isomorphic-ws@4.0.1, isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +iterable-ndjson@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/iterable-ndjson/-/iterable-ndjson-1.1.0.tgz#36f7e8a5bb04fd087d384f29e44fc4280fc014fc" + integrity sha512-OOp1Lb0o3k5MkXHx1YaIY5Z0ELosZfTnBaas9f8opJVcZGBIONA2zY/6CYE+LKkqrSDooIneZbrBGgOZnHPkrg== + dependencies: + string_decoder "^1.2.0" + +iterall@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" + integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== + +jayson@^3.0.2: + version "3.6.4" + resolved "https://registry.yarnpkg.com/jayson/-/jayson-3.6.4.tgz#9e9d1ba2a75d811f254bceff61a096772fa04832" + integrity sha512-GH63DsRFFlodS8krFgAhxwYvQFmSwjsFxKnPrHQtp+BJj/tpeSj3hyBGGqmTkuq043U1Gn6u8VdsVRFZX1EEiQ== + dependencies: + "@types/connect" "^3.4.33" + "@types/express-serve-static-core" "^4.17.9" + "@types/lodash" "^4.14.159" + "@types/node" "^12.12.54" + "@types/ws" "^7.4.4" + JSONStream "^1.3.5" + commander "^2.20.3" + delay "^5.0.0" + es6-promisify "^5.0.0" + eyes "^0.1.8" + isomorphic-ws "^4.0.1" + json-stringify-safe "^5.0.1" + lodash "^4.17.20" + uuid "^3.4.0" + ws "^7.4.5" + +js-sha3@^0.8.0, js-sha3@~0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json-text-sequence@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/json-text-sequence/-/json-text-sequence-0.1.1.tgz#a72f217dc4afc4629fff5feb304dc1bd51a2f3d2" + integrity sha1-py8hfcSvxGKf/1/rME3BvVGi89I= + dependencies: + delimit-stream "0.1.0" + +json-to-pretty-yaml@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz#f4cd0bd0a5e8fe1df25aaf5ba118b099fd992d5b" + integrity sha1-9M0L0KXo/h3yWq9boRiwmf2ZLVs= + dependencies: + remedial "^1.0.7" + remove-trailing-spaces "^1.0.6" + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2, json5@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" + integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== + dependencies: + minimist "^1.2.5" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= + +jsonwebtoken@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" + integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== + dependencies: + jws "^3.2.2" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" + ms "^2.1.1" + semver "^5.6.0" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +just-kebab-case@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/just-kebab-case/-/just-kebab-case-1.1.0.tgz#ebe854fde84b0afa4e597fcd870b12eb3c026755" + integrity sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA== + +just-map-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/just-map-keys/-/just-map-keys-1.1.0.tgz#9663c9f971ba46e17f2b05e66fec81149375f230" + integrity sha512-oNKi+4y7fr8lXnhKYpBbCkiwHRVkAnx0VDkCeTDtKKMzGr1Lz1Yym+RSieKUTKim68emC5Yxrb4YmiF9STDO+g== + +jwa@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" + integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.11" + safe-buffer "^5.0.1" + +jws@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" + integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== + dependencies: + jwa "^1.4.1" + safe-buffer "^5.0.1" + +keypair@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/keypair/-/keypair-1.0.3.tgz#4314109d94052a0acfd6b885695026ad29529c80" + integrity sha512-0wjZ2z/SfZZq01+3/8jYLd8aEShSa+aat1zyPGQY3IuKoEAp6DJGvu2zt6snELrQU9jbCkIlCyNOD7RdQbHhkQ== + +keyv@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + dependencies: + json-buffer "3.0.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +ky-universal@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/ky-universal/-/ky-universal-0.2.2.tgz#7a36e1a75641a98f878157463513965f799f5bfe" + integrity sha512-fb32o/fKy/ux2ALWa9HU2hvGtfOq7/vn2nH0FpVE+jwNzyTeORlAbj3Fiw+WLMbUlmVqZIWupnLZ2USHvqwZHw== + dependencies: + abort-controller "^3.0.0" + node-fetch "^2.3.0" + +ky@^0.11.2: + version "0.11.2" + resolved "https://registry.yarnpkg.com/ky/-/ky-0.11.2.tgz#4ffe6621d9d9ab61bf0f5500542e3a96d1ba0815" + integrity sha512-5Aou5BWue5/mkPqIRqzSWW+0Hkl403pr/2AIrCKYw7cVl/Xoe8Xe4KLBO0PRjbz7GnRe1/8wW1KhqQNFFE7/GQ== + +latest-version@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" + integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + dependencies: + package-json "^6.3.0" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +libp2p-crypto-secp256k1@~0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/libp2p-crypto-secp256k1/-/libp2p-crypto-secp256k1-0.3.1.tgz#4cbeb857f5cfe5fefb1253e6b2994420c0ca166e" + integrity sha512-evrfK/CeUSd/lcELUdDruyPBvxDmLairth75S32OLl3H+++2m2fV24JEtxzdFS9JH3xEFw0h6JFO8DBa1bP9dA== + dependencies: + async "^2.6.2" + bs58 "^4.0.1" + multihashing-async "~0.6.0" + nodeify "^1.0.1" + safe-buffer "^5.1.2" + secp256k1 "^3.6.2" + +libp2p-crypto@~0.16.1: + version "0.16.4" + resolved "https://registry.yarnpkg.com/libp2p-crypto/-/libp2p-crypto-0.16.4.tgz#fb1a4ba39d56789303947784b5b0d6cefce12fdc" + integrity sha512-II8HxKc9jbmQp34pprlluNxsBCWJDjHRPYJzuRy7ragztNip9Zb7uJ4lCje6gGzz4DNAcHkAUn+GqCIK1592iA== + dependencies: + asmcrypto.js "^2.3.2" + asn1.js "^5.0.1" + async "^2.6.1" + bn.js "^4.11.8" + browserify-aes "^1.2.0" + bs58 "^4.0.1" + iso-random-stream "^1.1.0" + keypair "^1.0.1" + libp2p-crypto-secp256k1 "~0.3.0" + multihashing-async "~0.5.1" + node-forge "^0.10.0" + pem-jwk "^2.0.0" + protons "^1.0.1" + rsa-pem-to-jwk "^1.1.3" + tweetnacl "^1.0.0" + ursa-optional "~0.10.0" + +lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= + +listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + +listr@^0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +load-json-file@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" + integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== + dependencies: + graceful-fs "^4.1.15" + parse-json "^5.0.0" + strip-bom "^4.0.0" + type-fest "^0.6.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash._reinterpolate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + +lodash.camelcase@^4.1.1, lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + +lodash.get@^4, lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + +lodash.includes@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= + +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= + +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + +lodash.kebabcase@^4.0.1, lodash.kebabcase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= + +lodash.lowercase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz#46515aced4acb0b7093133333af068e4c3b14e9d" + integrity sha1-RlFaztSssLcJMTMzOvBo5MOxTp0= + +lodash.lowerfirst@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz#de3c7b12e02c6524a0059c2f6cb7c5c52655a13d" + integrity sha1-3jx7EuAsZSSgBZwvbLfFxSZVoT0= + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= + +lodash.pad@^4.5.1: + version "4.5.1" + resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" + integrity sha1-QzCUmoM6fI2iLMIPaibE1Z3runA= + +lodash.padend@^4.6.1: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" + integrity sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4= + +lodash.padstart@^4.6.1: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" + integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs= + +lodash.repeat@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/lodash.repeat/-/lodash.repeat-4.1.0.tgz#fc7de8131d8c8ac07e4b49f74ffe829d1f2bec44" + integrity sha1-/H3oEx2MisB+S0n3T/6CnR8r7EQ= + +lodash.set@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" + integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= + +lodash.snakecase@^4.0.1, lodash.snakecase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" + integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40= + +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= + +lodash.template@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== + dependencies: + lodash._reinterpolate "^3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== + dependencies: + lodash._reinterpolate "^3.0.0" + +lodash.trim@^4.5.1: + version "4.5.1" + resolved "https://registry.yarnpkg.com/lodash.trim/-/lodash.trim-4.5.1.tgz#36425e7ee90be4aa5e27bcebb85b7d11ea47aa57" + integrity sha1-NkJefukL5KpeJ7zruFt9EepHqlc= + +lodash.trimend@^4.5.1: + version "4.5.1" + resolved "https://registry.yarnpkg.com/lodash.trimend/-/lodash.trimend-4.5.1.tgz#12804437286b98cad8996b79414e11300114082f" + integrity sha1-EoBENyhrmMrYmWt5QU4RMAEUCC8= + +lodash.trimstart@^4.5.1: + version "4.5.1" + resolved "https://registry.yarnpkg.com/lodash.trimstart/-/lodash.trimstart-4.5.1.tgz#8ff4dec532d82486af59573c39445914e944a7f1" + integrity sha1-j/TexTLYJIavWVc8OURZFOlEp/E= + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + +lodash.uppercase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.uppercase/-/lodash.uppercase-4.3.0.tgz#c404abfd1469f93931f9bb24cf6cc7d57059bc73" + integrity sha1-xASr/RRp+Tkx+bskz2zH1XBZvHM= + +lodash.upperfirst@^4.2.0, lodash.upperfirst@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" + integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984= + +lodash.zip@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" + integrity sha1-7GZi5IlkCO1KtsVCo5kLcswIACA= + +lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@~4.17.0: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-chopper@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-chopper/-/log-chopper-1.0.2.tgz#a88da7a47a9f0e511eda4d5e1dc840e0eaf4547a" + integrity sha512-tEWS6Fb+Xv0yLChJ6saA1DP3H1yPL0PfiIN7SDJ+U/CyP+fD4G/dhKfow+P5UuJWi6BdE4mUcPkJclGXCWxDrg== + dependencies: + byline "5.x" + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= + dependencies: + chalk "^1.0.0" + +log-symbols@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" + integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== + dependencies: + chalk "^2.4.2" + +log-symbols@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +looper@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/looper/-/looper-3.0.0.tgz#2efa54c3b1cbaba9b94aee2e5914b0be57fbb749" + integrity sha1-LvpUw7HLq6m5Su4uWRSwvlf7t0k= + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-2.0.2.tgz#64c2324a2250bf7c37c5901e76a5b5309301160b" + integrity sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg== + dependencies: + tslib "^2.0.3" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lunr@^2.3.8, lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +mafmt@^6.0.2: + version "6.0.10" + resolved "https://registry.yarnpkg.com/mafmt/-/mafmt-6.0.10.tgz#3ad251c78f14f8164e66f70fd3265662da41113a" + integrity sha512-FjHDnew6dW9lUu3eYwP0FvvJl9uvNbqfoJM+c1WJcSyutNEIlyu6v3f/rlPnD1cnmue38IjuHlhBdIh3btAiyw== + dependencies: + multiaddr "^6.1.0" + +mafmt@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/mafmt/-/mafmt-7.1.0.tgz#4126f6d0eded070ace7dbbb6fb04977412d380b5" + integrity sha512-vpeo9S+hepT3k2h5iFxzEHvvR0GPBx9uKaErmnRzYNcaKb03DgOArjEMlgG4a9LcuZZ89a3I8xbeto487n26eA== + dependencies: + multiaddr "^7.3.0" + +make-dir@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@^1, make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +map-cache@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +marked@~2.0.3: + version "2.0.7" + resolved "https://registry.yarnpkg.com/marked/-/marked-2.0.7.tgz#bc5b857a09071b48ce82a1f7304913a993d4b7d1" + integrity sha512-BJXxkuIfJchcXOJWTT2DOL+yFWifFv2yGYOUzvXg8Qz610QKw+sHCvTMYwA+qWGhlA2uivBezChZ/pBy1tWdkQ== + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.2.3, merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +meros@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/meros/-/meros-1.1.4.tgz#c17994d3133db8b23807f62bec7f0cb276cfd948" + integrity sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ== + +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + dependencies: + braces "^3.0.1" + picomatch "^2.2.3" + +mime-db@1.49.0: + version "1.49.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" + integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA== + +mime-types@^2.1.12, mime-types@~2.1.19: + version "2.1.32" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" + integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A== + dependencies: + mime-db "1.49.0" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^1.0.0, mimic-response@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +mkdirp@^0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mock-stdin@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/mock-stdin/-/mock-stdin-1.0.0.tgz#efcfaf4b18077e14541742fd758b9cae4e5365ea" + integrity sha512-tukRdb9Beu27t6dN+XztSRHq9J0B/CoAOySGzHfn8UTfmqipA5yNT/sDUEyYdAV3Hpka6Wx6kOMxuObdOex60Q== + +moment@^2.22.1: + version "2.29.1" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" + integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multiaddr@^6.0.3, multiaddr@^6.0.6, multiaddr@^6.1.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/multiaddr/-/multiaddr-6.1.1.tgz#9aae57b3e399089b9896d9455afa8f6b117dff06" + integrity sha512-Q1Ika0F9MNhMtCs62Ue+GWIJtRFEhZ3Xz8wH7/MZDVZTWhil1/H2bEGN02kUees3hkI3q1oHSjmXYDM0gxaFjQ== + dependencies: + bs58 "^4.0.1" + class-is "^1.1.0" + hi-base32 "~0.5.0" + ip "^1.1.5" + is-ip "^2.0.0" + varint "^5.0.0" + +multiaddr@^7.2.1, multiaddr@^7.3.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/multiaddr/-/multiaddr-7.5.0.tgz#976c88e256e512263445ab03b3b68c003d5f485e" + integrity sha512-GvhHsIGDULh06jyb6ev+VfREH9evJCFIRnh3jUt9iEZ6XDbyoisZRFEI9bMvK/AiR6y66y6P+eoBw9mBYMhMvw== + dependencies: + buffer "^5.5.0" + cids "~0.8.0" + class-is "^1.1.0" + is-ip "^3.1.0" + multibase "^0.7.0" + varint "^5.0.0" + +multibase@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/multibase/-/multibase-0.7.0.tgz#1adfc1c50abe05eefeb5091ac0c2728d6b84581b" + integrity sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg== + dependencies: + base-x "^3.0.8" + buffer "^5.5.0" + +multibase@^1.0.0, multibase@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/multibase/-/multibase-1.0.1.tgz#4adbe1de0be8a1ab0274328b653c3f1903476724" + integrity sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw== + dependencies: + base-x "^3.0.8" + buffer "^5.5.0" + +multibase@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/multibase/-/multibase-0.6.1.tgz#b76df6298536cc17b9f6a6db53ec88f85f8cc12b" + integrity sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw== + dependencies: + base-x "^3.0.8" + buffer "^5.5.0" + +multicodec@^1.0.0, multicodec@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/multicodec/-/multicodec-1.0.4.tgz#46ac064657c40380c28367c90304d8ed175a714f" + integrity sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg== + dependencies: + buffer "^5.6.0" + varint "^5.0.0" + +multicodec@~0.5.1: + version "0.5.7" + resolved "https://registry.yarnpkg.com/multicodec/-/multicodec-0.5.7.tgz#1fb3f9dd866a10a55d226e194abba2dcc1ee9ffd" + integrity sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA== + dependencies: + varint "^5.0.0" + +multihashes@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/multihashes/-/multihashes-1.0.1.tgz#a89415d68283cf6287c6e219e304e75ce7fb73fe" + integrity sha512-S27Tepg4i8atNiFaU5ZOm3+gl3KQlUanLs/jWcBxQHFttgq+5x1OgbQmf2d8axJ/48zYGBd/wT9d723USMFduw== + dependencies: + buffer "^5.6.0" + multibase "^1.0.1" + varint "^5.0.0" + +multihashes@~0.4.13, multihashes@~0.4.14, multihashes@~0.4.15: + version "0.4.21" + resolved "https://registry.yarnpkg.com/multihashes/-/multihashes-0.4.21.tgz#dc02d525579f334a7909ade8a122dabb58ccfcb5" + integrity sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw== + dependencies: + buffer "^5.5.0" + multibase "^0.7.0" + varint "^5.0.0" + +multihashing-async@~0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.5.2.tgz#4af40e0dde2f1dbb12a7c6b265181437ac26b9de" + integrity sha512-mmyG6M/FKxrpBh9xQDUvuJ7BbqT93ZeEeH5X6LeMYKoYshYLr9BDdCsvDtZvn+Egf+/Xi+aOznrWL4vp3s+p0Q== + dependencies: + blakejs "^1.1.0" + js-sha3 "~0.8.0" + multihashes "~0.4.13" + murmurhash3js "^3.0.1" + nodeify "^1.0.1" + +multihashing-async@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.6.0.tgz#c1fc6696a624b9bf39b160b0c4c4e7ba3f394453" + integrity sha512-Qv8pgg99Lewc191A5nlXy0bSd2amfqlafNJZmarU6Sj7MZVjpR94SCxQjf4DwPtgWZkiLqsjUQBXA2RSq+hYyA== + dependencies: + blakejs "^1.1.0" + js-sha3 "~0.8.0" + multihashes "~0.4.13" + murmurhash3js "^3.0.1" + nodeify "^1.0.1" + +multihashing-async@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.7.0.tgz#3234fb98295be84386b85bfd20377d3e5be20d6b" + integrity sha512-SCbfl3f+DzJh+/5piukga9ofIOxwfT05t8R4jfzZIJ88YE9zU9+l3K2X+XB19MYyxqvyK9UJRNWbmQpZqQlbRA== + dependencies: + blakejs "^1.1.0" + buffer "^5.2.1" + err-code "^1.1.2" + js-sha3 "~0.8.0" + multihashes "~0.4.13" + murmurhash3js-revisited "^3.0.0" + +multihashing-async@~0.8.0: + version "0.8.2" + resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.8.2.tgz#3d5da05df27d83be923f6d04143a0954ff87f27f" + integrity sha512-2lKa1autuCy8x7KIEj9aVNbAb3aIMRFYIwN7mq/zD4pxgNIVgGlm+f6GKY4880EOF2Y3GktHYssRy7TAJQ2DyQ== + dependencies: + blakejs "^1.1.0" + buffer "^5.4.3" + err-code "^2.0.0" + js-sha3 "^0.8.0" + multihashes "^1.0.1" + murmurhash3js-revisited "^3.0.0" + +murmurhash3js-revisited@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/murmurhash3js-revisited/-/murmurhash3js-revisited-3.0.0.tgz#6bd36e25de8f73394222adc6e41fa3fac08a5869" + integrity sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g== + +murmurhash3js@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/murmurhash3js/-/murmurhash3js-3.0.1.tgz#3e983e5b47c2a06f43a713174e7e435ca044b998" + integrity sha1-Ppg+W0fCoG9DpxMXTn5DXKBEuZg= + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nan@^2.14.0, nan@^2.14.2: + version "2.15.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" + integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +natural-orderby@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016" + integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q== + +"ndjson@github:hugomrdias/ndjson#feat/readable-stream3": + version "1.5.0" + resolved "https://codeload.github.com/hugomrdias/ndjson/tar.gz/4db16da6b42e5b39bf300c3a7cde62abb3fa3a11" + dependencies: + json-stringify-safe "^5.0.1" + minimist "^1.2.0" + split2 "^3.1.0" + through2 "^3.0.0" + +neo-async@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +nock@^13.0.0: + version "13.1.3" + resolved "https://registry.yarnpkg.com/nock/-/nock-13.1.3.tgz#110b005965654a8ffb798e87bad18b467bff15f9" + integrity sha512-YKj0rKQWMGiiIO+Y65Ut8OEgYM3PplLU2+GAhnPmqZdBd6z5IskgdBqWmjzA6lH3RF0S2a3wiAlrMOF5Iv2Jeg== + dependencies: + debug "^4.1.0" + json-stringify-safe "^5.0.1" + lodash.set "^4.3.2" + propagate "^2.0.0" + +node-fetch@2.6.1, node-fetch@^2.3.0, node-fetch@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + +node-forge@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" + integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + +node-releases@^1.1.75: + version "1.1.75" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe" + integrity sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw== + +nodeify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nodeify/-/nodeify-1.0.1.tgz#64ab69a7bdbaf03ce107b4f0335c87c0b9e91b1d" + integrity sha1-ZKtpp7268DzhB7TwM1yHwLnpGx0= + dependencies: + is-promise "~1.0.0" + promise "~1.3.0" + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== + dependencies: + hosted-git-info "^4.0.1" + is-core-module "^2.5.0" + semver "^7.3.4" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^4.1.0: + version "4.5.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" + integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npm-run-path@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nullthrows@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" + integrity sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo= + +object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-inspect@^1.11.0, object-inspect@^1.9.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" + integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== + +object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-treeify@^1.1.4: + version "1.1.33" + resolved "https://registry.yarnpkg.com/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40" + integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A== + +object.assign@^4.1.0, object.assign@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" + +object.entries@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd" + integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.2" + +object.values@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" + integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.2" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onigasm@^2.2.5: + version "2.2.5" + resolved "https://registry.yarnpkg.com/onigasm/-/onigasm-2.2.5.tgz#cc4d2a79a0fa0b64caec1f4c7ea367585a676892" + integrity sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA== + dependencies: + lru-cache "^5.1.1" + +opencollective-postinstall@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" + integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== + +optimist@~0.3.5: + version "0.3.7" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" + integrity sha1-yQlBrVnkJzMokjB00s8ufLxuwNk= + dependencies: + wordwrap "~0.0.2" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + +ora@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-4.1.1.tgz#566cc0348a15c36f5f0e979612842e02ba9dddbc" + integrity sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A== + dependencies: + chalk "^3.0.0" + cli-cursor "^3.1.0" + cli-spinners "^2.2.0" + is-interactive "^1.0.0" + log-symbols "^3.0.0" + mute-stream "0.0.8" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +p-cancelable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-finally@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" + integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== + +p-limit@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json@^6.3.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" + integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== + dependencies: + got "^9.6.0" + registry-auth-token "^4.0.0" + registry-url "^5.0.0" + semver "^6.2.0" + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-filepath@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= + dependencies: + is-absolute "^1.0.0" + map-cache "^0.2.0" + path-root "^0.1.1" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +password-prompt@^1.0.7, password-prompt@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" + integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== + dependencies: + ansi-escapes "^3.1.0" + cross-spawn "^6.0.5" + +path-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" + integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= + dependencies: + path-root-regex "^0.1.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +peer-id@~0.12.2, peer-id@~0.12.3: + version "0.12.5" + resolved "https://registry.yarnpkg.com/peer-id/-/peer-id-0.12.5.tgz#b22a1edc5b4aaaa2bb830b265ba69429823e5179" + integrity sha512-3xVWrtIvNm9/OPzaQBgXDrfWNx63AftgFQkvqO6YSZy7sP3Fuadwwbn54F/VO9AnpyW/26i0WRQz9FScivXrmw== + dependencies: + async "^2.6.3" + class-is "^1.1.0" + libp2p-crypto "~0.16.1" + multihashes "~0.4.15" + +peer-info@~0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/peer-info/-/peer-info-0.15.1.tgz#21254a7c516d0dd046b150120b9aaf1b9ad02146" + integrity sha512-Y91Q2tZRC0CpSTPd1UebhGqniOrOAk/aj60uYUcWJXCoLTAnGu+4LJGoiay8ayudS6ice7l3SKhgL/cS62QacA== + dependencies: + mafmt "^6.0.2" + multiaddr "^6.0.3" + peer-id "~0.12.2" + unique-by "^1.0.0" + +pem-jwk@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pem-jwk/-/pem-jwk-2.0.0.tgz#1c5bb264612fc391340907f5c1de60c06d22f085" + integrity sha512-rFxu7rVoHgQ5H9YsP50dDWf0rHjreVA2z0yPiWr5WdH/UHb29hKtF7h6l8vNd1cbYR1t0QL+JKhW55a2ZV4KtA== + dependencies: + asn1.js "^5.0.1" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= + dependencies: + find-up "^2.1.0" + +pkginfo@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" + integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8= + +pluralize@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" + integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^1.13.5: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + +prettier@^2.1.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" + integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +progress@^2.0.0, progress@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-nodeify@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/promise-nodeify/-/promise-nodeify-3.0.1.tgz#f0f5d9720ee9ec71dd2bfa92667be504c10229c2" + integrity sha512-ghsSuzZXJX8iO7WVec2z7GI+Xk/EyiD+JZK7AZKhUqYfpLa/Zs4ylUD+CwwnKlG6G3HnkUPMAi6PO7zeqGKssg== + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +promise@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-1.3.0.tgz#e5cc9a4c8278e4664ffedc01c7da84842b040175" + integrity sha1-5cyaTIJ45GZP/twBx9qEhCsEAXU= + dependencies: + is-promise "~1" + +promisify-es6@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/promisify-es6/-/promisify-es6-1.0.3.tgz#b012668c4df3c965ce13daac2b3a4d1726a96346" + integrity sha512-N9iVG+CGJsI4b4ZGazjwLnxErD2d9Pe4DPvvXSxYA9tFNu8ymXME4Qs5HIQ0LMJpNM7zj+m0NlNnNeqFpKzqnA== + +propagate@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/propagate/-/propagate-2.0.1.tgz#40cdedab18085c792334e64f0ac17256d38f9a45" + integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag== + +protocol-buffers-schema@^3.3.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.5.2.tgz#38ad35ba768607a5ed2375f8db4c2ecc5ea293c8" + integrity sha512-LPzSaBYp/TcbuSlpGwqT5jR9kvJ3Zp5ic2N5c2ybx6XB/lSfEHq2D7ja8AgoxHoMD91wXFALJoXsvshKPuXyew== + +protons@^1.0.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/protons/-/protons-1.2.1.tgz#5f1e0db8b2139469cd1c3b4e332a4c2d95d0a218" + integrity sha512-2oqDyc/SN+tNcJf8XxrXhYL7sQn2/OMl8mSdD7NVGsWjMEmAbks4eDVnCyf0vAoRbBWyWTEXWk4D8XfuKVl3zg== + dependencies: + buffer "^5.5.0" + protocol-buffers-schema "^3.3.1" + signed-varint "^2.0.1" + varint "^5.0.0" + +psl@^1.1.28: + version "1.8.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + +pull-defer@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/pull-defer/-/pull-defer-0.2.3.tgz#4ee09c6d9e227bede9938db80391c3dac489d113" + integrity sha512-/An3KE7mVjZCqNhZsr22k1Tx8MACnUnHZZNPSJ0S62td8JtYr/AiRG42Vz7Syu31SoTLUzVIe61jtT/pNdjVYA== + +pull-stream@^3.2.3, pull-stream@^3.6.9: + version "3.6.14" + resolved "https://registry.yarnpkg.com/pull-stream/-/pull-stream-3.6.14.tgz#529dbd5b86131f4a5ed636fdf7f6af00781357ee" + integrity sha512-KIqdvpqHHaTUA2mCYcLG1ibEbu/LCKoJZsBWyv9lSYtPkJPBq8m3Hxa103xHi6D2thj5YXa0TqK3L3GUkwgnew== + +pull-to-stream@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pull-to-stream/-/pull-to-stream-0.1.1.tgz#fa2058528528e3542b81d6f17cbc42288508ff37" + integrity sha512-thZkMv6F9PILt9zdvpI2gxs19mkDrlixYKX6cOBxAW16i1NZH+yLAmF4r8QfJ69zuQh27e01JZP9y27tsH021w== + dependencies: + readable-stream "^3.1.1" + +pump@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" + integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +qqjs@^0.3.10: + version "0.3.11" + resolved "https://registry.yarnpkg.com/qqjs/-/qqjs-0.3.11.tgz#795b9f7d00807d75c391b1241b5be3077143d9ea" + integrity sha512-pB2X5AduTl78J+xRSxQiEmga1jQV0j43jOPs/MTgTLApGFEOn6NgdE2dEjp7nvDtjkIOZbvFIojAiYUx6ep3zg== + dependencies: + chalk "^2.4.1" + debug "^4.1.1" + execa "^0.10.0" + fs-extra "^6.0.1" + get-stream "^5.1.0" + glob "^7.1.2" + globby "^10.0.1" + http-call "^5.1.2" + load-json-file "^6.2.0" + pkg-dir "^4.2.0" + tar-fs "^2.0.0" + tmp "^0.1.0" + write-json-file "^4.1.1" + +qs@^6.5.2: + version "6.10.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" + integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg== + dependencies: + side-channel "^1.0.4" + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +ramda@^0.24.1: + version "0.24.1" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" + integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc= + +ramda@^0.25.0: + version "0.25.0" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" + integrity sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ== + +ramda@^0.26.1: + version "0.26.1" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06" + integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ== + +ramdasauce@^2.1.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ramdasauce/-/ramdasauce-2.1.3.tgz#acb45ecc7e4fc4d6f39e19989b4a16dff383e9c2" + integrity sha512-Ml3CPim4SKwmg5g9UI77lnRSeKr/kQw7YhQ6rfdMcBYy6DMlwmkEwQqjygJ3OhxPR+NfFfpjKl3Tf8GXckaqqg== + dependencies: + ramda "^0.24.1" + +rc@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +"readable-stream@2 || 3", readable-stream@^3.0.0, readable-stream@^3.0.1, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@~1.0.26-4: + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= + dependencies: + resolve "^1.1.6" + +redeyed@~2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" + integrity sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs= + dependencies: + esprima "~4.0.0" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpp@^3.0.0, regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +registry-auth-token@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" + integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== + dependencies: + rc "^1.2.8" + +registry-url@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" + integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + dependencies: + rc "^1.2.8" + +relay-compiler@11.0.2: + version "11.0.2" + resolved "https://registry.yarnpkg.com/relay-compiler/-/relay-compiler-11.0.2.tgz#e1e09a1c881d169a7a524ead728ad6a89c7bd4af" + integrity sha512-nDVAURT1YncxSiDOKa39OiERkAr0DUcPmlHlg+C8zD+EiDo2Sgczf2R6cDsN4UcDvucYtkLlDLFErPwgLs8WzA== + dependencies: + "@babel/core" "^7.0.0" + "@babel/generator" "^7.5.0" + "@babel/parser" "^7.0.0" + "@babel/runtime" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + babel-preset-fbjs "^3.3.0" + chalk "^4.0.0" + fb-watchman "^2.0.0" + fbjs "^3.0.0" + glob "^7.1.1" + immutable "~3.7.6" + invariant "^2.2.4" + nullthrows "^1.1.1" + relay-runtime "11.0.2" + signedsource "^1.0.0" + yargs "^15.3.1" + +relay-runtime@11.0.2: + version "11.0.2" + resolved "https://registry.yarnpkg.com/relay-runtime/-/relay-runtime-11.0.2.tgz#c3650477d45665b9628b852b35f203e361ad55e8" + integrity sha512-xxZkIRnL8kNE1cxmwDXX8P+wSeWLR+0ACFyAiAhvfWWAyjXb+bhjJ2FSsRGlNYfkqaTNEuDqpnodQV1/fF7Idw== + dependencies: + "@babel/runtime" "^7.0.0" + fbjs "^3.0.0" + invariant "^2.2.4" + +remedial@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/remedial/-/remedial-1.0.8.tgz#a5e4fd52a0e4956adbaf62da63a5a46a78c578a0" + integrity sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg== + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +remove-trailing-spaces@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz#4354d22f3236374702f58ee373168f6d6887ada7" + integrity sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA== + +replaceall@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/replaceall/-/replaceall-0.1.6.tgz#81d81ac7aeb72d7f5c4942adf2697a3220688d8e" + integrity sha1-gdgax663LX9cSUKt8ml6MiBojY4= + +request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +resolve-from@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0, resolve@^1.8.1: + version "1.20.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== + dependencies: + is-core-module "^2.2.0" + path-parse "^1.0.6" + +responselike@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + dependencies: + lowercase-keys "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.0, rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rsa-pem-to-jwk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/rsa-pem-to-jwk/-/rsa-pem-to-jwk-1.1.3.tgz#245e76bdb7e7234cfee7ca032d31b54c38fab98e" + integrity sha1-JF52vbfnI0z+58oDLTG1TDj6uY4= + dependencies: + object-assign "^2.0.0" + rsa-unpack "0.0.6" + +rsa-unpack@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/rsa-unpack/-/rsa-unpack-0.0.6.tgz#f50ebd56a628378e631f297161026ce9ab4eddba" + integrity sha1-9Q69VqYoN45jHylxYQJs6atO3bo= + dependencies: + optimist "~0.3.5" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^6.3.3, rxjs@^6.6.0: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scuid@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/scuid/-/scuid-1.1.0.tgz#d3f9f920956e737a60f72d0e4ad280bf324d5dab" + integrity sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg== + +secp256k1@^3.6.2: + version "3.8.0" + resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-3.8.0.tgz#28f59f4b01dbee9575f56a47034b7d2e3b3b352d" + integrity sha512-k5ke5avRZbtl9Tqx/SA7CbY3NF6Ro+Sj9cZxezFzuBlLDmyqPiL8hJJ+EmzD8Ig4LUDByHJ3/iPOVoRixs/hmw== + dependencies: + bindings "^1.5.0" + bip66 "^1.1.5" + bn.js "^4.11.8" + create-hash "^1.2.0" + drbg.js "^1.0.1" + elliptic "^6.5.2" + nan "^2.14.0" + safe-buffer "^5.1.2" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + +sentence-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" + integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shelljs@^0.8.4: + version "0.8.4" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" + integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shiki@^0.9.3: + version "0.9.10" + resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.10.tgz#feb8d4938b5dd71c5c8b1c1c7cd28fbbd37da087" + integrity sha512-xeM7Oc6hY+6iW5O/T5hor8ul7mEprzyl5y4r5zthEHToQNw7MIhREMgU3r2gKDB0NaMLNrkcEQagudCdzE13Lg== + dependencies: + json5 "^2.2.0" + onigasm "^2.2.5" + vscode-textmate "5.2.0" + +shx@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.3.tgz#681a88c7c10db15abe18525349ed474f0f1e7b9f" + integrity sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.4" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + +signed-varint@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/signed-varint/-/signed-varint-2.0.1.tgz#50a9989da7c98c2c61dad119bc97470ef8528129" + integrity sha1-UKmYnafJjCxh2tEZvJdHDvhSgSk= + dependencies: + varint "~5.0.0" + +signedsource@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a" + integrity sha1-HdrOSYF5j5O9gzlzgD2A1S6TrWo= + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +sort-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" + integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== + dependencies: + is-plain-obj "^2.0.0" + +source-map-support@^0.5.11, source-map-support@^0.5.17: + version "0.5.19" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.5.0: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.10" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b" + integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA== + +split-ca@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split-ca/-/split-ca-1.0.1.tgz#6c83aff3692fa61256e0cd197e05e9de157691a6" + integrity sha1-bIOv82kvphJW4M0ZfgXp3hV2kaY= + +split2@^3.1.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" + integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== + dependencies: + readable-stream "^3.0.0" + +sponge-case@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sponge-case/-/sponge-case-1.0.1.tgz#260833b86453883d974f84854cdb63aecc5aef4c" + integrity sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA== + dependencies: + tslib "^2.0.3" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +stable@~0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stdout-stderr@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/stdout-stderr/-/stdout-stderr-0.1.13.tgz#54e3450f3d4c54086a49c0c7f8786a44d1844b6f" + integrity sha512-Xnt9/HHHYfjZ7NeQLvuQDyL1LnbsbddgMFKCuaQKwGCdJm8LnstZIXop+uOY36UR1UXXoHXfMbC1KlVdVd2JLA== + dependencies: + debug "^4.1.1" + strip-ansi "^6.0.0" + +stream-to-pull-stream@^1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/stream-to-pull-stream/-/stream-to-pull-stream-1.7.3.tgz#4161aa2d2eb9964de60bfa1af7feaf917e874ece" + integrity sha512-6sNyqJpr5dIOQdgNy/xcDWwDuzAsAwVzhzrWlAPAQ7Lkjx/rv0wgvxEyKwTq6FmNd5rjTrELt/CLmaSw7crMGg== + dependencies: + looper "^3.0.0" + pull-stream "^3.2.3" + +string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz#ad4397ae4ac53fe6c91d1402ad6f6a52862c7152" + integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" + integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.0" + +string.prototype.trimend@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" + integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +string.prototype.trimstart@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" + integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +string_decoder@^1.1.1, string_decoder@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +subscriptions-transport-ws@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.10.0.tgz#91fce775b31935e4ca995895a40942268877d23f" + integrity sha512-k28LhLn3abJ1mowFW+LP4QGggE0e3hrk55zXbMHyAeZkCUYtC0owepiwqMD3zX8DglQVaxnhE760pESrNSEzpg== + dependencies: + backo2 "^1.0.2" + eventemitter3 "^3.1.0" + iterall "^1.2.1" + symbol-observable "^1.0.4" + ws "^5.2.0 || ^6.0.0 || ^7.0.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.0.0, supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7" + integrity sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw== + dependencies: + has-flag "^2.0.0" + supports-color "^5.0.0" + +supports-hyperlinks@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +swap-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-2.0.2.tgz#671aedb3c9c137e2985ef51c51f9e98445bf70d9" + integrity sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw== + dependencies: + tslib "^2.0.3" + +symbol-observable@^1.0.4, symbol-observable@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +sync-fetch@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/sync-fetch/-/sync-fetch-0.3.0.tgz#77246da949389310ad978ab26790bb05f88d1335" + integrity sha512-dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g== + dependencies: + buffer "^5.7.0" + node-fetch "^2.6.1" + +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== + dependencies: + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" + +tar-fs@^2.0.0, tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-fs@~1.16.3: + version "1.16.3" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" + integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== + dependencies: + chownr "^1.0.1" + mkdirp "^0.5.1" + pump "^1.0.0" + tar-stream "^1.1.2" + +tar-stream@^1.1.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" + integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== + dependencies: + bl "^1.0.0" + buffer-alloc "^1.2.0" + end-of-stream "^1.0.0" + fs-constants "^1.0.0" + readable-stream "^2.3.0" + to-buffer "^1.1.1" + xtend "^4.0.0" + +tar-stream@^2.0.1, tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +through2@^3.0.0, through2@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4" + integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== + dependencies: + inherits "^2.0.4" + readable-stream "2 || 3" + +"through@>=2.2.7 <3", through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +title-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982" + integrity sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA== + dependencies: + tslib "^2.0.3" + +tmp-promise@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.2.tgz#6e933782abff8b00c3119d63589ca1fb9caaa62a" + integrity sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA== + dependencies: + tmp "^0.2.0" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" + integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== + dependencies: + rimraf "^2.6.3" + +tmp@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + +to-buffer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" + integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-readable-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +treeify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/treeify/-/treeify-1.1.0.tgz#4e31c6a463accd0943879f30667c4fdaff411bb8" + integrity sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A== + +ts-log@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/ts-log/-/ts-log-2.2.3.tgz#4da5640fe25a9fb52642cd32391c886721318efb" + integrity sha512-XvB+OdKSJ708Dmf9ore4Uf/q62AYDTzFcAdxc8KNML1mmAWywRFVt/dn1KYJH8Agt5UJNujfM3znU5PxgAzA2w== + +ts-node@^9, ts-node@^9.1.1: + version "9.1.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d" + integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg== + dependencies: + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + source-map-support "^0.5.17" + yn "3.1.1" + +tsconfig-paths@^3.11.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz#954c1fe973da6339c78e06b03ce2e48810b65f36" + integrity sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.0" + strip-bom "^3.0.0" + +tslib@^1, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@~2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tsutils@^3.17.1: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +tweetnacl@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +typedoc-default-themes@^0.12.10: + version "0.12.10" + resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.12.10.tgz#614c4222fe642657f37693ea62cad4dafeddf843" + integrity sha512-fIS001cAYHkyQPidWXmHuhs8usjP5XVJjWB8oZGqkTowZaz3v7g3KDZeeqE82FBrmkAnIBOY3jgy7lnPnqATbA== + +typedoc-neo-theme@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/typedoc-neo-theme/-/typedoc-neo-theme-1.1.1.tgz#d47d4a01b8ee937336d01fd89609fefb4a371972" + integrity sha512-J20vYx72bGdhTDMFPK6vhtsisKwxm4B+O6H2MTCb3/gwXRLFWFUk+N7I78t5LhHKhUcM0nRDidZykQ5r/0AY6w== + dependencies: + lunr "^2.3.8" + typedoc "~0.20.13" + +typedoc@^0.20.36, typedoc@~0.20.13: + version "0.20.37" + resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.20.37.tgz#9b9417149cb815e3d569fc300b5d2c6e4e6c5d93" + integrity sha512-9+qDhdc4X00qTNOtii6QX2z7ndAeWVOso7w3MPSoSJdXlVhpwPfm1yEp4ooKuWA9fiQILR8FKkyjmeqa13hBbw== + dependencies: + colors "^1.4.0" + fs-extra "^9.1.0" + handlebars "^4.7.7" + lodash "^4.17.21" + lunr "^2.3.9" + marked "~2.0.3" + minimatch "^3.0.0" + progress "^2.0.3" + shelljs "^0.8.4" + shiki "^0.9.3" + typedoc-default-themes "^0.12.10" + +typescript@^4.2.4: + version "4.4.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.2.tgz#6d618640d430e3569a1dfb44f7d7e600ced3ee86" + integrity sha512-gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ== + +ua-parser-js@^0.7.18: + version "0.7.28" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31" + integrity sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g== + +uglify-js@^3.1.4: + version "3.14.1" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.1.tgz#e2cb9fe34db9cb4cf7e35d1d26dfea28e09a7d06" + integrity sha512-JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g== + +unbox-primitive@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" + integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== + dependencies: + function-bind "^1.1.1" + has-bigints "^1.0.1" + has-symbols "^1.0.2" + which-boxed-primitive "^1.0.2" + +unc-path-regex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= + +unique-by@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-by/-/unique-by-1.0.0.tgz#5220c86ba7bc572fb713ad74651470cb644212bd" + integrity sha1-UiDIa6e8Vy+3E610ZRRwy2RCEr0= + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +unixify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unixify/-/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090" + integrity sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA= + dependencies: + normalize-path "^2.1.1" + +upper-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" + integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== + dependencies: + tslib "^2.0.3" + +upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" + integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== + dependencies: + tslib "^2.0.3" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + dependencies: + prepend-http "^2.0.0" + +ursa-optional@~0.10.0: + version "0.10.2" + resolved "https://registry.yarnpkg.com/ursa-optional/-/ursa-optional-0.10.2.tgz#bd74e7d60289c22ac2a69a3c8dea5eb2817f9681" + integrity sha512-TKdwuLboBn7M34RcvVTuQyhvrA8gYKapuVdm0nBP0mnBc7oECOfUQZrY91cefL3/nm64ZyrejSRrhTVdX7NG/A== + dependencies: + bindings "^1.5.0" + nan "^2.14.2" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +uuid@^3.3.2, uuid@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +valid-url@1.0.9, valid-url@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" + integrity sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA= + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +value-or-promise@1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.10.tgz#5bf041f1e9a8e7043911875547636768a836e446" + integrity sha512-1OwTzvcfXkAfabk60UVr5NdjtjJ0Fg0T5+B1bhxtrOEwSH2fe8y4DnLgoksfCyd8yZCOQQHB0qLMQnwgCjbXLQ== + +varint@^5.0.0, varint@~5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/varint/-/varint-5.0.2.tgz#5b47f8a947eb668b848e034dcfa87d0ff8a7f7a4" + integrity sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vscode-textmate@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" + integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + +whatwg-fetch@^3.4.1: + version "3.6.2" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" + integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.0, which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrap-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-4.0.0.tgz#b3570d7c70156159a2d42be5cc942e957f7b1131" + integrity sha512-uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg== + dependencies: + ansi-styles "^3.2.0" + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +write-json-file@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-4.3.0.tgz#908493d6fd23225344af324016e4ca8f702dd12d" + integrity sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ== + dependencies: + detect-indent "^6.0.0" + graceful-fs "^4.1.15" + is-plain-obj "^2.0.0" + make-dir "^3.0.0" + sort-keys "^4.0.0" + write-file-atomic "^3.0.0" + +ws@8.2.1: + version "8.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.2.1.tgz#bdd92b3c56fdb47d2379b5ae534281922cc5bd12" + integrity sha512-XkgWpJU3sHU7gX8f13NqTn6KQ85bd1WU7noBHTT8fSohx7OS1TPY8k+cyRPCzFkia7C4mM229yeHr1qK9sM4JQ== + +"ws@^5.2.0 || ^6.0.0 || ^7.0.0", ws@^7.4.5: + version "7.5.4" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.4.tgz#56bfa20b167427e138a7795de68d134fe92e21f9" + integrity sha512-zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg== + +xtend@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml-ast-parser@^0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== + +yaml@^1.10.0, yaml@^1.10.2, yaml@^1.5.1, yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^16.1.0: + version "16.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" + integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^17.0.0: + version "17.1.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.1.1.tgz#c2a8091564bdb196f7c0a67c1d12e5b85b8067ba" + integrity sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==