diff --git a/.github/workflows/badges.yml b/.github/workflows/badges.yml index df4197e..08e6b7b 100644 --- a/.github/workflows/badges.yml +++ b/.github/workflows/badges.yml @@ -21,6 +21,22 @@ jobs: maxColorRange: 100 minColorRange: 0 + svg-badge: + name: Create SVG Badge + runs-on: ubuntu-latest + steps: + - name: Create the Badge + uses: schneegans/dynamic-badges-action@master + with: + auth: ${{ secrets.GIST_SECRET }} + gistID: 2ab8f1d386f13aaebccbd87dac94068d + filename: badge.svg + label: This is + message: an SVG badge + color: red + labelColor: blue + style: flat-square + color-range-badges: name: "Create Color Range Badges" runs-on: ubuntu-latest @@ -56,4 +72,3 @@ jobs: minColorRange: 50 maxColorRange: 90 valColorRange: ${{ matrix.total }} - diff --git a/README.md b/README.md index 0879270..cdc9f23 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Dynamic Badges Action +# 🏷️ Dynamic Badges Action [![badges](https://github.com/Schneegans/dynamic-badges-action/workflows/Build%20Badges/badge.svg)](https://github.com/Schneegans/dynamic-badges-action/actions) [![license](https://img.shields.io/badge/License-MIT-purple.svg)](LICENSE) @@ -7,9 +7,10 @@ This action allows you to create badges for your README.md with [shields.io](https://shields.io) which may change with every commit. To do this, this action does not need to push anything to your repository! This action supports all [configuration options of shields.io/endpoint](https://shields.io/endpoint) and can be used in various ways: -* Show custom CI statistics from GitHub actions, such as code coverage or detailed test results. -* Show metadata of your repository such as [lines of code, comment line percentage](https://schneegans.github.io/tutorials/2022/04/18/badges), ... -* Basically anything which may change from commit to commit! + +- Show custom CI statistics from GitHub actions, such as code coverage or detailed test results. +- Show metadata of your repository such as [lines of code, comment line percentage](https://schneegans.github.io/tutorials/2022/04/18/badges), ... +- Basically anything which may change from commit to commit! ## How Does It Work? @@ -25,33 +26,51 @@ This JSON object may look like this: } ``` -This JSON object is then uploaded as a file to a *gist* ([click here for an example](https://gist.github.com/Schneegans/2ab8f1d386f13aaebccbd87dac94068d)) and can be transformed to a badge like [![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json)](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json) with the **shields.io/endpoint**. Here is the URL of this example badge: +This JSON object is then uploaded to a _gist_ ([click here for an example](https://gist.github.com/Schneegans/2ab8f1d386f13aaebccbd87dac94068d)) and automatically transformed to [![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json)](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json) with the **shields.io/endpoint**. + +
Show Markdown of this Badge! +```md +![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json) ``` -https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/hello-world.json + +
+ +### SVG Mode + +The action also supports an _SVG mode_ in which the badge is created directly by the action and uploaded as image to the gist. +This mode does not support all features of shields.io but is useful if you cannot use shields.io for some reason. +[![badge](https://gist.githubusercontent.com/Schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/badge.svg)](https://gist.githubusercontent.com/Schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/badge.svg) which is directly stored in a gist. + +
Show Markdown of this Badge! + +```md +![badge](https://gist.githubusercontent.com/Schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/badge.svg) ``` -## Configuration +
+ +## 🛠️ Configuration 1. Head over to [gist.github.com](https://gist.github.com/) and create a new gist. You can name the file `test.json`, but this can be changed later as well. You will need the ID of the gist (this is the long alphanumerical part of its URL) later. -2. Navigate to [github.com/settings/tokens](https://github.com/settings/tokens) and create a new token with the *gist* scope. -3. Go to the *Secrets* page of the settings of your repository (Settings > Secrets > Actions) and add this token as a new secret. You can give it any name, for example `GIST_SECRET`. **If you use Dependabot to automatically update dependencies of your repository, you also have to add this secret to Dependabot's secrets (Settings > Secrets > Dependabot).** +2. Navigate to [github.com/settings/tokens](https://github.com/settings/tokens) and create a new token with the _gist_ scope. +3. Go to the _Secrets_ page of the settings of your repository (Settings > Secrets > Actions) and add this token as a new secret. You can give it any name, for example `GIST_SECRET`. **If you use Dependabot to automatically update dependencies of your repository, you also have to add this secret to Dependabot's secrets (Settings > Secrets > Dependabot).** 4. Add something like the following to your workflow: + ```yml - name: Create Awesome Badge uses: schneegans/dynamic-badges-action@v1.6.0 with: auth: ${{ secrets.GIST_SECRET }} gistID: - filename: test.json + filename: test.json # Use test.svg if you want to use the SVG mode. label: Hello message: World color: orange ``` Once the action is executed, go to your gist. -There should be a new file called `test.json`. -You can view the raw content of this file at `https://gist.githubusercontent.com///raw/test.json`. +There should be a new file called `test.json` (or `test.svg` if you used SVG mode). Embed the badge with: ```markdown @@ -60,39 +79,37 @@ Embed the badge with: ### Required Input Parameters -Parameter | Description -----------|------------ -`auth` | A secret token with the *gist* scope. -`gistID` | The ID of the target gist. Something like `8f6459c2417de7534f64d98360dde866`. -`filename` | The target filename - each gist may contain several files. This should have the `.json` extension. - +| Parameter | Description | +| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `auth` | A secret token with the _gist_ scope. | +| `gistID` | The ID of the target gist. Something like `8f6459c2417de7534f64d98360dde866`. | +| `filename` | The target filename - each gist may contain several files. This should have a `.json` extension if you want to use **shields.io/endpoint** or an `.svg` extension if you want to use the **SVG mode** described above. | ### Optional Input Parameters -Parameter | Description -----------|------------ -`forceUpdate` | Default is `false`. If set to `true`, the gist will be updated even if the content did not change. - +| Parameter | Description | Supported in SVG Mode | +| ------------- | -------------------------------------------------------------------------------------------------- | --------------------- | +| `forceUpdate` | Default is `false`. If set to `true`, the gist will be updated even if the content did not change. | ✅ | ### Shields.io Parameters (optional) All these parameters are optional. They are directly passed to [shields.io](https://shields.io). See the [official documentation](https://shields.io/endpoint) for more detailed explanations. -Parameter | Description -----------|------------ -`label` | Required. The left text of the badge. -`message` | Required. The right text of the badge. -`labelColor` | The left color of the badge. -`color` | The right color of the badge. For custom colors wrap color string in quotes `"#bf155b"`. This parameter is ignored if the `valColorRange`, `maxColorRange`, and `minColorRange` are set. -`isError` | The color will be red and cannot be overridden. -`namedLogo` | A logo name from [simpleicons.org](http://simpleicons.org/). -`logoSvg` | An svg-string to be used as logo. -`logoColor` | The color for the logo. -`logoWidth` | The space allocated for the logo. -`logoPosition` | The position of the logo. -`style` | The style like "flat" or "social". -`cacheSeconds` | The cache lifetime in seconds (must be greater than 300). +| Parameter | Description | Supported in SVG Mode | +| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| `label` | Required. The left text of the badge. | ✅ | +| `message` | Required. The right text of the badge. | ✅ | +| `labelColor` | The left color of the badge. | ✅ | +| `color` | The right color of the badge. For custom colors wrap color string in quotes `"#bf155b"`. This parameter is ignored if the `valColorRange`, `maxColorRange`, and `minColorRange` are set. | ✅ | +| `isError` | The color will be red and cannot be overridden. | | +| `namedLogo` | A logo name from [simpleicons.org](http://simpleicons.org/). | | +| `logoSvg` | An svg-string to be used as logo. | | +| `logoColor` | The color for the logo. | | +| `logoWidth` | The space allocated for the logo. | | +| `logoPosition` | The position of the logo. | | +| `style` | The style like "flat" or "social". | ✅ | +| `cacheSeconds` | The cache lifetime in seconds (must be greater than 300). | | ### Color Range Parameters (optional) @@ -112,15 +129,14 @@ Starting with version 1.3.0 of this action, the color of the right side of the b For this, the following parameters can be used. -Parameter | Description -----------|------------ -`valColorRange` | A numerical value used to define the message color. Usually this should be between `maxColorRange` and `minColorRange`. This is required if you want to use the color range feature. -`maxColorRange` | If `valColorRange` assumes this value, the badge will be green. This is required if you want to use the color range feature. -`minColorRange` | If `valColorRange` assumes this value, the badge will be red. This is required if you want to use the color range feature. -`invertColorRange` | If the range should be inverted, causing a smaller value to have green color. Defaults to `false`. -`colorRangeSaturation` | Saturation used by the color range feature. Defaults to 100. -`colorRangeLightness` | Lightness used by the color range feature. Defaults to 40. - +| Parameter | Description | Supported in SVG Mode | +| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------- | +| `valColorRange` | A numerical value used to define the message color. Usually this should be between `maxColorRange` and `minColorRange`. This is required if you want to use the color range feature. | ✅ | +| `maxColorRange` | If `valColorRange` assumes this value, the badge will be green. This is required if you want to use the color range feature. | ✅ | +| `minColorRange` | If `valColorRange` assumes this value, the badge will be red. This is required if you want to use the color range feature. | ✅ | +| `invertColorRange` | If the range should be inverted, causing a smaller value to have green color. Defaults to `false`. | ✅ | +| `colorRangeSaturation` | Saturation used by the color range feature. Defaults to 100. | ✅ | +| `colorRangeLightness` | Lightness used by the color range feature. Defaults to 40. | ✅ | ### Using Environment Variables as Parameters [![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d/raw/answer.json)](https://gist.githubusercontent.com/schneegans/2ab8f1d386f13aaebccbd87dac94068d) @@ -148,7 +164,7 @@ For all values in between, the color will be interpolated. ## Contributing to Dynamic Badges Action -Whenever you encounter a :beetle: **bug** or have :tada: **feature request**, +Whenever you encounter a :beetle: **bug** or have :tada: **feature request**, report this via [Github issues](https://github.com/schneegans/dynamic-badges-action/issues). We are happy to receive contributions in the form of **pull requests** via Github. @@ -156,22 +172,22 @@ Feel free to fork the repository, implement your changes and create a merge requ ### Git Commit Messages -Commits should start with a Capital letter and should be written in present tense (e.g. __:tada: Add cool new feature__ instead of __:tada: Added cool new feature__). +Commits should start with a Capital letter and should be written in present tense (e.g. **:tada: Add cool new feature** instead of **:tada: Added cool new feature**). You should also start your commit message with **one** applicable emoji. This does not only look great but also makes you rethink what to add to a commit. Make many but small commits! -Emoji | Description -------|------------ -:tada: `:tada:` | When you added a cool new feature. -:wrench: `:wrench:` | When you refactored / improved a small piece of code. -:hammer: `:hammer:` | When you refactored / improved large parts of the code. -:sparkles: `:sparkles:` | When you applied clang-format. -:art: `:art:` | When you improved / added assets like themes. -:rocket: `:rocket:` | When you improved performance. -:memo: `:memo:` | When you wrote documentation. -:beetle: `:beetle:` | When you fixed a bug. -:twisted_rightwards_arrows: `:twisted_rightwards_arrows:` | When you merged a branch. -:fire: `:fire:` | When you removed something. -:truck: `:truck:` | When you moved / renamed something. +| Emoji | Description | +| --------------------------------------------------------- | ------------------------------------------------------- | +| :tada: `:tada:` | When you added a cool new feature. | +| :wrench: `:wrench:` | When you refactored / improved a small piece of code. | +| :hammer: `:hammer:` | When you refactored / improved large parts of the code. | +| :sparkles: `:sparkles:` | When you applied clang-format. | +| :art: `:art:` | When you improved / added assets like themes. | +| :rocket: `:rocket:` | When you improved performance. | +| :memo: `:memo:` | When you wrote documentation. | +| :beetle: `:beetle:` | When you fixed a bug. | +| :twisted_rightwards_arrows: `:twisted_rightwards_arrows:` | When you merged a branch. | +| :fire: `:fire:` | When you removed something. | +| :truck: `:truck:` | When you moved / renamed something. | ### Version Numbers diff --git a/action.yml b/action.yml index 960636d..90291f1 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,7 @@ inputs: description: 'The ID of the gist to use' required: true filename: - description: 'The *.json filename of the badge data' + description: 'The *.json or *.svg filename of the badge data' required: true label: description: 'The left text of the badge' @@ -72,5 +72,5 @@ inputs: description: 'Lightness used by the color range feature. Defaults to 40.' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/changelog.md b/changelog.md index 0e87e41..e1b9024 100644 --- a/changelog.md +++ b/changelog.md @@ -1,13 +1,21 @@ # Changelog of the Dynamic Badges Action +## [Dynamic Badges Action 1.7.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.7.0) + +**Release Date:** TBD + +#### Changes + +- **SVG Mode:** If your gist filename ends with `.svg` instead of `.json`, the action will now generate an SVG badge instead of a JSON file. This is useful if you cannot use shields.io for some reason. However, this SVG mode does not support all features of shields.io. Thanks to [@runarberg](https://github.com/runarberg) for this contribution! +- The action now runs on Node 20 instead of Node 16. + ## [Dynamic Badges Action 1.6.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.6.0) **Release Date:** 2022-10-13 #### Changes -* The action now runs on Node 16 instead of the deprecated Node 12. - +- The action now runs on Node 16 instead of the deprecated Node 12. ## [Dynamic Badges Action 1.5.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.5.0) @@ -15,9 +23,9 @@ #### Changes -* The gist is now not updated anymore if the content did not change. This prevents many gist revisions without actual changes. You can restore the original behavior by setting the optional `forceUpdate` parameter to `true`. A BIG thanks to [@MishaKav](https://github.com/MishaKav) for this contribution! -* Example color range badges have been added to the README. -* All node dependencies have been updated. +- The gist is now not updated anymore if the content did not change. This prevents many gist revisions without actual changes. You can restore the original behavior by setting the optional `forceUpdate` parameter to `true`. A BIG thanks to [@MishaKav](https://github.com/MishaKav) for this contribution! +- Example color range badges have been added to the README. +- All node dependencies have been updated. ## [Dynamic Badges Action 1.4.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.4.0) @@ -25,7 +33,7 @@ #### Changes -* Fixed a bug which caused the action to fail if the value for the automatic color range was out of bounds. Thanks to [@LucasWolfgang](https://github.com/LucasWolfgang) for this fix! +- Fixed a bug which caused the action to fail if the value for the automatic color range was out of bounds. Thanks to [@LucasWolfgang](https://github.com/LucasWolfgang) for this fix! ## [Dynamic Badges Action 1.3.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.3.0) @@ -33,7 +41,7 @@ #### Changes -* Added the possibility to generate the badge color automatically between red and green based on a numerical value and its bounds. Thanks to [@LucasWolfgang](https://github.com/LucasWolfgang) for this contribution! +- Added the possibility to generate the badge color automatically between red and green based on a numerical value and its bounds. Thanks to [@LucasWolfgang](https://github.com/LucasWolfgang) for this contribution! ## [Dynamic Badges Action 1.2.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.2.0) @@ -41,9 +49,8 @@ #### Changes -* The action does not log the response of writing the Gist anymore. -* Added this changelog. - +- The action does not log the response of writing the Gist anymore. +- Added this changelog. ## [Dynamic Badges Action 1.1.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.1.0) @@ -51,9 +58,8 @@ #### Changes -* The action now logs an error message when writing the Gist failed. -* Used new API for setting environment variables in the README.md examples. - +- The action now logs an error message when writing the Gist failed. +- Used new API for setting environment variables in the README.md examples. ## [Dynamic Badges Action 1.0.0](https://github.com/Schneegans/dynamic-badges-action/tree/v1.0.0) @@ -61,5 +67,4 @@ #### Changes -* Initial publication on GitHub. - +- Initial publication on GitHub. diff --git a/index.js b/index.js index 0cbfc22..3faf218 100644 --- a/index.js +++ b/index.js @@ -4,97 +4,82 @@ // Copyright: (c) 2020 Simon Schneegans // ////////////////////////////////////////////////////////////////////////////////////////// -const core = require('@actions/core'); -const http = require('https'); - -// Performs an HTTP request and returns a Promise accordingly. See docs of -// http.request() for the available options. -function doRequest(options, data) { - return new Promise((resolve, reject) => { - const req = http.request(options, res => { - res.setEncoding('utf8'); - let responseBody = ''; - - res.on('data', (chunk) => { - responseBody += chunk; - }); - - res.on('end', () => { - const {statusCode, statusMessage} = res; - resolve({statusCode, statusMessage, body: JSON.parse(responseBody)}); - }); - }); +import core from '@actions/core'; +import { makeBadge } from 'badge-maker'; - req.on('error', (err) => { - reject(err); - }); - - req.write(data) - req.end(); - }); -} +const gistUrl = new URL( + core.getInput('gistID'), + 'https://api.github.com/gists/' +); // This uses the method above to update a gist with the given data. The user agent is // required as defined in https://developer.github.com/v3/#user-agent-required -function updateGist(data) { - const updateGistOptions = { - host: 'api.github.com', - path: '/gists/' + core.getInput('gistID'), +async function updateGist(body) { + const headers = new Headers([ + ['Content-Type', 'application/json'], + ['Content-Length', body.length], + ['User-Agent', 'Schneegans'], + ['Authorization', `token ${core.getInput('auth')}`], + ]); + + const response = await fetch(gistUrl, { method: 'POST', - headers: { - 'Content-Type': 'application/json', - 'Content-Length': data.length, - 'User-Agent': 'Schneegans', - 'Authorization': 'token ' + core.getInput('auth'), - } - }; - - doRequest(updateGistOptions, data).then(res => { - if (res.statusCode < 200 || res.statusCode >= 400) { - core.setFailed( - 'Failed to create gist, response status code: ' + res.statusCode + - ', status message: ' + res.statusMessage); - } else { - console.log('Success!'); - } + headers, + body, }); + + if (!response.ok) { + console.log(await response.text()); + core.setFailed( + `Failed to create gist, response status code: ${response.status} ${response.statusText}` + ); + + return; + } + + console.log('Success!'); } // We wrap the entire action in a try / catch block so we can set it to "failed" if // something goes wrong. try { - // This object will be stringified and uploaded to the gist. The schemaVersion, label // and message attributes are always required. All others are optional and added to the // content object only if they are given to the action. - let content = { - schemaVersion: 1, + let data = { label: core.getInput('label'), - message: core.getInput('message') + message: core.getInput('message'), }; + const filename = core.getInput('filename'); + const isSvgFile = filename.endsWith('.svg'); + + if (!isSvgFile) { + data.schemaVersion = 1; + } + // Compute the message color based on the given inputs. - const color = core.getInput('color'); - const valColorRange = core.getInput('valColorRange'); - const minColorRange = core.getInput('minColorRange'); - const maxColorRange = core.getInput('maxColorRange'); - const invertColorRange = core.getInput('invertColorRange'); + const color = core.getInput('color'); + const valColorRange = core.getInput('valColorRange'); + const minColorRange = core.getInput('minColorRange'); + const maxColorRange = core.getInput('maxColorRange'); + const invertColorRange = core.getInput('invertColorRange'); const colorRangeSaturation = core.getInput('colorRangeSaturation'); - const colorRangeLightness = core.getInput('colorRangeLightness'); + const colorRangeLightness = core.getInput('colorRangeLightness'); if (minColorRange != '' && maxColorRange != '' && valColorRange != '') { const max = parseFloat(maxColorRange); const min = parseFloat(minColorRange); - let val = parseFloat(valColorRange); + let val = parseFloat(valColorRange); if (val < min) val = min; if (val > max) val = max; let hue = 0; if (invertColorRange == '') { - hue = Math.floor((val - min) / (max - min) * 120); + hue = Math.floor(((val - min) / (max - min)) * 120); } else { - hue = Math.floor((max - val) / (max - min) * 120); + hue = Math.floor(((max - val) / (max - min)) * 120); } let sat = 100; @@ -107,116 +92,122 @@ try { lig = parseFloat(colorRangeLightness); } - content.color = 'hsl(' + hue + ', ' + sat + '%, ' + lig + '%)'; - + data.color = 'hsl(' + hue + ', ' + sat + '%, ' + lig + '%)'; } else if (color != '') { - - content.color = color; + data.color = color; } // Get all optional attributes and add them to the content object if given. - const labelColor = core.getInput('labelColor'); - const isError = core.getInput('isError'); - const namedLogo = core.getInput('namedLogo'); - const logoSvg = core.getInput('logoSvg'); - const logoColor = core.getInput('logoColor'); - const logoWidth = core.getInput('logoWidth'); + const labelColor = core.getInput('labelColor'); + const isError = core.getInput('isError'); + const namedLogo = core.getInput('namedLogo'); + const logoSvg = core.getInput('logoSvg'); + const logoColor = core.getInput('logoColor'); + const logoWidth = core.getInput('logoWidth'); const logoPosition = core.getInput('logoPosition'); - const style = core.getInput('style'); + const style = core.getInput('style'); const cacheSeconds = core.getInput('cacheSeconds'); - const filename = core.getInput('filename'); if (labelColor != '') { - content.labelColor = labelColor; + data.labelColor = labelColor; } - if (isError != '') { - content.isError = isError; + if (!isSvgFile && isError != '') { + data.isError = isError; } - if (namedLogo != '') { - content.namedLogo = namedLogo; + if (!isSvgFile && namedLogo != '') { + data.namedLogo = namedLogo; } - if (logoSvg != '') { - content.logoSvg = logoSvg; + if (!isSvgFile && logoSvg != '') { + data.logoSvg = logoSvg; } - if (logoColor != '') { - content.logoColor = logoColor; + if (!isSvgFile && logoColor != '') { + data.logoColor = logoColor; } - if (logoWidth != '') { - content.logoWidth = parseInt(logoWidth); + if (!isSvgFile && logoWidth != '') { + data.logoWidth = parseInt(logoWidth); } - if (logoPosition != '') { - content.logoPosition = logoPosition; + if (!isSvgFile && logoPosition != '') { + data.logoPosition = logoPosition; } if (style != '') { - content.style = style; + data.style = style; } - if (cacheSeconds != '') { - content.cacheSeconds = parseInt(cacheSeconds); + if (!isSvgFile && cacheSeconds != '') { + data.cacheSeconds = parseInt(cacheSeconds); + } + + let content = ''; + + if (isSvgFile) { + content = makeBadge(data); + } else { + content = JSON.stringify({ content: data }); } // For the POST request, the above content is set as file contents for the // given filename. - const request = - JSON.stringify({files: {[filename]: {content: JSON.stringify(content)}}}); + const body = JSON.stringify({ files: { [filename]: { content } } }); // If "forceUpdate" is set to true, we can simply update the gist. If not, we have to // get the gist data and compare it to the new value before. if (core.getBooleanInput('forceUpdate')) { - updateGist(request); - + updateGist(body); } else { - // Get the old gist. - const getGistOptions = { - host: 'api.github.com', - path: '/gists/' + core.getInput('gistID'), + fetch(gistUrl, { method: 'GET', - headers: { - 'Content-Type': 'application/json', - 'User-Agent': 'Schneegans', - 'Authorization': 'token ' + core.getInput('auth'), - } - }; - - doRequest(getGistOptions, JSON.stringify({})).then(oldGist => { - if (oldGist.statusCode < 200 || oldGist.statusCode >= 400) { - // print the error, but don't fail the action. - console.log( - 'Failed to get gist, response status code: ' + oldGist.statusCode + - ', status message: ' + oldGist.statusMessage); - } - - let shouldUpdate = true; - - if (oldGist && oldGist.body && oldGist.body.files && oldGist.body.files[filename]) { - const oldContent = oldGist.body.files[filename].content; - - if (oldContent === JSON.stringify(content)) { - console.log(`Content did not change, not updating gist at ${filename}.`); - shouldUpdate = false; + headers: new Headers([ + ['Content-Type', 'application/json'], + ['User-Agent', 'Schneegans'], + ['Authorization', `token ${core.getInput('auth')}`], + ]), + }) + .then((response) => { + if (!response.ok) { + // print the error, but don't fail the action. + console.log( + `Failed to get gist: ${response.status} ${response.statusText}` + ); + response.text().then((text) => console.log(text)); + + return {}; } - } - if (shouldUpdate) { - if (oldGist.body.files[filename]) { - console.log(`Content changed, updating gist at ${filename}.`); - } else { - console.log(`Content didn't exist, creating gist at ${filename}.`); + return response.json(); + }) + .then((oldGist) => { + let shouldUpdate = true; + + if (oldGist?.body?.files?.[filename]) { + const oldContent = oldGist.body.files[filename].content; + + if (oldContent === content) { + console.log( + `Content did not change, not updating gist at ${filename}.` + ); + shouldUpdate = false; + } } - updateGist(request); - } - }); - } + if (shouldUpdate) { + if (oldGist?.body?.files?.[filename]) { + console.log(`Content changed, updating gist at ${filename}.`); + } else { + console.log(`Content didn't exist, creating gist at ${filename}.`); + } + updateGist(body); + } + }); + } } catch (error) { core.setFailed(error); } diff --git a/node_modules/.bin/badge b/node_modules/.bin/badge new file mode 120000 index 0000000..524756c --- /dev/null +++ b/node_modules/.bin/badge @@ -0,0 +1 @@ +../badge-maker/lib/badge-cli.js \ No newline at end of file diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 735ea58..acb21e1 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,7 +1,7 @@ { "name": "dynamic-badges-action", "version": "1.5.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "node_modules/@actions/core": { @@ -21,6 +21,68 @@ "tunnel": "^0.0.6" } }, + "node_modules/anafanafo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anafanafo/-/anafanafo-2.0.0.tgz", + "integrity": "sha512-Nlfq7NC4AOkTJerWRIZcOAiMNtIDVIGWGvQ98O7Jl6Kr2Dk0dX5u4MqN778kSRTy5KRqchpLdF2RtLFEz9FVkQ==", + "dependencies": { + "char-width-table-consumer": "^1.0.0" + } + }, + "node_modules/badge-maker": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/badge-maker/-/badge-maker-3.3.1.tgz", + "integrity": "sha512-OO/PS7Zg2E6qaUWzHEHt21Q5VjcFBAJVA8ztgT/fIdSZFBUwoyeo0ZhA6V5tUM8Vcjq8DJl6jfGhpjESssyqMQ==", + "dependencies": { + "anafanafo": "2.0.0", + "css-color-converter": "^2.0.0" + }, + "bin": { + "badge": "lib/badge-cli.js" + }, + "engines": { + "node": ">= 10", + "npm": ">= 5" + } + }, + "node_modules/binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" + }, + "node_modules/char-width-table-consumer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/char-width-table-consumer/-/char-width-table-consumer-1.0.0.tgz", + "integrity": "sha512-Fz4UD0LBpxPgL9i29CJ5O4KANwaMnX/OhhbxzvNa332h+9+nRKyeuLw4wA51lt/ex67+/AdsoBQJF3kgX2feYQ==", + "dependencies": { + "binary-search": "^1.3.5" + } + }, + "node_modules/color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha512-RwBeO/B/vZR3dfKL1ye/vx8MHZ40ugzpyfeVG5GsiuGnrlMWe2o8wxBbLCpw9CsxV+wHuzYlCiWnybrIA0ling==" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/css-color-converter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-color-converter/-/css-color-converter-2.0.0.tgz", + "integrity": "sha512-oLIG2soZz3wcC3aAl/7Us5RS8Hvvc6I8G8LniF/qfMmrm7fIKQ8RIDDRZeKyGL2SrWfNqYspuLShbnjBMVWm8g==", + "dependencies": { + "color-convert": "^0.5.2", + "color-name": "^1.1.4", + "css-unit-converter": "^1.1.2" + } + }, + "node_modules/css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, "node_modules/tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", diff --git a/node_modules/anafanafo/CHANGELOG.md b/node_modules/anafanafo/CHANGELOG.md new file mode 100644 index 0000000..6e0b876 --- /dev/null +++ b/node_modules/anafanafo/CHANGELOG.md @@ -0,0 +1,43 @@ +# Changelog + +## 2.0.0 – Oct 15, 2020 + +Same as 2.0.0-beta.1. + +### BREAKING CHANGES + +- Support the font variants used by Shields: + - 10px Verdana + - bold 10px Verdana + - 11px Verdana + - bold 11px Helvetica + +## 2.0.0-beta.1 – Oct 11, 2020 + +### BREAKING CHANGES + +- Support the font variants used by Shields: + - 10px Verdana + - bold 10px Verdana + - 11px Verdana + - bold 11px Helvetica + +## 2.0.0-beta.0 – Oct 11, 2020 + +### BREAKING CHANGES + +- Support 10px and 11px Verdana, in normal and bold. + +## 1.0.0 – Apr 12, 2018 + +- Update dependencies. +- Stable API. + +## 0.1.1 – Nov 15, 2018 + +- Require the JSON file (instead of `loadSync`-ing it) to play well with + module bundlers. + +## 0.1.0 – Nov 13, 2018 + +Initial release. diff --git a/node_modules/anafanafo/LICENSE b/node_modules/anafanafo/LICENSE new file mode 100644 index 0000000..4df06af --- /dev/null +++ b/node_modules/anafanafo/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Metabolize LLC + +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/node_modules/anafanafo/README.md b/node_modules/anafanafo/README.md new file mode 100644 index 0000000..0666c3d --- /dev/null +++ b/node_modules/anafanafo/README.md @@ -0,0 +1,40 @@ +# anafanafo + +[![version](https://img.shields.io/npm/v/anafanafo?style=flat-square)][npm] +[![license](https://img.shields.io/npm/l/anafanafo?style=flat-square)][npm] +[![build](https://img.shields.io/circleci/project/github/metabolize/anafanafo/main?style=flat-square)][build] +[![bundle size](https://img.shields.io/bundlephobia/minzip/anafanafo?style=flat-square)][bundlephobia] +[![code style](https://img.shields.io/badge/code_style-prettier-ff69b4?style=flat-square)][prettier] +[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff?style=flat-square)][lerna] + +[npm]: https://npmjs.com/anafanafo +[build]: https://circleci.com/gh/metabolize/anafanafo/tree/main +[bundlephobia]: https://bundlephobia.com/result?p=anafanafo +[prettier]: https://prettier.io/ +[lerna]: https://lernajs.io/ + +Efficiently compute text width in Verdana and Helvetica using +[char-width-table-consumer][] and lookup tables. + +Built with [Shields][] in mind. + +(And because Verdana always makes me think of [this][the name game].) + +[char-width-table-consumer]: https://www.npmjs.com/package/char-width-table-consumer +[shields]: https://github.com/badges/shields/ +[the name game]: https://www.youtube.com/watch?v=5MJLi5_dyn0 + +## Usage + +```js +const anafanafo = require('anafanafo') + +// Supports '11px Verdana', '10px Verdana', 'bold 10px Verdana', and 'bold 11px Helvetica'. +const width = anafanafo('Shirley Shirley', { font: '11px Verdana' }) +``` + +## License + +All rights to Verdana are owned by Microsoft Corp. + +The remainder of this project is licensed under the MIT license. diff --git a/node_modules/anafanafo/data/helvetica-11px-bold.json b/node_modules/anafanafo/data/helvetica-11px-bold.json new file mode 100644 index 0000000..7509541 --- /dev/null +++ b/node_modules/anafanafo/data/helvetica-11px-bold.json @@ -0,0 +1 @@ +[[32,33,3.06],[34,34,5.09],[35,36,6.12],[37,37,11],[38,38,7.53],[39,39,3.06],[40,41,3.26],[42,42,4.48],[43,43,6.6],[44,44,3.06],[45,45,4.48],[46,46,3.06],[47,47,4.08],[48,57,6.12],[58,59,3.06],[60,62,6.6],[63,63,6.12],[64,64,8.8],[65,65,7.53],[66,66,7.74],[67,68,8.15],[69,69,7.13],[70,70,6.52],[71,71,8.35],[72,72,8.15],[73,73,3.24],[74,74,6.12],[75,75,7.94],[76,76,6.52],[77,77,9.98],[78,78,8.15],[79,79,8.56],[80,80,7.34],[81,81,8.56],[82,82,7.94],[83,83,7.14],[84,84,6.72],[85,85,8.15],[86,86,6.93],[87,87,10.38],[88,89,7.34],[90,90,7.13],[91,91,3.66],[92,92,4.08],[93,93,3.66],[94,94,6.6],[95,95,5.5],[96,96,2.85],[97,97,6.31],[98,98,6.72],[99,99,6.31],[100,100,6.72],[101,101,6.31],[102,102,3.66],[103,103,6.72],[104,104,6.52],[105,105,2.84],[106,106,3.06],[107,107,6.31],[108,108,2.84],[109,109,9.97],[110,110,6.52],[111,113,6.72],[114,114,4.28],[115,115,5.91],[116,116,3.87],[117,117,6.52],[118,118,5.72],[119,119,8.95],[120,120,5.91],[121,122,5.71],[123,123,3.66],[124,124,2.45],[125,125,3.66],[126,126,6.6],[160,161,3.06],[162,165,6.12],[166,166,2.45],[167,167,6.12],[168,168,2.85],[169,169,8.8],[170,170,3.78],[171,171,4.88],[172,172,6.6],[173,173,0],[174,174,8.8],[175,175,2.85],[176,176,4.4],[177,177,6.6],[178,179,4.31],[180,180,2.85],[181,181,6.52],[182,182,6.82],[183,183,3.06],[184,184,2.85],[185,185,4.31],[186,186,4.04],[187,187,4.88],[188,188,9.81],[189,190,9.78],[191,191,6.12],[192,197,7.53],[198,198,10.79],[199,199,8.15],[200,203,7.13],[204,207,3.24],[208,209,8.15],[210,214,8.56],[215,215,6.6],[216,216,8.56],[217,220,8.15],[221,222,7.34],[223,223,6.72],[224,229,6.31],[230,230,9.98],[231,235,6.31],[236,239,2.84],[240,240,6.72],[241,241,6.52],[242,246,6.72],[247,247,6.6],[248,248,6.72],[249,252,6.52],[253,253,5.71],[254,254,6.72],[256,256,7.53],[257,257,6.31],[258,258,7.53],[259,259,6.31],[260,260,7.53],[261,261,6.31],[262,262,8.15],[263,263,6.31],[264,264,8.15],[265,265,6.31],[266,266,8.15],[267,267,6.31],[268,268,8.15],[269,269,6.31],[270,270,8.15],[271,271,6.72],[272,272,8.15],[273,273,6.83],[274,274,7.13],[275,275,6.31],[276,276,7.13],[277,277,6.31],[278,278,7.13],[279,279,6.31],[280,280,7.13],[281,281,6.31],[282,282,7.13],[283,283,6.31],[284,284,8.35],[285,285,6.72],[286,286,8.35],[287,287,6.72],[288,288,8.35],[289,289,6.72],[290,290,8.35],[291,291,6.72],[292,292,8.15],[293,293,6.52],[294,294,8.15],[295,295,6.63],[296,296,3.24],[297,297,2.84],[298,298,3.24],[299,299,2.84],[300,300,3.24],[301,301,2.84],[302,302,3.24],[303,303,2.84],[304,304,3.24],[305,305,2.84],[306,306,9.29],[307,307,5.76],[308,308,6.12],[309,309,3.06],[310,310,7.94],[311,311,6.31],[312,312,6.21],[313,313,6.52],[314,314,2.84],[315,315,6.52],[316,316,2.84],[317,317,6.52],[318,318,4.27],[319,319,6.52],[320,320,4.51],[321,321,6.52],[322,322,2.84],[323,323,8.15],[324,324,6.52],[325,325,8.15],[326,326,6.52],[327,327,8.15],[328,328,6.52],[329,329,8.11],[330,330,8.15],[331,331,6.52],[332,332,8.56],[333,333,6.72],[334,334,8.56],[335,335,6.72],[336,336,8.56],[337,337,6.72],[338,338,12.02],[339,339,10.19],[340,340,7.94],[341,341,4.28],[342,342,7.94],[343,343,4.28],[344,344,7.94],[345,345,4.28],[346,346,7.14],[347,347,5.91],[348,348,7.14],[349,349,5.91],[350,350,7.14],[351,351,5.91],[352,352,7.14],[353,353,5.91],[354,354,6.72],[355,355,3.87],[356,356,6.72],[357,357,3.87],[358,358,6.72],[359,359,3.87],[360,360,8.15],[361,361,6.52],[362,362,8.15],[363,363,6.52],[364,364,8.15],[365,365,6.52],[366,366,8.15],[367,367,6.52],[368,368,8.15],[369,369,6.52],[370,370,8.15],[371,371,6.52],[372,372,10.38],[373,373,8.95],[374,374,7.34],[375,375,5.71],[376,376,7.34],[377,377,7.13],[378,378,5.71],[379,379,7.13],[380,380,5.71],[381,381,7.13],[382,382,5.71],[384,384,6.72],[385,385,8.3],[386,386,7.34],[387,387,6.72],[388,388,7.27],[389,389,6.12],[390,391,7.94],[392,392,4.88],[393,393,7.94],[394,394,8.98],[395,395,7.34],[396,396,6.72],[397,397,6.35],[398,398,7.34],[399,399,8.23],[400,400,6.25],[401,401,6.72],[402,402,6.12],[403,403,8.56],[404,404,7.94],[405,405,8.6],[406,406,3.06],[407,407,4.29],[408,408,8.56],[409,409,6.12],[410,410,4.29],[411,411,6.04],[412,412,10.34],[413,413,7.94],[414,414,6.72],[415,415,8.56],[416,416,10.41],[417,417,8.74],[418,418,10.14],[419,419,8.4],[420,420,7.64],[421,421,6.12],[422,422,7.15],[423,423,7.34],[424,424,6.12],[425,425,6.54],[426,426,5.64],[427,427,3.66],[428,428,7.34],[429,429,3.66],[430,430,6.72],[431,431,10.1],[432,432,8.85],[433,433,8.52],[434,434,7.17],[435,435,8.7],[436,436,5.5],[437,437,7.13],[438,438,5.71],[439,440,6.6],[441,441,6.06],[442,442,4.98],[443,443,6.73],[444,444,5.55],[445,445,4.23],[446,446,3.66],[447,447,6.56],[448,448,3.08],[449,449,5.82],[450,450,6.29],[451,451,3.66],[452,452,13.53],[453,453,12.45],[454,454,11.66],[455,455,11.64],[456,456,9.18],[457,457,5.73],[458,458,12.74],[459,459,9.97],[460,460,8.8],[461,461,7.94],[462,462,6.12],[463,464,3.06],[465,465,8.56],[466,466,6.72],[467,467,7.94],[468,468,6.72],[469,469,7.94],[470,470,6.72],[471,471,7.94],[472,472,6.72],[473,473,7.94],[474,474,6.72],[475,475,7.94],[476,476,6.72],[477,477,6.12],[478,478,7.94],[479,479,6.12],[480,480,7.94],[481,481,6.12],[482,482,11],[483,483,9.78],[484,484,9.07],[485,485,7.56],[486,486,8.56],[487,487,6.72],[488,488,7.94],[489,489,6.12],[490,490,8.56],[491,491,6.72],[492,492,8.56],[493,493,6.72],[494,494,6.39],[495,495,5.86],[496,496,3.06],[497,497,13.82],[498,498,12.68],[499,499,11.91],[500,500,8.56],[501,501,6.72],[502,502,10.67],[503,503,7.34],[504,504,7.94],[505,505,6.72],[506,506,7.53],[507,507,6.31],[508,508,10.79],[509,509,9.98],[510,510,8.56],[511,511,6.72],[512,512,7.94],[513,513,6.12],[514,514,7.94],[515,515,6.12],[516,516,7.34],[517,517,6.12],[518,518,7.34],[519,519,6.12],[520,523,3.06],[524,524,8.56],[525,525,6.72],[526,526,8.56],[527,527,6.72],[528,528,7.94],[529,529,4.28],[530,530,7.94],[531,531,4.28],[532,532,7.94],[533,533,6.72],[534,534,7.94],[535,535,6.72],[536,536,7.14],[537,537,5.91],[538,538,6.72],[539,539,3.87],[540,541,7.3],[542,542,7.94],[543,543,6.72],[544,544,7.94],[545,545,6.12],[546,546,7.44],[547,547,5.52],[548,548,7.34],[549,549,4.88],[550,550,7.94],[551,551,6.12],[552,552,7.34],[553,553,6.12],[554,554,8.56],[555,555,6.72],[556,556,8.56],[557,557,6.72],[558,558,8.56],[559,559,6.72],[560,560,8.56],[561,561,6.72],[562,562,7.34],[563,563,6.12],[564,564,3.06],[565,565,6.12],[566,566,3.97],[567,567,3.06],[568,568,10.57],[569,569,10.59],[570,571,7.94],[572,572,6.12],[573,574,6.72],[575,575,4.28],[576,576,4.88],[577,578,6.72],[579,579,8.39],[580,580,9.15],[581,582,7.34],[583,584,6.12],[585,585,3.06],[586,586,9.06],[587,587,7.25],[588,588,8.49],[589,589,4.83],[590,590,8.44],[880,880,4.67],[881,881,3.68],[882,882,6.93],[883,883,5.83],[884,885,3.06],[886,886,8.03],[887,887,6.52],[888,889,5.5],[890,890,1.53],[891,893,6.12],[894,894,3.06],[895,895,3.66],[896,899,5.5],[900,900,2.65],[901,901,5.63],[902,902,7.94],[903,903,3.06],[904,904,9.28],[905,905,10.31],[906,906,5.4],[907,907,5.5],[908,908,10.21],[909,909,5.5],[910,910,10.16],[911,911,10.22],[912,912,3.08],[913,913,7.53],[914,914,7.74],[915,915,6.28],[916,916,7.49],[917,918,7.13],[919,919,8.15],[920,920,8.56],[921,921,3.24],[922,922,7.94],[923,923,7.31],[924,924,9.98],[925,925,8.15],[926,926,6.85],[927,927,8.56],[928,928,8.28],[929,929,7.34],[930,930,5.5],[931,931,7.13],[932,932,6.72],[933,933,7.34],[934,934,8.96],[935,935,7.34],[936,936,9.25],[937,937,8.5],[938,938,3.26],[939,939,7.23],[940,940,6.8],[941,941,5.66],[942,942,6.52],[943,943,3],[944,944,6.25],[945,945,6.8],[946,946,6.47],[947,947,5.59],[948,948,6.51],[949,949,5.66],[950,950,5.21],[951,951,6.52],[952,952,6.32],[953,953,3],[954,954,6.24],[955,955,6.06],[956,956,6.52],[957,957,5.83],[958,958,5.11],[959,959,6.72],[960,960,7.33],[961,961,6.57],[962,962,6.02],[963,963,6.58],[964,964,5.49],[965,965,6.29],[966,966,8.29],[967,967,5.91],[968,968,7.99],[969,969,8.36],[970,970,3.08],[971,971,6.32],[972,972,6.72],[973,973,6.32],[974,974,8.36],[975,975,6.14],[976,976,5.8],[977,977,6.59],[978,978,7.94],[979,979,10.16],[980,980,7.94],[981,981,6.86],[982,982,8.04],[983,983,6.38],[984,984,8.56],[985,985,5.5],[986,986,7.94],[987,987,4.64],[988,988,6.72],[989,989,6.01],[990,990,6.55],[991,991,5.07],[992,992,8.27],[993,993,6.1],[994,994,9.57],[995,995,9.16],[996,996,7.98],[997,997,6.45],[998,998,8.14],[999,999,4.88],[1000,1000,6.88],[1001,1001,6.45],[1002,1002,7.5],[1003,1003,6.66],[1004,1004,7.97],[1005,1005,5.67],[1006,1006,5.94],[1007,1007,4.95],[1008,1008,6.38],[1009,1009,5.5],[1010,1010,6.12],[1011,1011,2.83],[1012,1012,8.56],[1013,1014,5.6],[1015,1015,7.34],[1016,1016,6.72],[1017,1017,7.94],[1018,1018,9.16],[1019,1019,8.5],[1020,1020,7.26],[1021,1022,7.94],[1024,1025,7.13],[1026,1026,8.84],[1027,1027,6.31],[1028,1028,8.1],[1029,1029,7.14],[1030,1031,3.24],[1032,1032,6.12],[1033,1033,12.38],[1034,1034,12.35],[1035,1035,8.84],[1036,1036,7.94],[1037,1037,8.19],[1038,1038,7.12],[1039,1039,8.05],[1040,1040,7.53],[1041,1041,7.72],[1042,1042,7.74],[1043,1043,6.31],[1044,1044,8.49],[1045,1045,7.13],[1046,1046,11.67],[1047,1047,7.12],[1048,1049,8.19],[1050,1050,7.94],[1051,1051,8.17],[1052,1052,9.98],[1053,1053,8.15],[1054,1054,8.56],[1055,1055,8.05],[1056,1056,7.34],[1057,1057,8.15],[1058,1058,6.72],[1059,1059,7.12],[1060,1060,10.15],[1061,1061,7.34],[1062,1062,8.27],[1063,1063,7.48],[1064,1064,11.45],[1065,1065,11.67],[1066,1066,8.95],[1067,1067,10.22],[1068,1068,7.45],[1069,1069,8.12],[1070,1070,11.25],[1071,1071,7.97],[1072,1072,6.31],[1073,1073,6.68],[1074,1074,6.39],[1075,1075,4.98],[1076,1076,6.86],[1077,1077,6.31],[1078,1078,8.93],[1079,1079,5.96],[1080,1081,6.6],[1082,1082,6.31],[1083,1083,6.59],[1084,1084,8.12],[1085,1085,6.52],[1086,1086,6.72],[1087,1087,6.41],[1088,1088,6.72],[1089,1089,6.31],[1090,1090,5.52],[1091,1091,5.71],[1092,1092,9.42],[1093,1093,5.91],[1094,1094,6.63],[1095,1095,6.31],[1096,1096,9.01],[1097,1097,9.17],[1098,1098,7.11],[1099,1099,8.56],[1100,1100,6.03],[1101,1101,6.34],[1102,1102,9.18],[1103,1103,6.36],[1104,1105,6.31],[1106,1106,6.74],[1107,1107,4.98],[1108,1108,6.34],[1109,1109,5.91],[1110,1110,2.84],[1111,1111,3.3],[1112,1112,3.06],[1113,1113,9.87],[1114,1114,9.8],[1115,1115,6.74],[1116,1116,6.31],[1117,1117,6.6],[1118,1118,5.71],[1119,1119,6.41],[1120,1120,13.76],[1121,1121,6.81],[1122,1122,8.29],[1123,1123,6.47],[1124,1124,11.19],[1125,1125,8.08],[1126,1126,7.94],[1127,1127,6.12],[1128,1128,11.05],[1129,1129,8.6],[1130,1130,10.97],[1131,1131,9.04],[1132,1132,11.74],[1133,1133,9.14],[1134,1134,5.81],[1135,1135,4.42],[1136,1136,9.17],[1137,1137,7.94],[1138,1138,8.56],[1139,1139,6.72],[1140,1140,7.37],[1141,1141,5.94],[1142,1142,8.14],[1143,1143,6.72],[1144,1144,14.67],[1145,1145,12.84],[1146,1146,9.06],[1147,1147,6.44],[1148,1148,13.6],[1149,1149,8.88],[1150,1150,13.76],[1151,1151,6.81],[1152,1152,7.94],[1153,1153,4.88],[1154,1154,3.72],[1155,1161,0],[1162,1162,8.56],[1163,1163,6.34],[1164,1164,8.29],[1165,1165,6.47],[1166,1166,6.72],[1167,1167,6.12],[1168,1168,6.31],[1169,1169,4.98],[1170,1170,6.9],[1171,1171,5.44],[1172,1172,7.94],[1173,1173,6.34],[1174,1174,11.9],[1175,1175,9.15],[1176,1176,7.12],[1177,1177,5.96],[1178,1178,8.17],[1179,1179,6.45],[1180,1180,8.27],[1181,1181,6.76],[1182,1182,7.98],[1183,1183,6.34],[1184,1184,9.45],[1185,1185,7.39],[1186,1186,8.37],[1187,1187,6.71],[1188,1188,11.16],[1189,1189,8.7],[1190,1190,12.26],[1191,1191,9.28],[1192,1192,8.02],[1193,1193,5.87],[1194,1194,8.15],[1195,1195,6.31],[1196,1196,6.83],[1197,1197,5.6],[1198,1198,7.34],[1199,1199,5.71],[1200,1200,7.34],[1201,1201,5.71],[1202,1202,7.57],[1203,1203,6.08],[1204,1204,10.11],[1205,1205,7.24],[1206,1206,7.69],[1207,1207,6.5],[1208,1208,7.48],[1209,1209,6.31],[1210,1210,7.42],[1211,1211,6.52],[1212,1212,10.17],[1213,1213,8.21],[1214,1214,10.17],[1215,1215,8.21],[1216,1216,3.24],[1217,1217,11.67],[1218,1218,8.93],[1219,1219,8.11],[1220,1220,6.53],[1221,1221,8.2],[1222,1222,6.17],[1223,1223,8.07],[1224,1224,6.21],[1225,1225,8.56],[1226,1226,6.34],[1227,1227,8.07],[1228,1228,6.2],[1229,1229,10.38],[1230,1230,7.49],[1231,1231,3.06],[1232,1232,7.53],[1233,1233,6.31],[1234,1234,7.53],[1235,1235,6.31],[1236,1236,10.79],[1237,1237,9.98],[1238,1238,7.13],[1239,1239,6.31],[1240,1240,8.23],[1241,1241,6.31],[1242,1242,8.26],[1243,1243,6.12],[1244,1244,11.67],[1245,1245,8.93],[1246,1246,7.12],[1247,1247,5.96],[1248,1248,6.6],[1249,1249,6.06],[1250,1250,8.19],[1251,1251,6.6],[1252,1252,8.19],[1253,1253,6.6],[1254,1254,8.56],[1255,1255,6.72],[1256,1256,8.56],[1257,1257,6.72],[1258,1258,8.71],[1259,1259,6.21],[1260,1260,8.07],[1261,1261,5.6],[1262,1262,7.12],[1263,1263,5.71],[1264,1264,7.12],[1265,1265,5.71],[1266,1266,7.12],[1267,1267,5.71],[1268,1268,7.42],[1269,1269,6.31],[1270,1270,6.67],[1271,1271,4.8],[1272,1272,10.22],[1273,1273,8.56],[1274,1274,7],[1275,1275,5],[1276,1276,7.94],[1277,1277,5.5],[1278,1278,7.46],[1280,1280,6.02],[1281,1281,5.5],[1282,1282,9.37],[1283,1283,8.59],[1284,1284,8.77],[1285,1285,7.46],[1286,1286,6.54],[1287,1287,5.06],[1288,1288,10.29],[1289,1289,8.57],[1290,1290,10.67],[1291,1291,8.73],[1292,1292,8.56],[1293,1293,6.5],[1294,1294,7.87],[1295,1295,6.79],[1296,1296,7.3],[1297,1297,5.55],[1298,1298,8.17],[1299,1299,6.34],[1300,1300,8.38],[1301,1301,7.62],[1302,1302,9.13],[1303,1303,7.49],[1304,1304,11.34],[1305,1305,8.11],[1306,1306,8.56],[1307,1307,6.12],[1308,1308,11],[1309,1309,7.94],[1310,1310,7.53],[1311,1311,6.94],[1312,1312,10.79],[1313,1313,8.76],[1314,1314,12.22],[1315,1315,9.99],[1316,1316,7.77],[1317,1317,6.78],[1318,1318,7.56],[1319,1319,6.92],[1320,1320,4.88],[1321,1321,4.43],[1322,1322,9.8],[1323,1323,8.94],[1324,1324,6.18],[1325,1325,5.76],[1326,1326,7.49],[7424,7424,5.7],[7425,7425,8.27],[7426,7426,7.94],[7427,7427,5.94],[7428,7428,5.76],[7429,7430,6.35],[7431,7431,5.27],[7432,7432,5.55],[7433,7433,3.06],[7434,7434,4.38],[7435,7435,6.75],[7436,7436,5.32],[7437,7437,7.49],[7438,7438,5.82],[7439,7439,5.5],[7440,7440,5.76],[7441,7441,6.88],[7442,7442,6.86],[7443,7443,7.13],[7444,7444,10.38],[7445,7445,5.52],[7446,7447,6.72],[7448,7450,5.86],[7451,7451,5.4],[7452,7452,6.01],[7453,7453,6.81],[7454,7454,8.84],[7455,7455,6.82],[7456,7456,5.5],[7457,7457,7.94],[7458,7458,4.88],[7459,7459,4.62],[7460,7460,5.1],[7461,7461,5.98],[7462,7462,5],[7463,7463,5.35],[7464,7464,6.34],[7465,7465,5.82],[7466,7466,6.59],[7467,7467,6.17],[7468,7468,4.69],[7469,7469,6.56],[7470,7471,4.36],[7472,7472,4.73],[7473,7474,4.29],[7475,7475,5.12],[7476,7476,5.19],[7477,7477,2.6],[7478,7478,3.51],[7479,7479,5.25],[7480,7480,4.37],[7481,7481,6.3],[7482,7482,4.84],[7483,7483,5.26],[7484,7484,4.96],[7485,7485,4.32],[7486,7486,3.99],[7487,7487,4.89],[7488,7488,4.24],[7489,7489,4.82],[7490,7490,6.54],[7491,7492,4.34],[7493,7493,4.62],[7494,7494,6.94],[7495,7496,4.77],[7497,7498,4.34],[7499,7500,3.94],[7501,7501,4.77],[7502,7502,2.17],[7503,7503,4.34],[7504,7504,6.94],[7505,7506,4.77],[7507,7507,4.34],[7508,7510,4.77],[7511,7511,2.6],[7512,7512,4.77],[7513,7513,4.83],[7514,7514,6.94],[7515,7515,4.34],[7516,7516,3.54],[7517,7517,4.72],[7518,7518,4.34],[7519,7519,4.77],[7520,7520,3.93],[7521,7521,4.34],[7522,7522,2.17],[7523,7523,3.04],[7524,7524,4.77],[7525,7525,4.34],[7526,7526,4.72],[7527,7527,4.34],[7528,7528,4.77],[7529,7529,3.93],[7530,7530,4.34],[7531,7531,9.82],[7532,7532,7.11],[7533,7533,7.35],[7534,7534,4.3],[7535,7535,9.16],[7536,7536,6.12],[7537,7537,7.11],[7538,7538,4.74],[7539,7540,4.28],[7541,7541,4.29],[7542,7542,4.88],[7543,7543,5.5],[7544,7544,3.66],[7545,7545,5.71],[7546,7546,11.81],[7547,7547,3.16],[7548,7548,3.41],[7549,7549,6.12],[7550,7550,6.01],[7680,7680,7.94],[7681,7681,6.12],[7682,7682,7.94],[7683,7683,6.72],[7684,7684,7.94],[7685,7685,6.72],[7686,7686,7.94],[7687,7687,6.72],[7688,7688,7.94],[7689,7689,6.12],[7690,7690,7.94],[7691,7691,6.72],[7692,7692,7.94],[7693,7693,6.72],[7694,7694,7.94],[7695,7695,6.72],[7696,7696,7.94],[7697,7697,6.72],[7698,7698,7.94],[7699,7699,6.72],[7700,7700,7.34],[7701,7701,6.12],[7702,7702,7.34],[7703,7703,6.12],[7704,7704,7.34],[7705,7705,6.12],[7706,7706,7.34],[7707,7707,6.12],[7708,7708,7.34],[7709,7709,6.12],[7710,7710,6.72],[7711,7711,3.66],[7712,7712,8.56],[7713,7713,6.72],[7714,7714,7.94],[7715,7715,6.72],[7716,7716,7.94],[7717,7717,6.72],[7718,7718,7.94],[7719,7719,6.72],[7720,7720,7.94],[7721,7721,6.72],[7722,7722,7.94],[7723,7723,6.72],[7724,7727,3.06],[7728,7728,7.94],[7729,7729,6.12],[7730,7730,7.94],[7731,7731,6.12],[7732,7732,7.94],[7733,7733,6.12],[7734,7734,6.72],[7735,7735,3.06],[7736,7736,6.72],[7737,7737,3.06],[7738,7738,6.72],[7739,7739,3.06],[7740,7740,6.72],[7741,7741,3.06],[7742,7742,9.16],[7743,7743,9.78],[7744,7744,9.16],[7745,7745,9.78],[7746,7746,9.16],[7747,7747,9.78],[7748,7748,7.94],[7749,7749,6.72],[7750,7750,7.94],[7751,7751,6.72],[7752,7752,7.94],[7753,7753,6.72],[7754,7754,7.94],[7755,7755,6.72],[7756,7756,8.56],[7757,7757,6.72],[7758,7758,8.56],[7759,7759,6.72],[7760,7760,8.56],[7761,7761,6.72],[7762,7762,8.56],[7763,7763,6.72],[7764,7764,7.34],[7765,7765,6.72],[7766,7766,7.34],[7767,7767,6.72],[7768,7768,7.94],[7769,7769,4.28],[7770,7770,7.94],[7771,7771,4.28],[7772,7772,7.94],[7773,7773,4.28],[7774,7774,7.94],[7775,7775,4.28],[7776,7776,7.34],[7777,7777,6.12],[7778,7778,7.34],[7779,7779,6.12],[7780,7780,7.34],[7781,7781,6.12],[7782,7782,7.34],[7783,7783,6.12],[7784,7784,7.34],[7785,7785,6.12],[7786,7786,6.72],[7787,7787,3.66],[7788,7788,6.72],[7789,7789,3.66],[7790,7790,6.72],[7791,7791,3.66],[7792,7792,6.72],[7793,7793,3.66],[7794,7794,7.94],[7795,7795,6.72],[7796,7796,7.94],[7797,7797,6.72],[7798,7798,7.94],[7799,7799,6.72],[7800,7800,7.94],[7801,7801,6.72],[7802,7802,7.94],[7803,7803,6.72],[7804,7804,7.34],[7805,7805,6.12],[7806,7806,7.34],[7807,7807,6.12],[7808,7808,10.38],[7809,7809,8.95],[7810,7810,10.38],[7811,7811,8.95],[7812,7812,10.38],[7813,7813,8.95],[7814,7814,10.38],[7815,7815,8.56],[7816,7816,10.38],[7817,7817,8.56],[7818,7818,7.34],[7819,7819,6.12],[7820,7820,7.34],[7821,7821,6.12],[7822,7822,7.34],[7823,7823,6.12],[7824,7824,6.72],[7825,7825,5.5],[7826,7826,6.72],[7827,7827,5.5],[7828,7828,6.72],[7829,7829,5.5],[7830,7830,6.72],[7831,7831,3.66],[7832,7832,8.56],[7833,7834,6.12],[7835,7835,3.66],[7836,7836,4.66],[7837,7837,4.65],[7838,7838,8.34],[7839,7839,6.62],[7840,7840,7.94],[7841,7841,6.12],[7842,7842,7.94],[7843,7843,6.12],[7844,7844,8.01],[7845,7845,6.76],[7846,7846,8.03],[7847,7847,6.4],[7848,7848,7.94],[7849,7849,6.26],[7850,7850,7.94],[7851,7851,6.12],[7852,7852,7.94],[7853,7853,6.12],[7854,7854,7.94],[7855,7855,6.12],[7856,7856,7.94],[7857,7857,6.12],[7858,7858,7.94],[7859,7859,6.12],[7860,7860,7.94],[7861,7861,6.12],[7862,7862,7.94],[7863,7863,6.12],[7864,7864,7.34],[7865,7865,6.12],[7866,7866,7.34],[7867,7867,6.12],[7868,7868,7.34],[7869,7869,6.12],[7870,7870,7.5],[7871,7871,6.17],[7872,7872,7.34],[7873,7873,6.37],[7874,7874,7.34],[7875,7875,6.12],[7876,7876,7.34],[7877,7877,6.12],[7878,7878,7.34],[7879,7879,6.12],[7880,7883,3.06],[7884,7884,8.56],[7885,7885,6.72],[7886,7886,8.56],[7887,7887,6.72],[7888,7888,8.56],[7889,7889,6.72],[7890,7890,8.56],[7891,7891,6.72],[7892,7892,8.56],[7893,7893,6.72],[7894,7894,8.56],[7895,7895,6.72],[7896,7896,8.56],[7897,7897,6.72],[7898,7898,10.41],[7899,7899,8.74],[7900,7900,10.41],[7901,7901,8.74],[7902,7902,10.41],[7903,7903,8.74],[7904,7904,10.41],[7905,7905,8.74],[7906,7906,10.41],[7907,7907,8.74],[7908,7908,7.94],[7909,7909,6.72],[7910,7910,7.94],[7911,7911,6.72],[7912,7912,10.1],[7913,7913,8.85],[7914,7914,10.1],[7915,7915,8.85],[7916,7916,10.1],[7917,7917,8.85],[7918,7918,10.1],[7919,7919,8.85],[7920,7920,10.1],[7921,7921,8.85],[7922,7922,7.34],[7923,7923,5.71],[7924,7924,7.34],[7925,7925,6.12],[7926,7926,7.34],[7927,7927,6.12],[7928,7928,7.34],[7929,7929,6.12],[7930,7930,10.3],[7931,7931,6.48],[7932,7932,5.57],[7933,7933,4.89],[7934,7934,5.04],[7936,7943,6.73],[7944,7944,8.47],[7945,7945,8.57],[7946,7946,11.59],[7947,7947,11.15],[7948,7948,10.38],[7949,7949,10.91],[7950,7951,10.38],[7952,7957,6.12],[7958,7959,5.5],[7960,7961,9.78],[7962,7962,12.1],[7963,7963,12.06],[7964,7964,11.8],[7965,7965,12.03],[7966,7967,5.5],[7968,7975,6.71],[7976,7977,10.38],[7978,7978,12.7],[7979,7979,12.66],[7980,7980,12.41],[7981,7981,12.64],[7982,7983,10.38],[7984,7991,3.06],[7992,7993,5.7],[7994,7994,8.02],[7995,7995,7.97],[7996,7996,7.72],[7997,7997,7.95],[7998,7999,5.7],[8000,8005,6.73],[8006,8007,5.5],[8008,8009,11],[8010,8010,13.31],[8011,8011,13.28],[8012,8012,13.02],[8013,8013,13.25],[8014,8015,5.5],[8016,8023,6.71],[8024,8024,5.5],[8025,8025,9.78],[8026,8026,5.5],[8027,8027,12.06],[8028,8028,5.5],[8029,8029,12.03],[8030,8030,5.5],[8031,8031,10.41],[8032,8039,7.94],[8040,8041,10.89],[8042,8042,13.21],[8043,8043,13.17],[8044,8044,12.91],[8045,8045,13.14],[8046,8047,10.89],[8048,8049,6.73],[8050,8051,6.12],[8052,8053,6.71],[8054,8055,3.06],[8056,8057,6.73],[8058,8059,6.71],[8060,8061,7.94],[8062,8063,5.5],[8064,8071,6.73],[8072,8072,11.82],[8073,8073,11.65],[8074,8074,14.37],[8075,8075,14.42],[8076,8076,13.86],[8077,8077,14.39],[8078,8079,13.44],[8080,8087,6.71],[8088,8089,13.44],[8090,8090,15.76],[8091,8091,15.72],[8092,8092,15.47],[8093,8093,15.7],[8094,8095,13.44],[8096,8103,7.94],[8104,8105,13.95],[8106,8106,16.27],[8107,8107,16.22],[8108,8108,15.97],[8109,8109,16.2],[8110,8111,13.95],[8112,8116,6.73],[8117,8117,5.5],[8118,8119,6.73],[8120,8121,7.94],[8122,8123,9.35],[8124,8124,10.78],[8125,8125,2.44],[8126,8126,3.82],[8127,8127,2.44],[8128,8129,2.94],[8130,8132,6.71],[8133,8133,5.5],[8134,8135,6.71],[8136,8136,10.15],[8137,8137,10.33],[8138,8138,10.83],[8139,8139,10.71],[8140,8140,11.03],[8141,8141,4.76],[8142,8142,4.47],[8143,8143,2.44],[8144,8147,3.06],[8148,8149,5.5],[8150,8151,3.06],[8152,8153,3.26],[8154,8154,5.82],[8155,8155,5.95],[8156,8156,5.5],[8157,8157,4.72],[8158,8158,4.7],[8159,8159,2.44],[8160,8163,6.71],[8164,8165,6.72],[8166,8167,6.71],[8168,8169,7.34],[8170,8170,10.52],[8171,8171,10.44],[8172,8172,9.78],[8173,8174,4.34],[8175,8175,2.94],[8176,8177,5.5],[8178,8180,7.94],[8181,8181,5.5],[8182,8183,7.94],[8184,8184,10.94],[8185,8185,11.23],[8186,8186,11.54],[8187,8187,11.82],[8188,8188,11.44],[8189,8189,2.94],[8190,8190,2.44],[8192,8192,5.5],[8193,8193,11],[8194,8194,3.06],[8195,8195,9.16],[8196,8196,3.66],[8197,8197,3.06],[8198,8198,1.84],[8199,8199,6.12],[8200,8200,1.15],[8201,8201,0.48],[8202,8202,0.16],[8203,8207,0],[8208,8208,4.48],[8209,8210,3.66],[8211,8211,5.5],[8212,8213,11],[8214,8214,5.82],[8215,8215,3.66],[8216,8219,3.06],[8220,8222,5.09],[8223,8223,5.5],[8224,8225,6.12],[8226,8226,3.85],[8227,8227,7.33],[8228,8228,3.64],[8229,8229,7.41],[8230,8230,11],[8231,8231,3.64],[8232,8239,0],[8240,8240,12.62],[8241,8241,15.65],[8242,8242,3.66],[8243,8243,6.71],[8244,8244,9.47],[8245,8245,3.66],[8246,8246,6.71],[8247,8247,9.47],[8248,8248,3.66],[8249,8250,2.65],[8251,8251,8.92],[8252,8252,7.33],[8253,8253,6.12],[8254,8254,3.66],[8255,8256,10.55],[8257,8257,6.83],[8258,8258,9.31],[8259,8259,3.66],[8260,8260,1.84],[8261,8262,3.66],[8263,8263,13.44],[8264,8265,10.38],[8266,8266,6.83],[8267,8269,6.12],[8270,8270,4.28],[8271,8271,3.66],[8272,8272,10.55],[8273,8273,4.28],[8274,8274,9.78],[8275,8275,9.64],[8276,8276,10.55],[8277,8278,8.92],[8279,8279,12.18],[8280,8281,8.92],[8282,8282,3.66],[8283,8284,8.92],[8285,8286,3.66],[8287,8287,3.06],[8288,8302,0],[8304,8304,4.29],[8305,8305,1.53],[8306,8307,5.5],[8308,8313,4.29],[8314,8314,4.4],[8315,8315,2.97],[8316,8316,4.4],[8317,8318,2.47],[8319,8329,4.29],[8330,8330,4.4],[8331,8331,2.97],[8332,8332,4.4],[8333,8334,2.47],[8335,8335,5.5],[8336,8337,3.06],[8338,8338,3.37],[8339,8340,3.06],[8341,8350,5.5],[8352,8352,6.01],[8353,8354,7.94],[8355,8355,6.12],[8356,8356,7.14],[8357,8357,9.78],[8358,8358,8.9],[8359,8359,8.45],[8360,8360,6.92],[8361,8361,11.26],[8362,8362,8.34],[8363,8363,6.72],[8364,8364,6.12],[8365,8365,8.6],[8366,8366,6.72],[8367,8367,12.29],[8368,8368,5.5],[8369,8369,8.57],[8370,8370,8.56],[8371,8371,7.94],[8372,8372,7.01],[8373,8373,7.94],[8374,8374,7.44],[8375,8375,10.33],[8376,8376,6.12],[8377,8377,6.08],[8378,8378,6.12],[8379,8379,10.82],[8380,8381,6.12],[8382,8382,8.28],[8383,8383,7.22],[8384,8398,5.5],[8400,8402,0],[8403,8403,6.6],[8404,8405,7.7],[8406,8408,0],[8409,8410,6.6],[8411,8413,0],[8414,8414,11],[8415,8415,9.51],[8416,8416,9.9],[8417,8417,0],[8418,8418,5.5],[8419,8432,0],[8433,8446,5.5],[8448,8449,9.17],[8450,8450,7.94],[8451,8451,12.34],[8452,8452,7.78],[8453,8454,9.17],[8455,8455,7.69],[8456,8456,6.98],[8457,8457,11.12],[8458,8458,11],[8459,8459,9.96],[8460,8460,9.27],[8461,8461,7.94],[8462,8462,6.34],[8463,8463,7.11],[8464,8464,7.57],[8465,8465,8.69],[8466,8466,7.79],[8467,8467,5.5],[8468,8468,8.56],[8469,8469,6.62],[8470,8470,11.73],[8471,8471,8.8],[8472,8472,9.35],[8473,8473,7.34],[8474,8474,8.56],[8475,8475,10.19],[8476,8476,9.72],[8477,8477,6.62],[8478,8478,7.51],[8479,8479,7.34],[8480,8480,8.25],[8481,8481,10.38],[8482,8482,11],[8483,8483,7.94],[8484,8484,6.62],[8485,8485,5.96],[8486,8486,8.5],[8487,8487,8.45],[8488,8488,8.3],[8489,8489,3.06],[8490,8491,7.94],[8492,8492,10.19],[8493,8493,8.5],[8494,8494,8.47],[8495,8495,4.23],[8496,8496,6.77],[8497,8497,7.57],[8498,8498,6.72],[8499,8499,12.27],[8500,8500,4.46],[8501,8501,7.21],[8502,8502,6.64],[8503,8503,5.11],[8504,8504,6.18],[8505,8505,7.26],[8506,8506,8.56],[8507,8507,11],[8508,8508,8.84],[8509,8509,7.11],[8510,8510,5.47],[8511,8511,8.45],[8512,8512,10.74],[8513,8513,8.56],[8514,8515,6.72],[8516,8516,7.34],[8517,8517,8.88],[8518,8518,7.63],[8519,8519,6.74],[8520,8520,4.52],[8521,8521,4.65],[8522,8522,7.43],[8523,8523,7.94],[8524,8524,8.91],[8525,8525,9.44],[8526,8526,4.96],[8528,8530,11],[8531,8532,9.17],[8533,8538,10.45],[8539,8543,9.17],[8544,8544,3.06],[8545,8545,6.12],[8546,8546,9.16],[8547,8547,10.39],[8548,8548,7.34],[8549,8549,10.39],[8550,8550,13.45],[8551,8551,16.5],[8552,8552,10.39],[8553,8553,7.34],[8554,8554,10.39],[8555,8555,13.45],[8556,8556,6.72],[8557,8558,7.94],[8559,8559,9.16],[8560,8560,3.06],[8561,8561,6.12],[8562,8562,9.16],[8563,8563,9.17],[8564,8564,6.12],[8565,8565,9.17],[8566,8566,12.23],[8567,8567,15.29],[8568,8568,9.17],[8569,8569,6.12],[8570,8570,9.17],[8571,8571,12.23],[8572,8572,3.06],[8573,8573,6.12],[8574,8574,6.72],[8575,8575,9.78],[8576,8576,11.9],[8577,8577,8.72],[8578,8578,13.87],[8579,8579,7.94],[8580,8580,6.12],[8581,8581,7.17],[8582,8582,6.21],[8583,8584,5.5],[8585,8585,11],[8586,8590,5.5],[8592,8592,11],[8593,8593,5.5],[8594,8594,11],[8595,8595,5.5],[8596,8596,11],[8597,8597,5.5],[8598,8598,10.07],[8599,8599,11],[8600,8600,10.07],[8601,8603,11],[8604,8615,6.62],[8616,8616,5.5],[8617,8618,11],[8619,8621,6.62],[8622,8622,11],[8623,8623,6.62],[8624,8626,9.51],[8627,8627,11],[8628,8628,9.51],[8629,8629,11],[8630,8631,9.51],[8632,8633,11],[8634,8635,6.62],[8636,8636,9.51],[8637,8639,6.62],[8640,8640,9.51],[8641,8643,6.62],[8644,8646,11],[8647,8650,6.62],[8651,8652,11],[8653,8653,9.68],[8654,8654,6.62],[8655,8655,9.56],[8656,8656,11],[8657,8657,9.51],[8658,8658,11],[8659,8659,9.51],[8660,8660,11],[8661,8669,6.62],[8670,8671,7.95],[8672,8672,11],[8673,8673,7.95],[8674,8674,11],[8675,8675,7.95],[8676,8678,11],[8679,8679,12.99],[8680,8681,11],[8682,8682,12.99],[8683,8687,6.62],[8688,8688,9.51],[8689,8692,6.62],[8693,8693,11],[8694,8702,6.62],[8704,8704,6.93],[8705,8705,5.16],[8706,8706,6.16],[8707,8707,5.78],[8708,8708,5.88],[8709,8709,7.89],[8710,8710,7.55],[8711,8711,6.73],[8712,8712,6.34],[8713,8713,6.73],[8714,8714,5.6],[8715,8715,6.34],[8716,8716,6.48],[8717,8717,5.6],[8718,8718,5.74],[8719,8719,8.24],[8720,8720,9.05],[8721,8721,6.8],[8722,8722,6.6],[8723,8723,8.75],[8724,8724,6.58],[8725,8725,1.84],[8726,8726,8.84],[8727,8727,5.76],[8728,8728,3.9],[8729,8729,3.06],[8730,8730,6.21],[8731,8731,8.23],[8732,8732,7.97],[8733,8733,5.7],[8734,8734,9.05],[8735,8735,10.77],[8736,8736,6.57],[8737,8737,6.61],[8738,8738,6.66],[8739,8739,2.74],[8740,8740,5.2],[8741,8741,3.8],[8742,8742,5.78],[8743,8744,6.53],[8745,8745,7.91],[8746,8746,5.84],[8747,8747,4.59],[8748,8748,10.06],[8749,8749,12.36],[8750,8750,7.46],[8751,8751,10.16],[8752,8752,12.83],[8753,8753,6.58],[8754,8754,6.91],[8755,8755,6.57],[8756,8756,6.64],[8757,8757,6.57],[8758,8758,3.7],[8759,8759,6.33],[8760,8760,6.19],[8761,8761,6.33],[8762,8762,6.38],[8763,8763,6.16],[8764,8765,6.05],[8766,8766,5.97],[8767,8767,6.42],[8768,8768,4.29],[8769,8769,6.32],[8770,8770,6.38],[8771,8771,6.43],[8772,8772,7.38],[8773,8773,7.66],[8774,8774,6.92],[8775,8775,6.72],[8776,8777,6.6],[8778,8778,6.64],[8779,8779,7.38],[8780,8780,5.97],[8781,8781,6.63],[8782,8782,6.57],[8783,8783,6.52],[8784,8784,6.16],[8785,8785,7.02],[8786,8787,6.96],[8788,8789,8.4],[8790,8790,6.36],[8791,8791,6.55],[8792,8792,6.48],[8793,8793,6.69],[8794,8794,6.81],[8795,8795,7.11],[8796,8796,7],[8797,8797,6.19],[8798,8798,6.32],[8799,8799,6.49],[8800,8800,6.6],[8801,8802,6.27],[8803,8803,6.52],[8804,8805,6.6],[8806,8806,6.32],[8807,8807,6.2],[8808,8808,6.84],[8809,8809,6.48],[8810,8810,8.07],[8811,8811,7.71],[8812,8812,3.94],[8813,8813,6.09],[8814,8817,6.6],[8818,8818,6.2],[8819,8819,6.24],[8820,8820,6.41],[8821,8821,6.39],[8822,8823,6.66],[8824,8824,6.17],[8825,8825,6.34],[8826,8826,6.24],[8827,8827,6.36],[8828,8828,6.56],[8829,8829,6.36],[8830,8830,6.44],[8831,8831,6.4],[8832,8832,6.68],[8833,8833,6.36],[8834,8835,6.95],[8836,8836,7.08],[8837,8837,6.94],[8838,8839,7.29],[8840,8840,7.34],[8841,8841,7.14],[8842,8843,6.18],[8844,8845,6.4],[8846,8846,6.7],[8847,8848,7.19],[8849,8850,7.17],[8851,8852,6.72],[8853,8853,7.96],[8854,8854,8.2],[8855,8855,7.83],[8856,8856,7.94],[8857,8857,8.32],[8858,8858,8.09],[8859,8859,7.9],[8860,8860,8.37],[8861,8861,8.31],[8862,8862,8.62],[8863,8863,8.36],[8864,8864,8.06],[8865,8865,7.87],[8866,8869,8.26],[8870,8870,3.63],[8871,8871,3.67],[8872,8872,6.86],[8873,8873,8.02],[8874,8874,6.85],[8875,8875,8.31],[8876,8876,8.53],[8877,8877,8.56],[8878,8878,9.61],[8879,8879,9.2],[8880,8881,6.96],[8882,8883,8.15],[8884,8885,7.73],[8886,8887,8.08],[8888,8888,6.55],[8889,8889,7.51],[8890,8890,5.28],[8891,8892,7.66],[8893,8893,7.42],[8894,8894,8.16],[8895,8895,6.94],[8896,8897,7.38],[8898,8899,7.05],[8900,8900,4.19],[8901,8901,4.85],[8902,8902,4.93],[8903,8903,6.94],[8904,8904,8.5],[8905,8906,8.14],[8907,8908,7.96],[8909,8909,6.43],[8910,8911,6.98],[8912,8913,7.13],[8914,8915,6.26],[8916,8916,6.04],[8917,8917,6.75],[8918,8919,6.63],[8920,8921,10.65],[8922,8923,7.16],[8924,8925,7.11],[8926,8927,7.36],[8928,8928,7.33],[8929,8929,7.21],[8930,8930,7.55],[8931,8931,7.3],[8932,8932,7.38],[8933,8933,7.41],[8934,8934,7.44],[8935,8935,7.55],[8936,8936,7.91],[8937,8937,7.57],[8938,8938,8.23],[8939,8939,8.42],[8940,8940,8.49],[8941,8941,8.54],[8942,8942,4.52],[8943,8943,11],[8944,8944,10.12],[8945,8945,10.33],[8946,8946,7.15],[8947,8947,6.34],[8948,8948,5.6],[8949,8950,6.34],[8951,8951,5.6],[8952,8952,6.34],[8953,8953,6.95],[8954,8954,7.15],[8955,8955,6.34],[8956,8956,5.6],[8957,8957,6.34],[8958,8958,5.6],[8960,8961,6.62],[8962,8962,6.6],[8963,8963,10.21],[8964,8964,6.62],[8965,8965,8.74],[8966,8966,7.53],[8967,8967,11],[8968,8975,6.62],[8976,8976,6.27],[8977,8977,6.62],[8978,8978,11],[8979,8979,6.62],[8980,8980,9.51],[8981,8981,6.62],[8982,8982,6.04],[8983,8983,7.15],[8984,8984,10.21],[8985,8985,6.62],[8986,8987,11],[8988,8991,6.62],[8992,8993,6.64],[8994,8995,9.51],[8996,8996,8.74],[8997,8997,11],[8998,8998,14.38],[8999,8999,11],[9000,9000,6.62],[9001,9002,11],[9003,9003,14.38],[9004,9012,6.04],[9013,9013,6.62],[9014,9014,10.19],[9015,9020,6.62],[9021,9021,11],[9022,9022,6.62],[9023,9023,8.01],[9024,9024,6.6],[9025,9028,6.62],[9029,9030,6.6],[9031,9033,6.62],[9034,9034,6.6],[9035,9037,6.62],[9038,9039,6.6],[9040,9040,6.62],[9041,9041,6.6],[9042,9044,6.62],[9045,9046,6.6],[9047,9052,6.62],[9053,9053,6.6],[9054,9056,6.62],[9057,9058,6.6],[9059,9061,6.62],[9062,9063,6.6],[9064,9065,6.62],[9066,9066,6.6],[9067,9072,6.62],[9073,9074,6.6],[9075,9082,6.62],[9083,9083,7.36],[9084,9084,10.3],[9085,9085,3.51],[9086,9086,10.33],[9087,9087,4.08],[9088,9091,6.62],[9092,9092,8.63],[9093,9093,7.52],[9094,9094,7.42],[9095,9096,11],[9097,9098,6.62],[9099,9099,9.81],[9100,9100,8.88],[9101,9101,8.65],[9102,9102,8.22],[9103,9107,7.24],[9108,9108,8.17],[9109,9109,6.62],[9110,9110,5.19],[9111,9112,8.67],[9113,9114,8.97],[9115,9133,11],[9134,9134,6.62],[9135,9135,3.46],[9136,9137,11],[9138,9139,16.37],[9140,9141,6.77],[9142,9142,7.96],[9143,9143,7.07],[9144,9149,5.54],[9150,9164,11],[9165,9165,10.97],[9166,9166,12.03],[9167,9167,9.43],[9168,9168,5.62],[9169,9169,5.96],[9170,9171,5.97],[9172,9173,11.34],[9174,9174,10.54],[9175,9177,10.73],[9178,9179,11],[9180,9183,6.79],[9184,9184,6.77],[9185,9185,11],[9186,9186,12.58],[9187,9187,10.01],[9188,9188,12.03],[9189,9189,11.2],[9190,9190,10.19],[9191,9191,8.78],[9192,9192,5.5],[9193,9203,11],[9204,9207,5.5],[9208,9210,11],[9211,9214,5.5],[9216,9247,11],[9248,9248,6.6],[9249,9249,11],[9250,9250,6.6],[9251,9251,6.63],[9252,9252,6.6],[9253,9253,8.71],[9254,9254,4.44],[9255,9278,5.5],[9280,9285,6.64],[9286,9289,8.25],[9290,9290,6.64],[9291,9310,5.5],[9312,9412,11],[9413,9413,9.24],[9414,9470,11],[9472,9499,11],[9500,9500,7.79],[9501,9507,11],[9508,9508,7.79],[9509,9515,11],[9516,9516,7.79],[9517,9523,11],[9524,9524,7.79],[9525,9531,11],[9532,9532,7.79],[9533,9547,11],[9548,9551,6.8],[9552,9580,7.79],[9581,9588,11],[9589,9598,6.8],[9600,9600,7.79],[9601,9603,11],[9604,9604,7.79],[9605,9611,11],[9612,9612,7.79],[9613,9615,11],[9616,9618,7.79],[9619,9619,8.02],[9620,9621,11],[9622,9630,6.62],[9632,9633,6.64],[9634,9634,11],[9635,9641,9.51],[9642,9643,3.9],[9644,9644,11],[9645,9645,9.51],[9646,9648,6.62],[9649,9649,11],[9650,9650,10.89],[9651,9651,11],[9652,9652,6.96],[9653,9653,9.51],[9654,9654,9.68],[9655,9655,11],[9656,9657,5.83],[9658,9658,10.89],[9659,9659,6.62],[9660,9660,10.89],[9661,9661,11],[9662,9663,7.03],[9664,9664,11],[9665,9665,8.74],[9666,9666,6.62],[9667,9667,9.51],[9668,9668,10.89],[9669,9669,6.62],[9670,9670,7.95],[9671,9671,6.76],[9672,9672,9.51],[9673,9673,11],[9674,9674,6.6],[9675,9675,6.64],[9676,9676,6.54],[9677,9677,6.62],[9678,9678,11],[9679,9679,6.85],[9680,9683,11],[9684,9687,6.62],[9688,9689,6.64],[9690,9697,6.62],[9698,9701,11],[9702,9702,3.9],[9703,9710,6.62],[9711,9711,11],[9712,9722,6.62],[9723,9726,11],[9728,9731,11],[9732,9732,6.62],[9733,9734,11],[9735,9736,6.62],[9737,9737,11],[9738,9741,6.62],[9742,9742,11],[9743,9743,9.51],[9744,9746,9.13],[9747,9747,6.62],[9748,9751,11],[9752,9755,6.62],[9756,9759,11],[9760,9774,6.62],[9775,9775,9.51],[9776,9783,9.9],[9784,9784,6.62],[9785,9785,8.11],[9786,9786,11.23],[9787,9787,8.11],[9788,9788,10.08],[9789,9791,6.62],[9792,9792,8.25],[9793,9793,6.62],[9794,9794,8.25],[9795,9799,6.62],[9800,9811,11],[9812,9823,6.62],[9824,9824,5.84],[9825,9826,11],[9827,9827,7.22],[9828,9828,11],[9829,9829,6.53],[9830,9830,5.61],[9831,9833,11],[9834,9834,6.01],[9835,9835,8.25],[9836,9836,11],[9837,9837,5.49],[9838,9838,11],[9839,9839,6.04],[9840,9841,6.62],[9842,9853,11],[9854,9854,6.62],[9855,9855,11],[9856,9867,6.62],[9868,9868,9.67],[9869,9869,9.49],[9870,9870,9.45],[9871,9871,9.86],[9872,9874,6.62],[9875,9875,11],[9876,9884,6.62],[9885,9887,5.5],[9888,9889,11],[9890,9890,9.81],[9891,9891,9.87],[9892,9892,9.71],[9893,9893,7.26],[9894,9894,8.15],[9895,9895,10.16],[9896,9896,5.86],[9897,9897,10.12],[9898,9899,11],[9900,9900,7.1],[9901,9901,8.54],[9902,9902,11.61],[9903,9903,12.3],[9904,9905,6.62],[9906,9906,6.63],[9907,9916,5.5],[9917,9918,11],[9919,9923,5.5],[9924,9925,11],[9926,9927,5.5],[9928,9928,11],[9929,9930,5.5],[9931,9931,11],[9932,9933,5.5],[9934,9935,11],[9936,9936,5.5],[9937,9937,11],[9938,9938,5.5],[9939,9940,11],[9941,9953,5.5],[9954,9954,7.7],[9955,9960,5.5],[9961,9962,11],[9963,9967,5.5],[9968,9973,11],[9974,9974,5.5],[9975,9978,11],[9979,9980,5.5],[9981,9981,11],[9982,9982,5.5],[9984,9984,5.5],[9985,9985,10.72],[9986,9986,10.57],[9987,9987,10.72],[9988,9988,10.78],[9989,9989,11],[9990,9990,8.68],[9991,9991,8.69],[9992,9992,8.7],[9993,9993,7.59],[9994,9997,11],[9998,9998,8.72],[9999,9999,10.26],[10000,10000,10.02],[10001,10001,10.39],[10002,10002,10.72],[10003,10003,8.41],[10004,10004,9.31],[10005,10005,8.38],[10006,10006,8.37],[10007,10007,6.28],[10008,10008,7.44],[10009,10009,8.4],[10010,10010,8.36],[10011,10011,8.35],[10012,10012,8.29],[10013,10013,5.44],[10014,10014,6.07],[10015,10015,5.91],[10016,10016,6.35],[10017,10017,7.61],[10018,10018,8.65],[10019,10020,8.67],[10021,10021,8.69],[10022,10022,8.72],[10023,10023,8.73],[10024,10024,11],[10025,10025,9.06],[10026,10026,8.68],[10027,10027,9.25],[10028,10028,9.06],[10029,10029,9.16],[10030,10030,8.98],[10031,10031,9.14],[10032,10032,10.15],[10033,10033,8.19],[10034,10034,7.95],[10035,10035,8.24],[10036,10036,8.69],[10037,10037,8.71],[10038,10038,7.64],[10039,10039,8.53],[10040,10040,8.45],[10041,10041,8.71],[10042,10042,8.35],[10043,10043,7.78],[10044,10044,7.79],[10045,10045,7.5],[10046,10046,7.71],[10047,10047,9.09],[10048,10048,8.96],[10049,10050,8.68],[10051,10051,7.78],[10052,10052,7.56],[10053,10053,7.65],[10054,10054,7.58],[10055,10055,8.65],[10056,10056,8.66],[10057,10057,7.84],[10058,10058,8.7],[10059,10059,8.64],[10060,10060,11],[10061,10061,9.6],[10062,10062,11],[10063,10064,8.38],[10065,10066,8.35],[10067,10069,11],[10070,10070,8.63],[10071,10071,11],[10072,10072,3.31],[10073,10073,3.05],[10074,10074,4.57],[10075,10076,4.31],[10077,10078,7.35],[10079,10080,5.5],[10081,10081,8.05],[10082,10083,5.98],[10084,10084,10.01],[10085,10085,7.34],[10086,10087,8.36],[10088,10089,4.29],[10090,10091,3.49],[10092,10093,3.03],[10094,10095,5.6],[10096,10097,4.51],[10098,10099,2.57],[10100,10101,3.67],[10102,10131,8.67],[10132,10132,9.83],[10133,10135,11],[10136,10136,8.23],[10137,10137,10.16],[10138,10138,8.23],[10139,10139,10.1],[10140,10140,10.19],[10141,10142,10.21],[10143,10143,9.17],[10144,10144,9.6],[10145,10145,9.11],[10146,10147,10.16],[10148,10148,10.09],[10149,10149,10.23],[10150,10150,10.24],[10151,10151,5.09],[10152,10152,9.71],[10153,10154,9.2],[10155,10156,9.54],[10157,10158,7.65],[10159,10159,9.61],[10160,10160,11],[10161,10161,9.61],[10162,10162,8.36],[10163,10163,10.4],[10164,10164,8.48],[10165,10165,9.52],[10166,10166,8.48],[10167,10167,9.77],[10168,10168,10.63],[10169,10169,9.77],[10170,10170,9.14],[10171,10171,9.6],[10172,10172,10.19],[10173,10173,10.67],[10174,10174,10.1],[10176,10176,6.03],[10177,10177,10.43],[10178,10178,7.58],[10179,10180,6.21],[10181,10182,6.62],[10183,10183,6.82],[10184,10185,10.1],[10186,10186,3.74],[10187,10187,9.22],[10188,10188,3.57],[10189,10189,9.22],[10190,10191,5.5],[10192,10192,8.21],[10193,10193,6.82],[10194,10194,6.57],[10195,10196,5.97],[10197,10198,9.93],[10199,10199,12.26],[10200,10201,7.58],[10202,10202,9.57],[10203,10203,9.42],[10204,10204,11.6],[10205,10206,9.33],[10207,10207,4.36],[10208,10208,6.06],[10209,10209,7.7],[10210,10211,9.64],[10212,10213,10.41],[10214,10215,4.64],[10216,10217,4.02],[10218,10219,5.1],[10220,10221,5.37],[10222,10222,2.56],[10224,10225,10.8],[10226,10227,10.48],[10228,10228,13.71],[10229,10238,12.97],[10240,10494,7.52],[10496,10497,10.29],[10498,10499,9.52],[10500,10500,11.39],[10501,10501,10.29],[10502,10503,9.52],[10504,10505,5.25],[10506,10507,7.89],[10508,10511,9.7],[10512,10512,11.47],[10513,10513,9.22],[10514,10515,8.33],[10516,10517,9.51],[10518,10520,11.47],[10521,10524,9.51],[10525,10528,9.7],[10529,10530,8.21],[10531,10534,7.15],[10535,10535,8.57],[10536,10536,8.13],[10537,10537,8.57],[10538,10538,8.13],[10539,10540,7.68],[10541,10544,8.13],[10545,10546,8.57],[10547,10547,9.31],[10548,10549,11],[10550,10551,9.51],[10552,10552,4.48],[10553,10553,9.51],[10554,10557,8.89],[10558,10559,7.21],[10560,10561,8.39],[10562,10567,9.22],[10568,10568,10.13],[10569,10569,5.36],[10570,10571,9.22],[10572,10573,5.44],[10574,10574,9.22],[10575,10575,4.76],[10576,10576,9.22],[10577,10577,4.76],[10578,10579,9.49],[10580,10581,4.76],[10582,10583,9.49],[10584,10585,4.76],[10586,10587,9.59],[10588,10589,4.76],[10590,10591,9.59],[10592,10593,4.76],[10594,10597,9.51],[10598,10605,9.22],[10606,10607,7.85],[10608,10613,9.22],[10614,10614,7.95],[10615,10615,11.47],[10616,10616,7.95],[10617,10617,8.41],[10618,10618,10.13],[10619,10619,8.41],[10620,10621,6.12],[10622,10622,6.57],[10624,10624,4.01],[10625,10625,4.18],[10626,10626,3.45],[10627,10628,4.11],[10629,10630,4.92],[10631,10632,3.68],[10633,10634,4.35],[10635,10636,3.31],[10637,10640,3.3],[10641,10641,4.02],[10642,10642,4.04],[10643,10644,7.25],[10645,10646,7.65],[10647,10648,7.13],[10649,10649,2.48],[10650,10650,3.05],[10651,10651,6.53],[10652,10653,6.51],[10654,10654,7.27],[10655,10655,6.03],[10656,10657,6.53],[10658,10661,6.03],[10662,10663,8.28],[10664,10671,6.53],[10672,10676,7.73],[10677,10677,9.56],[10678,10678,7.7],[10679,10679,7.72],[10680,10680,7.94],[10681,10681,7.72],[10682,10682,7.73],[10683,10683,7.74],[10684,10689,7.72],[10690,10690,9.41],[10691,10691,9.61],[10692,10696,8.22],[10697,10697,8.75],[10698,10700,8.23],[10701,10701,10.38],[10702,10702,7.15],[10703,10704,8.34],[10705,10707,7.56],[10708,10709,7.17],[10710,10711,8.44],[10712,10713,3.05],[10714,10715,4.66],[10716,10716,7.01],[10717,10717,7.12],[10718,10718,7.01],[10719,10719,7.41],[10720,10720,8.22],[10721,10721,7.19],[10722,10722,7.51],[10723,10725,7.3],[10726,10726,7.81],[10727,10727,6.99],[10728,10729,8.23],[10730,10730,7.89],[10731,10731,5.2],[10732,10733,9.89],[10734,10735,6.57],[10736,10737,7.79],[10738,10739,7.72],[10740,10740,9],[10741,10741,4.08],[10742,10742,6.34],[10743,10745,5.59],[10746,10747,7.43],[10748,10749,5.91],[10750,10750,5.2],[10752,10753,9.89],[10754,10754,9.92],[10755,10756,5.99],[10757,10758,6.55],[10759,10760,8.43],[10761,10761,7.33],[10762,10762,9.41],[10763,10763,7.18],[10764,10764,16.56],[10765,10767,6.72],[10768,10768,6.52],[10769,10769,8.01],[10770,10770,6.74],[10771,10771,6.52],[10772,10772,7.42],[10773,10773,6.52],[10774,10774,6.72],[10775,10775,7.43],[10776,10778,6.72],[10779,10779,7.02],[10780,10780,6.79],[10781,10781,7.56],[10782,10782,4.35],[10783,10783,3.67],[10784,10784,8.92],[10785,10785,3.59],[10786,10787,5.95],[10788,10788,5.99],[10789,10789,5.95],[10790,10790,5.99],[10791,10791,7.12],[10792,10792,7.02],[10793,10794,5.99],[10795,10796,5.97],[10797,10798,8.37],[10799,10799,5.04],[10800,10800,5.82],[10801,10801,5.96],[10802,10802,5.74],[10803,10803,8.85],[10804,10805,7.86],[10806,10808,9.89],[10809,10811,8.23],[10812,10813,5.63],[10814,10814,3.67],[10815,10815,6.77],[10816,10821,5.99],[10822,10823,4.27],[10824,10825,5.96],[10826,10827,5.62],[10828,10829,8.13],[10830,10831,6.55],[10832,10832,8.13],[10833,10834,6.71],[10835,10836,7.17],[10837,10838,8.28],[10839,10840,7.17],[10841,10841,6.67],[10842,10843,7.17],[10844,10845,8.12],[10846,10848,6.71],[10849,10849,5.97],[10850,10851,6.71],[10852,10853,7.34],[10854,10857,5.96],[10858,10861,5.98],[10862,10862,5.33],[10863,10864,5.98],[10865,10866,5.97],[10867,10867,5.99],[10868,10868,9.33],[10869,10869,10.82],[10870,10870,16.03],[10871,10871,6],[10872,10872,6.55],[10873,10874,7.25],[10875,10876,5.63],[10877,10879,5.97],[10880,10880,5.98],[10881,10884,5.97],[10885,10886,5.98],[10887,10887,6.06],[10888,10888,6.27],[10889,10890,5.98],[10891,10892,5.97],[10893,10893,6.06],[10894,10894,6.03],[10895,10896,5.99],[10897,10903,5.97],[10904,10906,5.98],[10907,10908,5.97],[10909,10910,5.98],[10911,10911,6.07],[10912,10912,6],[10913,10914,7.51],[10915,10915,8.87],[10916,10916,5.99],[10917,10917,10.29],[10918,10921,6.75],[10922,10922,5.63],[10923,10923,5.76],[10924,10924,6.06],[10925,10925,6.11],[10926,10926,5.97],[10927,10929,6.08],[10930,10930,6.06],[10931,10934,6.08],[10935,10935,6.02],[10936,10936,6.03],[10937,10937,6.02],[10938,10938,6.03],[10939,10940,9.76],[10941,10942,6.21],[10943,10950,5.05],[10951,10954,6],[10955,10956,5.05],[10957,10958,10.48],[10959,10960,6.21],[10961,10962,6.2],[10963,10966,5.05],[10967,10968,9.35],[10969,10971,6.57],[10972,10972,6.71],[10973,10973,6.57],[10974,10974,4.32],[10975,10977,7.58],[10978,10978,7.55],[10979,10979,7.52],[10980,10980,7.55],[10981,10981,9.21],[10982,10982,7.54],[10983,10985,7.58],[10986,10987,7.62],[10988,10989,5.63],[10990,10990,3.44],[10991,10992,3.13],[10993,10993,3.29],[10994,10994,4.29],[10995,10995,5.98],[10996,10996,3.84],[10997,10997,5.26],[10998,10998,2.48],[10999,11000,10.68],[11001,11002,5.97],[11003,11003,5.48],[11004,11004,3.9],[11005,11005,4.52],[11006,11006,3.23],[11904,11929,11],[11930,11930,5.5],[11931,12019,11],[12020,12030,5.5],[12272,12283,11],[12284,12286,5.5],[12288,12333,11],[12334,12335,17.6],[12336,12350,11],[12800,12827,9.51],[12828,12828,9.56],[12829,12831,5.5],[12832,12879,11],[12880,12880,5.5],[12881,12895,11],[12896,12923,9.51],[12924,12926,5.5],[12927,12927,9.51],[12928,13003,11],[13004,13007,5.5],[13008,13054,11],[13056,13174,11],[13175,13178,5.5],[13179,13183,11],[13184,13188,9.51],[13189,13193,11],[13194,13196,9.51],[13197,13200,11],[13201,13205,9.51],[13206,13208,11],[13209,13210,9.51],[13211,13222,11],[13223,13231,9.51],[13232,13235,11],[13236,13249,9.51],[13250,13250,11],[13251,13251,9.51],[13252,13252,11],[13253,13255,9.51],[13256,13256,11],[13257,13258,9.51],[13259,13262,11],[13263,13264,9.51],[13265,13266,11],[13267,13267,9.51],[13268,13269,11],[13270,13270,9.51],[13271,13274,11],[13275,13277,9.51],[13278,13279,5.5],[13280,13310,11],[13312,19893,11],[19894,19902,5.5],[19968,40898,11],[40899,40899,5.5],[40900,40900,11],[40901,40901,5.5],[40902,40912,11],[40913,40958,5.5],[63744,64045,11],[64046,64047,5.5],[64048,64109,11],[64110,64254,5.5],[65072,65102,11],[65136,65136,3.43],[65137,65137,2.23],[65138,65138,3.43],[65139,65139,3.3],[65140,65140,3.43],[65141,65141,5.5],[65142,65142,3.43],[65143,65143,2.23],[65144,65144,3.43],[65145,65145,2.23],[65146,65146,3.43],[65147,65147,2.23],[65148,65148,3.43],[65149,65149,2.23],[65150,65150,3.43],[65151,65151,2.23],[65152,65152,5.16],[65153,65153,2.62],[65154,65154,2.79],[65155,65155,2.38],[65156,65156,2.58],[65157,65158,4.96],[65159,65159,2.38],[65160,65160,2.58],[65161,65161,7.09],[65162,65162,6.35],[65163,65164,2.99],[65165,65165,2.38],[65166,65166,2.58],[65167,65168,7.14],[65169,65170,2.99],[65171,65171,3.77],[65172,65172,4.57],[65173,65174,7.14],[65175,65176,2.99],[65177,65178,7.14],[65179,65180,2.99],[65181,65181,6.35],[65182,65182,6.14],[65183,65184,5.76],[65185,65185,6.35],[65186,65186,6.14],[65187,65188,5.76],[65189,65189,6.35],[65190,65190,6.14],[65191,65192,5.76],[65193,65196,3.77],[65197,65200,4.76],[65201,65202,9.89],[65203,65204,6.69],[65205,65206,9.89],[65207,65208,6.69],[65209,65210,11.69],[65211,65212,8.49],[65213,65214,11.69],[65215,65216,8.49],[65217,65224,5.76],[65225,65225,5.95],[65226,65226,5.16],[65227,65227,5.95],[65228,65228,3.96],[65229,65229,5.95],[65230,65230,5.16],[65231,65231,5.95],[65232,65232,3.96],[65233,65234,8.34],[65235,65235,3.35],[65236,65236,3.57],[65237,65238,6.74],[65239,65239,3.35],[65240,65240,3.57],[65241,65242,5.95],[65243,65244,3.96],[65245,65246,4.96],[65247,65248,2.58],[65249,65250,3.96],[65251,65252,4.57],[65253,65254,5.95],[65255,65256,2.99],[65257,65257,3.77],[65258,65258,4.57],[65259,65259,5.16],[65260,65262,4.96],[65263,65263,7.09],[65264,65264,6.1],[65265,65265,7.09],[65266,65266,6.35],[65267,65268,2.99],[65269,65269,5.95],[65270,65270,6.55],[65271,65271,5.35],[65272,65272,5.95],[65273,65273,5.35],[65274,65274,5.95],[65275,65275,5.35],[65276,65276,5.95],[65277,65278,5.5],[65280,65280,5.5],[65281,65376,11],[65377,65440,5.5],[65441,65441,5.22],[65442,65443,5.5],[65444,65444,5.22],[65445,65446,5.5],[65447,65447,5.22],[65448,65503,5.5],[65504,65510,11],[65511,65511,5.5],[65512,65512,11],[65513,65518,5.5],[65792,65792,7.53],[65793,65793,6.31],[65794,65794,7.53],[65795,65795,6.31],[65796,65796,7.53],[65797,65797,6.31],[65798,65798,8.15],[65799,65799,6.31],[65800,65800,8.15],[65801,65801,6.31],[65802,65802,8.15],[65803,65803,6.31],[65804,65804,8.15],[65805,65805,6.31],[65806,65806,8.15],[65807,65807,6.72],[65808,65808,8.15],[65809,65809,6.83],[65810,65810,7.13],[65811,65811,6.31],[65812,65812,7.13],[65813,65813,6.31],[65814,65814,7.13],[65815,65815,6.31],[65816,65816,7.13],[65817,65817,6.31],[65818,65818,7.13],[65819,65819,6.31],[65820,65820,8.35],[65821,65821,6.72],[65822,65822,8.35],[65823,65823,6.72],[65824,65824,8.35],[65825,65825,6.72],[65826,65826,8.35],[65827,65827,6.72],[65828,65828,8.15],[65829,65829,6.52],[65830,65830,8.15],[65831,65831,6.63],[65832,65832,3.24],[65833,65833,2.84],[65834,65834,3.24],[65835,65835,2.84],[65836,65836,3.24],[65837,65837,2.84],[65838,65838,3.24],[65839,65839,2.84],[65840,65840,3.24],[65841,65841,2.84],[65842,65842,9.29],[65843,65843,5.76],[65844,65844,6.12],[65845,65845,3.06],[65846,65846,7.94],[65847,65847,6.31],[65848,65848,6.21],[65849,65849,6.52],[65850,65850,2.84],[65851,65851,6.52],[65852,65852,2.84],[65853,65853,6.52],[65854,65854,4.27],[66304,66350,0],[66352,66382,0],[66560,66561,7.13],[66562,66562,8.84],[66563,66563,6.31],[66564,66564,8.1],[66565,66565,7.14],[66566,66567,3.24],[66568,66568,6.12],[66569,66569,12.38],[66570,66570,12.35],[66571,66571,8.84],[66572,66572,7.94],[66573,66573,8.19],[66574,66574,7.12],[66575,66575,8.05],[66576,66576,7.53],[66577,66577,7.72],[66578,66578,7.74],[66579,66579,6.31],[66580,66580,8.49],[66581,66581,7.13],[66582,66582,11.67],[66583,66583,7.12],[66584,66585,8.19],[66586,66586,7.94],[66587,66587,8.17],[66588,66588,9.98],[66589,66589,8.15],[66590,66590,8.56],[66591,66591,8.05],[66592,66592,7.34],[66593,66593,8.15],[66594,66594,6.72],[66595,66595,7.12],[66596,66596,10.15],[66597,66597,7.34],[66598,66598,8.27],[66599,66599,7.48],[66600,66600,11.45],[66601,66601,11.67],[66602,66602,8.95],[66603,66603,10.22],[66604,66604,7.45],[66605,66605,8.12],[66606,66606,11.25],[66607,66607,7.97],[66608,66608,6.31],[66609,66609,6.68],[66610,66610,6.39],[66611,66611,4.98],[66612,66612,6.86],[66613,66613,6.31],[66614,66614,8.93],[66615,66615,5.96],[66616,66617,6.6],[66618,66618,6.31],[66619,66619,6.59],[66620,66620,8.12],[66621,66621,6.52],[66622,66622,6.72],[66623,66623,6.41],[66624,66624,6.72],[66625,66625,6.31],[66626,66626,5.52],[66627,66627,5.71],[66628,66628,9.42],[66629,66629,5.91],[66630,66630,6.63],[66631,66631,6.31],[66632,66632,9.01],[66633,66633,9.17],[66634,66634,7.11],[66635,66635,8.56],[66636,66636,6.03],[66637,66637,6.34],[66638,66638,9.18],[119040,119294,9.51],[119808,120739,9.51],[120740,120830,5.5],[131072,131072,0],[131073,131079,3.66],[131080,131080,0],[131081,131085,3.06],[131086,131100,3.66],[131101,131101,0],[131102,131103,3.66],[131104,131105,3.06],[131106,131106,5.09],[131107,131108,6.12],[131109,131109,11],[131110,131110,7.53],[131111,131111,3.06],[131112,131113,3.26],[131114,131114,4.48],[131115,131115,6.6],[131116,131116,3.06],[131117,131117,4.48],[131118,131118,3.06],[131119,131119,4.08],[131120,131129,6.12],[131130,131131,3.06],[131132,131134,6.6],[131135,131135,6.12],[131136,131136,8.8],[131137,131137,7.53],[131138,131138,7.74],[131139,131140,8.15],[131141,131141,7.13],[131142,131142,6.52],[131143,131143,8.35],[131144,131144,8.15],[131145,131145,3.24],[131146,131146,6.12],[131147,131147,7.94],[131148,131148,6.52],[131149,131149,9.98],[131150,131150,8.15],[131151,131151,8.56],[131152,131152,7.34],[131153,131153,8.56],[131154,131154,7.94],[131155,131155,7.14],[131156,131156,6.72],[131157,131157,8.15],[131158,131158,6.93],[131159,131159,10.38],[131160,131161,7.34],[131162,131162,7.13],[131163,131163,3.66],[131164,131164,4.08],[131165,131165,3.66],[131166,131166,6.6],[131167,131167,5.5],[131168,131168,2.85],[131169,131169,6.31],[131170,131170,6.72],[131171,131171,6.31],[131172,131172,6.72],[131173,131173,6.31],[131174,131174,3.66],[131175,131175,6.72],[131176,131176,6.52],[131177,131177,2.84],[131178,131178,3.06],[131179,131179,6.31],[131180,131180,2.84],[131181,131181,9.97],[131182,131182,6.52],[131183,131185,6.72],[131186,131186,4.28],[131187,131187,5.91],[131188,131188,3.87],[131189,131189,6.52],[131190,131190,5.72],[131191,131191,8.95],[131192,131192,5.91],[131193,131194,5.71],[131195,131195,3.66],[131196,131196,2.45],[131197,131197,3.66],[131198,131198,6.6],[131199,131199,0],[131200,131200,6.39],[131201,131231,5.5],[131232,131233,3.06],[131234,131237,6.12],[131238,131238,2.45],[131239,131239,6.12],[131240,131240,2.85],[131241,131241,8.8],[131242,131242,3.78],[131243,131243,4.88],[131244,131244,6.6],[131245,131245,0],[131246,131246,8.8],[131247,131247,2.85],[131248,131248,4.4],[131249,131249,6.6],[131250,131251,4.31],[131252,131252,2.85],[131253,131253,6.52],[131254,131254,6.82],[131255,131255,3.06],[131256,131256,2.85],[131257,131257,4.31],[131258,131258,4.04],[131259,131259,4.88],[131260,131260,9.81],[131261,131262,9.78],[131263,131263,6.12],[131264,131269,7.53],[131270,131270,10.79],[131271,131271,8.15],[131272,131275,7.13],[131276,131279,3.24],[131280,131281,8.15],[131282,131286,8.56],[131287,131287,6.6],[131288,131288,8.56],[131289,131292,8.15],[131293,131294,7.34],[131295,131295,6.72],[131296,131301,6.31],[131302,131302,9.98],[131303,131307,6.31],[131308,131311,2.84],[131312,131312,6.72],[131313,131313,6.52],[131314,131318,6.72],[131319,131319,6.6],[131320,131320,6.72],[131321,131324,6.52],[131325,131325,5.71],[131326,131326,6.72],[131327,131327,5.71],[131328,131328,7.53],[131329,131329,6.31],[131330,131330,7.53],[131331,131331,6.31],[131332,131332,7.53],[131333,131333,6.31],[131334,131334,8.15],[131335,131335,6.31],[131336,131336,8.15],[131337,131337,6.31],[131338,131338,8.15],[131339,131339,6.31],[131340,131340,8.15],[131341,131341,6.31],[131342,131342,8.15],[131343,131343,6.72],[131344,131344,8.15],[131345,131345,6.83],[131346,131346,7.13],[131347,131347,6.31],[131348,131348,7.13],[131349,131349,6.31],[131350,131350,7.13],[131351,131351,6.31],[131352,131352,7.13],[131353,131353,6.31],[131354,131354,7.13],[131355,131355,6.31],[131356,131356,8.35],[131357,131357,6.72],[131358,131358,8.35],[131359,131359,6.72],[131360,131360,8.35],[131361,131361,6.72],[131362,131362,8.35],[131363,131363,6.72],[131364,131364,8.15],[131365,131365,6.52],[131366,131366,8.15],[131367,131367,6.63],[131368,131368,3.24],[131369,131369,2.84],[131370,131370,3.24],[131371,131371,2.84],[131372,131372,3.24],[131373,131373,2.84],[131374,131374,3.24],[131375,131375,2.84],[131376,131376,3.24],[131377,131377,2.84],[131378,131378,9.29],[131379,131379,5.76],[131380,131380,6.12],[131381,131381,3.06],[131382,131382,7.94],[131383,131383,6.31],[131384,131384,6.21],[131385,131385,6.52],[131386,131386,2.84],[131387,131387,6.52],[131388,131388,2.84],[131389,131389,6.52],[131390,131390,4.27],[131391,131391,6.52],[131392,131392,4.51],[131393,131393,6.52],[131394,131394,2.84],[131395,131395,8.15],[131396,131396,6.52],[131397,131397,8.15],[131398,131398,6.52],[131399,131399,8.15],[131400,131400,6.52],[131401,131401,8.11],[131402,131402,8.15],[131403,131403,6.52],[131404,131404,8.56],[131405,131405,6.72],[131406,131406,8.56],[131407,131407,6.72],[131408,131408,8.56],[131409,131409,6.72],[131410,131410,12.02],[131411,131411,10.19],[131412,131412,7.94],[131413,131413,4.28],[131414,131414,7.94],[131415,131415,4.28],[131416,131416,7.94],[131417,131417,4.28],[131418,131418,7.14],[131419,131419,5.91],[131420,131420,7.14],[131421,131421,5.91],[131422,131422,7.14],[131423,131423,5.91],[131424,131424,7.14],[131425,131425,5.91],[131426,131426,6.72],[131427,131427,3.87],[131428,131428,6.72],[131429,131429,3.87],[131430,131430,6.72],[131431,131431,3.87],[131432,131432,8.15],[131433,131433,6.52],[131434,131434,8.15],[131435,131435,6.52],[131436,131436,8.15],[131437,131437,6.52],[131438,131438,8.15],[131439,131439,6.52],[131440,131440,8.15],[131441,131441,6.52],[131442,131442,8.15],[131443,131443,6.52],[131444,131444,10.38],[131445,131445,8.95],[131446,131446,7.34],[131447,131447,5.71],[131448,131448,7.34],[131449,131449,7.13],[131450,131450,5.71],[131451,131451,7.13],[131452,131452,5.71],[131453,131453,7.13],[131454,131454,5.71],[131455,131455,3.66],[131456,131456,6.72],[131457,131457,8.3],[131458,131458,7.34],[131459,131459,6.72],[131460,131460,7.27],[131461,131461,6.12],[131462,131463,7.94],[131464,131464,4.88],[131465,131465,7.94],[131466,131466,8.98],[131467,131467,7.34],[131468,131468,6.72],[131469,131469,6.35],[131470,131470,7.34],[131471,131471,8.23],[131472,131472,6.25],[131473,131473,6.72],[131474,131474,6.12],[131475,131475,8.56],[131476,131476,7.94],[131477,131477,8.6],[131478,131478,3.06],[131479,131479,4.29],[131480,131480,8.56],[131481,131481,6.12],[131482,131482,4.29],[131483,131483,6.04],[131484,131484,10.34],[131485,131485,7.94],[131486,131486,6.72],[131487,131487,8.56],[131488,131488,10.41],[131489,131489,8.74],[131490,131490,10.14],[131491,131491,8.4],[131492,131492,7.64],[131493,131493,6.12],[131494,131494,7.15],[131495,131495,7.34],[131496,131496,6.12],[131497,131497,6.54],[131498,131498,5.64],[131499,131499,3.66],[131500,131500,7.34],[131501,131501,3.66],[131502,131502,6.72],[131503,131503,10.1],[131504,131504,8.85],[131505,131505,8.52],[131506,131506,7.17],[131507,131507,8.7],[131508,131508,5.5],[131509,131509,7.13],[131510,131510,5.71],[131511,131512,6.6],[131513,131513,6.06],[131514,131514,4.98],[131515,131515,6.73],[131516,131516,5.55],[131517,131517,4.23],[131518,131518,3.66],[131519,131519,6.56],[131520,131520,3.08],[131521,131521,5.82],[131522,131522,6.29],[131523,131523,3.66],[131524,131524,13.53],[131525,131525,12.45],[131526,131526,11.66],[131527,131527,11.64],[131528,131528,9.18],[131529,131529,5.73],[131530,131530,12.74],[131531,131531,9.97],[131532,131532,8.8],[131533,131533,7.94],[131534,131534,6.12],[131535,131536,3.06],[131537,131537,8.56],[131538,131538,6.72],[131539,131539,7.94],[131540,131540,6.72],[131541,131541,7.94],[131542,131542,6.72],[131543,131543,7.94],[131544,131544,6.72],[131545,131545,7.94],[131546,131546,6.72],[131547,131547,7.94],[131548,131548,6.72],[131549,131549,6.12],[131550,131550,7.94],[131551,131551,6.12],[131552,131552,7.94],[131553,131553,6.12],[131554,131554,11],[131555,131555,9.78],[131556,131556,9.07],[131557,131557,7.56],[131558,131558,8.56],[131559,131559,6.72],[131560,131560,7.94],[131561,131561,6.12],[131562,131562,8.56],[131563,131563,6.72],[131564,131564,8.56],[131565,131565,6.72],[131566,131566,6.39],[131567,131567,5.86],[131568,131568,3.06],[131569,131569,13.82],[131570,131570,12.68],[131571,131571,11.91],[131572,131572,8.56],[131573,131573,6.72],[131574,131574,10.67],[131575,131575,7.34],[131576,131576,7.94],[131577,131577,6.72],[131578,131578,7.53],[131579,131579,6.31],[131580,131580,10.79],[131581,131581,9.98],[131582,131582,8.56],[131583,131583,6.72],[131584,131584,7.94],[131585,131585,6.12],[131586,131586,7.94],[131587,131587,6.12],[131588,131588,7.34],[131589,131589,6.12],[131590,131590,7.34],[131591,131591,6.12],[131592,131595,3.06],[131596,131596,8.56],[131597,131597,6.72],[131598,131598,8.56],[131599,131599,6.72],[131600,131600,7.94],[131601,131601,4.28],[131602,131602,7.94],[131603,131603,4.28],[131604,131604,7.94],[131605,131605,6.72],[131606,131606,7.94],[131607,131607,6.72],[131608,131608,7.14],[131609,131609,5.91],[131610,131610,6.72],[131611,131611,3.87],[131612,131613,7.3],[131614,131614,7.94],[131615,131615,6.72],[131616,131616,7.94],[131617,131617,6.12],[131618,131618,7.44],[131619,131619,5.52],[131620,131620,7.34],[131621,131621,4.88],[131622,131622,7.94],[131623,131623,6.12],[131624,131624,7.34],[131625,131625,6.12],[131626,131626,8.56],[131627,131627,6.72],[131628,131628,8.56],[131629,131629,6.72],[131630,131630,8.56],[131631,131631,6.72],[131632,131632,8.56],[131633,131633,6.72],[131634,131634,7.34],[131635,131635,6.12],[131636,131636,3.06],[131637,131637,6.12],[131638,131638,3.97],[131639,131639,3.06],[131640,131640,10.57],[131641,131641,10.59],[131642,131643,7.94],[131644,131644,6.12],[131645,131646,6.72],[131647,131647,4.28],[131648,131648,4.88],[131649,131650,6.72],[131651,131651,8.39],[131652,131652,9.15],[131653,131654,7.34],[131655,131656,6.12],[131657,131657,3.06],[131658,131658,9.06],[131659,131659,7.25],[131660,131660,8.49],[131661,131661,4.83],[131662,131662,8.44],[131663,131663,7.27],[131664,131664,6.12],[131665,131666,6.51],[131667,131667,6.72],[131668,131668,6.12],[131669,131669,4.88],[131670,131670,7.11],[131671,131671,6.72],[131672,131672,6.12],[131673,131673,6.31],[131674,131674,9.7],[131675,131676,5.55],[131677,131677,8.78],[131678,131678,5.91],[131679,131679,3.66],[131680,131681,6.72],[131682,131682,6.5],[131683,131683,5.5],[131684,131684,5.69],[131685,131686,6.72],[131687,131687,7.25],[131688,131688,4.16],[131689,131689,3.06],[131690,131690,3.67],[131691,131691,4.31],[131692,131692,3.06],[131693,131693,3.35],[131694,131694,6.68],[131695,131697,9.78],[131698,131698,6.72],[131699,131699,7.13],[131700,131700,5.82],[131701,131701,6.72],[131702,131702,10.38],[131703,131703,8.04],[131704,131704,7.94],[131705,131706,4.28],[131707,131707,5.19],[131708,131709,4.28],[131710,131711,3.06],[131712,131713,5.86],[131714,131714,4.28],[131715,131716,4.18],[131717,131717,4.71],[131718,131718,3.51],[131719,131720,3.66],[131721,131721,8.24],[131722,131722,6.35],[131723,131723,5.76],[131724,131724,6.12],[131725,131725,8.56],[131726,131726,6.12],[131727,131727,5.49],[131728,131728,4.88],[131729,131729,5.65],[131730,131730,6.06],[131731,131731,5.04],[131732,131734,6.72],[131735,131735,5.72],[131736,131736,8.56],[131737,131737,5.94],[131738,131738,5.91],[131739,131739,6.5],[131740,131740,7.11],[131741,131741,3.66],[131742,131742,6.12],[131743,131743,5.84],[131744,131746,6.72],[131747,131747,11],[131748,131748,11.18],[131749,131749,10.23],[131750,131750,8.66],[131751,131751,6.68],[131752,131752,7.78],[131753,131753,9.2],[131754,131754,7.56],[131755,131755,7.34],[131756,131756,4.87],[131757,131757,6.47],[131758,131759,6.72],[131760,131761,3.37],[131762,131762,1.53],[131763,131764,2.14],[131765,131765,2.6],[131766,131766,4.16],[131767,131767,4.28],[131768,131768,3.06],[131769,131769,3.66],[131770,131770,6.71],[131771,131773,3.06],[131774,131775,2.25],[131776,131777,3.37],[131778,131781,3.21],[131782,131783,2.85],[131784,131784,3.66],[131785,131785,2.85],[131786,131791,3.66],[131792,131793,2.29],[131794,131795,2.25],[131796,131798,3.21],[131799,131799,3.66],[131800,131805,2.85],[131806,131806,4.55],[131807,131807,3.21],[131808,131808,3.06],[131809,131809,1.53],[131810,131811,3.06],[131812,131812,3.37],[131813,131813,5.22],[131814,131816,5.17],[131817,131817,5.22],[131818,131818,3.26],[131819,131819,3.24],[131820,131821,3.66],[131822,131822,5.5],[131823,131826,3.21],[131827,131838,3.66],[131839,131839,6.54],[131840,131951,0],[131952,131952,4.67],[131953,131953,3.68],[131954,131954,6.93],[131955,131955,5.83],[131956,131957,3.06],[131958,131958,8.03],[131959,131959,6.52],[131960,131961,5.5],[131962,131962,1.53],[131963,131965,6.12],[131966,131966,3.06],[131967,131967,3.66],[131968,131971,5.5],[131972,131972,2.65],[131973,131973,5.63],[131974,131974,7.94],[131975,131975,3.06],[131976,131976,9.28],[131977,131977,10.31],[131978,131978,5.4],[131979,131979,5.5],[131980,131980,10.21],[131981,131981,5.5],[131982,131982,10.16],[131983,131983,10.22],[131984,131984,3.08],[131985,131985,7.53],[131986,131986,7.74],[131987,131987,6.28],[131988,131988,7.49],[131989,131990,7.13],[131991,131991,8.15],[131992,131992,8.56],[131993,131993,3.24],[131994,131994,7.94],[131995,131995,7.31],[131996,131996,9.98],[131997,131997,8.15],[131998,131998,6.85],[131999,131999,8.56],[132000,132000,8.28],[132001,132001,7.34],[132002,132002,5.5],[132003,132003,7.13],[132004,132004,6.72],[132005,132005,7.34],[132006,132006,8.96],[132007,132007,7.34],[132008,132008,9.25],[132009,132009,8.5],[132010,132010,3.26],[132011,132011,7.23],[132012,132012,6.8],[132013,132013,5.66],[132014,132014,6.52],[132015,132015,3],[132016,132016,6.25],[132017,132017,6.8],[132018,132018,6.47],[132019,132019,5.59],[132020,132020,6.51],[132021,132021,5.66],[132022,132022,5.21],[132023,132023,6.52],[132024,132024,6.32],[132025,132025,3],[132026,132026,6.24],[132027,132027,6.06],[132028,132028,6.52],[132029,132029,5.83],[132030,132030,5.11],[132031,132031,6.72],[132032,132032,7.33],[132033,132033,6.57],[132034,132034,6.02],[132035,132035,6.58],[132036,132036,5.49],[132037,132037,6.29],[132038,132038,8.29],[132039,132039,5.91],[132040,132040,7.99],[132041,132041,8.36],[132042,132042,3.08],[132043,132043,6.32],[132044,132044,6.72],[132045,132045,6.32],[132046,132046,8.36],[132047,132047,6.14],[132048,132048,5.8],[132049,132049,6.59],[132050,132050,7.94],[132051,132051,10.16],[132052,132052,7.94],[132053,132053,6.86],[132054,132054,8.04],[132055,132055,6.38],[132056,132056,8.56],[132057,132057,5.5],[132058,132058,7.94],[132059,132059,4.64],[132060,132060,6.72],[132061,132061,6.01],[132062,132062,6.55],[132063,132063,5.07],[132064,132064,8.27],[132065,132065,6.1],[132066,132066,9.57],[132067,132067,9.16],[132068,132068,7.98],[132069,132069,6.45],[132070,132070,8.14],[132071,132071,4.88],[132072,132072,6.88],[132073,132073,6.45],[132074,132074,7.5],[132075,132075,6.66],[132076,132076,7.97],[132077,132077,5.67],[132078,132078,5.94],[132079,132079,4.95],[132080,132080,6.38],[132081,132081,5.5],[132082,132082,6.12],[132083,132083,2.83],[132084,132084,8.56],[132085,132086,5.6],[132087,132087,7.34],[132088,132088,6.72],[132089,132089,7.94],[132090,132090,9.16],[132091,132091,8.5],[132092,132092,7.26],[132093,132095,7.94],[132096,132097,7.13],[132098,132098,8.84],[132099,132099,6.31],[132100,132100,8.1],[132101,132101,7.14],[132102,132103,3.24],[132104,132104,6.12],[132105,132105,12.38],[132106,132106,12.35],[132107,132107,8.84],[132108,132108,7.94],[132109,132109,8.19],[132110,132110,7.12],[132111,132111,8.05],[132112,132112,7.53],[132113,132113,7.72],[132114,132114,7.74],[132115,132115,6.31],[132116,132116,8.49],[132117,132117,7.13],[132118,132118,11.67],[132119,132119,7.12],[132120,132121,8.19],[132122,132122,7.94],[132123,132123,8.17],[132124,132124,9.98],[132125,132125,8.15],[132126,132126,8.56],[132127,132127,8.05],[132128,132128,7.34],[132129,132129,8.15],[132130,132130,6.72],[132131,132131,7.12],[132132,132132,10.15],[132133,132133,7.34],[132134,132134,8.27],[132135,132135,7.48],[132136,132136,11.45],[132137,132137,11.67],[132138,132138,8.95],[132139,132139,10.22],[132140,132140,7.45],[132141,132141,8.12],[132142,132142,11.25],[132143,132143,7.97],[132144,132144,6.31],[132145,132145,6.68],[132146,132146,6.39],[132147,132147,4.98],[132148,132148,6.86],[132149,132149,6.31],[132150,132150,8.93],[132151,132151,5.96],[132152,132153,6.6],[132154,132154,6.31],[132155,132155,6.59],[132156,132156,8.12],[132157,132157,6.52],[132158,132158,6.72],[132159,132159,6.41],[132160,132160,6.72],[132161,132161,6.31],[132162,132162,5.52],[132163,132163,5.71],[132164,132164,9.42],[132165,132165,5.91],[132166,132166,6.63],[132167,132167,6.31],[132168,132168,9.01],[132169,132169,9.17],[132170,132170,7.11],[132171,132171,8.56],[132172,132172,6.03],[132173,132173,6.34],[132174,132174,9.18],[132175,132175,6.36],[132176,132177,6.31],[132178,132178,6.74],[132179,132179,4.98],[132180,132180,6.34],[132181,132181,5.91],[132182,132182,2.84],[132183,132183,3.3],[132184,132184,3.06],[132185,132185,9.87],[132186,132186,9.8],[132187,132187,6.74],[132188,132188,6.31],[132189,132189,6.6],[132190,132190,5.71],[132191,132191,6.41],[132192,132192,13.76],[132193,132193,6.81],[132194,132194,8.29],[132195,132195,6.47],[132196,132196,11.19],[132197,132197,8.08],[132198,132198,7.94],[132199,132199,6.12],[132200,132200,11.05],[132201,132201,8.6],[132202,132202,10.97],[132203,132203,9.04],[132204,132204,11.74],[132205,132205,9.14],[132206,132206,5.81],[132207,132207,4.42],[132208,132208,9.17],[132209,132209,7.94],[132210,132210,8.56],[132211,132211,6.72],[132212,132212,7.37],[132213,132213,5.94],[132214,132214,8.14],[132215,132215,6.72],[132216,132216,14.67],[132217,132217,12.84],[132218,132218,9.06],[132219,132219,6.44],[132220,132220,13.6],[132221,132221,8.88],[132222,132222,13.76],[132223,132223,6.81],[132224,132224,7.94],[132225,132225,4.88],[132226,132226,3.72],[132227,132233,0],[132234,132234,8.56],[132235,132235,6.34],[132236,132236,8.29],[132237,132237,6.47],[132238,132238,6.72],[132239,132239,6.12],[132240,132240,6.31],[132241,132241,4.98],[132242,132242,6.9],[132243,132243,5.44],[132244,132244,7.94],[132245,132245,6.34],[132246,132246,11.9],[132247,132247,9.15],[132248,132248,7.12],[132249,132249,5.96],[132250,132250,8.17],[132251,132251,6.45],[132252,132252,8.27],[132253,132253,6.76],[132254,132254,7.98],[132255,132255,6.34],[132256,132256,9.45],[132257,132257,7.39],[132258,132258,8.37],[132259,132259,6.71],[132260,132260,11.16],[132261,132261,8.7],[132262,132262,12.26],[132263,132263,9.28],[132264,132264,8.02],[132265,132265,5.87],[132266,132266,8.15],[132267,132267,6.31],[132268,132268,6.83],[132269,132269,5.6],[132270,132270,7.34],[132271,132271,5.71],[132272,132272,7.34],[132273,132273,5.71],[132274,132274,7.57],[132275,132275,6.08],[132276,132276,10.11],[132277,132277,7.24],[132278,132278,7.69],[132279,132279,6.5],[132280,132280,7.48],[132281,132281,6.31],[132282,132282,7.42],[132283,132283,6.52],[132284,132284,10.17],[132285,132285,8.21],[132286,132286,10.17],[132287,132287,8.21],[132288,132288,3.24],[132289,132289,11.67],[132290,132290,8.93],[132291,132291,8.11],[132292,132292,6.53],[132293,132293,8.2],[132294,132294,6.17],[132295,132295,8.07],[132296,132296,6.21],[132297,132297,8.56],[132298,132298,6.34],[132299,132299,8.07],[132300,132300,6.2],[132301,132301,10.38],[132302,132302,7.49],[132303,132303,3.06],[132304,132304,7.53],[132305,132305,6.31],[132306,132306,7.53],[132307,132307,6.31],[132308,132308,10.79],[132309,132309,9.98],[132310,132310,7.13],[132311,132311,6.31],[132312,132312,8.23],[132313,132313,6.31],[132314,132314,8.26],[132315,132315,6.12],[132316,132316,11.67],[132317,132317,8.93],[132318,132318,7.12],[132319,132319,5.96],[132320,132320,6.6],[132321,132321,6.06],[132322,132322,8.19],[132323,132323,6.6],[132324,132324,8.19],[132325,132325,6.6],[132326,132326,8.56],[132327,132327,6.72],[132328,132328,8.56],[132329,132329,6.72],[132330,132330,8.71],[132331,132331,6.21],[132332,132332,8.07],[132333,132333,5.6],[132334,132334,7.12],[132335,132335,5.71],[132336,132336,7.12],[132337,132337,5.71],[132338,132338,7.12],[132339,132339,5.71],[132340,132340,7.42],[132341,132341,6.31],[132342,132342,6.67],[132343,132343,4.8],[132344,132344,10.22],[132345,132345,8.56],[132346,132346,7],[132347,132347,5],[132348,132348,7.94],[132349,132349,5.5],[132350,132350,7.46],[132351,132351,5.6],[132352,132352,6.02],[132353,132353,5.5],[132354,132354,9.37],[132355,132355,8.59],[132356,132356,8.77],[132357,132357,7.46],[132358,132358,6.54],[132359,132359,5.06],[132360,132360,10.29],[132361,132361,8.57],[132362,132362,10.67],[132363,132363,8.73],[132364,132364,8.56],[132365,132365,6.5],[132366,132366,7.87],[132367,132367,6.79],[132368,132368,7.3],[132369,132369,5.55],[132370,132370,8.17],[132371,132371,6.34],[132372,132372,8.38],[132373,132373,7.62],[132374,132374,9.13],[132375,132375,7.49],[132376,132376,11.34],[132377,132377,8.11],[132378,132378,8.56],[132379,132379,6.12],[132380,132380,11],[132381,132381,7.94],[132382,132382,7.53],[132383,132383,6.94],[132384,132384,10.79],[132385,132385,8.76],[132386,132386,12.22],[132387,132387,9.99],[132388,132388,7.77],[132389,132389,6.78],[132390,132390,7.56],[132391,132391,6.92],[132392,132392,4.88],[132393,132393,4.43],[132394,132394,9.8],[132395,132395,8.94],[132396,132396,6.18],[132397,132397,5.76],[132398,132398,7.49],[132399,132399,6.65],[132400,132400,5.5],[132401,132401,9.36],[132402,132402,7.89],[132403,132403,8.5],[132404,132404,8.58],[132405,132405,7.89],[132406,132406,7.62],[132407,132407,6.95],[132408,132408,7.89],[132409,132409,10.16],[132410,132410,8.49],[132411,132411,8],[132412,132412,4.91],[132413,132413,10.01],[132414,132414,8.1],[132415,132415,8.15],[132416,132416,6.96],[132417,132417,7.36],[132418,132418,8.58],[132419,132419,7.94],[132420,132420,8.94],[132421,132421,6.98],[132422,132422,7.39],[132423,132423,7.5],[132424,132424,8.07],[132425,132425,7.12],[132426,132426,9.43],[132427,132427,7.37],[132428,132428,9],[132429,132429,8.07],[132430,132430,8.98],[132431,132431,6.52],[132432,132432,7.42],[132433,132433,7.18],[132434,132434,6.95],[132435,132435,9.35],[132436,132436,7.18],[132437,132437,8.72],[132438,132438,8.54],[132439,132440,5.5],[132441,132442,2.57],[132443,132443,3.07],[132444,132444,3.32],[132445,132445,3.07],[132446,132446,4.85],[132447,132447,4.42],[132448,132448,5.5],[132449,132449,10.7],[132450,132450,7.05],[132451,132451,7.8],[132452,132452,7.91],[132453,132453,7.05],[132454,132454,7.08],[132455,132455,5.65],[132456,132456,7.05],[132457,132457,8.25],[132458,132458,7.38],[132459,132459,7.05],[132460,132460,3.51],[132461,132461,10.74],[132462,132462,6.96],[132463,132463,7.05],[132464,132464,6.62],[132465,132465,7.33],[132466,132466,7.19],[132467,132467,6.81],[132468,132468,7.15],[132469,132469,3.44],[132470,132470,7.01],[132471,132471,4.85],[132472,132472,7.05],[132473,132473,4.19],[132474,132474,10.7],[132475,132475,5.85],[132476,132476,7.4],[132477,132477,7.05],[132478,132478,7.15],[132479,132479,10.68],[132480,132480,7.05],[132481,132481,6.98],[132482,132482,4.36],[132483,132483,10.68],[132484,132484,6.98],[132485,132485,6.75],[132486,132486,8.22],[132487,132487,7.67],[132488,132488,5.5],[132489,132489,3.08],[132490,132490,4.74],[132491,132492,5.5],[132493,132493,8.99],[132494,132494,9],[132495,132495,8.32],[132496,132496,5.5],[132497,132541,0],[132542,132542,4],[132543,132543,0],[132544,132544,3.66],[132545,132546,0],[132547,132547,3.66],[132548,132549,0],[132550,132550,3.48],[132551,132551,0],[132552,132559,5.5],[132560,132560,5.8],[132561,132561,5.05],[132562,132562,4.03],[132563,132563,5.11],[132564,132564,5.63],[132565,132565,3.28],[132566,132566,3.49],[132567,132567,5.55],[132568,132568,5.82],[132569,132569,3.42],[132570,132570,5.03],[132571,132571,4.91],[132572,132572,4.79],[132573,132573,5.62],[132574,132574,5.87],[132575,132575,3.58],[132576,132576,3.48],[132577,132577,5.26],[132578,132578,5.58],[132579,132579,5.42],[132580,132580,5.03],[132581,132581,6.21],[132582,132582,5.66],[132583,132583,5.31],[132584,132584,5.1],[132585,132585,7.57],[132586,132586,5.7],[132587,132591,5.5],[132592,132592,6.56],[132593,132593,6.7],[132594,132594,6.83],[132595,132595,2.81],[132596,132596,5.06],[132597,132607,5.5],[132608,132608,8.15],[132609,132609,14.57],[132610,132610,8.35],[132611,132611,10.11],[132612,132612,30.71],[132613,132613,12.03],[132614,132615,7.09],[132616,132616,8.56],[132617,132618,5.78],[132619,132619,3.57],[132620,132620,3.51],[132621,132621,2.63],[132622,132622,7.22],[132623,132623,5.95],[132624,132634,0],[132635,132635,3.51],[132636,132636,0],[132637,132637,5.5],[132638,132638,4.45],[132639,132639,3.92],[132640,132640,9.66],[132641,132641,5.16],[132642,132642,2.62],[132643,132643,2.38],[132644,132644,4.96],[132645,132645,2.38],[132646,132646,7.09],[132647,132647,2.38],[132648,132648,7.14],[132649,132649,3.77],[132650,132651,7.14],[132652,132654,6.35],[132655,132656,3.77],[132657,132658,4.76],[132659,132660,9.89],[132661,132662,11.69],[132663,132664,5.76],[132665,132666,5.95],[132667,132668,7.82],[132669,132671,8.06],[132672,132672,2.18],[132673,132673,8.34],[132674,132674,6.74],[132675,132675,5.95],[132676,132676,4.96],[132677,132677,3.96],[132678,132678,5.95],[132679,132679,3.77],[132680,132680,4.96],[132681,132682,7.09],[132683,132703,0],[132704,132713,6.18],[132714,132714,5.78],[132715,132716,3.51],[132717,132717,5.78],[132718,132718,7.14],[132719,132719,6.74],[132720,132720,0],[132721,132723,2.38],[132724,132724,0],[132725,132725,2.38],[132726,132727,4.96],[132728,132728,7.09],[132729,132736,7.14],[132737,132743,6.35],[132744,132752,3.77],[132753,132761,4.76],[132762,132764,9.89],[132765,132766,11.69],[132767,132767,5.76],[132768,132768,5.95],[132769,132774,8.34],[132775,132776,6.74],[132777,132777,8.33],[132778,132778,12.71],[132779,132779,8.33],[132780,132782,5.95],[132783,132788,8.33],[132789,132792,4.96],[132793,132797,5.95],[132798,132798,5.16],[132799,132799,6.35],[132800,132803,3.77],[132804,132811,4.96],[132812,132814,7.09],[132815,132815,4.96],[132816,132817,7.09],[132818,132819,8.93],[132820,132820,2.28],[132821,132821,3.77],[132822,132828,0],[132829,132829,12.35],[132830,132830,11.93],[132831,132840,0],[132841,132841,6.6],[132842,132845,0],[132846,132846,3.77],[132847,132847,4.76],[132848,132857,6.18],[132858,132858,9.89],[132859,132859,11.69],[132860,132860,5.95],[132861,132861,5.16],[132862,132862,3.96],[132863,132863,5.16],[132864,132864,6.5],[132865,132865,3.27],[132866,132868,2.83],[132869,132869,5.88],[132870,132871,4.25],[132872,132873,4.14],[132874,132874,6.37],[132875,132875,10.15],[132876,132876,7.63],[132877,132877,8.34],[132878,132878,5.5],[132879,132879,0],[132880,132880,10.23],[132881,132881,0],[132882,132882,10.54],[132883,132884,12],[132885,132886,5.93],[132887,132887,10.23],[132888,132888,6.71],[132889,132889,3.02],[132890,132890,7.71],[132891,132892,10.99],[132893,132893,2.67],[132894,132894,13.42],[132895,132895,9.78],[132896,132896,7.22],[132897,132897,9.73],[132898,132898,7.46],[132899,132900,9.75],[132901,132901,10.48],[132902,132902,9.27],[132903,132903,8.77],[132904,132904,6.89],[132905,132905,9.17],[132906,132906,5.93],[132907,132907,10.39],[132908,132908,8.17],[132909,132909,10.54],[132910,132910,12],[132911,132911,6.54],[132912,132938,0],[132939,132940,5.5],[132941,132941,6.41],[132942,132942,9.27],[132943,132943,7.22],[132944,132950,7.14],[132951,132952,6.35],[132953,132954,3.77],[132955,132955,4.76],[132956,132956,9.89],[132957,132959,5.95],[132960,132961,8.34],[132962,132964,8.33],[132965,132966,3.96],[132967,132969,5.95],[132970,132970,4.96],[132971,132972,4.76],[132973,132973,9.89],[132974,132975,7.55],[132976,132976,11.6],[132977,132977,4.75],[132978,132978,7.55],[132979,132980,3.22],[132981,132983,8.06],[132984,132985,5.97],[132986,132987,6.42],[132988,132988,7.55],[132989,132990,11.6],[132991,132991,6.68],[132992,132992,5.82],[132993,132993,7.46],[132994,132994,8.9],[132995,132995,7.14],[132996,132996,7.83],[132997,132997,5.99],[132998,132998,6.05],[132999,132999,5.86],[133000,133000,5.92],[133001,133001,5.7],[133002,133002,4.94],[133003,133003,6.97],[133004,133004,7.14],[133005,133005,6.34],[133006,133006,5.5],[133007,133007,7.94],[133008,133008,11.21],[133009,133009,4.29],[133010,133010,6.27],[133011,133011,7.38],[133012,133012,8.01],[133013,133013,4.94],[133014,133014,6.41],[133015,133015,7.11],[133016,133016,6.8],[133017,133018,5.82],[133019,133019,6.97],[133020,133020,7.14],[133021,133023,11.21],[133024,133025,7.14],[133026,133027,5.92],[133028,133028,5.5],[133029,133029,5.57],[133030,133040,0],[133041,133041,5.2],[133042,133055,5.5],[133056,133056,5.94],[133057,133057,5.96],[133058,133058,5.99],[133059,133059,5.65],[133060,133061,5.93],[133062,133062,5.77],[133063,133064,5.96],[133065,133065,6.09],[133066,133066,2.91],[133067,133067,7.26],[133068,133068,4.81],[133069,133069,6.81],[133070,133070,6.52],[133071,133071,6.06],[133072,133072,7.09],[133073,133073,5.74],[133074,133074,7.53],[133075,133076,4.61],[133077,133077,6.2],[133078,133078,5.36],[133079,133079,4.15],[133080,133080,8.71],[133081,133081,4.3],[133082,133082,7.15],[133083,133083,7.79],[133084,133084,6.34],[133085,133085,8.06],[133086,133086,5.98],[133087,133087,6.36],[133088,133088,5.73],[133089,133089,6.34],[133090,133090,5.95],[133091,133092,5.98],[133093,133093,5.77],[133094,133094,5.73],[133095,133095,5.82],[133096,133097,4.98],[133098,133098,4.3],[133099,133107,0],[133108,133109,3.72],[133110,133110,6.09],[133111,133111,10.45],[133112,133113,5.29],[133114,133114,4.59],[133115,133119,5.5],[133120,133120,10.2],[133121,133121,8.54],[133122,133122,8.7],[133123,133123,7.24],[133124,133124,9.44],[133125,133125,10.19],[133126,133126,9.66],[133127,133127,10.39],[133128,133128,10.48],[133129,133129,12.03],[133130,133130,8.1],[133131,133131,6.68],[133132,133132,10.03],[133133,133133,8],[133134,133134,8.48],[133135,133135,9.88],[133136,133136,8.29],[133137,133137,11.79],[133138,133138,8.01],[133139,133139,7.84],[133140,133140,9.25],[133141,133141,10.31],[133142,133145,0],[133146,133146,4.45],[133147,133155,0],[133156,133156,2.52],[133157,133159,0],[133160,133160,2.72],[133161,133165,0],[133166,133167,5.5],[133168,133169,3.95],[133170,133170,6.5],[133171,133172,9.63],[133173,133173,6.37],[133174,133174,7.37],[133175,133175,14.4],[133176,133176,11.82],[133177,133178,11.7],[133179,133179,5.52],[133180,133180,6.78],[133181,133181,8.87],[133182,133182,4.67],[133183,133183,5.5],[133184,133184,5.87],[133185,133185,9.83],[133186,133186,5.25],[133187,133187,7.28],[133188,133188,9.91],[133189,133189,4.53],[133190,133190,2.74],[133191,133191,8.58],[133192,133192,7.44],[133193,133193,4.86],[133194,133194,7.38],[133195,133195,5.06],[133196,133196,10.9],[133197,133197,6.46],[133198,133198,10.92],[133199,133199,9.39],[133200,133200,7.92],[133201,133201,11.25],[133202,133202,9.48],[133203,133203,9.14],[133204,133204,10.04],[133205,133205,7.06],[133206,133206,8.39],[133207,133207,12.46],[133208,133208,5.24],[133209,133211,0],[133212,133213,5.5],[133214,133214,6.13],[133215,133279,5.5],[133280,133281,9.62],[133282,133282,7.43],[133283,133283,8.42],[133284,133284,10.14],[133285,133285,7.43],[133286,133286,6.97],[133287,133287,5.34],[133288,133289,8.34],[133290,133290,6.03],[133291,133291,4.72],[133292,133292,6.39],[133293,133293,2.63],[133294,133294,5.25],[133295,133295,12.4],[133296,133296,9.23],[133297,133297,5.16],[133298,133298,3.71],[133299,133299,6.77],[133300,133300,8.75],[133301,133301,5.5],[133302,133304,9.62],[133305,133305,3.76],[133306,133306,8.34],[133307,133307,10.18],[133308,133308,7.43],[133309,133309,6.58],[133310,133332,5.5],[133333,133333,5.78],[133334,133334,3.96],[133335,133335,4.07],[133336,133336,3.41],[133337,133337,3.27],[133338,133343,5.5],[133344,133344,5.65],[133345,133345,6.19],[133346,133346,5.5],[133347,133369,0],[133370,133370,5.5],[133371,133375,0],[133376,133378,7.26],[133379,133379,10.72],[133380,133381,8.4],[133382,133382,11.6],[133383,133384,6.06],[133385,133385,5.6],[133386,133386,8.14],[133387,133387,9.99],[133388,133388,8.11],[133389,133392,6.35],[133393,133395,11.6],[133396,133396,11.59],[133397,133397,8.78],[133398,133398,9.23],[133399,133399,6.56],[133400,133400,7.34],[133401,133401,7.19],[133402,133402,7.49],[133403,133403,7.69],[133404,133404,8.46],[133405,133405,8.79],[133406,133406,8.36],[133407,133407,5.93],[133408,133408,6.72],[133409,133409,6.29],[133410,133410,6.25],[133411,133411,8.73],[133412,133412,6.49],[133413,133413,7.78],[133414,133414,6.15],[133415,133415,7.17],[133416,133417,6.09],[133418,133418,6.51],[133419,133419,9.13],[133420,133420,6.5],[133421,133421,6.93],[133422,133422,6.69],[133423,133423,6.89],[133424,133424,4.85],[133425,133425,5.14],[133426,133426,8.11],[133427,133428,8.04],[133429,133429,6.31],[133430,133430,8.52],[133431,133431,6.59],[133432,133432,7.91],[133433,133433,5.88],[133434,133434,7.26],[133435,133435,10.46],[133436,133436,7.26],[133437,133437,5.94],[133438,133440,10.46],[133441,133448,7.26],[133449,133452,10.46],[133453,133453,7.26],[133454,133455,10.46],[133456,133456,13.44],[133457,133460,0],[133461,133463,7.26],[133464,133464,8.78],[133465,133465,9.23],[133466,133466,6.56],[133467,133467,8.46],[133468,133468,6.29],[133469,133469,6.25],[133470,133470,9.13],[133471,133471,6.89],[133472,133472,9.99],[133473,133473,8.11],[133474,133475,7.26],[133476,133476,5.96],[133477,133477,8.7],[133478,133478,5.49],[133479,133479,5.05],[133480,133480,5.49],[133481,133481,5.61],[133482,133482,5.83],[133483,133483,6.05],[133484,133484,5.72],[133485,133485,7.38],[133486,133486,5.69],[133487,133487,5.46],[133488,133488,5.86],[133489,133489,3.66],[133490,133491,8.4],[133492,133493,11.6],[133494,133495,8.4],[133496,133496,6.06],[133497,133497,8.46],[133498,133498,6.89],[133499,133499,6.56],[133500,133500,8.22],[133501,133501,5.47],[133502,133502,6.47],[133503,133503,6.5],[133504,133504,6.59],[133505,133505,7.26],[133506,133506,12.67],[133507,133507,12.45],[133508,133508,5.5],[133509,133509,10.43],[133510,133510,13.73],[133511,133511,5.68],[133512,133512,7.68],[133513,133513,7.99],[133514,133514,8.16],[133515,133515,8.74],[133516,133516,7.22],[133517,133518,5.5],[133519,133519,8.29],[133520,133520,9.39],[133521,133522,5.5],[133523,133523,7.01],[133524,133524,8.79],[133525,133525,8.11],[133526,133526,8],[133527,133527,7.56],[133528,133528,7.13],[133529,133529,7.97],[133530,133530,5.97],[133531,133531,6.84],[133532,133532,9.8],[133533,133533,9.02],[133534,133534,11.25],[133535,133535,6.15],[133536,133536,6.58],[133537,133537,7.99],[133538,133538,6.26],[133539,133539,7.31],[133540,133540,7.93],[133541,133541,7.83],[133542,133542,6.42],[133543,133543,6.83],[133544,133544,7.44],[133545,133545,5.5],[133546,133546,7.67],[133547,133547,8.9],[133548,133548,6.26],[133549,133549,8.7],[133550,133550,6.86],[133551,133551,6.53],[133552,133552,6.26],[133553,133553,5.5],[133554,133554,8.61],[133555,133557,5.5],[133558,133558,7.91],[133559,133559,6.84],[133560,133560,7.68],[133561,133561,5.57],[133562,133563,5.5],[133564,133564,7.26],[133565,133565,5.48],[133566,133566,10.56],[133567,133567,10.55],[133568,133568,10.56],[133569,133572,7.26],[133573,133574,5.5],[133575,133576,10.65],[133577,133578,5.5],[133579,133580,13.95],[133581,133581,7.26],[133582,133582,6.13],[133583,133590,5.5],[133591,133591,10.56],[133592,133595,5.5],[133596,133596,7.99],[133597,133597,6.26],[133598,133598,5.5],[133599,133599,6.53],[133600,133600,8.74],[133601,133601,7.22],[133602,133603,7.26],[133604,133605,5.5],[133606,133606,7.14],[133607,133607,5.94],[133608,133608,5.39],[133609,133609,8.37],[133610,133610,5.79],[133611,133611,7.13],[133612,133612,7.67],[133613,133613,6.59],[133614,133614,8.45],[133615,133615,7.12],[133616,133616,6.46],[133617,133617,6.26],[133618,133618,4.73],[133619,133619,7.68],[133620,133620,4.63],[133621,133621,7.55],[133622,133622,7.26],[133623,133623,3.3],[133624,133624,6.74],[133625,133625,6.65],[133626,133626,7.4],[133627,133627,3.37],[133628,133632,5.5],[133633,133634,7.45],[133635,133635,10.09],[133636,133636,5.5],[133637,133637,8.63],[133638,133638,11.4],[133639,133640,9.23],[133641,133642,6.82],[133643,133646,5.5],[133647,133647,6.37],[133648,133648,8.63],[133649,133650,5.5],[133651,133651,6.73],[133652,133652,8.63],[133653,133653,6.61],[133654,133654,6.65],[133655,133655,8.55],[133656,133656,8.43],[133657,133657,6.23],[133658,133658,6.88],[133659,133659,6.57],[133660,133660,6.79],[133661,133661,6.21],[133662,133662,6.32],[133663,133663,5.99],[133664,133664,6.67],[133665,133665,6.18],[133666,133666,6.74],[133667,133667,6.39],[133668,133668,5.82],[133669,133669,6.69],[133670,133670,6.56],[133671,133671,6.52],[133672,133672,6.7],[133673,133673,5.5],[133674,133674,6.5],[133675,133675,6.21],[133676,133676,6.75],[133677,133677,6.27],[133678,133678,6.5],[133679,133679,8.17],[133680,133680,6.18],[133681,133681,5.5],[133682,133682,7.7],[133683,133683,7.72],[133684,133684,5.5],[133685,133685,6.17],[133686,133686,6.59],[133687,133687,5.5],[133688,133688,6.5],[133689,133689,6.18],[133690,133691,5.5],[133692,133692,7.45],[133693,133693,5.5],[133694,133694,10.21],[133695,133696,10.3],[133697,133698,7.45],[133699,133702,5.5],[133703,133704,7.45],[133705,133706,5.5],[133707,133709,7.45],[133710,133712,5.5],[133713,133713,7.45],[133714,133720,5.5],[133721,133721,6.65],[133722,133722,8.55],[133723,133723,6.74],[133724,133724,6.19],[133725,133725,5.5],[133726,133726,6.21],[133727,133733,5.5],[133734,133734,6.1],[133735,133735,5.49],[133736,133736,5.74],[133737,133737,5.84],[133738,133738,6.4],[133739,133739,6.57],[133740,133740,5.71],[133741,133741,5.95],[133742,133742,6.59],[133743,133743,6.65],[133744,133745,7.45],[133746,133746,6.37],[133747,133747,6.82],[133748,133748,12.17],[133749,133749,7.45],[133750,133760,5.5],[133761,133762,7.16],[133763,133763,10.19],[133764,133764,5.5],[133765,133765,10.27],[133766,133766,13.52],[133767,133767,7.06],[133768,133768,7.12],[133769,133769,7.36],[133770,133770,10.11],[133771,133771,10.37],[133772,133772,8.16],[133773,133773,10.27],[133774,133774,5.5],[133775,133776,10.27],[133777,133777,13.52],[133778,133778,5.5],[133779,133780,13.52],[133781,133781,6.65],[133782,133782,8.9],[133783,133783,8.44],[133784,133784,7.53],[133785,133785,6.74],[133786,133786,8.12],[133787,133787,8.25],[133788,133788,7.46],[133789,133789,9.01],[133790,133790,8.39],[133791,133791,5.9],[133792,133792,7.01],[133793,133793,5.95],[133794,133794,6.65],[133795,133795,9.57],[133796,133796,6.93],[133797,133797,7.73],[133798,133798,5.64],[133799,133799,7.57],[133800,133800,6.49],[133801,133801,5.5],[133802,133802,6.62],[133803,133803,6.65],[133804,133804,9.02],[133805,133805,9.06],[133806,133806,6.97],[133807,133807,7.5],[133808,133808,5.61],[133809,133809,5.5],[133810,133810,7.88],[133811,133811,9.03],[133812,133812,5.5],[133813,133813,7.06],[133814,133814,8.57],[133815,133815,6.8],[133816,133816,8.68],[133817,133817,6.65],[133818,133819,5.5],[133820,133820,7.16],[133821,133821,5.94],[133822,133824,10.41],[133825,133829,7.16],[133830,133830,5.5],[133831,133832,7.16],[133833,133833,10.41],[133834,133834,5.5],[133835,133836,10.41],[133837,133837,7.16],[133838,133839,5.5],[133840,133840,12.3],[133841,133855,5.5],[133856,133856,10.97],[133857,133857,8.16],[133858,133859,7.16],[133860,133861,5.5],[133862,133862,5.92],[133863,133863,6.1],[133864,133864,5.58],[133865,133865,5.46],[133866,133866,6.01],[133867,133867,6.53],[133868,133868,5.79],[133869,133869,7.7],[133870,133870,5.5],[133871,133871,5.72],[133872,133872,4.6],[133873,133873,10.35],[133874,133880,5.5],[133881,133881,8.47],[133882,133888,5.5],[133889,133889,5.61],[133890,133890,9.52],[133891,133891,10.72],[133892,133892,5.5],[133893,133893,7.81],[133894,133894,10.36],[133895,133895,8.23],[133896,133896,8.33],[133897,133897,8.16],[133898,133898,8.31],[133899,133899,8.12],[133900,133900,6.24],[133901,133902,5.5],[133903,133903,7.65],[133904,133904,10.16],[133905,133906,5.5],[133907,133907,7.56],[133908,133908,10.04],[133909,133909,7.92],[133910,133910,7.99],[133911,133911,7.86],[133912,133912,7.78],[133913,133913,8.5],[133914,133914,7.34],[133915,133915,7.47],[133916,133916,7.92],[133917,133917,7.65],[133918,133918,8.05],[133919,133919,7.68],[133920,133920,8.16],[133921,133921,7.64],[133922,133922,7.58],[133923,133923,7.72],[133924,133924,7.58],[133925,133925,7.62],[133926,133926,7.58],[133927,133927,6.93],[133928,133928,7.58],[133929,133929,5.5],[133930,133930,7.78],[133931,133931,9.52],[133932,133932,7.49],[133933,133933,8.35],[133934,133934,7.78],[133935,133935,8.25],[133936,133936,7.92],[133937,133937,5.5],[133938,133938,8.68],[133939,133939,7.92],[133940,133940,5.5],[133941,133941,7.49],[133942,133942,7.94],[133943,133943,7.93],[133944,133944,7.72],[133945,133945,7.38],[133946,133947,5.5],[133948,133948,5.61],[133949,133949,4.3],[133950,133950,8.16],[133951,133951,5.61],[133952,133952,9.43],[133953,133956,5.61],[133957,133958,5.5],[133959,133960,10.95],[133961,133962,5.5],[133963,133964,13.5],[133965,133965,5.61],[133966,133973,5.5],[133974,133974,5.61],[133975,133975,8.16],[133976,133979,5.5],[133980,133980,7.64],[133981,133981,7.58],[133982,133982,5.5],[133983,133983,8.71],[133984,133984,8.15],[133985,133985,6.24],[133986,133987,5.61],[133988,133989,5.5],[133990,133999,6.29],[134000,134000,6.83],[134001,134001,6.97],[134002,134002,2.86],[134003,134003,4.77],[134004,134004,6.45],[134005,134005,5.44],[134006,134006,6.51],[134007,134007,7.28],[134008,134017,5.5],[134018,134018,6.14],[134019,134019,7.64],[134020,134020,5.5],[134021,134021,9.75],[134022,134022,11.53],[134023,134023,10.13],[134024,134024,7.03],[134025,134025,10.22],[134026,134026,12.85],[134027,134029,5.5],[134030,134031,7.83],[134032,134032,8.58],[134033,134033,5.5],[134034,134035,8.25],[134036,134036,16.87],[134037,134037,7.83],[134038,134040,5.5],[134041,134041,9.15],[134042,134042,7.19],[134043,134043,5.5],[134044,134044,8.27],[134045,134045,5.5],[134046,134046,10.5],[134047,134047,8.37],[134048,134050,5.5],[134051,134051,13.52],[134052,134052,7.63],[134053,134055,5.5],[134056,134056,7.4],[134057,134057,10.08],[134058,134058,6.58],[134059,134061,5.5],[134062,134062,7.4],[134063,134063,7.52],[134064,134064,6.05],[134065,134065,7.06],[134066,134066,8.7],[134067,134067,9.25],[134068,134068,7.4],[134069,134069,8.04],[134070,134070,9.91],[134071,134071,10.16],[134072,134072,10.81],[134073,134073,12.78],[134074,134077,5.5],[134078,134078,11.91],[134079,134079,8.41],[134080,134080,6.62],[134081,134081,10.7],[134082,134082,12.27],[134083,134085,5.5],[134086,134086,13.85],[134087,134087,12.78],[134088,134088,16.27],[134089,134089,5.5],[134090,134090,18.93],[134091,134091,17.71],[134092,134092,22.13],[134093,134093,6.14],[134094,134095,5.5],[134096,134096,9.13],[134097,134102,5.5],[134103,134103,15.06],[134104,134115,5.5],[134116,134116,2.87],[134117,134117,4.75],[134118,134118,6.03],[134119,134119,6.98],[134120,134120,7],[134121,134121,6.67],[134122,134122,6.73],[134123,134123,8.12],[134124,134124,9.04],[134125,134125,7.07],[134126,134126,9.35],[134127,134127,9.17],[134128,134128,7.8],[134129,134129,7.62],[134130,134130,8.51],[134131,134131,8.99],[134132,134132,7.83],[134133,134133,15.66],[134134,134134,8.06],[134135,134135,12.48],[134136,134136,13.77],[134137,134137,8.03],[134138,134138,11.05],[134139,134143,5.5],[134144,134144,7.26],[134145,134145,11.13],[134146,134146,14.33],[134147,134147,11.59],[134148,134148,5.5],[134149,134149,9.69],[134150,134150,9.55],[134151,134151,8.58],[134152,134152,11.84],[134153,134153,10.23],[134154,134154,14.11],[134155,134155,17.48],[134156,134156,12],[134157,134157,5.5],[134158,134159,8.96],[134160,134160,9.23],[134161,134161,5.5],[134162,134163,8.92],[134164,134164,9.18],[134165,134165,6.08],[134166,134166,10.17],[134167,134167,7],[134168,134168,12.63],[134169,134169,9.03],[134170,134171,9.38],[134172,134172,8.98],[134173,134173,14.92],[134174,134174,11.51],[134175,134175,9.35],[134176,134176,7.07],[134177,134178,9.43],[134179,134179,9.75],[134180,134180,8.96],[134181,134183,9.15],[134184,134184,8.74],[134185,134185,5.5],[134186,134187,8.88],[134188,134189,9.58],[134190,134190,12.69],[134191,134191,14.92],[134192,134192,7.07],[134193,134193,10.23],[134194,134194,8.78],[134195,134195,7.36],[134196,134196,10.23],[134197,134197,8.78],[134198,134198,6.27],[134199,134199,8.78],[134200,134200,8.82],[134201,134201,12.83],[134202,134204,5.5],[134205,134205,7.57],[134206,134206,10.93],[134207,134208,7.26],[134209,134209,11.16],[134210,134210,14.27],[134211,134211,12.34],[134212,134212,15.73],[134213,134213,5.5],[134214,134216,7.26],[134217,134217,5.5],[134218,134219,7.26],[134220,134220,10.92],[134221,134221,7.26],[134222,134228,5.5],[134229,134230,7.26],[134231,134231,5.5],[134232,134232,9.38],[134233,134233,8.98],[134234,134234,9.15],[134235,134239,5.5],[134240,134240,21.61],[134241,134241,16.2],[134242,134243,7.26],[134244,134245,5.5],[134246,134246,6.64],[134247,134247,6.78],[134248,134248,8.52],[134249,134249,5.9],[134250,134250,6.84],[134251,134251,7.72],[134252,134252,5.65],[134253,134253,5.92],[134254,134254,6.69],[134255,134255,5.65],[134256,134263,5.5],[134264,134264,6.02],[134265,134265,2.87],[134266,134266,5.47],[134267,134267,8.56],[134268,134268,7.75],[134269,134269,7.67],[134270,134270,7.61],[134271,134271,9.02],[134272,134272,6.73],[134273,134273,6.17],[134274,134274,12.86],[134275,134275,9.93],[134276,134276,5.5],[134277,134277,10.53],[134278,134278,10.33],[134279,134279,8.91],[134280,134280,11.96],[134281,134281,14.68],[134282,134282,19.25],[134283,134283,13.99],[134284,134284,10.38],[134285,134285,5.5],[134286,134287,9.39],[134288,134288,9.64],[134289,134289,5.5],[134290,134291,9.53],[134292,134292,9.54],[134293,134293,7.01],[134294,134294,10.14],[134295,134295,7.71],[134296,134296,11.85],[134297,134297,9.53],[134298,134298,9.83],[134299,134299,10.16],[134300,134300,9.53],[134301,134301,15.58],[134302,134302,12],[134303,134303,9.98],[134304,134304,7.7],[134305,134306,9.21],[134307,134307,10.66],[134308,134308,7.55],[134309,134311,9.02],[134312,134312,8.47],[134313,134313,5.5],[134314,134315,9.47],[134316,134316,9.77],[134317,134317,9.86],[134318,134318,13.47],[134319,134319,15.22],[134320,134320,7.61],[134321,134321,10.8],[134322,134322,8.98],[134323,134323,8.47],[134324,134324,5.5],[134325,134325,9.49],[134326,134326,7.68],[134327,134327,9.68],[134328,134328,8.45],[134329,134329,9.47],[134330,134331,5.5],[134332,134332,6.17],[134333,134333,5.55],[134334,134334,11.74],[134335,134335,10.34],[134336,134336,15.61],[134337,134337,10.15],[134338,134338,15.26],[134339,134339,7.72],[134340,134340,11.82],[134341,134341,5.5],[134342,134342,6.17],[134343,134343,11.44],[134344,134344,8.23],[134345,134345,5.5],[134346,134346,15.26],[134347,134347,20.53],[134348,134348,11.64],[134349,134349,10.17],[134350,134356,5.5],[134357,134357,11.44],[134358,134358,8.23],[134359,134365,5.5],[134366,134366,10.54],[134367,134367,5.5],[134368,134368,19.06],[134369,134369,15.83],[134370,134371,6.97],[134372,134373,5.5],[134374,134383,7.57],[134384,134384,5.5],[134385,134385,6.36],[134386,134386,9.81],[134387,134400,5.5],[134401,134401,0],[134402,134402,4.24],[134403,134403,3.11],[134404,134404,5.5],[134405,134405,13.63],[134406,134406,15.09],[134407,134407,9.89],[134408,134408,17.93],[134409,134409,6.99],[134410,134410,14.97],[134411,134411,8.84],[134412,134412,10.98],[134413,134413,5.5],[134414,134415,12.25],[134416,134416,18.4],[134417,134417,5.5],[134418,134418,7.31],[134419,134419,12.19],[134420,134420,15.52],[134421,134421,9.73],[134422,134422,8.79],[134423,134423,8.27],[134424,134424,13.1],[134425,134425,10.66],[134426,134426,9.12],[134427,134427,12.74],[134428,134428,8.77],[134429,134429,15.9],[134430,134430,13.83],[134431,134431,5.69],[134432,134432,6.38],[134433,134433,12.03],[134434,134434,12.39],[134435,134435,13.66],[134436,134436,9.59],[134437,134437,8.1],[134438,134438,6.11],[134439,134440,9.24],[134441,134441,10.05],[134442,134442,7.87],[134443,134443,11.29],[134444,134444,12.44],[134445,134445,6.37],[134446,134446,6.38],[134447,134447,9.7],[134448,134448,6.72],[134449,134449,6.28],[134450,134450,8.45],[134451,134451,7.15],[134452,134452,6.33],[134453,134453,8.79],[134454,134454,9.45],[134455,134455,11.04],[134456,134456,12.03],[134457,134457,12.12],[134458,134458,8.1],[134459,134460,5.5],[134461,134461,4.19],[134462,134462,11.22],[134463,134463,8.91],[134464,134464,8.82],[134465,134465,9.56],[134466,134466,9.62],[134467,134467,10.17],[134468,134468,10.22],[134469,134469,5.5],[134470,134470,12.57],[134471,134471,11.67],[134472,134472,18.51],[134473,134473,5.5],[134474,134474,17.15],[134475,134475,20.2],[134476,134476,14.63],[134477,134477,6.58],[134478,134478,1.9],[134479,134486,5.5],[134487,134487,14.63],[134488,134494,5.5],[134495,134495,15.1],[134496,134496,8.79],[134497,134497,12.11],[134498,134498,6.63],[134499,134499,7.38],[134500,134501,5.5],[134502,134502,6.38],[134503,134503,8.6],[134504,134504,8.79],[134505,134505,10.85],[134506,134506,6.8],[134507,134507,9.7],[134508,134508,13.26],[134509,134509,4.84],[134510,134510,8.79],[134511,134511,10.14],[134512,134512,9.24],[134513,134513,9.64],[134514,134514,13.14],[134515,134515,7.55],[134516,134516,8.24],[134517,134517,11.1],[134518,134520,5.5],[134521,134521,11.61],[134522,134522,14.75],[134523,134523,10.14],[134524,134524,6.8],[134525,134525,10.85],[134526,134526,9.36],[134527,134527,10.81],[134528,134529,5.5],[134530,134530,4.57],[134531,134531,3.12],[134532,134532,5.5],[134533,134533,6.63],[134534,134534,9.61],[134535,134535,10.13],[134536,134536,10.09],[134537,134537,6.52],[134538,134538,6.25],[134539,134539,6.47],[134540,134540,11.41],[134541,134541,11.21],[134542,134542,15.24],[134543,134543,8.65],[134544,134544,14.43],[134545,134545,7.36],[134546,134546,7.53],[134547,134547,12.26],[134548,134549,7.33],[134550,134550,12.48],[134551,134553,5.5],[134554,134554,8.58],[134555,134555,8.04],[134556,134556,7.32],[134557,134557,6.54],[134558,134558,7.14],[134559,134559,9.04],[134560,134560,6.75],[134561,134561,6.01],[134562,134562,5.87],[134563,134563,13.19],[134564,134564,12.24],[134565,134565,11.25],[134566,134566,7.26],[134567,134567,6.47],[134568,134568,6.79],[134569,134569,7.28],[134570,134570,6.94],[134571,134571,9.38],[134572,134572,9.04],[134573,134573,7.84],[134574,134574,6.52],[134575,134575,5.55],[134576,134576,7.14],[134577,134577,7.52],[134578,134578,5.5],[134579,134579,7.09],[134580,134580,5.87],[134581,134581,6.92],[134582,134582,7.48],[134583,134583,8.64],[134584,134584,7.27],[134585,134585,7.23],[134586,134586,6.66],[134587,134587,5.96],[134588,134588,5.5],[134589,134589,6.89],[134590,134591,5.5],[134592,134592,6.64],[134593,134593,7.67],[134594,134594,6.09],[134595,134595,6.94],[134596,134596,8.02],[134597,134597,7.44],[134598,134598,6.9],[134599,134601,5.5],[134602,134602,6.82],[134603,134606,5.5],[134607,134607,8.93],[134608,134608,9.25],[134609,134609,9.24],[134610,134611,6.17],[134612,134612,6.11],[134613,134613,5.5],[134614,134614,6.11],[134615,134615,5.5],[134616,134616,10.1],[134617,134617,11.46],[134618,134618,12.28],[134619,134619,16.61],[134620,134621,14.25],[134622,134622,16.4],[134623,134623,11.06],[134624,134641,5.5],[134642,134642,14.24],[134643,134643,5.12],[134644,134644,11.74],[134645,134655,5.5],[134656,134656,2.14],[134657,134657,6.6],[134658,134658,6.29],[134659,134659,6.26],[134660,134660,7.03],[134661,134661,6.92],[134662,134662,6.99],[134663,134663,5.24],[134664,134664,5.81],[134665,134665,6.71],[134666,134666,6.45],[134667,134667,6.5],[134668,134668,9],[134669,134669,8.96],[134670,134671,7.27],[134672,134672,5.86],[134673,134673,7.61],[134674,134674,9.37],[134675,134675,9],[134676,134676,6.94],[134677,134677,6.92],[134678,134678,6.6],[134679,134679,6.94],[134680,134680,6.07],[134681,134681,6.81],[134682,134683,7.16],[134684,134685,6.54],[134686,134686,7.39],[134687,134687,7.44],[134688,134688,7.31],[134689,134689,6.94],[134690,134690,6.72],[134691,134691,5.26],[134692,134692,6.58],[134693,134693,6.41],[134694,134694,7.31],[134695,134695,5.62],[134696,134696,6.87],[134697,134697,7.12],[134698,134698,6.56],[134699,134699,6.95],[134700,134700,7.39],[134701,134701,6.36],[134702,134702,6.33],[134703,134703,6.76],[134704,134704,4.8],[134705,134705,5.59],[134706,134706,5.57],[134707,134707,11.26],[134708,134714,5.59],[134715,134718,5.5],[134719,134719,8.02],[134720,134720,3.47],[134721,134721,6.38],[134722,134722,5.52],[134723,134723,5.99],[134724,134724,4.64],[134725,134725,5.68],[134726,134726,6.66],[134727,134734,5.59],[134735,134735,8.05],[134736,134736,6.43],[134737,134737,6.76],[134738,134738,7.21],[134739,134739,7.46],[134740,134740,6.77],[134741,134741,6.63],[134742,134742,6.37],[134743,134743,8.39],[134744,134744,6.82],[134745,134745,7.35],[134746,134746,8.53],[134747,134747,14.01],[134748,134784,5.5],[134785,134785,6.8],[134786,134786,5.95],[134787,134787,5.5],[134788,134788,6.24],[134789,134790,5.5],[134791,134791,5.62],[134792,134792,6.12],[134793,134793,5.5],[134794,134794,6.04],[134795,134796,5.5],[134797,134797,6.24],[134798,134803,5.5],[134804,134804,6.41],[134805,134805,6.62],[134806,134806,6.85],[134807,134807,7.05],[134808,134808,5.5],[134809,134809,6.75],[134810,134810,5.8],[134811,134811,5.84],[134812,134812,7.42],[134813,134813,7.34],[134814,134814,7.32],[134815,134815,7.36],[134816,134816,5.5],[134817,134817,6.8],[134818,134818,6.15],[134819,134819,5.95],[134820,134820,5.5],[134821,134821,6.11],[134822,134822,5.5],[134823,134823,5.89],[134824,134825,5.5],[134826,134826,6.11],[134827,134827,8.45],[134828,134828,5.5],[134829,134829,6.11],[134830,134830,6.06],[134831,134831,5.81],[134832,134832,5.65],[134833,134833,0],[134834,134834,4.73],[134835,134841,0],[134842,134842,5.5],[134843,134844,0],[134845,134845,5],[134846,134847,5.5],[134848,134848,3.75],[134849,134849,6.5],[134850,134850,3.71],[134851,134851,3.74],[134852,134852,3.66],[134853,134853,5.5],[134854,134854,6.46],[134855,134855,5.5],[134856,134859,0],[134860,134860,3.58],[134861,134861,0],[134862,134863,5.5],[134864,134864,6.14],[134865,134865,5.59],[134866,134866,5.48],[134867,134867,6.33],[134868,134868,5.62],[134869,134869,5.8],[134870,134870,6.85],[134871,134871,6.91],[134872,134872,7.32],[134873,134873,6.9],[134874,134875,5.5],[134876,134877,11.01],[134878,134911,5.5],[134912,134912,6.85],[134913,134913,5.43],[134914,134915,8.46],[134916,134916,12.73],[134917,134917,6.57],[134918,134918,12.73],[134919,134919,16.49],[134920,134920,4.23],[134921,134921,6.35],[134922,134922,7.09],[134923,134924,1.76],[134925,134925,2.69],[134926,134926,5.04],[134927,134928,2.69],[134929,134929,2.89],[134930,134930,11.57],[134931,134931,6.55],[134932,134932,3.95],[134933,134933,7.13],[134934,134934,5.19],[134935,134935,8.28],[134936,134937,0],[134938,134938,3.22],[134939,134940,5.53],[134941,134941,3.35],[134942,134942,5.48],[134943,134943,5.84],[134944,134945,3.75],[134946,134946,5.97],[134947,134947,5.68],[134948,134948,7.61],[134949,134949,5.48],[134950,134951,6.26],[134952,134952,5.2],[134953,134953,5.58],[134954,134954,5.6],[134955,134955,5.97],[134956,134956,5.68],[134957,134957,7.61],[134958,134958,5.48],[134959,134960,6.26],[134961,134961,5.55],[134962,134962,5.58],[134963,134963,5.47],[134964,134964,5.78],[134965,134965,0],[134966,134966,5.47],[134967,134967,0],[134968,134968,6.02],[134969,134969,0],[134970,134970,14.96],[134971,134971,14.63],[134972,134972,5.37],[134973,134973,5.41],[134974,134974,3.14],[134975,134975,4.71],[134976,134978,5.68],[134979,134979,5.58],[134980,134980,5.2],[134981,134981,5.88],[134982,134982,5.68],[134983,134983,5.2],[134984,134984,5.5],[134985,134985,5.1],[134986,134988,5.2],[134989,134989,5.58],[134990,134993,5.2],[134994,134994,5.58],[134995,134995,5.2],[134996,134998,5.68],[134999,134999,5.58],[135000,135000,5.68],[135001,135001,5.88],[135002,135002,5.68],[135003,135003,5.2],[135004,135004,5.58],[135005,135006,5.2],[135007,135007,5.39],[135008,135008,5.2],[135009,135009,6.16],[135010,135010,5.39],[135011,135011,5.88],[135012,135014,5.68],[135015,135015,5.2],[135016,135016,6.65],[135017,135017,5.58],[135018,135018,5.39],[135019,135019,5.76],[135020,135020,5.83],[135021,135024,5.5],[135025,135025,5.98],[135026,135026,0],[135027,135027,5.98],[135028,135028,6.08],[135029,135029,12.06],[135030,135030,5.58],[135031,135031,11.56],[135032,135032,5.58],[135033,135033,11.56],[135034,135038,0],[135039,135039,5.08],[135040,135040,0],[135041,135041,5.98],[135042,135044,0],[135045,135045,5.67],[135046,135048,0],[135049,135049,5.78],[135050,135050,5.24],[135051,135051,5.75],[135052,135055,5.5],[135056,135063,5.58],[135064,135064,5.5],[135065,135100,5.58],[135101,135101,5.5],[135102,135102,5.62],[135103,135103,5.64],[135104,135104,6.38],[135105,135105,4.32],[135106,135106,5.46],[135107,135107,6.43],[135108,135108,4.55],[135109,135109,3.6],[135110,135110,0],[135111,135111,7.1],[135112,135112,3.91],[135113,135113,6.09],[135114,135114,6.56],[135115,135115,6.37],[135116,135116,6.78],[135117,135117,5.5],[135118,135118,6.04],[135119,135119,5.48],[135120,135120,22.69],[135121,135121,5.23],[135122,135122,2.31],[135123,135123,12.68],[135124,135124,5.35],[135125,135125,7.02],[135126,135126,7.22],[135127,135127,6.7],[135128,135128,6.98],[135129,135167,5.5],[135168,135168,12.21],[135169,135169,7.69],[135170,135170,7.58],[135171,135171,12.22],[135172,135172,7.27],[135173,135173,7.68],[135174,135174,12.23],[135175,135175,7.68],[135176,135176,10.06],[135177,135177,7.26],[135178,135178,11.96],[135179,135179,7.47],[135180,135180,7.26],[135181,135181,7.47],[135182,135182,7.83],[135183,135183,14.89],[135184,135184,12.2],[135185,135185,12.21],[135186,135186,7.31],[135187,135187,7.68],[135188,135188,6.17],[135189,135189,7.68],[135190,135190,7.67],[135191,135191,7.71],[135192,135192,12.22],[135193,135193,7.67],[135194,135194,12.21],[135195,135195,7.68],[135196,135196,12.21],[135197,135197,7.68],[135198,135198,12.25],[135199,135199,12.2],[135200,135200,7.47],[135201,135201,11.15],[135202,135202,12.14],[135203,135203,11.97],[135204,135204,15.32],[135205,135206,7.29],[135207,135207,6.93],[135208,135208,8.39],[135209,135209,15.6],[135210,135210,27.4],[135211,135211,10.02],[135212,135212,11.02],[135213,135216,6.53],[135217,135217,13.49],[135218,135223,6.53],[135224,135224,10.75],[135225,135226,6.53],[135227,135227,9.94],[135228,135228,10.17],[135229,135230,6.53],[135231,135231,16.77],[135232,135232,7.31],[135233,135233,6.88],[135234,135234,8.01],[135235,135236,6.88],[135237,135238,8.39],[135239,135239,7.14],[135240,135240,7.31],[135241,135241,8.39],[135242,135242,3.35],[135243,135243,5.79],[135244,135244,7.47],[135245,135245,11.15],[135246,135246,7.26],[135247,135247,14.2],[135248,135248,7.58],[135249,135249,7.67],[135250,135250,7.66],[135251,135251,7.49],[135252,135252,6.95],[135253,135253,7.3],[135254,135254,10.67],[135255,135255,10.89],[135256,135257,6.53],[135258,135258,6.88],[135259,135259,10.06],[135260,135260,7.53],[135261,135261,7.31],[135262,135264,6.53],[135265,135265,8.12],[135266,135266,10.26],[135267,135267,13.79],[135268,135268,11.2],[135269,135269,7.68],[135270,135270,7.31],[135271,135271,11.43],[135272,135272,10.94],[135273,135273,11.57],[135274,135276,11.53],[135277,135277,11.57],[135278,135278,14.87],[135279,135279,12.01],[135280,135280,11.85],[135281,135284,6.53],[135285,135285,7.73],[135286,135286,7.7],[135287,135287,7.69],[135288,135289,12.22],[135290,135290,11.79],[135291,135291,12.23],[135292,135292,12.12],[135293,135293,12.09],[135294,135294,11.44],[135295,135295,7.68],[135296,135296,12.18],[135297,135297,7.31],[135298,135298,6.53],[135299,135299,10.26],[135300,135300,13.18],[135301,135302,6.53],[135303,135303,10.99],[135304,135305,10.77],[135306,135306,11.54],[135307,135307,10.77],[135308,135308,14.54],[135309,135309,6.53],[135310,135310,7.68],[135311,135311,10.77],[135312,135312,8.39],[135313,135313,7.11],[135314,135314,7.61],[135315,135315,8.07],[135316,135316,8.24],[135317,135317,8.19],[135318,135318,8.05],[135319,135319,6.1],[135320,135321,7.31],[135322,135322,10.77],[135323,135323,10.99],[135324,135324,11.54],[135325,135325,6.53],[135326,135326,4.41],[135327,135327,11.14],[135328,135328,7.28],[135329,135329,7.44],[135330,135330,7.79],[135331,135331,7.65],[135332,135332,6.7],[135333,135333,8.69],[135334,135334,7.3],[135335,135335,8.64],[135336,135336,6.16],[135337,135337,6.97],[135338,135338,8.6],[135339,135339,7.71],[135340,135340,6.92],[135341,135341,7.5],[135342,135342,7.76],[135343,135343,7.61],[135344,135344,8.07],[135345,135345,6.77],[135346,135346,6.51],[135347,135347,7.48],[135348,135348,7.47],[135349,135349,7.76],[135350,135350,7.07],[135351,135352,6.85],[135353,135353,6.92],[135354,135354,6.96],[135355,135355,8.47],[135356,135356,6.51],[135357,135357,7.28],[135358,135358,6.92],[135359,135359,7.39],[135360,135360,8.08],[135361,135361,6.34],[135362,135362,6.67],[135363,135363,6.65],[135364,135364,7.43],[135365,135365,8.71],[135366,135375,5.5],[135376,135376,6.06],[135377,135377,6.51],[135378,135378,6.26],[135379,135379,9.42],[135380,135380,6.26],[135381,135381,6.21],[135382,135382,7.4],[135383,135383,9.49],[135384,135384,6.26],[135385,135385,6.17],[135386,135386,11.25],[135387,135388,6.62],[135389,135389,8.44],[135390,135390,6.3],[135391,135391,6.47],[135392,135392,8.45],[135393,135393,6.41],[135394,135394,7.78],[135395,135395,6.53],[135396,135396,9.04],[135397,135397,6.38],[135398,135398,8.45],[135399,135399,6.37],[135400,135400,6.71],[135401,135401,6.48],[135402,135402,7.01],[135403,135403,6.6],[135404,135404,6.71],[135405,135405,7.01],[135406,135406,6.61],[135407,135407,6.15],[135408,135408,6.2],[135409,135409,7.01],[135410,135410,6.18],[135411,135411,6.25],[135412,135412,6.26],[135413,135413,6.9],[135414,135414,8.37],[135415,135415,6.37],[135416,135416,6.35],[135417,135417,6.3],[135418,135418,6.01],[135419,135419,6.49],[135420,135420,4.29],[135421,135421,6.75],[135422,135422,6.18],[135423,135423,6.45],[135424,135442,9.51],[135443,135518,11],[135519,135520,0],[135521,135541,9.51],[135542,135581,11],[135582,135582,9.51],[135583,135585,11],[135586,135586,9.51],[135587,135591,11],[135592,135618,9.51],[135619,135673,11],[135674,135679,5.5],[135680,135680,8.1],[135681,135681,10.63],[135682,135682,7.52],[135683,135683,7.72],[135684,135684,7.64],[135685,135685,8.59],[135686,135686,10.52],[135687,135687,12.84],[135688,135688,7.6],[135689,135689,9.95],[135690,135690,9.75],[135691,135691,7.6],[135692,135692,10.03],[135693,135693,9.06],[135694,135694,12.57],[135695,135695,10.16],[135696,135696,11.99],[135697,135697,14.37],[135698,135698,14.34],[135699,135699,11.99],[135700,135700,14.21],[135701,135701,11.99],[135702,135702,12.05],[135703,135703,14.44],[135704,135704,12.57],[135705,135705,15.69],[135706,135706,13.23],[135707,135707,12.57],[135708,135708,13.24],[135709,135710,12.57],[135711,135711,13.37],[135712,135712,11.34],[135713,135713,14.2],[135714,135714,11.62],[135715,135715,11.34],[135716,135716,11.68],[135717,135717,12.71],[135718,135718,11.04],[135719,135719,11.76],[135720,135720,7.17],[135721,135721,8.47],[135722,135722,8.02],[135723,135723,10.61],[135724,135724,9.55],[135725,135725,7.27],[135726,135726,9.69],[135727,135727,10.61],[135728,135728,7.86],[135729,135729,10.33],[135730,135730,10.26],[135731,135731,7.86],[135732,135732,10.12],[135733,135734,7.86],[135735,135735,10.37],[135736,135736,9.24],[135737,135737,10.95],[135738,135738,10.88],[135739,135739,9.24],[135740,135740,10.74],[135741,135741,9.85],[135742,135742,9.24],[135743,135743,10.98],[135744,135751,9.96],[135752,135752,11.66],[135753,135753,5.5],[135754,135754,14.85],[135755,135756,9.96],[135757,135757,14.85],[135758,135759,5.5],[135760,135764,10.28],[135765,135765,11.74],[135766,135766,10.28],[135767,135767,5.5],[135768,135768,11.83],[135769,135769,5.5],[135770,135770,15.01],[135771,135772,10.28],[135773,135773,13.09],[135774,135775,5.5],[135776,135776,8.28],[135777,135777,10.55],[135778,135778,10.48],[135779,135779,8.29],[135780,135780,10.34],[135781,135781,10.87],[135782,135782,8.28],[135783,135783,10.58],[135784,135784,9.24],[135785,135785,10.95],[135786,135786,10.88],[135787,135787,9.24],[135788,135788,10.74],[135789,135789,11.31],[135790,135790,9.24],[135791,135791,10.98],[135792,135794,9.21],[135795,135795,9.22],[135796,135796,9.32],[135797,135800,9.21],[135801,135801,9.24],[135802,135802,9.21],[135803,135803,9.22],[135804,135804,9.21],[135805,135805,11.06],[135806,135806,9.28],[135807,135807,9.21],[135808,135808,8.31],[135809,135809,10.47],[135810,135810,9.89],[135811,135811,8.31],[135812,135812,9.63],[135813,135813,8.1],[135814,135815,12.11],[135816,135816,12.59],[135817,135817,5.5],[135818,135818,12.24],[135819,135819,9.14],[135820,135820,9.63],[135821,135821,12.24],[135822,135823,5.5],[135824,135824,6.38],[135825,135825,8.53],[135826,135826,7.95],[135827,135827,7.51],[135828,135828,7.69],[135829,135829,8.21],[135830,135830,9.35],[135831,135831,8.77],[135832,135832,9.18],[135833,135833,10.65],[135834,135834,10.07],[135835,135835,9.18],[135836,135836,9.81],[135837,135837,9.18],[135838,135838,11.39],[135839,135839,9.54],[135840,135840,7.34],[135841,135841,10.03],[135842,135842,10.01],[135843,135843,7.34],[135844,135844,9.87],[135845,135845,7.68],[135846,135846,7.34],[135847,135847,9.45],[135848,135848,8.41],[135849,135849,10.89],[135850,135850,10.81],[135851,135851,8.41],[135852,135852,10.68],[135853,135854,8.41],[135855,135855,10.52],[135856,135856,13.33],[135857,135857,5.5],[135858,135858,12.65],[135859,135859,10.19],[135860,135860,10.68],[135861,135861,12.65],[135862,135863,5.5],[135864,135864,10.59],[135865,135865,13.07],[135866,135866,12.99],[135867,135867,10.59],[135868,135868,12.85],[135869,135870,10.59],[135871,135871,5.5],[135872,135872,15.5],[135873,135873,5.5],[135874,135874,14.83],[135875,135875,13.09],[135876,135876,12.85],[135877,135877,14.83],[135878,135879,5.5],[135880,135880,10.72],[135881,135881,13.2],[135882,135884,10.72],[135885,135885,13.63],[135886,135886,10.72],[135887,135887,13.81],[135888,135888,7.82],[135889,135889,10.52],[135890,135890,10.22],[135891,135891,7.62],[135892,135892,10.15],[135893,135893,7.61],[135894,135894,8.05],[135895,135895,5.5],[135896,135896,8.67],[135897,135897,10.78],[135898,135898,10.79],[135899,135899,8.67],[135900,135900,10.66],[135901,135901,10.56],[135902,135902,8.67],[135903,135903,10.91],[135904,135908,13.2],[135909,135909,14.88],[135910,135911,13.2],[135912,135912,6.88],[135913,135913,8.66],[135914,135914,10.22],[135915,135915,7.09],[135916,135916,11.27],[135917,135917,8.19],[135918,135918,9.74],[135919,135919,12.25],[135920,135920,9.06],[135921,135921,12.22],[135922,135922,11.44],[135923,135923,8.85],[135924,135924,11.05],[135925,135925,10],[135926,135926,9.84],[135927,135927,11.42],[135928,135928,9.01],[135929,135929,11.89],[135930,135930,11.11],[135931,135931,8.51],[135932,135932,11],[135933,135933,10.65],[135934,135934,9.84],[135935,135935,11.09],[135936,135936,9.33],[135937,135937,12.5],[135938,135938,11.71],[135939,135939,9.12],[135940,135940,11.61],[135941,135941,10.98],[135942,135942,9.92],[135943,135943,11.69],[135944,135944,6.92],[135945,135945,9.93],[135946,135946,7.34],[135947,135947,7.51],[135948,135948,7.2],[135949,135949,9.54],[135950,135950,6.92],[135951,135951,8.43],[135952,135952,12.37],[135953,135953,5.5],[135954,135954,11.7],[135955,135955,7.4],[135956,135956,8.71],[135957,135957,11.7],[135958,135959,5.5],[135960,135960,8.97],[135961,135961,10.9],[135962,135964,8.97],[135965,135965,10.44],[135966,135966,9.28],[135967,135967,8.97],[135968,135968,13.2],[135969,135969,15.52],[135970,135970,15.5],[135971,135971,13.15],[135972,135972,15.36],[135973,135973,12.73],[135974,135974,13.2],[135975,135975,15.54],[135976,135976,16.17],[135977,135977,16.58],[135978,135978,16.51],[135979,135979,16.17],[135980,135980,19.93],[135981,135981,15.73],[135982,135982,15.95],[135983,135983,16.61],[135984,135984,7.94],[135985,135985,10.57],[135986,135986,10.34],[135987,135987,7.81],[135988,135988,10.21],[135989,135989,10.16],[135990,135990,8],[135991,135991,10.32],[135992,135992,8.21],[135993,135993,10.73],[135994,135994,10.5],[135995,135995,7.98],[135996,135996,10.37],[135997,135997,10.36],[135998,135998,8.27],[135999,135999,10.37],[136000,136000,7.82],[136001,136001,10.52],[136002,136002,7.95],[136003,136003,7.03],[136004,136004,8.01],[136005,136005,7.61],[136006,136006,8.04],[136007,136007,9.81],[136008,136008,10.23],[136009,136009,10.43],[136010,136010,10.88],[136011,136011,10.43],[136012,136012,12.06],[136013,136013,10.1],[136014,136014,10.26],[136015,136015,10.1],[136016,136016,9.21],[136017,136017,9.24],[136018,136018,9.21],[136019,136019,9.22],[136020,136021,9.21],[136022,136022,9.31],[136023,136023,9.21],[136024,136024,9.72],[136025,136025,13.28],[136026,136026,11.15],[136027,136030,5.5],[136031,136031,8.74],[136032,136032,10.57],[136033,136033,3.63],[136034,136034,7.35],[136035,136037,4.37],[136038,136038,6.35],[136039,136039,3.63],[136040,136040,11.07],[136041,136041,6.48],[136042,136042,5.89],[136043,136043,6.47],[136044,136044,6.43],[136045,136045,7.79],[136046,136046,7.29],[136047,136047,7.48],[136048,136048,7.91],[136049,136049,6.7],[136050,136050,5.01],[136051,136051,8.8],[136052,136052,8.74],[136053,136053,10.15],[136054,136054,6.43],[136055,136055,7.91],[136056,136056,9.39],[136057,136057,10.44],[136058,136058,6.62],[136059,136059,6.81],[136060,136060,12.71],[136061,136063,5.5],[136064,136064,18.01],[136065,136065,17.02],[136066,136066,13.24],[136067,136067,17.75],[136068,136068,12.89],[136069,136069,12.4],[136070,136070,10.34],[136071,136071,15.48],[136072,136073,11.75],[136074,136074,12.85],[136075,136075,15.04],[136076,136076,11.59],[136077,136077,11.07],[136078,136078,9.32],[136079,136079,13.04],[136080,136080,3.61],[136081,136081,6.53],[136082,136083,3.61],[136084,136084,6.53],[136085,136085,7.97],[136086,136086,5.31],[136087,136087,10.27],[136088,136088,12.08],[136089,136089,6.27],[136090,136095,5.5],[136096,136096,8.22],[136097,136097,7.64],[136098,136098,7.26],[136099,136099,10.33],[136100,136100,11.56],[136101,136101,5.15],[136102,136102,7.92],[136103,136103,9.69],[136104,136104,7.13],[136105,136105,6.81],[136106,136106,8.06],[136107,136107,6.61],[136108,136108,6.84],[136109,136109,10.61],[136110,136110,6.85],[136111,136111,9.4],[136112,136112,6.21],[136113,136113,6.51],[136114,136114,11.81],[136115,136115,11.1],[136116,136116,7.03],[136117,136117,6.74],[136118,136118,8.19],[136119,136119,10.09],[136120,136120,6.71],[136121,136121,10.9],[136122,136122,11.6],[136123,136123,8.62],[136124,136124,6.93],[136125,136125,9.11],[136126,136126,8.65],[136127,136127,8.33],[136128,136128,8.35],[136129,136129,9.71],[136130,136130,6.8],[136131,136131,6.94],[136132,136132,6.71],[136133,136133,12.52],[136134,136134,6.98],[136135,136135,10.15],[136136,136136,9.77],[136137,136137,13.44],[136138,136138,10.15],[136139,136139,7.28],[136140,136140,8.37],[136141,136141,11.9],[136142,136142,7.5],[136143,136143,7.22],[136144,136144,6.66],[136145,136145,8.66],[136146,136146,7.64],[136147,136147,5.78],[136148,136148,11.12],[136149,136149,7.68],[136150,136150,9.5],[136151,136151,7.63],[136152,136152,7.62],[136153,136153,7.93],[136154,136154,7.43],[136155,136155,9.97],[136156,136156,9.86],[136157,136157,6.82],[136158,136158,6.54],[136159,136159,7.93],[136160,136160,10.04],[136161,136161,11.93],[136162,136162,7.22],[136163,136163,9.01],[136164,136164,8.97],[136165,136165,9.08],[136166,136166,7.99],[136167,136167,7.14],[136168,136168,10.37],[136169,136169,9.03],[136170,136170,11.48],[136171,136171,8.65],[136172,136172,10.13],[136173,136173,8],[136174,136174,7.36],[136175,136175,10.15],[136176,136176,8.19],[136177,136177,10.14],[136178,136178,7.17],[136179,136179,10.41],[136180,136180,7.63],[136181,136181,8.3],[136182,136183,10.15],[136184,136184,6.39],[136185,136185,7.91],[136186,136186,5.59],[136187,136187,8.12],[136188,136188,5.95],[136189,136189,6.47],[136190,136190,9.03],[136191,136191,10.15],[136192,136192,5.5],[136193,136196,9.6],[136197,136198,8.7],[136199,136199,8.69],[136200,136201,8.74],[136202,136203,8.7],[136204,136209,9.93],[136210,136210,10.47],[136211,136211,10.6],[136212,136212,10.4],[136213,136213,10.6],[136214,136214,8.74],[136215,136215,10.61],[136216,136216,10.03],[136217,136217,10.61],[136218,136218,10.07],[136219,136219,8.69],[136220,136220,8.63],[136221,136221,6.93],[136222,136222,6.17],[136223,136223,4.01],[136224,136224,4.03],[136225,136226,5.93],[136227,136227,4.35],[136228,136228,5.3],[136229,136229,6.29],[136230,136230,4.62],[136231,136231,2.36],[136232,136232,4.4],[136233,136233,5.19],[136234,136234,4.6],[136235,136235,13.44],[136236,136236,10.58],[136237,136237,11.32],[136238,136238,12.32],[136239,136239,9.62],[136240,136242,9.44],[136243,136247,8.68],[136248,136249,8.66],[136250,136250,9.8],[136251,136251,9.76],[136252,136252,9.79],[136253,136253,9.96],[136254,136254,9.79],[136255,136255,9.82],[136256,136256,9.87],[136257,136257,10.51],[136258,136258,9.87],[136259,136259,10.51],[136260,136260,10.31],[136261,136261,9.58],[136262,136262,10.59],[136263,136263,9.61],[136264,136264,8.36],[136265,136265,4.76],[136266,136266,2.19],[136267,136267,5.47],[136268,136271,9.77],[136272,136278,7.97],[136279,136279,11.77],[136280,136280,11.63],[136281,136281,11.62],[136282,136282,11.63],[136283,136283,11.62],[136284,136284,11.63],[136285,136285,9.14],[136286,136286,9.92],[136287,136287,9.14],[136288,136288,9.92],[136289,136289,9.49],[136290,136290,9.19],[136291,136291,9.49],[136292,136292,9.19],[136293,136293,9.5],[136294,136294,4.35],[136295,136296,12.25],[136297,136298,10.47],[136299,136307,7.16],[136308,136308,8.91],[136309,136309,8.73],[136310,136310,8.63],[136311,136311,9.01],[136312,136312,8.62],[136313,136313,9.01],[136314,136314,8.93],[136315,136315,8.71],[136316,136316,8.93],[136317,136317,8.71],[136318,136318,8.93],[136319,136319,8.71],[136320,136320,8.93],[136321,136321,8.71],[136322,136322,8.56],[136323,136324,5.29],[136325,136325,9.37],[136326,136326,9.49],[136327,136328,8.65],[136329,136337,7.8],[136338,136345,9.55],[136346,136346,9.42],[136347,136347,9.55],[136348,136348,9.54],[136349,136349,9.55],[136350,136350,9.54],[136351,136351,9.42],[136352,136352,9.54],[136353,136354,4.98],[136355,136355,7.07],[136356,136363,6.84],[136364,136364,8.04],[136365,136365,8.82],[136366,136366,8.53],[136367,136367,7.86],[136368,136368,8.53],[136369,136369,7.86],[136370,136370,7.81],[136371,136371,8.59],[136372,136372,7.81],[136373,136374,8.59],[136375,136375,7.86],[136376,136376,8.58],[136377,136377,7.86],[136378,136378,8.45],[136379,136379,4.26],[136380,136380,4.08],[136381,136381,4.26],[136382,136382,4.95],[136383,136383,6.66],[136384,136391,10.09],[136392,136392,9.89],[136393,136393,11.81],[136394,136394,11.84],[136395,136395,11.86],[136396,136396,9.96],[136397,136397,11.86],[136398,136398,9.96],[136399,136399,10.09],[136400,136400,6.55],[136401,136401,6.13],[136402,136402,6.72],[136403,136411,9.6],[136412,136413,11.35],[136414,136414,11.5],[136415,136415,11.35],[136416,136416,11.5],[136417,136417,11.34],[136418,136418,9.6],[136419,136419,11.35],[136420,136420,9.6],[136421,136421,11.35],[136422,136422,11.46],[136423,136423,9.47],[136424,136424,11.54],[136425,136425,9.47],[136426,136426,6.09],[136427,136427,4.9],[136428,136428,7.35],[136429,136437,6.73],[136438,136438,8.21],[136439,136439,8.46],[136440,136440,8.14],[136441,136441,7.92],[136442,136442,8.3],[136443,136443,7.92],[136444,136444,6.99],[136445,136445,8.95],[136446,136446,6.97],[136447,136447,8.95],[136448,136448,8.61],[136449,136449,8.36],[136450,136450,8.72],[136451,136451,8.36],[136452,136452,8.63],[136453,136453,4.58],[136454,136454,4.5],[136455,136455,4.58],[136456,136456,5.48],[136457,136458,4.59],[136459,136459,4.58],[136460,136460,13.2],[136461,136461,12.58],[136462,136462,11.62],[136463,136463,12.26],[136464,136466,10.73],[136467,136470,7.56],[136471,136476,12.72],[136477,136484,9.2],[136485,136485,6.93],[136486,136494,6.74],[136495,136495,8.1],[136496,136496,6.74],[136497,136497,8.48],[136498,136498,8.16],[136499,136499,8.48],[136500,136500,8.16],[136501,136501,8.43],[136502,136502,8.48],[136503,136503,8.43],[136504,136505,8.48],[136506,136506,8.64],[136507,136507,8.1],[136508,136509,8.48],[136510,136510,4.08],[136511,136511,5.45],[136512,136512,4.46],[136513,136513,4.79],[136514,136519,10.36],[136520,136525,7.19],[136526,136526,8.94],[136527,136527,8.81],[136528,136528,4.44],[136529,136529,4.9],[136530,136530,7.35],[136531,136534,9.99],[136535,136538,10.15],[136539,136539,11.68],[136540,136540,11.61],[136541,136541,6.54],[136542,136547,10.46],[136548,136551,9.17],[136552,136552,10.92],[136553,136553,10.77],[136554,136554,5.8],[136555,136556,9.77],[136557,136558,7.97],[136559,136559,6.61],[136560,136561,9.77],[136562,136563,7.96],[136564,136564,9.23],[136565,136566,9.25],[136567,136570,8.71],[136571,136571,6.87],[136572,136572,8.05],[136573,136573,4.74],[136574,136580,11.6],[136581,136581,9.64],[136582,136585,7.35],[136586,136589,9.88],[136590,136592,15.12],[136593,136594,11.61],[136595,136596,15.11],[136597,136597,7.36],[136598,136598,11.41],[136599,136602,8.29],[136603,136606,10.09],[136607,136607,6.55],[136608,136613,9.6],[136614,136614,6.09],[136615,136621,6.74],[136622,136622,4.08],[136623,136623,6.26],[136624,136627,6.91],[136628,136631,6.33],[136632,136635,9.22],[136636,136639,8.78],[136640,136643,9.22],[136644,136645,9.54],[136646,136649,8.66],[136650,136651,9.54],[136652,136655,8.66],[136656,136657,9.37],[136658,136659,8.72],[136660,136660,8.35],[136661,136661,8.72],[136662,136663,9.14],[136664,136665,8.72],[136666,136666,8.87],[136667,136667,8.72],[136668,136669,8.82],[136670,136670,7.69],[136671,136672,7.52],[136673,136673,7.69],[136674,136675,8.82],[136676,136677,7.37],[136678,136678,7.29],[136679,136679,7.37],[136680,136681,10.29],[136682,136685,8.03],[136686,136686,5.04],[136687,136688,11.61],[136689,136692,6.4],[136693,136694,11.6],[136695,136698,7.36],[136699,136700,11.53],[136701,136704,7.36],[136705,136705,5.47],[136706,136707,7.79],[136708,136711,9.95],[136712,136713,11.61],[136714,136717,6.4],[136718,136719,9.21],[136720,136723,7.75],[136724,136726,7.02],[136727,136731,10.37],[136732,136733,8.6],[136734,136737,10.25],[136738,136739,10.37],[136740,136743,7.05],[136744,136745,10.79],[136746,136749,7.12],[136750,136751,9.57],[136752,136752,6.88],[136753,136754,6.84],[136755,136755,6.88],[136756,136757,11.05],[136758,136761,6.96],[136762,136763,13.47],[136764,136767,6.65],[136768,136769,8.38],[136770,136773,7.63],[136774,136775,4.48],[136776,136777,8.38],[136778,136778,7.63],[136779,136779,7.57],[136780,136781,7.63],[136782,136783,11.83],[136784,136787,6.5],[136788,136789,11.83],[136790,136793,7.72],[136794,136794,4.14],[136795,136796,11.83],[136797,136800,8.19],[136801,136802,11.83],[136803,136804,6.5],[136805,136805,6.75],[136806,136806,6.5],[136807,136808,11.83],[136809,136809,8.19],[136810,136811,7.87],[136812,136812,8.19],[136813,136813,7.91],[136814,136814,6.03],[136815,136815,11.6],[136816,136817,19.24],[136818,136818,19.61],[136819,136820,15.74],[136821,136822,19.21],[136823,136831,5.5],[136832,136832,4.89],[136833,136833,3.31],[136834,136834,4.89],[136835,136835,6.48],[136836,136836,8.06],[136837,136837,9.65],[136838,136838,3.31],[136839,136839,4.89],[136840,136840,6.48],[136841,136841,8.06],[136842,136842,9.65],[136843,136843,3.31],[136844,136844,4.89],[136845,136845,6.48],[136846,136846,8.06],[136847,136847,9.65],[136848,136848,3.31],[136849,136849,4.89],[136850,136850,6.48],[136851,136851,8.06],[136852,136852,9.65],[136853,136853,3.31],[136854,136854,4.89],[136855,136856,6.48],[136857,136857,8.06],[136858,136858,6.48],[136859,136860,5],[136861,136863,5.5],[136864,136864,7.49],[136865,136865,7.77],[136866,136866,7.52],[136867,136867,6.59],[136868,136869,7.52],[136870,136871,5.77],[136872,136872,4.36],[136873,136874,6.48],[136875,136875,6.12],[136876,136876,5.55],[136877,136877,4.36],[136878,136878,4.42],[136879,136879,5.69],[136880,136880,5.71],[136881,136881,5.51],[136882,136882,3.67],[136883,136883,4.89],[136884,136885,6.26],[136886,136886,6.48],[136887,136887,6.45],[136888,136888,7.08],[136889,136889,4.83],[136890,136891,8.04],[136892,136892,5.64],[136893,136893,3.6],[136894,136894,5.59],[136895,136895,4.36],[136896,136896,5.59],[136897,136897,3.13],[136898,136898,3.6],[136899,136899,5.63],[136900,136900,5.36],[136901,136901,5.71],[136902,136902,4.42],[136903,136903,5.59],[136904,136904,5.05],[136905,136905,6.68],[136906,136906,4.19],[136907,136907,7.18],[136908,136908,3.13],[136909,136909,3.6],[136910,136910,5.71],[136911,136911,5.64],[136912,136912,4.43],[136913,136913,4.66],[136914,136914,5.6],[136915,136915,4.42],[136916,136916,6.05],[136917,136917,5.69],[136918,136918,8.1],[136919,136919,8.29],[136920,136920,7.28],[136921,136921,3.87],[136922,136922,4.37],[136923,136923,4.72],[136924,136924,5.84],[136925,136925,6.47],[136926,136926,8.04],[136927,136927,6.4],[136928,136928,6.96],[136929,136929,5.64],[136930,136930,6.96],[136931,136931,6.68],[136932,136932,7.55],[136933,136933,8.04],[136934,136934,7.28],[136935,136935,3.13],[136936,136936,5.71],[136937,136937,4.83],[136938,136938,8.41],[136939,136939,4.03],[136940,136940,3.05],[136941,136941,5.09],[136942,136942,5.64],[136943,136943,7.28],[136944,136944,6.62],[136945,136945,5.68],[136946,136946,6.07],[136947,136947,5.02],[136948,136948,6.08],[136949,136949,4.09],[136950,136950,5.21],[136951,136951,5.54],[136952,136952,6.23],[136953,136959,5.5],[136960,136960,11.15],[136961,136961,11.12],[136962,136962,5.88],[136963,136963,10.82],[136964,136964,9.21],[136965,136965,11.12],[136966,136966,10.72],[136967,136967,11.53],[136968,136968,9.35],[136969,136969,11.77],[136970,136970,9.36],[136971,136971,11.33],[136972,136972,11.32],[136973,136973,5.5],[136974,136974,10.04],[136975,136975,8.37],[136976,136976,10.14],[136977,136977,11.54],[136978,136980,6.53],[136981,136991,5.5],[136992,136992,9.68],[136993,136993,9.64],[136994,136994,5.73],[136995,136995,6.9],[136996,136996,8.62],[136997,136997,8.85],[136998,136998,10.56],[136999,136999,9.57],[137000,137000,10.63],[137001,137001,9.6],[137002,137002,5.71],[137003,137003,9.59],[137004,137004,9.63],[137005,137005,6.74],[137006,137006,9.81],[137007,137007,11.19],[137008,137008,10.54],[137009,137009,8.85],[137010,137012,6.53],[137013,137013,3.62],[137014,137014,5.37],[137015,137023,5.5],[137024,137025,9.11],[137026,137026,6.88],[137027,137027,6.81],[137028,137028,6.59],[137029,137029,8.85],[137030,137030,11.27],[137031,137031,8.99],[137032,137032,4.82],[137033,137033,9.11],[137034,137034,6.81],[137035,137035,8.07],[137036,137036,9.69],[137037,137037,6.74],[137038,137038,9.54],[137039,137039,8.99],[137040,137040,8.34],[137041,137041,6.31],[137042,137043,6.53],[137044,137055,5.5],[137056,137056,8.85],[137057,137057,10.1],[137058,137058,4.31],[137059,137059,6.92],[137060,137060,8.77],[137061,137061,10.39],[137062,137062,11.16],[137063,137063,8.85],[137064,137064,8.77],[137065,137065,10.1],[137066,137066,9.38],[137067,137067,10.1],[137068,137068,10.35],[137069,137069,5.5],[137070,137070,10.32],[137071,137071,9.17],[137072,137072,11.58],[137073,137073,5.5],[137074,137075,6.53],[137076,137087,5.5],[137088,137090,6.6],[137091,137091,10.45],[137092,137095,6.6],[137096,137096,14.3],[137097,137097,10.45],[137098,137100,6.6],[137101,137101,10.45],[137102,137102,14.3],[137103,137104,6.6],[137105,137105,6.84],[137106,137112,6.6],[137113,137113,10.45],[137114,137114,3.85],[137115,137115,10.45],[137116,137116,3.85],[137117,137118,6.6],[137119,137120,10.45],[137121,137121,10.69],[137122,137122,6.38],[137123,137123,6.6],[137124,137124,10.45],[137125,137125,6.6],[137126,137126,10.45],[137127,137128,6.6],[137129,137129,7.81],[137130,137130,6.82],[137131,137139,6.6],[137140,137141,0],[137142,137142,9.44],[137143,137143,6.13],[137144,137146,6.12],[137147,137149,5.25],[137150,137150,9.91],[137151,137152,11.23],[137153,137154,9.14],[137155,137155,9.36],[137156,137156,13.3],[137157,137157,13.68],[137158,137158,5.25],[137159,137159,8.74],[137160,137160,7.85],[137161,137161,5.25],[137162,137162,6.57],[137163,137164,5.25],[137165,137165,5.29],[137166,137171,5.25],[137172,137172,5.11],[137173,137173,6.82],[137174,137174,3.77],[137175,137175,5.83],[137176,137176,20.08],[137177,137177,7.12],[137178,137178,12.93],[137179,137179,4.18],[137180,137180,5.83],[137181,137181,5.25],[137182,137183,5.5],[137184,137185,5.83],[137186,137186,7.27],[137187,137187,9.68],[137188,137190,6.54],[137191,137191,7.66],[137192,137192,6.54],[137193,137193,6.21],[137194,137199,5.5],[137200,137200,4.14],[137201,137201,4.53],[137202,137202,1.76],[137203,137203,7.25],[137204,137204,4.53],[137205,137205,4.38],[137206,137206,3.13],[137207,137207,5.88],[137208,137208,3.13],[137209,137209,4.88],[137210,137215,5.5],[137216,137216,5.88],[137217,137217,11.33],[137218,137218,4.22],[137219,137219,7.02],[137220,137220,4.22],[137221,137221,6.4],[137222,137222,4.4],[137223,137223,5.88],[137224,137224,4.64],[137225,137225,7.06],[137226,137226,1.85],[137227,137230,0],[137231,137231,11],[137232,137233,6.29],[137234,137234,6.65],[137235,137235,9.63],[137236,137236,5.88],[137237,137237,7.83],[137238,137239,6.93],[137240,137240,6.2],[137241,137241,5.88],[137242,137247,11],[137248,137248,10.22],[137249,137249,9.07],[137250,137250,10.92],[137251,137252,10.25],[137253,137254,13.58],[137255,137255,13.2],[137256,137256,6.24],[137257,137257,8.12],[137258,137258,7.48],[137259,137259,7.42],[137260,137261,9.49],[137262,137263,6.24],[137264,137265,8.31],[137266,137266,8.2],[137267,137267,8.23],[137268,137268,8.44],[137269,137270,5.46],[137271,137271,7.62],[137272,137272,6.55],[137273,137273,7.48],[137274,137274,6.06],[137275,137275,6.05],[137276,137276,9.81],[137277,137277,8.96],[137278,137278,11.97],[137279,137279,9.99],[137280,137280,11.97],[137281,137281,7.05],[137282,137282,12.94],[137283,137283,2.21],[137284,137284,9.89],[137285,137285,9.96],[137286,137286,10.07],[137287,137287,12.39],[137288,137288,10.07],[137289,137289,12.39],[137290,137290,11.76],[137291,137291,10.17],[137292,137292,7.87],[137293,137294,9.47],[137295,137295,5.78],[137296,137296,7.95],[137297,137297,6.06],[137298,137298,8.64],[137299,137299,8.44],[137300,137300,7.15],[137301,137301,4.96],[137302,137302,8.24],[137303,137303,6.25],[137304,137304,6.03],[137305,137305,12.1],[137306,137306,8.13],[137307,137307,5.7],[137308,137308,8],[137309,137309,9.07],[137310,137310,10.92],[137311,137311,3.13],[137312,137312,10.25],[137313,137313,13.58],[137314,137314,10.12],[137315,137315,4.71],[137316,137316,7.62],[137317,137317,8.71],[137318,137318,7.9],[137319,137319,7.49],[137320,137320,9.15],[137321,137321,8.2],[137322,137322,5.63],[137323,137323,6.55],[137324,137325,6.06],[137326,137327,8.31],[137328,137328,4.1],[137329,137329,8.44],[137330,137330,5.63],[137331,137331,10.92],[137332,137332,6.02],[137333,137333,9.55],[137334,137334,6.16],[137335,137335,5.46],[137336,137343,11],[137344,137344,6.41],[137345,137345,8.69],[137346,137346,7.4],[137347,137348,5.31],[137349,137349,11.63],[137350,137350,10.85],[137351,137351,11.23],[137352,137352,10.92],[137353,137353,7.77],[137354,137354,10.01],[137355,137355,6.9],[137356,137356,5.61],[137357,137357,8.71],[137358,137358,6.77],[137359,137359,5.77],[137360,137360,5.98],[137361,137361,6.06],[137362,137362,7.48],[137363,137363,7.42],[137364,137364,7.2],[137365,137365,9.16],[137366,137366,8],[137367,137367,6.05],[137368,137368,6.88],[137369,137369,9.46],[137370,137370,12.85],[137371,137371,9.34],[137372,137372,8.31],[137373,137373,10.15],[137374,137374,5.72],[137375,137375,7.66],[137376,137376,6.06],[137377,137377,11.53],[137378,137378,8.31],[137379,137379,5.72],[137380,137381,8.31],[137382,137382,5.55],[137383,137383,6.13],[137384,137384,10.98],[137385,137385,0],[137386,137386,7.9],[137387,137391,11],[137392,137471,5.5],[137472,137472,7.41],[137473,137473,6.65],[137474,137474,7.71],[137475,137475,6.54],[137476,137476,6.62],[137477,137477,10.2],[137478,137478,6.9],[137479,137479,6.95],[137480,137480,7.42],[137481,137481,6.41],[137482,137482,8.55],[137483,137483,6.08],[137484,137484,7.6],[137485,137485,6.88],[137486,137486,7.48],[137487,137487,6.65],[137488,137488,8.22],[137489,137489,8.92],[137490,137490,6.76],[137491,137491,7.7],[137492,137492,7.12],[137493,137493,6.64],[137494,137494,6.88],[137495,137495,7.22],[137496,137496,7.27],[137497,137497,7],[137498,137498,5.73],[137499,137499,6.94],[137500,137500,7.25],[137501,137501,6.76],[137502,137502,6.61],[137503,137503,5.5],[137504,137506,7.93],[137507,137507,11.08],[137508,137508,14.1],[137509,137509,11.08],[137510,137510,14.1],[137511,137512,7.93],[137513,137513,11.87],[137514,137514,7.93],[137515,137515,12.44],[137516,137519,5.5],[137520,137520,13.95],[137521,137521,10.83],[137522,137522,7.93],[137523,137523,10.9],[137524,137524,13.18],[137525,137525,13.58],[137526,137526,13.46],[137527,137527,9.15],[137528,137528,11.49],[137529,137531,7.93],[137532,137535,5.5],[137536,137536,6.05],[137537,137539,5.5],[137540,137540,4.84],[137541,137541,5.28],[137542,137542,6.04],[137543,137543,5.49],[137544,137544,5.47],[137545,137545,5.07],[137546,137546,5.5],[137547,137547,5.36],[137548,137549,5.41],[137550,137550,5.47],[137551,137551,5.41],[137552,137552,5.64],[137553,137553,7.3],[137554,137554,5.9],[137555,137555,8],[137556,137556,7.24],[137557,137557,6.69],[137558,137558,9.92],[137559,137559,10.64],[137560,137560,6.26],[137561,137561,5.72],[137562,137562,9.14],[137563,137563,5.6],[137564,137564,9.14],[137565,137565,6.35],[137566,137566,9.34],[137567,137567,7.48],[137568,137568,5.59],[137569,137569,7.2],[137570,137570,5.9],[137571,137571,2.63],[137572,137572,6.04],[137573,137573,5.65],[137574,137574,6.04],[137575,137575,3.19],[137576,137576,2.72],[137577,137577,5.52],[137578,137578,6.04],[137579,137579,5.65],[137580,137580,2.3],[137581,137581,6.92],[137582,137583,5.5],[137584,137584,6.09],[137585,137585,5.75],[137586,137586,6.63],[137587,137587,6.01],[137588,137588,5.75],[137589,137599,5.5],[137600,137601,10.22],[137602,137602,9.99],[137603,137603,5.83],[137604,137604,10.05],[137605,137605,6.72],[137606,137606,6.58],[137607,137607,7.11],[137608,137608,6.36],[137609,137609,10.22],[137610,137610,6.83],[137611,137611,6.72],[137612,137612,6.58],[137613,137614,9.99],[137615,137615,6.92],[137616,137616,10.05],[137617,137617,7.06],[137618,137618,8.24],[137619,137619,6.34],[137620,137620,6.98],[137621,137621,9.16],[137622,137622,10.05],[137623,137623,9.99],[137624,137624,10.22],[137625,137625,6.72],[137626,137626,7.06],[137627,137628,10.05],[137629,137629,9.99],[137630,137630,6.09],[137631,137632,10.05],[137633,137633,5.97],[137634,137634,6.72],[137635,137635,7.46],[137636,137636,5.97],[137637,137637,6.72],[137638,137638,9.99],[137639,137639,5.95],[137640,137640,6.72],[137641,137641,6.58],[137642,137642,10.22],[137643,137643,6.58],[137644,137647,5.5],[137648,137648,7.33],[137649,137649,5.97],[137650,137650,6.64],[137651,137651,5.97],[137652,137652,6.57],[137653,137653,7.73],[137654,137654,14.3],[137655,137655,5.81],[137656,137656,5.71],[137657,137657,6.64],[137658,137658,6.19],[137659,137659,8.88],[137660,137660,9.02],[137661,137661,9],[137662,137662,7.96],[137663,137664,9.55],[137665,137665,6.09],[137666,137666,7.12],[137667,137667,6.42],[137668,137668,6.72],[137669,137669,9.99],[137670,137670,5.97],[137671,137671,6.72],[137672,137672,5.63],[137673,137673,5.74],[137674,137679,5.5],[137680,137680,6.09],[137681,137681,5.97],[137682,137682,3.95],[137683,137684,5.92],[137685,137685,8.54],[137686,137686,6.91],[137687,137687,8.54],[137688,137688,6.17],[137689,137689,6.58],[137690,137690,6.79],[137691,137693,5.5],[137694,137695,9.2],[137696,137696,7.08],[137697,137697,5.83],[137698,137698,7.27],[137699,137699,9.68],[137700,137702,6.54],[137703,137703,7.66],[137704,137704,6.54],[137705,137705,6.21],[137706,137707,13.97],[137708,137708,14.5],[137709,137709,15.84],[137710,137711,13.97],[137712,137712,6.98],[137713,137713,5.83],[137714,137714,7.27],[137715,137715,9.68],[137716,137718,6.54],[137719,137719,7.66],[137720,137720,6.54],[137721,137721,6.21],[137722,137723,13.97],[137724,137724,14.5],[137725,137725,15.84],[137726,137727,13.97],[137728,137728,7.45],[137729,137729,11.51],[137730,137730,6.65],[137731,137731,8.3],[137732,137732,11.51],[137733,137733,7.45],[137734,137734,10.39],[137735,137735,9.66],[137736,137738,10.39],[137739,137740,11.51],[137741,137741,8.62],[137742,137742,13.43],[137743,137743,14.57],[137744,137744,13.41],[137745,137745,7.58],[137746,137746,13.73],[137747,137747,13.41],[137748,137748,6.34],[137749,137749,13.38],[137750,137750,11.37],[137751,137752,6.53],[137753,137753,10.46],[137754,137754,12.47],[137755,137755,6.53],[137756,137757,5.5],[137758,137758,5.54],[137759,137759,5.92],[137760,137760,10.18],[137761,137761,5.81],[137762,137762,5.76],[137763,137763,6.53],[137764,137764,6.42],[137765,137765,11.47],[137766,137766,6.94],[137767,137767,6.55],[137768,137768,10],[137769,137770,6.12],[137771,137771,10.78],[137772,137772,10.01],[137773,137774,7.44],[137775,137775,5.77],[137776,137776,7.2],[137777,137777,12.01],[137778,137778,9.82],[137779,137779,7.72],[137780,137780,7.12],[137781,137781,7],[137782,137782,6.07],[137783,137783,6.53],[137784,137784,6.9],[137785,137785,7.7],[137786,137786,7.56],[137787,137788,7.23],[137789,137789,9.66],[137790,137790,6.53],[137791,137791,10.73],[137792,137792,6.74],[137793,137793,7.1],[137794,137794,7.25],[137795,137795,9.88],[137796,137796,5.77],[137797,137797,5.92],[137798,137798,6.53],[137799,137800,10.01],[137801,137801,9.88],[137802,137802,6.94],[137803,137803,9.73],[137804,137804,9.88],[137805,137805,7.23],[137806,137806,8.92],[137807,137808,5.77],[137809,137809,6.56],[137810,137810,11.88],[137811,137811,10.1],[137812,137812,14.25],[137813,137814,0],[137815,137815,3.12],[137816,137822,0],[137823,137823,5.5],[137824,137824,0],[137825,137825,4.93],[137826,137826,0],[137827,137827,5.4],[137828,137828,2.72],[137829,137836,0],[137837,137837,2.34],[137838,137838,5.93],[137839,137839,11.11],[137840,137841,5.93],[137842,137842,6.02],[137843,137852,0],[137853,137854,5.5],[137855,137855,0],[137856,137856,5.92],[137857,137857,5.89],[137858,137858,3.73],[137859,137860,5.83],[137861,137861,5.82],[137862,137862,5.88],[137863,137863,5.82],[137864,137864,6.14],[137865,137865,5.88],[137866,137871,5.5],[137872,137872,5.92],[137873,137873,7.28],[137874,137874,4.46],[137875,137875,9.9],[137876,137876,7.22],[137877,137877,7.12],[137878,137878,7.45],[137879,137879,7.44],[137880,137880,7.23],[137881,137881,9.88],[137882,137887,5.5],[137888,137888,7.85],[137889,137889,7.88],[137890,137890,10.79],[137891,137891,9.06],[137892,137892,7.85],[137893,137893,8.06],[137894,137894,7.19],[137895,137895,7.34],[137896,137896,3.28],[137897,137897,5.05],[137898,137898,6.59],[137899,137899,8.2],[137900,137900,13.56],[137901,137901,6.07],[137902,137983,5.5],[137984,137987,6.53],[137988,137988,11.07],[137989,137989,12.13],[137990,137990,17.05],[137991,137991,10.26],[137992,137992,15.18],[137993,137993,8.24],[137994,137994,13.16],[137995,137995,8.88],[137996,137996,13.79],[137997,137997,10.42],[137998,137998,15.33],[137999,137999,7.9],[138000,138000,12.58],[138001,138001,10.81],[138002,138002,15.73],[138003,138003,12.22],[138004,138004,12.44],[138005,138005,12.01],[138006,138006,12.85],[138007,138007,10.26],[138008,138008,8.73],[138009,138009,11.57],[138010,138010,9.67],[138011,138011,13.29],[138012,138012,16.6],[138013,138013,11.55],[138014,138014,11.12],[138015,138015,10.27],[138016,138016,8.91],[138017,138017,13.43],[138018,138018,13.24],[138019,138019,8.72],[138020,138020,11.79],[138021,138021,10.12],[138022,138022,9.39],[138023,138023,8.88],[138024,138024,8.41],[138025,138025,12.98],[138026,138026,10.17],[138027,138027,9.39],[138028,138028,10.55],[138029,138029,9.29],[138030,138030,13.45],[138031,138031,8.72],[138032,138032,12.01],[138033,138033,8.88],[138034,138034,8.89],[138035,138035,13.45],[138036,138036,6.53],[138037,138037,11.45],[138038,138042,6.53],[138043,138043,11.45],[138044,138044,6.53],[138045,138045,11.45],[138046,138047,11.85],[138048,138049,16.76],[138050,138050,6.53],[138051,138051,11.45],[138052,138052,3.83],[138053,138053,13.34],[138054,138054,19.9],[138055,138055,13.24],[138056,138056,8.88],[138057,138057,8.72],[138058,138058,8.89],[138059,138059,16.08],[138060,138063,5.5],[138064,138064,5.19],[138065,138065,13],[138066,138066,10.42],[138067,138067,10.81],[138068,138068,5.59],[138069,138069,7.19],[138070,138070,7.9],[138071,138071,12.02],[138072,138072,8.41],[138073,138073,9.92],[138074,138074,12.87],[138075,138075,14.21],[138076,138076,4.07],[138077,138077,5.04],[138078,138078,4.32],[138079,138079,7.06],[138080,138080,4.74],[138081,138081,6.12],[138082,138082,5.31],[138083,138083,4.62],[138084,138084,5.27],[138085,138085,6.69],[138086,138086,7.3],[138087,138087,10.34],[138088,138088,4.26],[138089,138089,14.33],[138090,138090,4.53],[138091,138099,6.53],[138100,138100,6.61],[138101,138101,6.28],[138102,138102,6.61],[138103,138103,6.28],[138104,138104,6.49],[138105,138105,6.86],[138106,138106,6.49],[138107,138107,6.96],[138108,138108,4.42],[138109,138111,5.5],[138112,138113,6.53],[138114,138114,10.79],[138115,138115,9.58],[138116,138116,6.17],[138117,138117,8.41],[138118,138118,10.02],[138119,138119,8.84],[138120,138120,8.74],[138121,138121,9.58],[138122,138122,8.72],[138123,138123,8.8],[138124,138124,8.81],[138125,138125,8.01],[138126,138126,8.25],[138127,138127,8.96],[138128,138128,9.12],[138129,138129,11.85],[138130,138130,9.47],[138131,138131,7.83],[138132,138132,7.93],[138133,138134,8.72],[138135,138135,7.44],[138136,138136,10.67],[138137,138137,7.6],[138138,138138,9.56],[138139,138139,5.88],[138140,138140,8.67],[138141,138141,7.52],[138142,138143,8.77],[138144,138144,8.47],[138145,138149,6.53],[138150,138151,10.66],[138152,138153,6.53],[138154,138154,9.44],[138155,138155,0],[138156,138157,6.53],[138158,138158,15.2],[138159,138159,18.12],[138160,138160,9.11],[138161,138161,8.79],[138162,138162,7.71],[138163,138163,8.41],[138164,138164,5.88],[138165,138165,9.53],[138166,138166,7.29],[138167,138167,8.16],[138168,138168,8.77],[138169,138169,8.19],[138170,138170,4],[138171,138171,7.83],[138172,138172,12.98],[138173,138173,14.7],[138174,138174,11.82],[138175,138175,8],[138176,138176,12.39],[138177,138177,12.58],[138178,138178,11.44],[138179,138179,11.62],[138180,138180,11.64],[138181,138181,11.77],[138182,138182,10.89],[138183,138183,9.24],[138184,138184,10.37],[138185,138185,10.89],[138186,138186,10.52],[138187,138187,11],[138188,138188,11.62],[138189,138189,8.67],[138190,138190,10.35],[138191,138191,11.62],[138192,138192,11.25],[138193,138193,8.92],[138194,138194,10.48],[138195,138195,10.85],[138196,138196,11.59],[138197,138197,11.97],[138198,138198,8.78],[138199,138199,11.8],[138200,138200,10.56],[138201,138202,11.62],[138203,138204,11.77],[138205,138205,8.32],[138206,138206,10.24],[138207,138207,11.62],[138208,138208,10.09],[138209,138209,11.19],[138210,138210,9.63],[138211,138211,10.89],[138212,138213,10.04],[138214,138214,6.53],[138215,138215,10.03],[138216,138217,6.53],[138218,138218,11.85],[138219,138219,10.35],[138220,138220,12.4],[138221,138225,6.53],[138226,138226,12.57],[138227,138227,11.42],[138228,138235,5.5],[138236,138236,11.77],[138237,138237,12.18],[138238,138238,9.36],[138239,138239,7.57],[138240,138240,6.62],[138241,138241,5.95],[138242,138242,7.13],[138243,138244,10.26],[138245,138245,4.72],[138246,138246,7.45],[138247,138247,7.64],[138248,138248,7.84],[138249,138249,6.71],[138250,138250,7.03],[138251,138251,7.33],[138252,138252,6.68],[138253,138253,8.03],[138254,138256,6.61],[138257,138257,6.93],[138258,138258,10.72],[138259,138259,7.19],[138260,138260,10.26],[138261,138262,8.15],[138263,138263,7.04],[138264,138264,11.33],[138265,138265,6.51],[138266,138266,5.79],[138267,138267,5.6],[138268,138268,10.72],[138269,138269,7.81],[138270,138270,6.49],[138271,138271,7.19],[138272,138272,11.11],[138273,138273,7.42],[138274,138274,11.78],[138275,138275,6.7],[138276,138276,9.42],[138277,138277,8.14],[138278,138278,9.5],[138279,138279,9.49],[138280,138280,8.37],[138281,138281,7.81],[138282,138282,8.68],[138283,138283,9.67],[138284,138291,5.61],[138292,138292,9.84],[138293,138293,7.59],[138294,138295,5.61],[138296,138298,5.5],[138299,138299,2.75],[138300,138300,4.73],[138301,138301,5.76],[138302,138302,6.2],[138303,138303,6.47],[138304,138305,5.39],[138306,138306,6.17],[138307,138307,6.34],[138308,138308,7.46],[138309,138309,7.42],[138310,138310,6.5],[138311,138311,5.18],[138312,138312,5.99],[138313,138313,5.54],[138314,138316,5.5],[138317,138318,6.2],[138319,138319,7.29],[138320,138320,6.29],[138321,138321,5.66],[138322,138322,5.64],[138323,138323,5.73],[138324,138324,5.31],[138325,138325,6.06],[138326,138326,5.57],[138327,138327,5.65],[138328,138328,7.35],[138329,138329,6.95],[138330,138330,7.14],[138331,138331,8.59],[138332,138332,7.44],[138333,138333,7.39],[138334,138334,6.42],[138335,138335,7.61],[138336,138336,6.37],[138337,138338,6.92],[138339,138339,7.2],[138340,138340,6.17],[138341,138341,6.46],[138342,138342,8.38],[138343,138343,6.42],[138344,138344,5.96],[138345,138345,5.99],[138346,138346,7.19],[138347,138347,7.46],[138348,138348,8.38],[138349,138349,7.2],[138350,138350,6.31],[138351,138351,8.01],[138352,138352,7.9],[138353,138354,6.25],[138355,138355,7.36],[138356,138356,6.92],[138357,138357,7.9],[138358,138358,7.2],[138359,138359,7.9],[138360,138362,2.95],[138363,138363,5.5],[138364,138364,3.59],[138365,138365,5.85],[138366,138366,2.95],[138367,138367,5.51],[138368,138383,5.5],[138384,138384,6.64],[138385,138385,6.84],[138386,138386,6.81],[138387,138387,9.94],[138388,138388,6.75],[138389,138389,6.67],[138390,138390,7.4],[138391,138391,10.53],[138392,138392,6.98],[138393,138393,6.53],[138394,138394,12.07],[138395,138396,6.98],[138397,138397,9.6],[138398,138398,6.56],[138399,138399,6.9],[138400,138400,8.87],[138401,138401,6.89],[138402,138402,8.45],[138403,138403,7.06],[138404,138404,9.31],[138405,138405,6.81],[138406,138406,9.16],[138407,138407,6.93],[138408,138408,7],[138409,138409,6.9],[138410,138410,7.66],[138411,138411,7.04],[138412,138412,7.02],[138413,138413,7.35],[138414,138414,7.06],[138415,138415,6.67],[138416,138416,6.63],[138417,138417,7.58],[138418,138418,6.98],[138419,138420,6.6],[138421,138421,7.16],[138422,138422,8.66],[138423,138423,6.67],[138424,138424,6.93],[138425,138425,6.81],[138426,138426,6.8],[138427,138428,5.5],[138429,138429,7.46],[138430,138430,6.98],[138431,138431,8.04],[138432,138432,11.2],[138433,138435,7.41],[138436,138436,18.48],[138437,138437,8.18],[138438,138438,12.48],[138439,138439,18.09],[138440,138457,5.5],[138458,138458,0],[138459,138484,5.5],[138485,138485,6.07],[138486,138495,5.5],[138496,138496,5.7],[138497,138497,8.27],[138498,138498,7.94],[138499,138499,5.94],[138500,138500,5.76],[138501,138502,6.35],[138503,138503,5.27],[138504,138504,5.55],[138505,138505,3.06],[138506,138506,4.38],[138507,138507,6.75],[138508,138508,5.32],[138509,138509,7.49],[138510,138510,5.82],[138511,138511,5.5],[138512,138512,5.76],[138513,138513,6.88],[138514,138514,6.86],[138515,138515,7.13],[138516,138516,10.38],[138517,138517,5.52],[138518,138519,6.72],[138520,138522,5.86],[138523,138523,5.4],[138524,138524,6.01],[138525,138525,6.81],[138526,138526,8.84],[138527,138527,6.82],[138528,138528,5.5],[138529,138529,7.94],[138530,138530,4.88],[138531,138531,4.62],[138532,138532,5.1],[138533,138533,5.98],[138534,138534,5],[138535,138535,5.35],[138536,138536,6.34],[138537,138537,5.82],[138538,138538,6.59],[138539,138539,6.17],[138540,138540,4.69],[138541,138541,6.56],[138542,138543,4.36],[138544,138544,4.73],[138545,138546,4.29],[138547,138547,5.12],[138548,138548,5.19],[138549,138549,2.6],[138550,138550,3.51],[138551,138551,5.25],[138552,138552,4.37],[138553,138553,6.3],[138554,138554,4.84],[138555,138555,5.26],[138556,138556,4.96],[138557,138557,4.32],[138558,138558,3.99],[138559,138559,4.89],[138560,138560,4.24],[138561,138561,4.82],[138562,138562,6.54],[138563,138564,4.34],[138565,138565,4.62],[138566,138566,6.94],[138567,138568,4.77],[138569,138570,4.34],[138571,138572,3.94],[138573,138573,4.77],[138574,138574,2.17],[138575,138575,4.34],[138576,138576,6.94],[138577,138578,4.77],[138579,138579,4.34],[138580,138582,4.77],[138583,138583,2.6],[138584,138584,4.77],[138585,138585,4.83],[138586,138586,6.94],[138587,138587,4.34],[138588,138588,3.54],[138589,138589,4.72],[138590,138590,4.34],[138591,138591,4.77],[138592,138592,3.93],[138593,138593,4.34],[138594,138594,2.17],[138595,138595,3.04],[138596,138596,4.77],[138597,138597,4.34],[138598,138598,4.72],[138599,138599,4.34],[138600,138600,4.77],[138601,138601,3.93],[138602,138602,4.34],[138603,138603,9.82],[138604,138604,7.11],[138605,138605,7.35],[138606,138606,4.3],[138607,138607,9.16],[138608,138608,6.12],[138609,138609,7.11],[138610,138610,4.74],[138611,138612,4.28],[138613,138613,4.29],[138614,138614,4.88],[138615,138615,5.5],[138616,138616,3.66],[138617,138617,5.71],[138618,138618,11.81],[138619,138619,3.16],[138620,138620,3.41],[138621,138621,6.12],[138622,138622,6.01],[138623,138623,6.79],[138624,138625,6.12],[138626,138626,3.66],[138627,138627,6.7],[138628,138628,6.12],[138629,138629,3.06],[138630,138630,9.16],[138631,138632,6.12],[138633,138633,4.88],[138634,138634,4.28],[138635,138635,5.03],[138636,138637,5.5],[138638,138638,4.88],[138639,138639,5.5],[138640,138640,6.32],[138641,138641,6.12],[138642,138642,4.88],[138643,138644,4.7],[138645,138645,4.88],[138646,138646,3.06],[138647,138647,4.88],[138648,138648,3.99],[138649,138649,6.12],[138650,138650,5.04],[138651,138651,3.71],[138652,138653,2.85],[138654,138654,3.15],[138655,138655,2.78],[138656,138657,2.15],[138658,138658,3.1],[138659,138659,3.58],[138660,138660,1.95],[138661,138661,2.21],[138662,138663,1.95],[138664,138664,2.52],[138665,138666,1.95],[138667,138667,3.31],[138668,138669,5.41],[138670,138671,3.58],[138672,138672,3.56],[138673,138673,3.15],[138674,138674,4.61],[138675,138675,2.39],[138676,138676,1.95],[138677,138677,2.33],[138678,138678,3.58],[138679,138679,3.92],[138680,138680,3.58],[138681,138681,3.4],[138682,138682,3.29],[138683,138684,3.08],[138685,138685,3.5],[138686,138686,3.08],[138687,138687,4.21],[138688,138703,0],[138704,138706,5.5],[138707,138713,0],[138714,138714,5.5],[138715,138726,0],[138727,138749,5.5],[138750,138751,0],[138752,138752,7.94],[138753,138753,6.12],[138754,138754,7.94],[138755,138755,6.72],[138756,138756,7.94],[138757,138757,6.72],[138758,138758,7.94],[138759,138759,6.72],[138760,138760,7.94],[138761,138761,6.12],[138762,138762,7.94],[138763,138763,6.72],[138764,138764,7.94],[138765,138765,6.72],[138766,138766,7.94],[138767,138767,6.72],[138768,138768,7.94],[138769,138769,6.72],[138770,138770,7.94],[138771,138771,6.72],[138772,138772,7.34],[138773,138773,6.12],[138774,138774,7.34],[138775,138775,6.12],[138776,138776,7.34],[138777,138777,6.12],[138778,138778,7.34],[138779,138779,6.12],[138780,138780,7.34],[138781,138781,6.12],[138782,138782,6.72],[138783,138783,3.66],[138784,138784,8.56],[138785,138785,6.72],[138786,138786,7.94],[138787,138787,6.72],[138788,138788,7.94],[138789,138789,6.72],[138790,138790,7.94],[138791,138791,6.72],[138792,138792,7.94],[138793,138793,6.72],[138794,138794,7.94],[138795,138795,6.72],[138796,138799,3.06],[138800,138800,7.94],[138801,138801,6.12],[138802,138802,7.94],[138803,138803,6.12],[138804,138804,7.94],[138805,138805,6.12],[138806,138806,6.72],[138807,138807,3.06],[138808,138808,6.72],[138809,138809,3.06],[138810,138810,6.72],[138811,138811,3.06],[138812,138812,6.72],[138813,138813,3.06],[138814,138814,9.16],[138815,138815,9.78],[138816,138816,9.16],[138817,138817,9.78],[138818,138818,9.16],[138819,138819,9.78],[138820,138820,7.94],[138821,138821,6.72],[138822,138822,7.94],[138823,138823,6.72],[138824,138824,7.94],[138825,138825,6.72],[138826,138826,7.94],[138827,138827,6.72],[138828,138828,8.56],[138829,138829,6.72],[138830,138830,8.56],[138831,138831,6.72],[138832,138832,8.56],[138833,138833,6.72],[138834,138834,8.56],[138835,138835,6.72],[138836,138836,7.34],[138837,138837,6.72],[138838,138838,7.34],[138839,138839,6.72],[138840,138840,7.94],[138841,138841,4.28],[138842,138842,7.94],[138843,138843,4.28],[138844,138844,7.94],[138845,138845,4.28],[138846,138846,7.94],[138847,138847,4.28],[138848,138848,7.34],[138849,138849,6.12],[138850,138850,7.34],[138851,138851,6.12],[138852,138852,7.34],[138853,138853,6.12],[138854,138854,7.34],[138855,138855,6.12],[138856,138856,7.34],[138857,138857,6.12],[138858,138858,6.72],[138859,138859,3.66],[138860,138860,6.72],[138861,138861,3.66],[138862,138862,6.72],[138863,138863,3.66],[138864,138864,6.72],[138865,138865,3.66],[138866,138866,7.94],[138867,138867,6.72],[138868,138868,7.94],[138869,138869,6.72],[138870,138870,7.94],[138871,138871,6.72],[138872,138872,7.94],[138873,138873,6.72],[138874,138874,7.94],[138875,138875,6.72],[138876,138876,7.34],[138877,138877,6.12],[138878,138878,7.34],[138879,138879,6.12],[138880,138880,10.38],[138881,138881,8.95],[138882,138882,10.38],[138883,138883,8.95],[138884,138884,10.38],[138885,138885,8.95],[138886,138886,10.38],[138887,138887,8.56],[138888,138888,10.38],[138889,138889,8.56],[138890,138890,7.34],[138891,138891,6.12],[138892,138892,7.34],[138893,138893,6.12],[138894,138894,7.34],[138895,138895,6.12],[138896,138896,6.72],[138897,138897,5.5],[138898,138898,6.72],[138899,138899,5.5],[138900,138900,6.72],[138901,138901,5.5],[138902,138902,6.72],[138903,138903,3.66],[138904,138904,8.56],[138905,138906,6.12],[138907,138907,3.66],[138908,138908,4.66],[138909,138909,4.65],[138910,138910,8.34],[138911,138911,6.62],[138912,138912,7.94],[138913,138913,6.12],[138914,138914,7.94],[138915,138915,6.12],[138916,138916,8.01],[138917,138917,6.76],[138918,138918,8.03],[138919,138919,6.4],[138920,138920,7.94],[138921,138921,6.26],[138922,138922,7.94],[138923,138923,6.12],[138924,138924,7.94],[138925,138925,6.12],[138926,138926,7.94],[138927,138927,6.12],[138928,138928,7.94],[138929,138929,6.12],[138930,138930,7.94],[138931,138931,6.12],[138932,138932,7.94],[138933,138933,6.12],[138934,138934,7.94],[138935,138935,6.12],[138936,138936,7.34],[138937,138937,6.12],[138938,138938,7.34],[138939,138939,6.12],[138940,138940,7.34],[138941,138941,6.12],[138942,138942,7.5],[138943,138943,6.17],[138944,138944,7.34],[138945,138945,6.37],[138946,138946,7.34],[138947,138947,6.12],[138948,138948,7.34],[138949,138949,6.12],[138950,138950,7.34],[138951,138951,6.12],[138952,138955,3.06],[138956,138956,8.56],[138957,138957,6.72],[138958,138958,8.56],[138959,138959,6.72],[138960,138960,8.56],[138961,138961,6.72],[138962,138962,8.56],[138963,138963,6.72],[138964,138964,8.56],[138965,138965,6.72],[138966,138966,8.56],[138967,138967,6.72],[138968,138968,8.56],[138969,138969,6.72],[138970,138970,10.41],[138971,138971,8.74],[138972,138972,10.41],[138973,138973,8.74],[138974,138974,10.41],[138975,138975,8.74],[138976,138976,10.41],[138977,138977,8.74],[138978,138978,10.41],[138979,138979,8.74],[138980,138980,7.94],[138981,138981,6.72],[138982,138982,7.94],[138983,138983,6.72],[138984,138984,10.1],[138985,138985,8.85],[138986,138986,10.1],[138987,138987,8.85],[138988,138988,10.1],[138989,138989,8.85],[138990,138990,10.1],[138991,138991,8.85],[138992,138992,10.1],[138993,138993,8.85],[138994,138994,7.34],[138995,138995,5.71],[138996,138996,7.34],[138997,138997,6.12],[138998,138998,7.34],[138999,138999,6.12],[139000,139000,7.34],[139001,139001,6.12],[139002,139002,10.3],[139003,139003,6.48],[139004,139004,5.57],[139005,139005,4.89],[139006,139007,5.04],[139008,139015,6.73],[139016,139016,8.47],[139017,139017,8.57],[139018,139018,11.59],[139019,139019,11.15],[139020,139020,10.38],[139021,139021,10.91],[139022,139023,10.38],[139024,139029,6.12],[139030,139031,5.5],[139032,139033,9.78],[139034,139034,12.1],[139035,139035,12.06],[139036,139036,11.8],[139037,139037,12.03],[139038,139039,5.5],[139040,139047,6.71],[139048,139049,10.38],[139050,139050,12.7],[139051,139051,12.66],[139052,139052,12.41],[139053,139053,12.64],[139054,139055,10.38],[139056,139063,3.06],[139064,139065,5.7],[139066,139066,8.02],[139067,139067,7.97],[139068,139068,7.72],[139069,139069,7.95],[139070,139071,5.7],[139072,139077,6.73],[139078,139079,5.5],[139080,139081,11],[139082,139082,13.31],[139083,139083,13.28],[139084,139084,13.02],[139085,139085,13.25],[139086,139087,5.5],[139088,139095,6.71],[139096,139096,5.5],[139097,139097,9.78],[139098,139098,5.5],[139099,139099,12.06],[139100,139100,5.5],[139101,139101,12.03],[139102,139102,5.5],[139103,139103,10.41],[139104,139111,7.94],[139112,139113,10.89],[139114,139114,13.21],[139115,139115,13.17],[139116,139116,12.91],[139117,139117,13.14],[139118,139119,10.89],[139120,139121,6.73],[139122,139123,6.12],[139124,139125,6.71],[139126,139127,3.06],[139128,139129,6.73],[139130,139131,6.71],[139132,139133,7.94],[139134,139135,5.5],[139136,139143,6.73],[139144,139144,11.82],[139145,139145,11.65],[139146,139146,14.37],[139147,139147,14.42],[139148,139148,13.86],[139149,139149,14.39],[139150,139151,13.44],[139152,139159,6.71],[139160,139161,13.44],[139162,139162,15.76],[139163,139163,15.72],[139164,139164,15.47],[139165,139165,15.7],[139166,139167,13.44],[139168,139175,7.94],[139176,139177,13.95],[139178,139178,16.27],[139179,139179,16.22],[139180,139180,15.97],[139181,139181,16.2],[139182,139183,13.95],[139184,139188,6.73],[139189,139189,5.5],[139190,139191,6.73],[139192,139193,7.94],[139194,139195,9.35],[139196,139196,10.78],[139197,139197,2.44],[139198,139198,3.82],[139199,139199,2.44],[139200,139201,2.94],[139202,139204,6.71],[139205,139205,5.5],[139206,139207,6.71],[139208,139208,10.15],[139209,139209,10.33],[139210,139210,10.83],[139211,139211,10.71],[139212,139212,11.03],[139213,139213,4.76],[139214,139214,4.47],[139215,139215,2.44],[139216,139219,3.06],[139220,139221,5.5],[139222,139223,3.06],[139224,139225,3.26],[139226,139226,5.82],[139227,139227,5.95],[139228,139228,5.5],[139229,139229,4.72],[139230,139230,4.7],[139231,139231,2.44],[139232,139235,6.71],[139236,139237,6.72],[139238,139239,6.71],[139240,139241,7.34],[139242,139242,10.52],[139243,139243,10.44],[139244,139244,9.78],[139245,139246,4.34],[139247,139247,2.94],[139248,139249,5.5],[139250,139252,7.94],[139253,139253,5.5],[139254,139255,7.94],[139256,139256,10.94],[139257,139257,11.23],[139258,139258,11.54],[139259,139259,11.82],[139260,139260,11.44],[139261,139261,2.94],[139262,139262,2.44],[139263,139264,5.5],[139265,139265,11],[139266,139266,3.06],[139267,139267,9.16],[139268,139268,3.66],[139269,139269,3.06],[139270,139270,1.84],[139271,139271,6.12],[139272,139272,1.15],[139273,139273,0.48],[139274,139274,0.16],[139275,139279,0],[139280,139280,4.48],[139281,139282,3.66],[139283,139283,5.5],[139284,139285,11],[139286,139286,5.82],[139287,139287,3.66],[139288,139291,3.06],[139292,139294,5.09],[139295,139295,5.5],[139296,139297,6.12],[139298,139298,3.85],[139299,139299,7.33],[139300,139300,3.64],[139301,139301,7.41],[139302,139302,11],[139303,139303,3.64],[139304,139311,0],[139312,139312,12.62],[139313,139313,15.65],[139314,139314,3.66],[139315,139315,6.71],[139316,139316,9.47],[139317,139317,3.66],[139318,139318,6.71],[139319,139319,9.47],[139320,139320,3.66],[139321,139322,2.65],[139323,139323,8.92],[139324,139324,7.33],[139325,139325,6.12],[139326,139326,3.66],[139327,139328,10.55],[139329,139329,6.83],[139330,139330,9.31],[139331,139331,3.66],[139332,139332,1.84],[139333,139334,3.66],[139335,139335,13.44],[139336,139337,10.38],[139338,139338,6.83],[139339,139341,6.12],[139342,139342,4.28],[139343,139343,3.66],[139344,139344,10.55],[139345,139345,4.28],[139346,139346,9.78],[139347,139347,9.64],[139348,139348,10.55],[139349,139350,8.92],[139351,139351,12.18],[139352,139353,8.92],[139354,139354,3.66],[139355,139356,8.92],[139357,139358,3.66],[139359,139359,3.06],[139360,139375,0],[139376,139376,4.29],[139377,139377,1.53],[139378,139379,5.5],[139380,139385,4.29],[139386,139386,4.4],[139387,139387,2.97],[139388,139388,4.4],[139389,139390,2.47],[139391,139401,4.29],[139402,139402,4.4],[139403,139403,2.97],[139404,139404,4.4],[139405,139406,2.47],[139407,139407,5.5],[139408,139409,3.06],[139410,139410,3.37],[139411,139412,3.06],[139413,139423,5.5],[139424,139424,6.01],[139425,139426,7.94],[139427,139427,6.12],[139428,139428,7.14],[139429,139429,9.78],[139430,139430,8.9],[139431,139431,8.45],[139432,139432,6.92],[139433,139433,11.26],[139434,139434,8.34],[139435,139435,6.72],[139436,139436,6.12],[139437,139437,8.6],[139438,139438,6.72],[139439,139439,12.29],[139440,139440,5.5],[139441,139441,8.57],[139442,139442,8.56],[139443,139443,7.94],[139444,139444,7.01],[139445,139445,7.94],[139446,139446,7.44],[139447,139447,10.33],[139448,139448,6.12],[139449,139449,6.08],[139450,139450,6.12],[139451,139451,10.82],[139452,139453,6.12],[139454,139454,8.28],[139455,139455,7.22],[139456,139471,5.5],[139472,139474,0],[139475,139475,6.6],[139476,139477,7.7],[139478,139480,0],[139481,139482,6.6],[139483,139485,0],[139486,139486,11],[139487,139487,9.51],[139488,139488,9.9],[139489,139489,0],[139490,139490,5.5],[139491,139504,0],[139505,139519,5.5],[139520,139521,9.17],[139522,139522,7.94],[139523,139523,12.34],[139524,139524,7.78],[139525,139526,9.17],[139527,139527,7.69],[139528,139528,6.98],[139529,139529,11.12],[139530,139530,11],[139531,139531,9.96],[139532,139532,9.27],[139533,139533,7.94],[139534,139534,6.34],[139535,139535,7.11],[139536,139536,7.57],[139537,139537,8.69],[139538,139538,7.79],[139539,139539,5.5],[139540,139540,8.56],[139541,139541,6.62],[139542,139542,11.73],[139543,139543,8.8],[139544,139544,9.35],[139545,139545,7.34],[139546,139546,8.56],[139547,139547,10.19],[139548,139548,9.72],[139549,139549,6.62],[139550,139550,7.51],[139551,139551,7.34],[139552,139552,8.25],[139553,139553,10.38],[139554,139554,11],[139555,139555,7.94],[139556,139556,6.62],[139557,139557,5.96],[139558,139558,8.5],[139559,139559,8.45],[139560,139560,8.3],[139561,139561,3.06],[139562,139563,7.94],[139564,139564,10.19],[139565,139565,8.5],[139566,139566,8.47],[139567,139567,4.23],[139568,139568,6.77],[139569,139569,7.57],[139570,139570,6.72],[139571,139571,12.27],[139572,139572,4.46],[139573,139573,7.21],[139574,139574,6.64],[139575,139575,5.11],[139576,139576,6.18],[139577,139577,7.26],[139578,139578,8.56],[139579,139579,11],[139580,139580,8.84],[139581,139581,7.11],[139582,139582,5.47],[139583,139583,8.45],[139584,139584,10.74],[139585,139585,8.56],[139586,139587,6.72],[139588,139588,7.34],[139589,139589,8.88],[139590,139590,7.63],[139591,139591,6.74],[139592,139592,4.52],[139593,139593,4.65],[139594,139594,7.43],[139595,139595,7.94],[139596,139596,8.91],[139597,139597,9.44],[139598,139598,4.96],[139599,139599,5.5],[139600,139602,11],[139603,139604,9.17],[139605,139610,10.45],[139611,139615,9.17],[139616,139616,3.06],[139617,139617,6.12],[139618,139618,9.16],[139619,139619,10.39],[139620,139620,7.34],[139621,139621,10.39],[139622,139622,13.45],[139623,139623,16.5],[139624,139624,10.39],[139625,139625,7.34],[139626,139626,10.39],[139627,139627,13.45],[139628,139628,6.72],[139629,139630,7.94],[139631,139631,9.16],[139632,139632,3.06],[139633,139633,6.12],[139634,139634,9.16],[139635,139635,9.17],[139636,139636,6.12],[139637,139637,9.17],[139638,139638,12.23],[139639,139639,15.29],[139640,139640,9.17],[139641,139641,6.12],[139642,139642,9.17],[139643,139643,12.23],[139644,139644,3.06],[139645,139645,6.12],[139646,139646,6.72],[139647,139647,9.78],[139648,139648,11.9],[139649,139649,8.72],[139650,139650,13.87],[139651,139651,7.94],[139652,139652,6.12],[139653,139653,7.17],[139654,139654,6.21],[139655,139656,5.5],[139657,139657,11],[139658,139663,5.5],[139664,139664,11],[139665,139665,5.5],[139666,139666,11],[139667,139667,5.5],[139668,139668,11],[139669,139669,5.5],[139670,139670,10.07],[139671,139671,11],[139672,139672,10.07],[139673,139675,11],[139676,139687,6.62],[139688,139688,5.5],[139689,139690,11],[139691,139693,6.62],[139694,139694,11],[139695,139695,6.62],[139696,139698,9.51],[139699,139699,11],[139700,139700,9.51],[139701,139701,11],[139702,139703,9.51],[139704,139705,11],[139706,139707,6.62],[139708,139708,9.51],[139709,139711,6.62],[139712,139712,9.51],[139713,139715,6.62],[139716,139718,11],[139719,139722,6.62],[139723,139724,11],[139725,139725,9.68],[139726,139726,6.62],[139727,139727,9.56],[139728,139728,11],[139729,139729,9.51],[139730,139730,11],[139731,139731,9.51],[139732,139732,11],[139733,139741,6.62],[139742,139743,7.95],[139744,139744,11],[139745,139745,7.95],[139746,139746,11],[139747,139747,7.95],[139748,139750,11],[139751,139751,12.99],[139752,139753,11],[139754,139754,12.99],[139755,139759,6.62],[139760,139760,9.51],[139761,139764,6.62],[139765,139765,11],[139766,139775,6.62],[139776,139776,6.93],[139777,139777,5.16],[139778,139778,6.16],[139779,139779,5.78],[139780,139780,5.88],[139781,139781,7.89],[139782,139782,7.55],[139783,139783,6.73],[139784,139784,6.34],[139785,139785,6.73],[139786,139786,5.6],[139787,139787,6.34],[139788,139788,6.48],[139789,139789,5.6],[139790,139790,5.74],[139791,139791,8.24],[139792,139792,9.05],[139793,139793,6.8],[139794,139794,6.6],[139795,139795,8.75],[139796,139796,6.58],[139797,139797,1.84],[139798,139798,8.84],[139799,139799,5.76],[139800,139800,3.9],[139801,139801,3.06],[139802,139802,6.21],[139803,139803,8.23],[139804,139804,7.97],[139805,139805,5.7],[139806,139806,9.05],[139807,139807,10.77],[139808,139808,6.57],[139809,139809,6.61],[139810,139810,6.66],[139811,139811,2.74],[139812,139812,5.2],[139813,139813,3.8],[139814,139814,5.78],[139815,139816,6.53],[139817,139817,7.91],[139818,139818,5.84],[139819,139819,4.59],[139820,139820,10.06],[139821,139821,12.36],[139822,139822,7.46],[139823,139823,10.16],[139824,139824,12.83],[139825,139825,6.58],[139826,139826,6.91],[139827,139827,6.57],[139828,139828,6.64],[139829,139829,6.57],[139830,139830,3.7],[139831,139831,6.33],[139832,139832,6.19],[139833,139833,6.33],[139834,139834,6.38],[139835,139835,6.16],[139836,139837,6.05],[139838,139838,5.97],[139839,139839,6.42],[139840,139840,4.29],[139841,139841,6.32],[139842,139842,6.38],[139843,139843,6.43],[139844,139844,7.38],[139845,139845,7.66],[139846,139846,6.92],[139847,139847,6.72],[139848,139849,6.6],[139850,139850,6.64],[139851,139851,7.38],[139852,139852,5.97],[139853,139853,6.63],[139854,139854,6.57],[139855,139855,6.52],[139856,139856,6.16],[139857,139857,7.02],[139858,139859,6.96],[139860,139861,8.4],[139862,139862,6.36],[139863,139863,6.55],[139864,139864,6.48],[139865,139865,6.69],[139866,139866,6.81],[139867,139867,7.11],[139868,139868,7],[139869,139869,6.19],[139870,139870,6.32],[139871,139871,6.49],[139872,139872,6.6],[139873,139874,6.27],[139875,139875,6.52],[139876,139877,6.6],[139878,139878,6.32],[139879,139879,6.2],[139880,139880,6.84],[139881,139881,6.48],[139882,139882,8.07],[139883,139883,7.71],[139884,139884,3.94],[139885,139885,6.09],[139886,139889,6.6],[139890,139890,6.2],[139891,139891,6.24],[139892,139892,6.41],[139893,139893,6.39],[139894,139895,6.66],[139896,139896,6.17],[139897,139897,6.34],[139898,139898,6.24],[139899,139899,6.36],[139900,139900,6.56],[139901,139901,6.36],[139902,139902,6.44],[139903,139903,6.4],[139904,139904,6.68],[139905,139905,6.36],[139906,139907,6.95],[139908,139908,7.08],[139909,139909,6.94],[139910,139911,7.29],[139912,139912,7.34],[139913,139913,7.14],[139914,139915,6.18],[139916,139917,6.4],[139918,139918,6.7],[139919,139920,7.19],[139921,139922,7.17],[139923,139924,6.72],[139925,139925,7.96],[139926,139926,8.2],[139927,139927,7.83],[139928,139928,7.94],[139929,139929,8.32],[139930,139930,8.09],[139931,139931,7.9],[139932,139932,8.37],[139933,139933,8.31],[139934,139934,8.62],[139935,139935,8.36],[139936,139936,8.06],[139937,139937,7.87],[139938,139941,8.26],[139942,139942,3.63],[139943,139943,3.67],[139944,139944,6.86],[139945,139945,8.02],[139946,139946,6.85],[139947,139947,8.31],[139948,139948,8.53],[139949,139949,8.56],[139950,139950,9.61],[139951,139951,9.2],[139952,139953,6.96],[139954,139955,8.15],[139956,139957,7.73],[139958,139959,8.08],[139960,139960,6.55],[139961,139961,7.51],[139962,139962,5.28],[139963,139964,7.66],[139965,139965,7.42],[139966,139966,8.16],[139967,139967,6.94],[139968,139969,7.38],[139970,139971,7.05],[139972,139972,4.19],[139973,139973,4.85],[139974,139974,4.93],[139975,139975,6.94],[139976,139976,8.5],[139977,139978,8.14],[139979,139980,7.96],[139981,139981,6.43],[139982,139983,6.98],[139984,139985,7.13],[139986,139987,6.26],[139988,139988,6.04],[139989,139989,6.75],[139990,139991,6.63],[139992,139993,10.65],[139994,139995,7.16],[139996,139997,7.11],[139998,139999,7.36],[140000,140000,7.33],[140001,140001,7.21],[140002,140002,7.55],[140003,140003,7.3],[140004,140004,7.38],[140005,140005,7.41],[140006,140006,7.44],[140007,140007,7.55],[140008,140008,7.91],[140009,140009,7.57],[140010,140010,8.23],[140011,140011,8.42],[140012,140012,8.49],[140013,140013,8.54],[140014,140014,4.52],[140015,140015,11],[140016,140016,10.12],[140017,140017,10.33],[140018,140018,7.15],[140019,140019,6.34],[140020,140020,5.6],[140021,140022,6.34],[140023,140023,5.6],[140024,140024,6.34],[140025,140025,6.95],[140026,140026,7.15],[140027,140027,6.34],[140028,140028,5.6],[140029,140029,6.34],[140030,140030,5.6],[140031,140031,5.78],[140032,140033,6.62],[140034,140034,6.6],[140035,140035,10.21],[140036,140036,6.62],[140037,140037,8.74],[140038,140038,7.53],[140039,140039,11],[140040,140047,6.62],[140048,140048,6.27],[140049,140049,6.62],[140050,140050,11],[140051,140051,6.62],[140052,140052,9.51],[140053,140053,6.62],[140054,140054,6.04],[140055,140055,7.15],[140056,140056,10.21],[140057,140057,6.62],[140058,140059,11],[140060,140063,6.62],[140064,140065,6.64],[140066,140067,9.51],[140068,140068,8.74],[140069,140069,11],[140070,140070,14.38],[140071,140071,11],[140072,140072,6.62],[140073,140074,11],[140075,140075,14.38],[140076,140084,6.04],[140085,140085,6.62],[140086,140086,10.19],[140087,140092,6.62],[140093,140093,11],[140094,140094,6.62],[140095,140095,8.01],[140096,140096,6.6],[140097,140100,6.62],[140101,140102,6.6],[140103,140105,6.62],[140106,140106,6.6],[140107,140109,6.62],[140110,140111,6.6],[140112,140112,6.62],[140113,140113,6.6],[140114,140116,6.62],[140117,140118,6.6],[140119,140124,6.62],[140125,140125,6.6],[140126,140128,6.62],[140129,140130,6.6],[140131,140133,6.62],[140134,140135,6.6],[140136,140137,6.62],[140138,140138,6.6],[140139,140144,6.62],[140145,140146,6.6],[140147,140154,6.62],[140155,140155,7.36],[140156,140156,10.3],[140157,140157,3.51],[140158,140158,10.33],[140159,140159,4.08],[140160,140163,6.62],[140164,140164,8.63],[140165,140165,7.52],[140166,140166,7.42],[140167,140168,11],[140169,140170,6.62],[140171,140171,9.81],[140172,140172,8.88],[140173,140173,8.65],[140174,140174,8.22],[140175,140179,7.24],[140180,140180,8.17],[140181,140181,6.62],[140182,140182,5.19],[140183,140184,8.67],[140185,140186,8.97],[140187,140205,11],[140206,140206,6.62],[140207,140207,3.46],[140208,140209,11],[140210,140211,16.37],[140212,140213,6.77],[140214,140214,7.96],[140215,140215,7.07],[140216,140221,5.54],[140222,140236,11],[140237,140237,10.97],[140238,140238,12.03],[140239,140239,9.43],[140240,140240,5.62],[140241,140241,5.96],[140242,140243,5.97],[140244,140245,11.34],[140246,140246,10.54],[140247,140249,10.73],[140250,140251,11],[140252,140255,6.79],[140256,140256,6.77],[140257,140257,11],[140258,140258,12.58],[140259,140259,10.01],[140260,140260,12.03],[140261,140261,11.2],[140262,140262,10.19],[140263,140263,8.78],[140264,140264,5.5],[140265,140275,11],[140276,140279,5.5],[140280,140282,11],[140283,140287,5.5],[140288,140319,11],[140320,140320,6.6],[140321,140321,11],[140322,140322,6.6],[140323,140323,6.63],[140324,140324,6.6],[140325,140325,8.71],[140326,140326,4.44],[140327,140351,5.5],[140352,140357,6.64],[140358,140361,8.25],[140362,140362,6.64],[140363,140383,5.5],[140384,140484,11],[140485,140485,9.24],[140486,140571,11],[140572,140572,7.79],[140573,140579,11],[140580,140580,7.79],[140581,140587,11],[140588,140588,7.79],[140589,140595,11],[140596,140596,7.79],[140597,140603,11],[140604,140604,7.79],[140605,140619,11],[140620,140623,6.8],[140624,140652,7.79],[140653,140660,11],[140661,140671,6.8],[140672,140672,7.79],[140673,140675,11],[140676,140676,7.79],[140677,140683,11],[140684,140684,7.79],[140685,140687,11],[140688,140690,7.79],[140691,140691,8.02],[140692,140693,11],[140694,140703,6.62],[140704,140705,6.64],[140706,140706,11],[140707,140713,9.51],[140714,140715,3.9],[140716,140716,11],[140717,140717,9.51],[140718,140720,6.62],[140721,140721,11],[140722,140722,10.89],[140723,140723,11],[140724,140724,6.96],[140725,140725,9.51],[140726,140726,9.68],[140727,140727,11],[140728,140729,5.83],[140730,140730,10.89],[140731,140731,6.62],[140732,140732,10.89],[140733,140733,11],[140734,140735,7.03],[140736,140736,11],[140737,140737,8.74],[140738,140738,6.62],[140739,140739,9.51],[140740,140740,10.89],[140741,140741,6.62],[140742,140742,7.95],[140743,140743,6.76],[140744,140744,9.51],[140745,140745,11],[140746,140746,6.6],[140747,140747,6.64],[140748,140748,6.54],[140749,140749,6.62],[140750,140750,11],[140751,140751,6.85],[140752,140755,11],[140756,140759,6.62],[140760,140761,6.64],[140762,140769,6.62],[140770,140773,11],[140774,140774,3.9],[140775,140782,6.62],[140783,140783,11],[140784,140794,6.62],[140795,140798,11],[140799,140799,6.62],[140800,140803,11],[140804,140804,6.62],[140805,140806,11],[140807,140808,6.62],[140809,140809,11],[140810,140813,6.62],[140814,140814,11],[140815,140815,9.51],[140816,140818,9.13],[140819,140819,6.62],[140820,140823,11],[140824,140827,6.62],[140828,140831,11],[140832,140846,6.62],[140847,140847,9.51],[140848,140855,9.9],[140856,140856,6.62],[140857,140857,8.11],[140858,140858,11.23],[140859,140859,8.11],[140860,140860,10.08],[140861,140863,6.62],[140864,140864,8.25],[140865,140865,6.62],[140866,140866,8.25],[140867,140871,6.62],[140872,140883,11],[140884,140895,6.62],[140896,140896,5.84],[140897,140898,11],[140899,140899,7.22],[140900,140900,11],[140901,140901,6.53],[140902,140902,5.61],[140903,140905,11],[140906,140906,6.01],[140907,140907,8.25],[140908,140908,11],[140909,140909,5.49],[140910,140910,11],[140911,140911,6.04],[140912,140913,6.62],[140914,140925,11],[140926,140926,6.62],[140927,140927,11],[140928,140939,6.62],[140940,140940,9.67],[140941,140941,9.49],[140942,140942,9.45],[140943,140943,9.86],[140944,140946,6.62],[140947,140947,11],[140948,140956,6.62],[140957,140959,5.5],[140960,140961,11],[140962,140962,9.81],[140963,140963,9.87],[140964,140964,9.71],[140965,140965,7.26],[140966,140966,8.15],[140967,140967,10.16],[140968,140968,5.86],[140969,140969,10.12],[140970,140971,11],[140972,140972,7.1],[140973,140973,8.54],[140974,140974,11.61],[140975,140975,12.3],[140976,140977,6.62],[140978,140978,6.63],[140979,140988,5.5],[140989,140990,11],[140991,140995,5.5],[140996,140997,11],[140998,140999,5.5],[141000,141000,11],[141001,141002,5.5],[141003,141003,11],[141004,141005,5.5],[141006,141007,11],[141008,141008,5.5],[141009,141009,11],[141010,141010,5.5],[141011,141012,11],[141013,141025,5.5],[141026,141026,7.7],[141027,141032,5.5],[141033,141034,11],[141035,141039,5.5],[141040,141045,11],[141046,141046,5.5],[141047,141050,11],[141051,141052,5.5],[141053,141053,11],[141054,141056,5.5],[141057,141057,10.72],[141058,141058,10.57],[141059,141059,10.72],[141060,141060,10.78],[141061,141061,11],[141062,141062,8.68],[141063,141063,8.69],[141064,141064,8.7],[141065,141065,7.59],[141066,141069,11],[141070,141070,8.72],[141071,141071,10.26],[141072,141072,10.02],[141073,141073,10.39],[141074,141074,10.72],[141075,141075,8.41],[141076,141076,9.31],[141077,141077,8.38],[141078,141078,8.37],[141079,141079,6.28],[141080,141080,7.44],[141081,141081,8.4],[141082,141082,8.36],[141083,141083,8.35],[141084,141084,8.29],[141085,141085,5.44],[141086,141086,6.07],[141087,141087,5.91],[141088,141088,6.35],[141089,141089,7.61],[141090,141090,8.65],[141091,141092,8.67],[141093,141093,8.69],[141094,141094,8.72],[141095,141095,8.73],[141096,141096,11],[141097,141097,9.06],[141098,141098,8.68],[141099,141099,9.25],[141100,141100,9.06],[141101,141101,9.16],[141102,141102,8.98],[141103,141103,9.14],[141104,141104,10.15],[141105,141105,8.19],[141106,141106,7.95],[141107,141107,8.24],[141108,141108,8.69],[141109,141109,8.71],[141110,141110,7.64],[141111,141111,8.53],[141112,141112,8.45],[141113,141113,8.71],[141114,141114,8.35],[141115,141115,7.78],[141116,141116,7.79],[141117,141117,7.5],[141118,141118,7.71],[141119,141119,9.09],[141120,141120,8.96],[141121,141122,8.68],[141123,141123,7.78],[141124,141124,7.56],[141125,141125,7.65],[141126,141126,7.58],[141127,141127,8.65],[141128,141128,8.66],[141129,141129,7.84],[141130,141130,8.7],[141131,141131,8.64],[141132,141132,11],[141133,141133,9.6],[141134,141134,11],[141135,141136,8.38],[141137,141138,8.35],[141139,141141,11],[141142,141142,8.63],[141143,141143,11],[141144,141144,3.31],[141145,141145,3.05],[141146,141146,4.57],[141147,141148,4.31],[141149,141150,7.35],[141151,141152,5.5],[141153,141153,8.05],[141154,141155,5.98],[141156,141156,10.01],[141157,141157,7.34],[141158,141159,8.36],[141160,141161,4.29],[141162,141163,3.49],[141164,141165,3.03],[141166,141167,5.6],[141168,141169,4.51],[141170,141171,2.57],[141172,141173,3.67],[141174,141203,8.67],[141204,141204,9.83],[141205,141207,11],[141208,141208,8.23],[141209,141209,10.16],[141210,141210,8.23],[141211,141211,10.1],[141212,141212,10.19],[141213,141214,10.21],[141215,141215,9.17],[141216,141216,9.6],[141217,141217,9.11],[141218,141219,10.16],[141220,141220,10.09],[141221,141221,10.23],[141222,141222,10.24],[141223,141223,5.09],[141224,141224,9.71],[141225,141226,9.2],[141227,141228,9.54],[141229,141230,7.65],[141231,141231,9.61],[141232,141232,11],[141233,141233,9.61],[141234,141234,8.36],[141235,141235,10.4],[141236,141236,8.48],[141237,141237,9.52],[141238,141238,8.48],[141239,141239,9.77],[141240,141240,10.63],[141241,141241,9.77],[141242,141242,9.14],[141243,141243,9.6],[141244,141244,10.19],[141245,141245,10.67],[141246,141246,10.1],[141247,141247,11],[141248,141248,6.03],[141249,141249,10.43],[141250,141250,7.58],[141251,141252,6.21],[141253,141254,6.62],[141255,141255,6.82],[141256,141257,10.1],[141258,141258,3.74],[141259,141259,9.22],[141260,141260,3.57],[141261,141261,9.22],[141262,141263,5.5],[141264,141264,8.21],[141265,141265,6.82],[141266,141266,6.57],[141267,141268,5.97],[141269,141270,9.93],[141271,141271,12.26],[141272,141273,7.58],[141274,141274,9.57],[141275,141275,9.42],[141276,141276,11.6],[141277,141278,9.33],[141279,141279,4.36],[141280,141280,6.06],[141281,141281,7.7],[141282,141283,9.64],[141284,141285,10.41],[141286,141287,4.64],[141288,141289,4.02],[141290,141291,5.1],[141292,141293,5.37],[141294,141295,2.56],[141296,141297,10.8],[141298,141299,10.48],[141300,141300,13.71],[141301,141311,12.97],[141312,141567,7.52],[141568,141569,10.29],[141570,141571,9.52],[141572,141572,11.39],[141573,141573,10.29],[141574,141575,9.52],[141576,141577,5.25],[141578,141579,7.89],[141580,141583,9.7],[141584,141584,11.47],[141585,141585,9.22],[141586,141587,8.33],[141588,141589,9.51],[141590,141592,11.47],[141593,141596,9.51],[141597,141600,9.7],[141601,141602,8.21],[141603,141606,7.15],[141607,141607,8.57],[141608,141608,8.13],[141609,141609,8.57],[141610,141610,8.13],[141611,141612,7.68],[141613,141616,8.13],[141617,141618,8.57],[141619,141619,9.31],[141620,141621,11],[141622,141623,9.51],[141624,141624,4.48],[141625,141625,9.51],[141626,141629,8.89],[141630,141631,7.21],[141632,141633,8.39],[141634,141639,9.22],[141640,141640,10.13],[141641,141641,5.36],[141642,141643,9.22],[141644,141645,5.44],[141646,141646,9.22],[141647,141647,4.76],[141648,141648,9.22],[141649,141649,4.76],[141650,141651,9.49],[141652,141653,4.76],[141654,141655,9.49],[141656,141657,4.76],[141658,141659,9.59],[141660,141661,4.76],[141662,141663,9.59],[141664,141665,4.76],[141666,141669,9.51],[141670,141677,9.22],[141678,141679,7.85],[141680,141685,9.22],[141686,141686,7.95],[141687,141687,11.47],[141688,141688,7.95],[141689,141689,8.41],[141690,141690,10.13],[141691,141691,8.41],[141692,141693,6.12],[141694,141695,6.57],[141696,141696,4.01],[141697,141697,4.18],[141698,141698,3.45],[141699,141700,4.11],[141701,141702,4.92],[141703,141704,3.68],[141705,141706,4.35],[141707,141708,3.31],[141709,141712,3.3],[141713,141713,4.02],[141714,141714,4.04],[141715,141716,7.25],[141717,141718,7.65],[141719,141720,7.13],[141721,141721,2.48],[141722,141722,3.05],[141723,141723,6.53],[141724,141725,6.51],[141726,141726,7.27],[141727,141727,6.03],[141728,141729,6.53],[141730,141733,6.03],[141734,141735,8.28],[141736,141743,6.53],[141744,141748,7.73],[141749,141749,9.56],[141750,141750,7.7],[141751,141751,7.72],[141752,141752,7.94],[141753,141753,7.72],[141754,141754,7.73],[141755,141755,7.74],[141756,141761,7.72],[141762,141762,9.41],[141763,141763,9.61],[141764,141768,8.22],[141769,141769,8.75],[141770,141772,8.23],[141773,141773,10.38],[141774,141774,7.15],[141775,141776,8.34],[141777,141779,7.56],[141780,141781,7.17],[141782,141783,8.44],[141784,141785,3.05],[141786,141787,4.66],[141788,141788,7.01],[141789,141789,7.12],[141790,141790,7.01],[141791,141791,7.41],[141792,141792,8.22],[141793,141793,7.19],[141794,141794,7.51],[141795,141797,7.3],[141798,141798,7.81],[141799,141799,6.99],[141800,141801,8.23],[141802,141802,7.89],[141803,141803,5.2],[141804,141805,9.89],[141806,141807,6.57],[141808,141809,7.79],[141810,141811,7.72],[141812,141812,9],[141813,141813,4.08],[141814,141814,6.34],[141815,141817,5.59],[141818,141819,7.43],[141820,141821,5.91],[141822,141823,5.2],[141824,141825,9.89],[141826,141826,9.92],[141827,141828,5.99],[141829,141830,6.55],[141831,141832,8.43],[141833,141833,7.33],[141834,141834,9.41],[141835,141835,7.18],[141836,141836,16.56],[141837,141839,6.72],[141840,141840,6.52],[141841,141841,8.01],[141842,141842,6.74],[141843,141843,6.52],[141844,141844,7.42],[141845,141845,6.52],[141846,141846,6.72],[141847,141847,7.43],[141848,141850,6.72],[141851,141851,7.02],[141852,141852,6.79],[141853,141853,7.56],[141854,141854,4.35],[141855,141855,3.67],[141856,141856,8.92],[141857,141857,3.59],[141858,141859,5.95],[141860,141860,5.99],[141861,141861,5.95],[141862,141862,5.99],[141863,141863,7.12],[141864,141864,7.02],[141865,141866,5.99],[141867,141868,5.97],[141869,141870,8.37],[141871,141871,5.04],[141872,141872,5.82],[141873,141873,5.96],[141874,141874,5.74],[141875,141875,8.85],[141876,141877,7.86],[141878,141880,9.89],[141881,141883,8.23],[141884,141885,5.63],[141886,141886,3.67],[141887,141887,6.77],[141888,141893,5.99],[141894,141895,4.27],[141896,141897,5.96],[141898,141899,5.62],[141900,141901,8.13],[141902,141903,6.55],[141904,141904,8.13],[141905,141906,6.71],[141907,141908,7.17],[141909,141910,8.28],[141911,141912,7.17],[141913,141913,6.67],[141914,141915,7.17],[141916,141917,8.12],[141918,141920,6.71],[141921,141921,5.97],[141922,141923,6.71],[141924,141925,7.34],[141926,141929,5.96],[141930,141933,5.98],[141934,141934,5.33],[141935,141936,5.98],[141937,141938,5.97],[141939,141939,5.99],[141940,141940,9.33],[141941,141941,10.82],[141942,141942,16.03],[141943,141943,6],[141944,141944,6.55],[141945,141946,7.25],[141947,141948,5.63],[141949,141951,5.97],[141952,141952,5.98],[141953,141956,5.97],[141957,141958,5.98],[141959,141959,6.06],[141960,141960,6.27],[141961,141962,5.98],[141963,141964,5.97],[141965,141965,6.06],[141966,141966,6.03],[141967,141968,5.99],[141969,141975,5.97],[141976,141978,5.98],[141979,141980,5.97],[141981,141982,5.98],[141983,141983,6.07],[141984,141984,6],[141985,141986,7.51],[141987,141987,8.87],[141988,141988,5.99],[141989,141989,10.29],[141990,141993,6.75],[141994,141994,5.63],[141995,141995,5.76],[141996,141996,6.06],[141997,141997,6.11],[141998,141998,5.97],[141999,142001,6.08],[142002,142002,6.06],[142003,142006,6.08],[142007,142007,6.02],[142008,142008,6.03],[142009,142009,6.02],[142010,142010,6.03],[142011,142012,9.76],[142013,142014,6.21],[142015,142022,5.05],[142023,142026,6],[142027,142028,5.05],[142029,142030,10.48],[142031,142032,6.21],[142033,142034,6.2],[142035,142038,5.05],[142039,142040,9.35],[142041,142043,6.57],[142044,142044,6.71],[142045,142045,6.57],[142046,142046,4.32],[142047,142049,7.58],[142050,142050,7.55],[142051,142051,7.52],[142052,142052,7.55],[142053,142053,9.21],[142054,142054,7.54],[142055,142057,7.58],[142058,142059,7.62],[142060,142061,5.63],[142062,142062,3.44],[142063,142064,3.13],[142065,142065,3.29],[142066,142066,4.29],[142067,142067,5.98],[142068,142068,3.84],[142069,142069,5.26],[142070,142070,2.48],[142071,142072,10.68],[142073,142074,5.97],[142075,142075,5.48],[142076,142076,3.9],[142077,142077,4.52],[142078,142079,3.23],[142080,142083,6.62],[142084,142084,12.07],[142085,142087,11],[142088,142091,6.62],[142092,142092,12.07],[142093,142093,6.45],[142094,142097,6.6],[142098,142105,6.62],[142106,142108,11],[142109,142110,2.64],[142111,142114,10.01],[142115,142115,10.19],[142116,142116,13.28],[142117,142118,11],[142119,142120,5.98],[142121,142121,11],[142122,142123,3.93],[142124,142125,9.26],[142126,142127,6.56],[142128,142129,10.19],[142130,142130,13.2],[142131,142131,17.31],[142132,142134,10.19],[142135,142135,15.53],[142136,142148,10.19],[142149,142150,10.21],[142151,142156,10.19],[142157,142159,5.5],[142160,142160,11],[142161,142161,8.73],[142162,142162,7.7],[142163,142164,9.51],[142165,142165,11],[142166,142175,5.5],[142176,142181,11],[142182,142209,5.5],[142210,142211,11],[142212,142223,5.5],[142224,142225,13.35],[142226,142228,5.5],[142229,142229,11],[142230,142335,5.5],[142336,142336,8.99],[142337,142337,9.32],[142338,142338,11.69],[142339,142339,10.54],[142340,142340,11.78],[142341,142341,7.24],[142342,142342,11.69],[142343,142343,9.39],[142344,142344,11.21],[142345,142346,11.79],[142347,142347,5.73],[142348,142348,12.06],[142349,142349,4.89],[142350,142350,11.42],[142351,142351,9.2],[142352,142353,6.26],[142354,142354,8.46],[142355,142355,6.26],[142356,142356,8.84],[142357,142357,11.69],[142358,142358,9.39],[142359,142359,8.76],[142360,142360,9.4],[142361,142361,8.76],[142362,142362,9.51],[142363,142363,9],[142364,142364,9.24],[142365,142365,10],[142366,142366,9.43],[142367,142367,8.16],[142368,142368,7.69],[142369,142369,10.3],[142370,142370,8.56],[142371,142371,9.43],[142372,142372,8],[142373,142373,9.35],[142374,142374,9.46],[142375,142375,11.33],[142376,142376,11.44],[142377,142377,14.34],[142378,142378,10.2],[142379,142379,6.61],[142380,142380,4.27],[142381,142381,8.71],[142382,142382,10.88],[142383,142383,5.5],[142384,142384,7.78],[142385,142385,8],[142386,142386,10.12],[142387,142387,8.78],[142388,142388,9.86],[142389,142389,5.59],[142390,142390,10.12],[142391,142391,7.57],[142392,142392,9.17],[142393,142394,10.05],[142395,142395,5.2],[142396,142396,10.11],[142397,142397,4.37],[142398,142398,9.58],[142399,142399,7.95],[142400,142400,5.42],[142401,142401,5.57],[142402,142402,7.29],[142403,142403,5.35],[142404,142404,7.06],[142405,142405,10.12],[142406,142406,8.12],[142407,142407,8.17],[142408,142408,7.69],[142409,142409,6.85],[142410,142410,7.72],[142411,142411,7.78],[142412,142412,7.36],[142413,142413,7.68],[142414,142414,8.21],[142415,142415,7.03],[142416,142416,6.74],[142417,142417,7.94],[142418,142418,6.64],[142419,142419,8.21],[142420,142420,6.2],[142421,142421,7.3],[142422,142422,7.94],[142423,142423,8.62],[142424,142424,9.38],[142425,142425,11.42],[142426,142426,8.77],[142427,142427,5.31],[142428,142428,3.43],[142429,142429,7.08],[142430,142430,8.48],[142431,142431,5.5],[142432,142432,7.26],[142433,142433,5.25],[142434,142434,8.54],[142435,142435,7.88],[142436,142436,7.94],[142437,142437,6.12],[142438,142438,3.66],[142439,142439,8.58],[142440,142440,7.07],[142441,142441,7.94],[142442,142442,6.12],[142443,142443,6.72],[142444,142444,5.5],[142445,142445,9.06],[142446,142447,6.62],[142448,142448,9.88],[142449,142449,6.73],[142450,142450,11.99],[142451,142451,9.2],[142452,142452,5.41],[142453,142453,6.42],[142454,142454,5.7],[142455,142455,6.86],[142456,142456,7.58],[142457,142458,6.62],[142459,142459,4.48],[142460,142461,6.62],[142462,142462,6.45],[142463,142463,6.6],[142464,142464,6.96],[142465,142465,6.31],[142466,142466,7.15],[142467,142467,6.34],[142468,142468,5.76],[142469,142469,4.76],[142470,142470,8.95],[142471,142471,7.24],[142472,142472,7.07],[142473,142473,5.44],[142474,142474,6.12],[142475,142475,5.27],[142476,142476,6.29],[142477,142477,4.99],[142478,142478,8.15],[142479,142479,7.01],[142480,142480,8.6],[142481,142481,6.65],[142482,142482,3.12],[142483,142483,2.84],[142484,142484,6.81],[142485,142485,5.87],[142486,142486,6.39],[142487,142487,5.14],[142488,142488,8.8],[142489,142489,8.21],[142490,142490,8.36],[142491,142491,6.95],[142492,142492,6.29],[142493,142493,5.17],[142494,142494,8.59],[142495,142495,6.65],[142496,142496,8.04],[142497,142497,6.86],[142498,142498,6.65],[142499,142499,5.83],[142500,142500,6.95],[142501,142501,5.28],[142502,142502,6.71],[142503,142503,6.24],[142504,142504,6.23],[142505,142505,5.59],[142506,142506,8.84],[142507,142507,7.97],[142508,142508,6.45],[142509,142509,5.82],[142510,142510,9.17],[142511,142511,7.7],[142512,142512,11.35],[142513,142513,8.98],[142514,142514,7.12],[142515,142515,5.57],[142516,142516,6.09],[142517,142517,6.29],[142518,142518,6.93],[142519,142519,6.07],[142520,142520,6.29],[142521,142521,5.17],[142522,142522,7.12],[142523,142523,5.57],[142524,142524,8.67],[142525,142525,7.77],[142526,142526,8.98],[142527,142527,8.19],[142528,142528,7.14],[142529,142529,5.92],[142530,142530,11.35],[142531,142531,8.98],[142532,142532,6.42],[142533,142533,5.48],[142534,142534,4.85],[142535,142535,4.18],[142536,142536,6.04],[142537,142537,5.77],[142538,142539,6.29],[142540,142540,6.47],[142541,142541,5.61],[142542,142542,6.79],[142543,142543,6.05],[142544,142544,5.76],[142545,142545,4.78],[142546,142547,6.29],[142548,142548,3.93],[142549,142549,4.06],[142550,142550,6.59],[142551,142551,5.69],[142552,142552,8.04],[142553,142553,6.86],[142554,142554,8.95],[142555,142555,7.24],[142556,142557,6.64],[142558,142558,6.12],[142559,142559,5.17],[142560,142560,9.06],[142561,142561,8.01],[142562,142562,7.24],[142563,142563,6.43],[142564,142564,5.87],[142565,142565,8.24],[142566,142566,8.01],[142567,142567,9.58],[142568,142569,7.62],[142570,142570,11.49],[142571,142571,9],[142572,142572,6.51],[142573,142573,8.36],[142574,142574,7.27],[142575,142577,0],[142578,142578,8.03],[142579,142579,6.76],[142580,142584,5.5],[142585,142585,9.2],[142586,142587,6.09],[142588,142588,9.2],[142589,142589,3.81],[142590,142590,4.69],[142591,142591,3.3],[142592,142639,5.5],[142640,142640,4.55],[142641,142641,9.42],[142642,142642,9.43],[142643,142644,7.47],[142645,142645,7.03],[142646,142646,6.65],[142647,142648,6.94],[142649,142650,7.12],[142651,142651,7.7],[142652,142652,8.73],[142653,142653,7.96],[142654,142654,5.48],[142655,142655,7.96],[142656,142657,9.43],[142658,142658,3.13],[142659,142659,7.03],[142660,142660,7.97],[142661,142661,7.03],[142662,142662,7.69],[142663,142663,8.01],[142664,142664,8.16],[142665,142665,5.25],[142666,142666,5.62],[142667,142667,6.9],[142668,142668,8.62],[142669,142669,5.9],[142670,142670,7.12],[142671,142671,3.11],[142672,142672,8.41],[142673,142673,3],[142674,142674,6.06],[142675,142675,4.55],[142676,142677,9.43],[142678,142678,7.97],[142679,142679,3.21],[142680,142680,7.81],[142681,142682,9.43],[142683,142683,8.32],[142684,142684,5.71],[142685,142685,7.03],[142686,142686,8.32],[142687,142687,7.12],[142688,142688,7.38],[142689,142689,7.75],[142690,142690,5.25],[142691,142691,9.2],[142692,142692,4.99],[142693,142693,9.2],[142694,142694,7.16],[142695,142695,8.48],[142696,142702,5.5],[142703,142703,3.39],[142704,142704,8.46],[142705,142718,5.5],[142719,142719,0],[142720,142720,15.18],[142721,142721,12.57],[142722,142722,12.84],[142723,142723,10.5],[142724,142724,11.26],[142725,142725,10.81],[142726,142726,9.21],[142727,142727,9.28],[142728,142728,9.35],[142729,142729,11.39],[142730,142730,9.68],[142731,142731,11.03],[142732,142732,12.1],[142733,142733,11.75],[142734,142734,11.78],[142735,142735,16.52],[142736,142736,19.27],[142737,142737,10.07],[142738,142738,10.84],[142739,142739,12.74],[142740,142740,12.57],[142741,142741,8.97],[142742,142742,12.57],[142743,142751,5.5],[142752,142752,11.26],[142753,142753,13.07],[142754,142754,12.9],[142755,142755,11.26],[142756,142756,12.76],[142757,142758,11.26],[142759,142759,5.5],[142760,142762,9.21],[142763,142763,9.22],[142764,142764,9.21],[142765,142765,11.06],[142766,142766,9.28],[142767,142767,5.5],[142768,142772,13.41],[142773,142773,14.88],[142774,142774,13.41],[142775,142775,5.5],[142776,142776,18.63],[142777,142777,19.05],[142778,142778,18.97],[142779,142779,18.73],[142780,142780,22.4],[142781,142781,18.3],[142782,142782,18.51],[142783,142783,5.5],[142784,142790,9.96],[142791,142791,5.5],[142792,142792,8.41],[142793,142793,10.89],[142794,142794,10.81],[142795,142795,8.41],[142796,142796,10.68],[142797,142798,8.41],[142799,142799,5.5],[142800,142800,10.59],[142801,142801,13.07],[142802,142802,12.99],[142803,142803,10.59],[142804,142804,12.85],[142805,142806,10.59],[142807,142807,5.5],[142808,142808,6.92],[142809,142809,9.93],[142810,142810,7.34],[142811,142811,7.51],[142812,142812,7.2],[142813,142813,9.54],[142814,142814,6.92],[142815,142815,5.5],[142816,142847,0],[142848,142848,2.64],[142849,142849,2.68],[142850,142851,2.33],[142852,142853,2.51],[142854,142854,4.44],[142855,142855,4.49],[142856,142856,4.48],[142857,142858,4.47],[142859,142859,4.13],[142860,142861,2.95],[142862,142862,10.89],[142863,142863,13.07],[142864,142865,12.65],[142866,142866,1.77],[142867,142867,6.21],[142868,142868,8.01],[142869,142869,8],[142870,142870,6.62],[142871,142871,6.16],[142872,142872,6.62],[142873,142873,5.5],[142874,142874,4.17],[142875,142875,7.33],[142876,142877,2.95],[142878,142879,7.33],[142880,142881,4.71],[142882,142885,4.91],[142886,142887,7.4],[142888,142889,6.94],[142890,142892,7.61],[142893,142893,7.33],[142894,142894,6.62],[142895,142895,2.58],[142896,142896,3.75],[142897,142897,3.08],[142898,142975,5.5],[142976,143001,11],[143002,143002,5.5],[143003,143091,11],[143092,143103,5.5],[143104,143317,11],[143318,143343,5.5],[143344,143355,11],[143356,143359,5.5],[143360,143405,11],[143406,143407,17.6],[143408,143422,11],[143423,143424,5.5],[143425,143510,11],[143511,143512,5.5],[143513,143514,0],[143515,143615,11],[143616,143620,5.5],[143621,143660,11],[143661,143664,5.5],[143665,143758,9.51],[143759,143759,5.5],[143760,143799,11],[143800,143807,5.5],[143808,143823,11],[143824,143855,5.5],[143856,143871,11],[143872,143899,9.51],[143900,143900,9.56],[143901,143903,5.5],[143904,143951,11],[143952,143952,5.5],[143953,143967,11],[143968,143995,9.51],[143996,143998,5.5],[143999,143999,9.51],[144000,144075,11],[144076,144079,5.5],[144080,144246,11],[144247,144250,5.5],[144251,144255,11],[144256,144260,9.51],[144261,144265,11],[144266,144268,9.51],[144269,144272,11],[144273,144277,9.51],[144278,144280,11],[144281,144282,9.51],[144283,144294,11],[144295,144303,9.51],[144304,144307,11],[144308,144321,9.51],[144322,144322,11],[144323,144323,9.51],[144324,144324,11],[144325,144327,9.51],[144328,144328,11],[144329,144330,9.51],[144331,144334,11],[144335,144336,9.51],[144337,144338,11],[144339,144339,9.51],[144340,144341,11],[144342,144342,9.51],[144343,144346,11],[144347,144349,9.51],[144350,144351,5.5],[144352,144382,11],[144383,144383,5.5],[144384,150965,11],[150966,150975,5.5],[150976,151039,9.67],[151040,171970,11],[171971,171971,5.5],[171972,171972,11],[171973,171973,5.5],[171974,171984,11],[171985,172031,5.5],[172032,172034,6.79],[172035,172035,7.05],[172036,172036,6.76],[172037,172038,6.25],[172039,172039,6.93],[172040,172040,5.77],[172041,172042,5.97],[172043,172043,6.18],[172044,172045,6.52],[172046,172046,6.3],[172047,172047,6.4],[172048,172050,7.53],[172051,172051,6.48],[172052,172052,6.36],[172053,172053,7.01],[172054,172054,6.89],[172055,172057,5.85],[172058,172058,7.42],[172059,172060,6.42],[172061,172061,6.9],[172062,172062,5.65],[172063,172064,7.01],[172065,172065,6.65],[172066,172067,6.41],[172068,172068,4.94],[172069,172069,6.61],[172070,172071,5.72],[172072,172072,5.7],[172073,172074,6.73],[172075,172075,4.94],[172076,172076,6.29],[172077,172078,5.76],[172079,172079,5.44],[172080,172081,6.67],[172082,172082,6.02],[172083,172084,5.93],[172085,172085,6.62],[172086,172087,7.75],[172088,172088,6.68],[172089,172090,6.84],[172091,172091,6.29],[172092,172093,7.34],[172094,172094,6.73],[172095,172095,6.52],[172096,172097,6.74],[172098,172098,6.85],[172099,172100,6.3],[172101,172101,6.48],[172102,172102,6.82],[172103,172104,7.03],[172105,172105,6.19],[172106,172106,5.51],[172107,172108,6.38],[172109,172109,6.57],[172110,172111,6.85],[172112,172112,6.68],[172113,172114,7.07],[172115,172115,6.72],[172116,172117,6.79],[172118,172118,6.73],[172119,172120,6.4],[172121,172121,6.51],[172122,172122,6.9],[172123,172124,6.28],[172125,172125,6.75],[172126,172126,6.92],[172127,172128,8.81],[172129,172129,7.01],[172130,172131,6.31],[172132,172132,6.68],[172133,172133,6.7],[172134,172135,5.53],[172136,172136,6.73],[172137,172138,6.34],[172139,172139,6.69],[172140,172140,6.78],[172141,172142,6.5],[172143,172143,6.09],[172144,172145,6.34],[172146,172146,6.14],[172147,172148,5.83],[172149,172149,5.61],[172150,172150,6.43],[172151,172152,6.25],[172153,172153,6.08],[172154,172155,6.48],[172156,172156,5.8],[172157,172157,7.29],[172158,172159,5.99],[172160,172160,7.38],[172161,172161,6.63],[172162,172164,7.01],[172165,172165,6.17],[172166,172167,6.68],[172168,172168,6.19],[172169,172170,7.8],[172171,172171,6.45],[172172,172173,6.74],[172174,172174,6.27],[172175,172176,6.2],[172177,172177,5.61],[172178,172179,6.16],[172180,172180,6.51],[172181,172181,7.03],[172182,172182,6.81],[172183,172183,5.57],[172184,172184,6.63],[172185,172186,6.54],[172187,172187,6.34],[172188,172189,6.46],[172190,172190,5.87],[172191,172191,6.68],[172192,172193,6.42],[172194,172194,6.12],[172195,172195,6.04],[172196,172197,5.96],[172198,172198,6.51],[172199,172200,7.03],[172201,172202,5.72],[172203,172203,5.87],[172204,172205,6.73],[172206,172206,6.51],[172207,172208,5.95],[172209,172209,5.7],[172210,172211,6.51],[172212,172212,5.99],[172213,172213,6.96],[172214,172215,6.58],[172216,172216,7.01],[172217,172217,6.15],[172218,172219,6.26],[172220,172220,7.53],[172221,172221,6.68],[172222,172223,6.16],[172224,172224,6.41],[172225,172226,6.6],[172227,172227,6.35],[172228,172229,7.19],[172230,172230,6.4],[172231,172232,5.8],[172233,172233,5.85],[172234,172235,7.03],[172236,172236,5.8],[172237,172237,6.09],[172238,172239,6.12],[172240,172240,5.76],[172241,172241,7.24],[172242,172244,6.17],[172245,172246,5.81],[172247,172247,5.9],[172248,172248,5.3],[172249,172250,6.84],[172251,172251,6.69],[172252,172253,6.02],[172254,172254,6.16],[172255,172258,6.69],[172259,172260,5.94],[172261,172261,6.02],[172262,172262,5.93],[172263,172264,5.53],[172265,172265,5.66],[172266,172268,6.51],[172269,172269,5.66],[172270,172270,6.23],[172271,172272,6.13],[172273,172273,6.98],[172274,172275,5.96],[172276,172276,6.35],[172277,172278,5.7],[172279,172279,5.94],[172280,172281,6.12],[172282,172282,6.16],[172283,172284,7.03],[172285,172285,6.16],[172286,172287,6.86],[172288,172288,7.41],[172289,172290,6.09],[172291,172291,6.79],[172292,172293,6.28],[172294,172294,6.23],[172295,172295,6.89],[172296,172297,5.73],[172298,172298,6.73],[172299,172300,5.9],[172301,172301,6.25],[172302,172303,6.21],[172304,172304,5.61],[172305,172306,5.48],[172307,172307,5.91],[172308,172308,5.39],[172309,172310,5.59],[172311,172311,6.08],[172312,172313,5.53],[172314,172314,5.61],[172315,172316,5.42],[172317,172317,5.59],[172318,172319,6.29],[172320,172320,6.26],[172321,172321,5.48],[172322,172323,5.91],[172324,172324,5.48],[172325,172325,6.15],[172326,172327,5.3],[172328,172328,6.54],[172329,172329,5.61],[172330,172331,5.87],[172332,172332,5.92],[172333,172334,6.19],[172335,172335,5.91],[172336,172336,6.49],[172337,172338,6.51],[172339,172339,6.46],[172340,172341,6.76],[172342,172342,5.91],[172343,172344,5.73],[172345,172348,5.91],[172349,172349,6.19],[172350,172352,5.91],[172353,172354,6.15],[172355,172355,6.06],[172356,172356,5.72],[172357,172358,5.58],[172359,172359,5.83],[172360,172361,5.7],[172362,172362,6.68],[172363,172363,6.32],[172364,172365,7.03],[172366,172366,6.46],[172367,172368,6.74],[172369,172369,5.91],[172370,172371,5.35],[172372,172372,6.09],[172373,172374,6.3],[172375,172375,6.19],[172376,172377,6.16],[172378,172378,7.11],[172379,172379,6.08],[172380,172382,6.16],[172383,172384,6.68],[172385,172385,6.57],[172386,172386,5.61],[172387,172388,5.84],[172389,172389,6.4],[172390,172391,6.08],[172392,172392,5.43],[172393,172394,5.32],[172395,172395,6.16],[172396,172396,5.95],[172397,172398,6.69],[172399,172399,6.2],[172400,172400,5.52],[172401,172402,6.45],[172403,172403,5.87],[172404,172405,7.33],[172406,172406,6.34],[172407,172408,5.74],[172409,172410,5.91],[172411,172411,6.28],[172412,172412,6.39],[172413,172413,6.51],[172414,172415,6.74],[172416,172416,6.68],[172417,172418,6.53],[172419,172419,6.05],[172420,172421,6.15],[172422,172422,6.04],[172423,172424,5.92],[172425,172425,6.3],[172426,172426,6.2],[172427,172428,6.26],[172429,172429,6.2],[172430,172431,5.76],[172432,172432,5.72],[172433,172433,6.02],[172434,172436,6.34],[172437,172438,5.96],[172439,172441,6.16],[172442,172442,5.93],[172443,172444,6.16],[172445,172445,6.4],[172446,172446,6.84],[172447,172448,6.7],[172449,172449,6.29],[172450,172451,6.1],[172452,172452,6.28],[172453,172454,5.9],[172455,172455,6.28],[172456,172458,5.72],[172459,172459,6.21],[172460,172461,5.5],[172462,172462,5.96],[172463,172464,6.02],[172465,172465,6.53],[172466,172467,6.6],[172468,172468,6.38],[172469,172470,6.34],[172471,172471,5.91],[172472,172473,5.09],[172474,172474,6.51],[172475,172475,5.39],[172476,172477,5.37],[172478,172478,5.36],[172479,172479,6.88],[172480,172481,5.64],[172482,172482,6.15],[172483,172485,5.84],[172486,172486,6.6],[172487,172487,6.59],[172488,172489,6.25],[172490,172490,6.09],[172491,172492,5.51],[172493,172493,7.01],[172494,172494,6.51],[172495,172496,7.01],[172497,172497,6.16],[172498,172499,5.62],[172500,172500,6.6],[172501,172502,6.17],[172503,172503,5.91],[172504,172505,5.49],[172506,172506,6.56],[172507,172508,6.41],[172509,172510,5.72],[172511,172512,6.59],[172513,172513,5.72],[172514,172514,6.18],[172515,172516,6.01],[172517,172517,6.51],[172518,172518,6.88],[172519,172520,7.07],[172521,172521,6.51],[172522,172522,7.19],[172523,172524,6.13],[172525,172525,5.8],[172526,172526,5.85],[172527,172528,5.61],[172529,172529,5.43],[172530,172530,6.89],[172531,172532,6.74],[172533,172533,6.51],[172534,172535,6.15],[172536,172536,6.27],[172537,172538,6.09],[172539,172539,5.46],[172540,172541,5.91],[172542,172542,6.2],[172543,172543,6.39],[172544,172545,5.84],[172546,172546,5.85],[172547,172548,5.96],[172549,172549,6.36],[172550,172550,5.8],[172551,172552,5.53],[172553,172553,6.01],[172554,172554,6.78],[172555,172556,4.99],[172557,172557,7.03],[172558,172558,6.6],[172559,172560,6.31],[172561,172561,5.92],[172562,172563,5.58],[172564,172564,6.51],[172565,172566,5.91],[172567,172568,6.57],[172569,172569,6.23],[172570,172570,6.28],[172571,172572,6.07],[172573,172573,5.77],[172574,172574,6.02],[172575,172576,6.89],[172577,172577,6.4],[172578,172578,5.82],[172579,172580,5.14],[172581,172581,5.04],[172582,172582,5.96],[172583,172584,6.52],[172585,172585,7.4],[172586,172586,6.63],[172587,172589,5.82],[172590,172591,6.08],[172592,172593,6.58],[172594,172594,5.93],[172595,172596,6.7],[172597,172597,5.93],[172598,172599,6.08],[172600,172601,5.95],[172602,172603,6.43],[172604,172604,6.34],[172605,172606,5.68],[172607,172607,6.02],[172608,172608,6.92],[172609,172610,5.25],[172611,172611,6.3],[172612,172613,6.74],[172614,172614,6.15],[172615,172616,6.2],[172617,172617,6.04],[172618,172618,5.58],[172619,172620,6.14],[172621,172621,6.69],[172622,172622,6.46],[172623,172624,5.86],[172625,172625,6.18],[172626,172626,6.65],[172627,172628,6.27],[172629,172629,6.65],[172630,172630,5.48],[172631,172632,5.76],[172633,172633,6.2],[172634,172635,6.08],[172636,172636,6.09],[172637,172638,6.15],[172639,172639,5.76],[172640,172640,6.7],[172641,172642,5.91],[172643,172643,6.47],[172644,172644,6.51],[172645,172646,5.74],[172647,172647,5.26],[172648,172649,6.19],[172650,172650,7.11],[172651,172652,5.7],[172653,172653,6.72],[172654,172656,5.77],[172657,172657,6.64],[172658,172660,6.78],[172661,172661,5.97],[172662,172663,6.08],[172664,172664,6.38],[172665,172665,5.79],[172666,172667,6.51],[172668,172668,6.24],[172669,172670,6.48],[172671,172671,6.73],[172672,172672,6.82],[172673,172675,6.13],[172676,172677,6.05],[172678,172678,6.38],[172679,172680,5.69],[172681,172681,5.37],[172682,172683,6.03],[172684,172684,6.34],[172685,172685,6.27],[172686,172687,6.79],[172688,172688,6.17],[172689,172690,6.26],[172691,172691,6.1],[172692,172694,6.01],[172695,172695,6.79],[172696,172697,6.19],[172698,172698,6.64],[172699,172699,6.36],[172700,172701,6.58],[172702,172702,6.19],[172703,172704,6.28],[172705,172705,5.77],[172706,172706,6.08],[172707,172708,5.26],[172709,172709,6.01],[172710,172711,7.15],[172712,172712,5.69],[172713,172714,5.95],[172715,172715,5.27],[172716,172717,6.04],[172718,172718,5.7],[172719,172720,5.32],[172721,172721,5.46],[172722,172722,6.54],[172723,172724,6.08],[172725,172725,6.09],[172726,172728,6.51],[172729,172729,7.42],[172730,172731,5.61],[172732,172732,6.26],[172733,172733,6.98],[172734,172735,6.93],[172736,172736,6.24],[172737,172738,6.51],[172739,172739,7.01],[172740,172740,6.56],[172741,172742,6.96],[172743,172743,6.21],[172744,172745,6.47],[172746,172746,5.38],[172747,172748,6.41],[172749,172749,5.61],[172750,172751,5.64],[172752,172752,6.28],[172753,172754,6.68],[172755,172755,5.85],[172756,172756,5.7],[172757,172758,6.08],[172759,172759,6.13],[172760,172760,6.47],[172761,172762,6.35],[172763,172763,6.47],[172764,172765,6.4],[172766,172766,5.95],[172767,172768,6.41],[172769,172769,6.32],[172770,172771,6.08],[172772,172772,6.04],[172773,172774,5.6],[172775,172775,6.64],[172776,172777,5.66],[172778,172778,5.91],[172779,172780,6.59],[172781,172781,6.23],[172782,172783,5.96],[172784,172784,5.82],[172785,172787,7.09],[172788,172790,5.96],[172791,172791,5.84],[172792,172793,6.57],[172794,172795,6.19],[172796,172797,5.05],[172798,172799,6.57],[172800,172800,6.31],[172801,172802,6.74],[172803,172803,6.23],[172804,172805,5.25],[172806,172806,6.51],[172807,172808,6.74],[172809,172809,6.59],[172810,172811,6.57],[172812,172812,5.77],[172813,172814,6.96],[172815,172815,6.69],[172816,172816,5.72],[172817,172818,5.57],[172819,172819,6.06],[172820,172822,5.25],[172823,172823,6.01],[172824,172825,5.64],[172826,172826,6.01],[172827,172828,6.28],[172829,172829,5.74],[172830,172830,6.58],[172831,172832,5.65],[172833,172833,6.19],[172834,172835,6.07],[172836,172838,6.3],[172839,172839,5.96],[172840,172841,6.3],[172842,172842,5.49],[172843,172844,5.51],[172845,172845,5.75],[172846,172847,6.16],[172848,172848,5.91],[172849,172849,7.01],[172850,172852,6.08],[172853,172853,5.98],[172854,172855,6.51],[172856,172856,7.2],[172857,172858,5.61],[172859,172859,6.51],[172860,172860,5.96],[172861,172862,6.04],[172863,172863,6.91],[172864,172864,7.14],[172865,172866,6.05],[172867,172867,6.14],[172868,172869,6.73],[172870,172870,6.41],[172871,172872,6.34],[172873,172873,5.59],[172874,172875,5.96],[172876,172876,5.85],[172877,172877,7.34],[172878,172879,6.96],[172880,172880,6.28],[172881,172883,5.72],[172884,172884,6.74],[172885,172885,7.27],[172886,172887,7.05],[172888,172888,6.67],[172889,172890,6.35],[172891,172891,6.07],[172892,172893,6.16],[172894,172894,5.7],[172895,172896,6.15],[172897,172897,5.87],[172898,172899,6.56],[172900,172900,6.16],[172901,172901,6.34],[172902,172903,5.92],[172904,172904,6.53],[172905,172905,6.2],[172906,172907,5.53],[172908,172908,5.77],[172909,172911,6.25],[172912,172912,5.91],[172913,172914,7.75],[172915,172915,6.41],[172916,172917,6.31],[172918,172918,6.14],[172919,172920,6.29],[172921,172921,5.87],[172922,172923,6.14],[172924,172925,6.19],[172926,172927,5.85],[172928,172928,6.46],[172929,172930,6.09],[172931,172931,6.41],[172932,172932,5.74],[172933,172934,5.59],[172935,172935,6.16],[172936,172936,5.84],[172937,172938,6.41],[172939,172939,6.96],[172940,172941,5.83],[172942,172942,6.23],[172943,172944,5.83],[172945,172945,5.65],[172946,172947,6.08],[172948,172948,6.51],[172949,172950,6.42],[172951,172951,5.7],[172952,172954,6.41],[172955,172955,5.59],[172956,172957,6.25],[172958,172958,6.68],[172959,172959,6.16],[172960,172961,6.19],[172962,172962,6.69],[172963,172964,6.29],[172965,172965,5.88],[172966,172967,6.23],[172968,172968,5.91],[172969,172970,6.57],[172971,172971,5.84],[172972,172973,6.25],[172974,172974,6.85],[172975,172976,5.53],[172977,172977,5.5],[172978,172978,6.39],[172979,172980,6.57],[172981,172981,6.71],[172982,172982,6.6],[172983,172985,5.74],[172986,172986,5.71],[172987,172988,6.36],[172989,172989,6.08],[172990,172991,5.96],[172992,172992,5.91],[172993,172994,5.27],[172995,172995,6.69],[172996,172997,5.53],[172998,172998,6.51],[172999,173000,7.16],[173001,173001,6.02],[173002,173003,6.42],[173004,173004,5.55],[173005,173005,6.32],[173006,173006,6.19],[173007,173007,6.32],[173008,173008,6.7],[173009,173010,6.14],[173011,173011,6.75],[173012,173012,5.53],[173013,173014,5.91],[173015,173015,5.87],[173016,173017,5.53],[173018,173018,7.71],[173019,173020,5.85],[173021,173021,6.35],[173022,173023,5.59],[173024,173024,6.17],[173025,173026,5.91],[173027,173027,6.23],[173028,173028,6.04],[173029,173030,6.68],[173031,173031,6.1],[173032,173032,5.95],[173033,173035,6.57],[173036,173038,7.01],[173039,173039,6.57],[173040,173040,6.51],[173041,173042,5.41],[173043,173043,6.17],[173044,173045,6.74],[173046,173046,6.35],[173047,173048,6.28],[173049,173049,5.48],[173050,173051,6.2],[173052,173052,6.58],[173053,173054,6.27],[173055,173055,6.51],[173056,173056,8.51],[173057,173058,6.68],[173059,173059,6.95],[173060,173060,5.85],[173061,173063,6.15],[173064,173064,5.8],[173065,173066,7.42],[173067,173067,6.51],[173068,173068,6.23],[173069,173070,6.51],[173071,173071,5.7],[173072,173073,6.51],[173074,173074,6.03],[173075,173077,6.69],[173078,173079,6.09],[173080,173080,6.16],[173081,173082,5.64],[173083,173083,6.15],[173084,173084,6.3],[173085,173086,6.2],[173087,173087,6.79],[173088,173089,6.01],[173090,173090,7.19],[173091,173091,6.45],[173092,173093,6.16],[173094,173094,6.01],[173095,173095,6.4],[173096,173097,7.26],[173098,173098,6.29],[173099,173100,6.17],[173101,173101,5.91],[173102,173103,6.81],[173104,173104,5.95],[173105,173105,5.83],[173106,173107,6.3],[173108,173108,6.6],[173109,173109,7.01],[173110,173111,6.82],[173112,173112,6.08],[173113,173114,7.01],[173115,173115,6.61],[173116,173117,7.25],[173118,173118,6.19],[173119,173120,5.54],[173121,173121,5.5],[173122,173123,6.35],[173124,173124,5.95],[173125,173126,5.69],[173127,173127,5.61],[173128,173129,6.14],[173130,173130,6.28],[173131,173132,5.32],[173133,173133,5.25],[173134,173134,6.42],[173135,173136,6.64],[173137,173137,5.5],[173138,173139,6.08],[173140,173140,6.48],[173141,173141,6.14],[173142,173143,6.34],[173144,173144,6.25],[173145,173145,6.51],[173146,173147,5.84],[173148,173148,5.96],[173149,173149,7.01],[173150,173151,6.75],[173152,173152,5.95],[173153,173155,7.01],[173156,173156,7.4],[173157,173158,6.16],[173159,173159,7.01],[173160,173161,6.39],[173162,173162,6.56],[173163,173163,5.95],[173164,173168,5.91],[173169,173169,6.79],[173170,173171,6.39],[173172,173172,5.61],[173173,173173,6.79],[173174,173175,5.95],[173176,173176,6.29],[173177,173177,6.17],[173178,173179,5.85],[173180,173180,5.96],[173181,173181,6.15],[173182,173183,6.17],[173184,173184,6.3],[173185,173185,5.87],[173186,173187,6.79],[173188,173188,5.84],[173189,173190,5.96],[173191,173191,5.95],[173192,173193,5.86],[173194,173194,6.04],[173195,173196,6.12],[173197,173199,11],[173200,173200,2.9],[173201,173202,4.49],[173203,173203,4.13],[173204,173204,5.61],[173205,173206,5.9],[173207,173207,5.27],[173208,173208,5.5],[173209,173209,6.15],[173210,173210,6.01],[173211,173211,3.73],[173212,173212,6.41],[173213,173213,6.17],[173214,173214,5.3],[173215,173215,4.96],[173216,173216,5.48],[173217,173218,7.03],[173219,173219,5.38],[173220,173220,6.74],[173221,173221,5.93],[173222,173222,6.24],[173223,173223,6.25],[173224,173224,6.51],[173225,173225,5.5],[173226,173226,6.29],[173227,173227,5.93],[173228,173228,6.68],[173229,173229,6.42],[173230,173230,6.79],[173231,173231,5.53],[173232,173233,4.26],[173234,173234,3.87],[173235,173235,7.01],[173236,173236,8.95],[173237,173237,6.81],[173238,173238,8.08],[173239,173239,6.2],[173240,173240,5.18],[173241,173241,5.59],[173242,173242,5.96],[173243,173243,5.37],[173244,173244,5.62],[173245,173245,6.26],[173246,173246,5.46],[173247,173247,6.48],[173248,173248,5.84],[173249,173249,6.06],[173250,173250,6.71],[173251,173251,5.47],[173252,173252,5.37],[173253,173253,6.08],[173254,173254,4.62],[173255,173263,5.5],[173264,173264,7.15],[173265,173266,6.65],[173267,173267,8.03],[173268,173269,6.12],[173270,173270,8.01],[173271,173272,6.81],[173273,173273,4.08],[173274,173275,6.95],[173276,173276,6.29],[173277,173278,5.71],[173279,173279,9.98],[173280,173280,8.36],[173281,173281,5.76],[173282,173282,6.04],[173283,173284,6.84],[173285,173286,6.6],[173287,173287,8.15],[173288,173288,8.01],[173289,173289,4.08],[173290,173290,10.23],[173291,173291,6.45],[173292,173292,6.23],[173293,173293,7.15],[173294,173295,7.03],[173296,173297,6.12],[173298,173298,3.13],[173299,173299,8.59],[173300,173301,8.04],[173302,173302,5.76],[173303,173303,8.03],[173304,173304,3.3],[173305,173305,3.33],[173306,173306,5.39],[173307,173307,5.42],[173308,173308,3.33],[173309,173309,3.3],[173310,173310,6.96],[173311,173311,6.01],[173312,173312,7.15],[173313,173313,7.63],[173314,173314,8.57],[173315,173316,9.43],[173317,173317,9.7],[173318,173318,11.9],[173319,173320,8.08],[173321,173323,7.35],[173324,173325,5.98],[173326,173326,10.04],[173327,173327,10.16],[173328,173329,13.16],[173330,173331,9.36],[173332,173332,7.8],[173333,173333,7.64],[173334,173334,7.7],[173335,173335,7.71],[173336,173337,7.7],[173338,173339,11.73],[173340,173341,8.57],[173342,173342,15.29],[173343,173343,11.44],[173344,173344,8.69],[173345,173345,7.96],[173346,173346,8.49],[173347,173347,11.73],[173348,173348,9.36],[173349,173349,10.35],[173350,173350,10.24],[173351,173351,4.95],[173352,173352,9.26],[173353,173353,9.81],[173354,173354,6.68],[173355,173355,9.59],[173356,173356,7.3],[173357,173357,7.74],[173358,173358,6.79],[173359,173359,7.11],[173360,173360,8.47],[173361,173361,8.74],[173362,173362,8.01],[173363,173363,8.81],[173364,173364,9.28],[173365,173366,7.27],[173367,173368,4.77],[173369,173369,6.78],[173370,173370,9.95],[173371,173371,8.39],[173372,173372,9.16],[173373,173373,7.5],[173374,173374,8.5],[173375,173375,6.67],[173376,173378,9.97],[173379,173380,5.81],[173381,173381,10.45],[173382,173382,8.56],[173383,173383,6.89],[173384,173384,7.64],[173385,173385,6.01],[173386,173386,7.9],[173387,173387,8.14],[173388,173389,10.21],[173390,173390,8.81],[173391,173391,10.25],[173392,173392,9.56],[173393,173393,9.18],[173394,173394,10.41],[173395,173395,9.83],[173396,173396,7.5],[173397,173397,7.12],[173398,173398,8.23],[173399,173399,6.68],[173400,173400,6.03],[173401,173401,8.07],[173402,173403,7.77],[173404,173404,8.39],[173405,173405,10.58],[173406,173407,7.72],[173408,173409,9.66],[173410,173411,10.09],[173412,173412,9.61],[173413,173413,9.97],[173414,173414,7.95],[173415,173415,8.45],[173416,173416,7.47],[173417,173417,8.91],[173418,173418,7.39],[173419,173419,8.99],[173420,173420,8.17],[173421,173421,10.43],[173422,173422,8.05],[173423,173423,6.75],[173424,173424,10.05],[173425,173425,7.47],[173426,173426,7.8],[173427,173427,7.47],[173428,173428,7.82],[173429,173429,8.15],[173430,173431,6.23],[173432,173432,8.1],[173433,173433,9.76],[173434,173434,6.59],[173435,173435,8.72],[173436,173436,6.52],[173437,173438,7.99],[173439,173440,7.57],[173441,173442,10.21],[173443,173444,9.43],[173445,173445,9.55],[173446,173446,10.32],[173447,173447,8.58],[173448,173448,8.81],[173449,173449,5.49],[173450,173450,7.85],[173451,173452,7.04],[173453,173453,9.03],[173454,173454,5.52],[173455,173455,8.05],[173456,173456,9.01],[173457,173457,7.39],[173458,173458,9.76],[173459,173459,10.91],[173460,173460,7.7],[173461,173461,8.6],[173462,173462,8.84],[173463,173463,8.45],[173464,173464,7.88],[173465,173465,7.77],[173466,173466,8.57],[173467,173467,8.69],[173468,173468,9.7],[173469,173469,8.25],[173470,173470,8.58],[173471,173473,7.99],[173474,173474,9.38],[173475,173475,10.69],[173476,173476,5.84],[173477,173477,6.54],[173478,173478,8.91],[173479,173479,10.69],[173480,173483,7.38],[173484,173487,7.8],[173488,173491,8.48],[173492,173492,6.79],[173493,173494,5.98],[173495,173495,7.39],[173496,173496,8.36],[173497,173497,6.73],[173498,173498,8.74],[173499,173500,9.22],[173501,173501,9.32],[173502,173502,9.21],[173503,173503,8.49],[173504,173504,9.32],[173505,173506,10.69],[173507,173508,7.72],[173509,173510,9.07],[173511,173512,8.98],[173513,173514,6.47],[173515,173515,7.42],[173516,173516,9.03],[173517,173517,7.42],[173518,173518,9.23],[173519,173520,5.91],[173521,173522,8.12],[173523,173523,8],[173524,173524,8.93],[173525,173525,8],[173526,173526,8.93],[173527,173527,5.99],[173528,173529,7.52],[173530,173530,6.15],[173531,173531,8.1],[173532,173532,11.54],[173533,173533,8.65],[173534,173534,6.74],[173535,173535,6.23],[173536,173536,10.52],[173537,173537,7.78],[173538,173538,13.82],[173539,173539,8.28],[173540,173540,8.37],[173541,173541,10.65],[173542,173542,8.12],[173543,173543,8.34],[173544,173544,6.3],[173545,173545,7.31],[173546,173546,7.01],[173547,173547,8.11],[173548,173550,9.76],[173551,173552,9.6],[173553,173554,8.1],[173555,173555,9.02],[173556,173556,9.9],[173557,173558,8.91],[173559,173562,6.71],[173563,173566,9.95],[173567,173567,7.66],[173568,173568,9.09],[173569,173569,8.98],[173570,173570,8.76],[173571,173575,7.77],[173576,173576,9.9],[173577,173577,6.25],[173578,173578,8.33],[173579,173579,9.05],[173580,173580,6.98],[173581,173581,5.18],[173582,173582,6.26],[173583,173583,8.16],[173584,173584,14.81],[173585,173585,8.49],[173586,173586,10.79],[173587,173587,5.4],[173588,173588,9.47],[173589,173589,10.21],[173590,173590,7.59],[173591,173591,7.8],[173592,173592,8],[173593,173593,8.16],[173594,173594,11.86],[173595,173595,10.05],[173596,173596,7.94],[173597,173597,9.09],[173598,173598,10.11],[173599,173599,6.84],[173600,173600,6.54],[173601,173601,3.3],[173602,173602,7.28],[173603,173603,7.33],[173604,173604,7.19],[173605,173605,7.14],[173606,173606,6.01],[173607,173607,7.2],[173608,173608,6.47],[173609,173609,6.84],[173610,173610,9.87],[173611,173611,5.97],[173612,173631,5.5],[173632,173632,8.23],[173633,173633,6.12],[173634,173634,8.23],[173635,173635,6.12],[173636,173636,8.17],[173637,173637,4.99],[173638,173638,3.42],[173639,173639,2.86],[173640,173640,7.81],[173641,173641,6.29],[173642,173643,6.36],[173644,173644,9.93],[173645,173645,7.8],[173646,173646,7.77],[173647,173647,6.53],[173648,173648,10.37],[173649,173649,9],[173650,173650,8.9],[173651,173651,7.68],[173652,173652,11.24],[173653,173653,8.87],[173654,173654,10.3],[173655,173655,8.19],[173656,173656,8],[173657,173657,6.18],[173658,173658,7.81],[173659,173659,6.62],[173660,173660,10.19],[173661,173661,8.71],[173662,173662,7.97],[173663,173663,7.02],[173664,173664,7.93],[173665,173665,6.51],[173666,173666,8.46],[173667,173667,7.6],[173668,173668,7.88],[173669,173669,7.09],[173670,173670,11.48],[173671,173671,10.3],[173672,173672,7.92],[173673,173673,6.3],[173674,173674,7.92],[173675,173675,6.3],[173676,173676,10.45],[173677,173677,7.78],[173678,173678,7.5],[173679,173682,0],[173683,173683,5.54],[173684,173693,0],[173694,173695,5.5],[173696,173696,8.46],[173697,173697,7.29],[173698,173698,4.77],[173699,173699,3.81],[173700,173700,13.86],[173701,173701,12.19],[173702,173702,10.05],[173703,173704,8.46],[173705,173705,7.29],[173706,173706,8.68],[173707,173707,7.44],[173708,173708,6.24],[173709,173709,5.91],[173710,173710,8],[173711,173711,6.93],[173712,173712,6.73],[173713,173713,5.91],[173714,173714,9.27],[173715,173715,8.01],[173716,173716,7.64],[173717,173717,6.41],[173718,173718,9.98],[173719,173719,8.7],[173720,173720,8.65],[173721,173721,7.35],[173722,173722,5.79],[173723,173723,4.95],[173724,173724,2.16],[173725,173725,1.86],[173726,173727,0],[173728,173728,7.26],[173729,173729,8.45],[173730,173730,6.01],[173731,173731,7.22],[173732,173732,7.78],[173733,173733,6.79],[173734,173734,6.36],[173735,173735,6.67],[173736,173736,6.05],[173737,173737,7.97],[173738,173738,7.25],[173739,173739,6.6],[173740,173740,7.27],[173741,173741,6.29],[173742,173742,6.04],[173743,173743,6.6],[173744,173744,7.01],[173745,173745,6.05],[173746,173746,6.23],[173747,173747,5.76],[173748,173748,7.6],[173749,173749,6.47],[173750,173750,8.15],[173751,173751,7.88],[173752,173752,8.6],[173753,173753,5.28],[173754,173754,6.83],[173755,173755,6.8],[173756,173756,7.03],[173757,173757,6.6],[173758,173758,8.15],[173759,173761,6.81],[173762,173762,5.86],[173763,173763,8.47],[173764,173764,7.67],[173765,173765,6.62],[173766,173766,6.26],[173767,173767,6.83],[173768,173768,7.37],[173769,173769,6.29],[173770,173770,8.23],[173771,173771,6.19],[173772,173772,5.31],[173773,173773,6.01],[173774,173774,6.6],[173775,173775,7.81],[173776,173776,5.11],[173777,173777,6.83],[173778,173778,5.72],[173779,173779,7.47],[173780,173780,7.84],[173781,173781,5.72],[173782,173782,6.37],[173783,173783,7.91],[173784,173784,7.9],[173785,173785,6.6],[173786,173786,5.76],[173787,173787,7.16],[173788,173788,6.81],[173789,173789,7.35],[173790,173790,6.37],[194560,194814,5.5],[194815,194815,8.69],[194816,195102,11],[917504,917504,0],[917505,917511,3.66],[917512,917512,0],[917513,917517,3.06],[917518,917532,3.66],[917533,917533,0],[917534,917535,3.66],[917536,917537,3.06],[917538,917538,5.09],[917539,917540,6.12],[917541,917541,11],[917542,917542,7.53],[917543,917543,3.06],[917544,917545,3.26],[917546,917546,4.48],[917547,917547,6.6],[917548,917548,3.06],[917549,917549,4.48],[917550,917550,3.06],[917551,917551,4.08],[917552,917561,6.12],[917562,917563,3.06],[917564,917566,6.6],[917567,917567,6.12],[917568,917568,8.8],[917569,917569,7.53],[917570,917570,7.74],[917571,917572,8.15],[917573,917573,7.13],[917574,917574,6.52],[917575,917575,8.35],[917576,917576,8.15],[917577,917577,3.24],[917578,917578,6.12],[917579,917579,7.94],[917580,917580,6.52],[917581,917581,9.98],[917582,917582,8.15],[917583,917583,8.56],[917584,917584,7.34],[917585,917585,8.56],[917586,917586,7.94],[917587,917587,7.14],[917588,917588,6.72],[917589,917589,8.15],[917590,917590,6.93],[917591,917591,10.38],[917592,917593,7.34],[917594,917594,7.13],[917595,917595,3.66],[917596,917596,4.08],[917597,917597,3.66],[917598,917598,6.6],[917599,917599,5.5],[917600,917600,2.85],[917601,917601,6.31],[917602,917602,6.72],[917603,917603,6.31],[917604,917604,6.72],[917605,917605,6.31],[917606,917606,3.66],[917607,917607,6.72],[917608,917608,6.52],[917609,917609,2.84],[917610,917610,3.06],[917611,917611,6.31],[917612,917612,2.84],[917613,917613,9.97],[917614,917614,6.52],[917615,917617,6.72],[917618,917618,4.28],[917619,917619,5.91],[917620,917620,3.87],[917621,917621,6.52],[917622,917622,5.72],[917623,917623,8.95],[917624,917624,5.91],[917625,917626,5.71],[917627,917627,3.66],[917628,917628,2.45],[917629,917629,3.66],[917630,917630,6.6]] \ No newline at end of file diff --git a/node_modules/anafanafo/data/verdana-10px-bold.json b/node_modules/anafanafo/data/verdana-10px-bold.json new file mode 100644 index 0000000..e95ae04 --- /dev/null +++ b/node_modules/anafanafo/data/verdana-10px-bold.json @@ -0,0 +1 @@ +[[32,32,3.42],[33,33,4.02],[34,34,5.87],[35,35,8.67],[36,36,7.11],[37,37,12.72],[38,38,8.62],[39,39,3.32],[40,41,5.43],[42,42,7.11],[43,43,8.67],[44,44,3.61],[45,45,4.8],[46,46,3.61],[47,47,6.89],[48,57,7.11],[58,59,4.02],[60,62,8.67],[63,63,6.17],[64,64,9.64],[65,65,7.76],[66,66,7.62],[67,67,7.24],[68,68,8.3],[69,69,6.83],[70,70,6.5],[71,71,8.11],[72,72,8.37],[73,73,5.46],[74,74,5.55],[75,75,7.71],[76,76,6.37],[77,77,9.48],[78,78,8.47],[79,79,8.5],[80,80,7.33],[81,81,8.5],[82,82,7.82],[83,83,7.1],[84,84,6.82],[85,85,8.12],[86,86,7.64],[87,87,11.28],[88,88,7.64],[89,89,7.37],[90,90,6.92],[91,91,5.43],[92,92,6.89],[93,93,5.43],[94,94,8.67],[95,96,7.11],[97,97,6.68],[98,98,6.99],[99,99,5.88],[100,100,6.99],[101,101,6.64],[102,102,4.22],[103,103,6.99],[104,104,7.12],[105,105,3.42],[106,106,4.03],[107,107,6.71],[108,108,3.42],[109,109,10.58],[110,110,7.12],[111,111,6.87],[112,113,6.99],[114,114,4.97],[115,115,5.93],[116,116,4.56],[117,117,7.12],[118,118,6.5],[119,119,9.79],[120,120,6.69],[121,121,6.51],[122,122,5.97],[123,123,7.11],[124,124,5.43],[125,125,7.11],[126,126,8.67],[160,160,3.42],[161,161,4.02],[162,165,7.11],[166,166,5.43],[167,168,7.11],[169,169,9.64],[170,170,5.98],[171,171,8.5],[172,172,8.67],[173,173,0],[174,174,9.64],[175,175,7.11],[176,176,5.87],[177,177,8.67],[178,179,5.98],[180,180,7.11],[181,181,7.21],[182,182,7.11],[183,183,3.61],[184,184,7.11],[185,186,5.98],[187,187,8.5],[188,190,11.82],[191,191,6.17],[192,197,7.76],[198,198,10.94],[199,199,7.24],[200,203,6.83],[204,207,5.46],[208,208,8.3],[209,209,8.47],[210,214,8.5],[215,215,8.67],[216,216,8.5],[217,220,8.12],[221,221,7.37],[222,222,7.35],[223,223,7.13],[224,229,6.68],[230,230,10.18],[231,231,5.88],[232,235,6.64],[236,239,3.42],[240,240,6.79],[241,241,7.12],[242,246,6.87],[247,247,8.67],[248,248,6.87],[249,252,7.12],[253,253,6.51],[254,254,6.99],[256,256,7.76],[257,257,6.68],[258,258,7.76],[259,259,6.68],[260,260,7.76],[261,261,6.68],[262,262,7.24],[263,263,5.88],[264,264,7.24],[265,265,5.88],[266,266,7.24],[267,267,5.88],[268,268,7.24],[269,269,5.88],[270,270,8.3],[271,271,8.8],[272,272,8.3],[273,273,6.99],[274,274,6.83],[275,275,6.64],[276,276,6.83],[277,277,6.64],[278,278,6.83],[279,279,6.64],[280,280,6.83],[281,281,6.64],[282,282,6.83],[283,283,6.64],[284,284,8.11],[285,285,6.99],[286,286,8.11],[287,287,6.99],[288,288,8.11],[289,289,6.99],[290,290,8.11],[291,291,6.99],[292,292,8.37],[293,293,7.12],[294,294,8.37],[295,295,7.12],[296,296,5.46],[297,297,3.42],[298,298,5.46],[299,299,3.42],[300,300,5.46],[301,301,3.42],[302,302,5.46],[303,303,3.42],[304,304,5.46],[305,305,3.42],[306,306,10.07],[307,307,7.28],[308,308,5.55],[309,309,4.03],[310,310,7.71],[311,312,6.71],[313,313,6.37],[314,314,3.42],[315,315,6.37],[316,316,3.42],[317,317,6.37],[318,318,5.22],[319,319,6.37],[320,320,5.57],[321,321,6.42],[322,322,3.52],[323,323,8.47],[324,324,7.12],[325,325,8.47],[326,326,7.12],[327,327,8.47],[328,328,7.12],[329,329,8.25],[330,330,8.47],[331,331,7.12],[332,332,8.5],[333,333,6.87],[334,334,8.5],[335,335,6.87],[336,336,8.5],[337,337,6.87],[338,338,11.35],[339,339,10.68],[340,340,7.82],[341,341,4.97],[342,342,7.82],[343,343,4.97],[344,344,7.82],[345,345,4.97],[346,346,7.1],[347,347,5.93],[348,348,7.1],[349,349,5.93],[350,350,7.1],[351,351,5.93],[352,352,7.1],[353,353,5.93],[354,354,6.82],[355,355,4.56],[356,356,6.82],[357,357,4.65],[358,358,6.82],[359,359,4.56],[360,360,8.12],[361,361,7.12],[362,362,8.12],[363,363,7.12],[364,364,8.12],[365,365,7.12],[366,366,8.12],[367,367,7.12],[368,368,8.12],[369,369,7.12],[370,370,8.12],[371,371,7.12],[372,372,11.28],[373,373,9.79],[374,374,7.37],[375,375,6.51],[376,376,7.37],[377,377,6.92],[378,378,5.97],[379,379,6.92],[380,380,5.97],[381,381,6.92],[382,382,5.97],[384,384,5.56],[385,385,7.55],[386,386,6.61],[387,387,5.56],[388,388,6.61],[389,389,5.56],[390,391,7.22],[392,392,4.44],[393,393,7.22],[394,394,8.16],[395,395,6.61],[396,396,5.56],[397,397,5.19],[398,398,6.67],[399,399,8.05],[400,400,5.28],[401,401,6.11],[402,402,7.11],[403,403,7.78],[404,404,7.22],[405,405,7.82],[406,406,3.07],[407,407,3.89],[408,408,7.78],[409,409,5.56],[410,410,2.78],[411,411,4.91],[412,412,9.4],[413,413,7.22],[414,414,5.56],[415,415,7.78],[416,416,9.14],[417,417,6.87],[418,418,10.56],[419,419,7.71],[420,420,6.94],[421,421,5.56],[422,422,6.11],[423,423,5.56],[424,424,3.89],[425,425,6.54],[426,426,5.13],[427,427,3.33],[428,428,6.67],[429,429,3.33],[430,430,6.67],[431,431,8.46],[432,432,7.42],[433,433,8.01],[434,434,6.52],[435,435,7.91],[436,436,5],[437,437,6.67],[438,438,4.44],[439,440,5.82],[441,441,4.58],[442,442,4.53],[443,443,5],[444,444,5.04],[445,445,3.85],[446,446,3.33],[447,447,5.96],[448,448,2.2],[449,449,3.24],[450,450,2.79],[451,451,3.33],[452,452,13.89],[453,453,11.66],[454,454,10],[455,455,11.67],[456,456,10],[457,457,6.11],[458,458,12.22],[459,459,10.55],[460,460,8.89],[461,461,7.22],[462,462,5],[463,463,3.89],[464,464,2.78],[465,465,7.78],[466,466,5],[467,467,7.22],[468,468,5.56],[469,469,7.22],[470,470,5.56],[471,471,8.12],[472,472,7.12],[473,473,7.22],[474,474,5.56],[475,475,8.12],[476,476,7.12],[477,477,4.44],[478,478,7.22],[479,479,5],[480,480,7.22],[481,481,5],[482,482,10],[483,483,7.22],[484,484,7.78],[485,485,5],[486,486,7.78],[487,487,5],[488,488,7.78],[489,489,5.56],[490,490,7.78],[491,491,5],[492,492,7.78],[493,493,5],[494,494,5.82],[495,495,4.58],[496,496,3.33],[497,497,13.89],[498,498,11.66],[499,499,10],[500,500,8.11],[501,501,6.99],[502,502,9.7],[503,503,6.46],[504,504,8.47],[505,505,7.12],[506,506,7.76],[507,507,6.68],[508,508,10.94],[509,509,10.18],[510,510,8.5],[511,511,6.87],[512,512,7.22],[513,513,5],[514,514,7.22],[515,515,5],[516,516,6.67],[517,517,4.44],[518,518,6.67],[519,519,4.44],[520,520,3.89],[521,521,2.78],[522,522,3.89],[523,523,2.78],[524,524,7.78],[525,525,5],[526,526,7.78],[527,527,5],[528,528,7.22],[529,529,4.44],[530,530,7.22],[531,531,4.44],[532,532,7.22],[533,533,5.56],[534,534,7.22],[535,535,5.56],[536,536,7.1],[537,537,5.93],[538,538,6.82],[539,539,4.56],[540,540,5.54],[541,541,3.74],[542,542,7.78],[543,543,5.56],[544,544,7.34],[545,545,5.56],[546,546,6.76],[547,547,5.01],[548,548,6.67],[549,549,4.44],[550,550,7.22],[551,551,5],[552,552,6.67],[553,553,4.44],[554,554,7.78],[555,555,5],[556,556,7.78],[557,557,5],[558,558,7.78],[559,559,5],[560,560,7.78],[561,561,5],[562,562,7.22],[563,563,5],[564,564,2.78],[565,565,5.56],[566,566,3.61],[567,567,3.33],[568,569,8.23],[570,571,7.22],[572,572,5],[573,574,6.67],[575,575,3.89],[576,576,4.44],[577,577,5.32],[578,578,4.66],[579,579,6.67],[580,580,7.22],[581,581,7.17],[582,582,6.67],[583,583,4.44],[584,584,5],[585,585,3.33],[586,586,8.25],[587,587,5.56],[588,588,7.22],[589,589,4.44],[590,590,7.22],[880,880,4.25],[881,881,3.35],[882,882,6.3],[883,883,5.3],[884,885,3.33],[886,886,7.3],[887,887,5.93],[888,889,10],[890,890,3.33],[891,893,4.44],[894,894,4.02],[895,895,3.33],[896,899,10],[900,901,7.11],[902,902,7.97],[903,903,4.02],[904,904,8.48],[905,905,10.01],[906,906,7.05],[907,907,10],[908,908,9.68],[909,909,10],[910,910,9.39],[911,911,9.7],[912,912,3.42],[913,913,7.76],[914,914,7.62],[915,915,6.37],[916,916,8.06],[917,917,6.83],[918,918,6.92],[919,919,8.37],[920,920,8.5],[921,921,5.46],[922,922,7.71],[923,923,7.76],[924,924,9.48],[925,925,8.47],[926,926,7.15],[927,927,8.5],[928,928,8.37],[929,929,7.33],[930,930,10],[931,931,6.84],[932,932,6.82],[933,933,7.37],[934,934,9.52],[935,935,7.64],[936,936,9.76],[937,937,8.44],[938,938,5.46],[939,939,7.37],[940,940,6.99],[941,941,5.85],[942,942,7.12],[943,943,3.42],[944,944,7.06],[945,945,6.99],[946,946,7.16],[947,947,6.51],[948,948,6.87],[949,949,5.85],[950,950,5.49],[951,951,7.12],[952,952,7],[953,953,3.42],[954,954,6.71],[955,955,6.51],[956,956,7.21],[957,957,6.5],[958,958,5.81],[959,959,6.87],[960,960,7.2],[961,961,6.99],[962,962,5.62],[963,963,7.26],[964,964,5.35],[965,965,7.06],[966,966,9.15],[967,967,6.35],[968,968,9.41],[969,969,8.94],[970,970,3.42],[971,971,7.06],[972,972,6.87],[973,973,7.06],[974,974,8.94],[975,975,5.58],[976,976,5.27],[977,977,5.99],[978,978,7.22],[979,979,9.23],[980,980,7.22],[981,981,6.24],[982,982,7.31],[983,983,5.8],[984,984,7.78],[985,985,5],[986,986,7.22],[987,987,4.22],[988,988,6.11],[989,989,5.46],[990,990,5.95],[991,991,4.61],[992,992,7.51],[993,993,5.54],[994,994,8.7],[995,995,8.33],[996,996,7.25],[997,997,5.86],[998,998,7.4],[999,999,4.44],[1000,1000,6.25],[1001,1001,5.86],[1002,1002,6.82],[1003,1003,6.05],[1004,1004,7.25],[1005,1005,5.16],[1006,1006,5.4],[1007,1007,4.5],[1008,1008,5.8],[1009,1009,5],[1010,1010,4.44],[1011,1011,3.33],[1012,1012,7.78],[1013,1014,4.21],[1015,1015,6.11],[1016,1016,5.56],[1017,1017,7.22],[1018,1018,9.44],[1019,1019,6.81],[1020,1020,5.35],[1021,1022,7.22],[1024,1025,6.83],[1026,1026,9.11],[1027,1027,6.37],[1028,1028,7.42],[1029,1029,7.1],[1030,1031,5.46],[1032,1032,5.55],[1033,1033,12.22],[1034,1034,12.14],[1035,1035,9.36],[1036,1036,7.71],[1037,1037,8.46],[1038,1038,7.37],[1039,1039,8.37],[1040,1040,7.76],[1041,1041,7.58],[1042,1042,7.62],[1043,1043,6.37],[1044,1044,8.41],[1045,1045,6.83],[1046,1046,11.15],[1047,1047,7.07],[1048,1049,8.46],[1050,1050,7.71],[1051,1051,8.45],[1052,1052,9.48],[1053,1053,8.37],[1054,1054,8.5],[1055,1055,8.37],[1056,1056,7.33],[1057,1057,7.24],[1058,1058,6.82],[1059,1059,7.37],[1060,1060,9.52],[1061,1061,7.64],[1062,1062,8.5],[1063,1063,7.87],[1064,1064,11.64],[1065,1065,11.77],[1066,1066,9.07],[1067,1067,10.63],[1068,1068,7.58],[1069,1069,7.42],[1070,1070,11.95],[1071,1071,7.95],[1072,1072,6.68],[1073,1073,6.97],[1074,1074,6.77],[1075,1075,5.31],[1076,1076,6.91],[1077,1077,6.64],[1078,1078,9.99],[1079,1079,5.88],[1080,1081,7.2],[1082,1082,6.71],[1083,1083,7.09],[1084,1084,8.3],[1085,1085,7.2],[1086,1086,6.87],[1087,1087,7.2],[1088,1088,6.99],[1089,1089,5.98],[1090,1090,5.35],[1091,1091,6.51],[1092,1092,9.66],[1093,1093,6.69],[1094,1094,7.29],[1095,1095,6.84],[1096,1096,10.02],[1097,1097,10.13],[1098,1098,7.43],[1099,1099,9.37],[1100,1100,6.49],[1101,1101,6.06],[1102,1102,9.94],[1103,1103,6.82],[1104,1105,6.64],[1106,1106,7.12],[1107,1107,5.31],[1108,1108,6.05],[1109,1109,5.93],[1110,1111,3.42],[1112,1112,4.03],[1113,1113,10.12],[1114,1114,10.2],[1115,1115,7.12],[1116,1116,6.71],[1117,1117,7.2],[1118,1118,6.51],[1119,1119,7.2],[1120,1120,12.5],[1121,1121,6.19],[1122,1122,7.64],[1123,1123,6],[1124,1124,10.07],[1125,1125,6.64],[1126,1126,7.22],[1127,1127,5],[1128,1128,10.98],[1129,1129,7.73],[1130,1130,9.89],[1131,1131,7.25],[1132,1132,13.6],[1133,1133,9.99],[1134,1134,5.28],[1135,1135,4.02],[1136,1136,7.8],[1137,1137,6.88],[1138,1138,7.78],[1139,1139,5],[1140,1140,8.15],[1141,1141,6.05],[1142,1142,8.15],[1143,1143,6.05],[1144,1144,13.52],[1145,1145,12.28],[1146,1146,8.24],[1147,1147,5.85],[1148,1148,10.46],[1149,1149,8.98],[1150,1150,12.5],[1151,1151,6.19],[1152,1152,7.22],[1153,1153,4.44],[1154,1154,3.38],[1155,1158,0],[1159,1159,6.36],[1160,1161,0],[1162,1162,7.78],[1163,1163,5.76],[1164,1164,6.61],[1165,1165,5.29],[1166,1166,6.11],[1167,1167,5.56],[1168,1168,6.37],[1169,1169,5.31],[1170,1170,6.37],[1171,1171,5.31],[1172,1172,7.22],[1173,1173,5.77],[1174,1174,11.15],[1175,1175,9.99],[1176,1176,5.28],[1177,1177,4.02],[1178,1178,7.71],[1179,1179,6.71],[1180,1180,7.71],[1181,1181,6.71],[1182,1182,7.25],[1183,1183,5.76],[1184,1184,8.29],[1185,1185,6.3],[1186,1186,8.37],[1187,1187,7.2],[1188,1188,9.21],[1189,1189,6.67],[1190,1190,11.15],[1191,1191,8.44],[1192,1192,8.71],[1193,1193,6.87],[1194,1194,7.22],[1195,1195,4.44],[1196,1196,6.67],[1197,1197,4.91],[1198,1198,7.37],[1199,1199,6.51],[1200,1200,7.37],[1201,1201,6.51],[1202,1202,7.64],[1203,1203,6.69],[1204,1204,8.67],[1205,1205,6.09],[1206,1206,7.34],[1207,1207,5.64],[1208,1208,7.87],[1209,1209,6.84],[1210,1210,7.87],[1211,1211,7.12],[1212,1212,10.15],[1213,1213,7.88],[1214,1214,10.15],[1215,1215,7.88],[1216,1216,3.89],[1217,1217,9.89],[1218,1218,7.25],[1219,1219,7.37],[1220,1220,5.93],[1221,1221,7.45],[1222,1222,5.61],[1223,1223,7.78],[1224,1224,5.76],[1225,1225,7.78],[1226,1226,5.76],[1227,1227,7.34],[1228,1228,5.64],[1229,1229,9.44],[1230,1230,6.81],[1231,1231,2.78],[1232,1232,7.22],[1233,1233,5],[1234,1234,7.22],[1235,1235,5],[1236,1236,10],[1237,1237,7.22],[1238,1238,6.67],[1239,1239,4.44],[1240,1240,8.05],[1241,1241,6.64],[1242,1242,7.39],[1243,1243,4.44],[1244,1244,9.89],[1245,1245,7.25],[1246,1246,5.28],[1247,1247,4.02],[1248,1248,5.28],[1249,1249,4.58],[1250,1250,7.78],[1251,1251,5.76],[1252,1252,7.78],[1253,1253,5.76],[1254,1254,7.78],[1255,1255,5],[1256,1256,8.5],[1257,1257,6.87],[1258,1258,7.78],[1259,1259,5],[1260,1260,6.78],[1261,1261,4.32],[1262,1262,7.34],[1263,1263,5],[1264,1264,7.34],[1265,1265,5],[1266,1266,7.34],[1267,1267,5],[1268,1268,7.34],[1269,1269,5.64],[1270,1270,6.36],[1271,1271,4.54],[1272,1272,9.82],[1273,1273,7.81],[1274,1274,6.36],[1275,1275,4.54],[1276,1276,7.22],[1277,1277,5],[1278,1278,7.22],[1280,1280,6.61],[1281,1281,5.56],[1282,1282,8.52],[1283,1283,7.81],[1284,1284,7.97],[1285,1285,6.78],[1286,1286,5.95],[1287,1287,4.6],[1288,1288,9.36],[1289,1289,7.79],[1290,1290,9.7],[1291,1291,7.93],[1292,1292,7.78],[1293,1293,5.91],[1294,1294,7.16],[1295,1295,6.18],[1296,1296,5.28],[1297,1297,4.02],[1298,1298,7.45],[1299,1299,5.61],[1300,1300,7.62],[1301,1301,6.93],[1302,1302,8.3],[1303,1303,6.81],[1304,1304,10.31],[1305,1305,7.37],[1306,1306,8.5],[1307,1307,6.99],[1308,1308,11.28],[1309,1309,9.79],[1310,1310,6.85],[1311,1311,6.31],[1312,1312,9.81],[1313,1313,7.96],[1314,1314,11.11],[1315,1315,9.08],[1316,1316,7.08],[1317,1317,6.18],[1318,1318,6.89],[1319,1319,6.31],[1320,1320,4.44],[1321,1321,4.03],[1322,1322,8.91],[1323,1323,8.13],[1324,1324,5.62],[1325,1325,5.24],[1326,1326,6.83],[7424,7424,5.19],[7425,7425,7.03],[7426,7426,7.22],[7427,7427,5.4],[7428,7428,5.23],[7429,7430,5.77],[7431,7431,4.79],[7432,7432,4.02],[7433,7433,2.78],[7434,7434,3.98],[7435,7435,6.13],[7436,7436,4.84],[7437,7437,6.81],[7438,7438,5.76],[7439,7439,5],[7440,7440,5.23],[7441,7443,5.56],[7444,7444,7.22],[7445,7445,5.01],[7446,7447,5],[7448,7448,5.29],[7449,7450,5.41],[7451,7451,4.91],[7452,7452,5.46],[7453,7453,5.39],[7454,7454,7.13],[7455,7455,5.39],[7456,7456,5],[7457,7457,7.22],[7458,7458,4.44],[7459,7459,4.2],[7460,7460,4.63],[7461,7461,5.44],[7462,7462,4.54],[7463,7463,4.87],[7464,7464,5.76],[7465,7465,5.29],[7466,7466,5.99],[7467,7467,5.61],[7468,7468,4.27],[7469,7469,5.97],[7470,7471,3.96],[7472,7472,4.3],[7473,7474,3.9],[7475,7475,4.65],[7476,7476,4.72],[7477,7477,2.37],[7478,7478,3.19],[7479,7479,4.77],[7480,7480,3.97],[7481,7481,5.73],[7482,7482,4.4],[7483,7483,4.79],[7484,7484,4.51],[7485,7485,3.93],[7486,7486,3.63],[7487,7487,4.44],[7488,7488,3.85],[7489,7489,4.38],[7490,7490,5.95],[7491,7492,2.92],[7493,7493,3.37],[7494,7494,4.19],[7495,7495,3.24],[7496,7496,3.26],[7497,7498,2.59],[7499,7500,2.52],[7501,7501,2.96],[7502,7502,1.77],[7503,7503,3.36],[7504,7504,4.92],[7505,7505,3.07],[7506,7506,2.87],[7507,7507,2.59],[7508,7509,2.86],[7510,7510,3.26],[7511,7511,2.12],[7512,7512,3.25],[7513,7513,3.11],[7514,7514,4.92],[7515,7515,2.99],[7516,7516,3.22],[7517,7517,2.92],[7518,7518,2.81],[7519,7519,2.94],[7520,7520,3.57],[7521,7521,2.84],[7522,7522,1.77],[7523,7523,2.54],[7524,7524,3.25],[7525,7525,2.99],[7526,7526,2.92],[7527,7527,2.81],[7528,7528,2.87],[7529,7529,3.57],[7530,7530,2.84],[7531,7531,7.51],[7532,7533,5.56],[7534,7534,3.33],[7535,7535,8.33],[7536,7537,5.56],[7538,7538,4.44],[7539,7539,4.01],[7540,7540,3.89],[7541,7541,3.33],[7542,7542,4.44],[7543,7543,5],[7544,7544,3.33],[7545,7545,5.19],[7546,7546,8.45],[7547,7547,2.88],[7548,7548,3.1],[7549,7549,5.56],[7550,7550,5.46],[7680,7680,7.22],[7681,7681,5],[7682,7682,6.67],[7683,7683,5.56],[7684,7684,7.62],[7685,7685,6.99],[7686,7686,6.67],[7687,7687,5.56],[7688,7688,7.24],[7689,7689,5.88],[7690,7690,7.22],[7691,7691,5.56],[7692,7692,8.3],[7693,7693,6.99],[7694,7694,7.22],[7695,7695,5.56],[7696,7696,7.22],[7697,7697,5.56],[7698,7698,7.22],[7699,7699,5.56],[7700,7700,6.83],[7701,7701,6.64],[7702,7702,6.83],[7703,7703,6.64],[7704,7704,6.67],[7705,7705,4.44],[7706,7706,6.67],[7707,7707,4.44],[7708,7708,6.67],[7709,7709,4.44],[7710,7710,6.11],[7711,7711,3.33],[7712,7712,7.78],[7713,7713,5],[7714,7714,7.78],[7715,7715,5.56],[7716,7716,8.37],[7717,7717,7.12],[7718,7718,7.78],[7719,7719,5.56],[7720,7720,7.78],[7721,7721,5.56],[7722,7722,7.78],[7723,7723,5.56],[7724,7724,3.89],[7725,7725,2.78],[7726,7726,5.46],[7727,7727,3.42],[7728,7728,7.71],[7729,7729,6.71],[7730,7730,7.71],[7731,7731,6.71],[7732,7732,7.78],[7733,7733,5.56],[7734,7734,6.37],[7735,7735,3.42],[7736,7736,6.67],[7737,7737,2.78],[7738,7738,6.67],[7739,7739,2.78],[7740,7740,6.67],[7741,7741,2.78],[7742,7742,9.48],[7743,7743,10.58],[7744,7744,9.44],[7745,7745,8.33],[7746,7746,9.48],[7747,7747,10.58],[7748,7748,7.22],[7749,7749,5.56],[7750,7750,8.47],[7751,7751,7.12],[7752,7752,7.22],[7753,7753,5.56],[7754,7754,7.22],[7755,7755,5.56],[7756,7756,8.5],[7757,7757,6.87],[7758,7758,7.78],[7759,7759,5],[7760,7760,8.5],[7761,7761,6.87],[7762,7762,8.5],[7763,7763,6.87],[7764,7764,7.33],[7765,7765,6.99],[7766,7766,6.11],[7767,7767,5.56],[7768,7768,7.22],[7769,7769,4.44],[7770,7770,7.82],[7771,7771,4.97],[7772,7772,7.22],[7773,7773,4.44],[7774,7774,7.22],[7775,7775,4.44],[7776,7776,5.56],[7777,7777,3.89],[7778,7778,7.1],[7779,7779,5.93],[7780,7780,5.56],[7781,7781,3.89],[7782,7782,5.56],[7783,7783,3.89],[7784,7784,5.56],[7785,7785,3.89],[7786,7786,6.67],[7787,7787,3.33],[7788,7788,6.82],[7789,7789,4.56],[7790,7790,6.67],[7791,7791,3.33],[7792,7792,6.67],[7793,7793,3.33],[7794,7794,7.22],[7795,7795,5.56],[7796,7796,7.22],[7797,7797,5.56],[7798,7798,7.22],[7799,7799,5.56],[7800,7800,8.12],[7801,7801,7.12],[7802,7802,7.22],[7803,7803,5.56],[7804,7804,7.64],[7805,7805,6.5],[7806,7806,7.64],[7807,7807,6.5],[7808,7808,11.28],[7809,7809,9.79],[7810,7810,11.28],[7811,7811,9.79],[7812,7812,11.28],[7813,7813,9.79],[7814,7814,10],[7815,7815,7.22],[7816,7816,11.28],[7817,7817,9.79],[7818,7818,7.22],[7819,7819,5],[7820,7820,7.22],[7821,7821,5],[7822,7822,7.22],[7823,7823,5],[7824,7824,6.67],[7825,7825,4.44],[7826,7826,6.92],[7827,7827,5.97],[7828,7828,6.67],[7829,7829,4.44],[7830,7830,5.56],[7831,7831,3.33],[7832,7832,7.22],[7833,7834,5],[7835,7835,2.78],[7836,7836,4.23],[7837,7837,4.22],[7838,7838,7.48],[7839,7839,6.02],[7840,7840,7.76],[7841,7841,6.68],[7842,7842,7.76],[7843,7843,6.68],[7844,7844,7.76],[7845,7845,6.68],[7846,7846,7.76],[7847,7847,6.68],[7848,7848,7.76],[7849,7849,6.68],[7850,7850,7.76],[7851,7851,6.68],[7852,7852,7.76],[7853,7853,6.68],[7854,7854,7.76],[7855,7855,6.68],[7856,7856,7.76],[7857,7857,6.68],[7858,7858,7.76],[7859,7859,6.68],[7860,7860,7.76],[7861,7861,6.68],[7862,7862,7.76],[7863,7863,6.68],[7864,7864,6.83],[7865,7865,6.64],[7866,7866,6.83],[7867,7867,6.64],[7868,7868,6.83],[7869,7869,6.64],[7870,7870,6.83],[7871,7871,6.64],[7872,7872,6.83],[7873,7873,6.64],[7874,7874,6.83],[7875,7875,6.64],[7876,7876,6.83],[7877,7877,6.64],[7878,7878,6.83],[7879,7879,6.64],[7880,7880,5.46],[7881,7881,3.42],[7882,7882,5.46],[7883,7883,3.42],[7884,7884,8.5],[7885,7885,6.87],[7886,7886,8.5],[7887,7887,6.87],[7888,7888,8.5],[7889,7889,6.87],[7890,7890,8.5],[7891,7891,6.87],[7892,7892,8.5],[7893,7893,6.87],[7894,7894,8.5],[7895,7895,6.87],[7896,7896,8.5],[7897,7897,6.87],[7898,7898,9.14],[7899,7899,6.87],[7900,7900,9.14],[7901,7901,6.87],[7902,7902,9.14],[7903,7903,6.87],[7904,7904,9.14],[7905,7905,6.87],[7906,7906,9.14],[7907,7907,6.87],[7908,7908,8.12],[7909,7909,7.12],[7910,7910,8.12],[7911,7911,7.12],[7912,7912,8.46],[7913,7913,7.42],[7914,7914,8.46],[7915,7915,7.42],[7916,7916,8.46],[7917,7917,7.42],[7918,7918,8.46],[7919,7919,7.42],[7920,7920,8.46],[7921,7921,7.42],[7922,7922,7.37],[7923,7923,6.51],[7924,7924,7.37],[7925,7925,6.51],[7926,7926,7.37],[7927,7927,6.51],[7928,7928,7.37],[7929,7929,6.51],[7930,7930,9.36],[7931,7931,5.89],[7932,7932,5.06],[7933,7933,4.45],[7934,7934,4.58],[7936,7943,5.58],[7944,7945,7.22],[7946,7947,8],[7948,7949,7.47],[7950,7951,7.22],[7952,7957,4.27],[7958,7959,10],[7960,7961,8.01],[7962,7965,9.89],[7966,7967,10],[7968,7975,5.68],[7976,7977,9.12],[7978,7983,11],[7984,7991,3.1],[7992,7993,5.23],[7994,7999,7.11],[8000,8005,5],[8006,8007,10],[8008,8009,8.75],[8010,8011,10.61],[8012,8013,9.88],[8014,8015,10],[8016,8023,5.19],[8024,8024,10],[8025,8025,8.66],[8026,8026,10],[8027,8027,10.44],[8028,8028,10],[8029,8029,10.44],[8030,8030,10],[8031,8031,10.44],[8032,8039,7.31],[8040,8041,8.86],[8042,8043,10.74],[8044,8047,10.11],[8048,8049,6.99],[8050,8051,5.85],[8052,8053,7.12],[8054,8055,3.42],[8056,8057,6.87],[8058,8059,7.06],[8060,8061,8.94],[8062,8063,10],[8064,8071,5.58],[8072,8073,7.22],[8074,8075,8],[8076,8077,7.47],[8078,8079,7.22],[8080,8087,5.68],[8088,8089,9.12],[8090,8095,11],[8096,8103,7.31],[8104,8105,8.86],[8106,8107,10.74],[8108,8111,10.11],[8112,8116,5.58],[8117,8117,10],[8118,8119,5.58],[8120,8121,7.22],[8122,8122,7.76],[8123,8123,7.97],[8124,8124,7.22],[8125,8125,3.33],[8126,8126,3.42],[8127,8129,3.33],[8130,8132,5.68],[8133,8133,10],[8134,8135,5.68],[8136,8136,6.83],[8137,8137,8.48],[8138,8138,8.37],[8139,8139,10.01],[8140,8140,7.78],[8141,8143,3.33],[8144,8145,3.1],[8146,8147,3.42],[8148,8149,10],[8150,8151,3.1],[8152,8153,3.89],[8154,8154,5.46],[8155,8155,7.05],[8156,8156,10],[8157,8159,3.33],[8160,8161,5.19],[8162,8163,7.06],[8164,8165,5.35],[8166,8167,5.19],[8168,8169,7.22],[8170,8170,7.37],[8171,8171,9.39],[8172,8172,7.45],[8173,8175,7.11],[8176,8177,10],[8178,8180,7.31],[8181,8181,10],[8182,8183,7.31],[8184,8184,8.5],[8185,8185,9.68],[8186,8186,8.44],[8187,8187,9.7],[8188,8188,8.01],[8189,8189,7.11],[8190,8190,3.33],[8192,8192,5],[8193,8193,10],[8194,8194,5],[8195,8195,10],[8196,8196,3.33],[8197,8197,2.5],[8198,8198,1.67],[8199,8199,7.11],[8200,8200,3.61],[8201,8201,2],[8202,8202,0.63],[8203,8207,0],[8208,8209,6.39],[8210,8211,7.11],[8212,8213,10],[8214,8214,3.24],[8215,8215,7.11],[8216,8219,3.32],[8220,8223,5.87],[8224,8226,7.11],[8227,8227,5.3],[8228,8228,3.33],[8229,8229,6.67],[8230,8230,10.49],[8231,8231,2.47],[8232,8238,0],[8239,8239,1.71],[8240,8240,17.77],[8241,8241,15.42],[8242,8242,3.53],[8243,8244,6.16],[8245,8245,3.5],[8246,8246,5.66],[8247,8247,7.83],[8248,8248,3.53],[8249,8250,5.43],[8251,8251,7.23],[8252,8252,7.03],[8253,8253,4.97],[8254,8254,7.11],[8255,8257,5],[8258,8258,8.95],[8259,8259,3.33],[8260,8260,4.39],[8261,8262,3.74],[8263,8263,9.57],[8264,8264,7.89],[8265,8265,7.86],[8266,8269,6.6],[8270,8270,4.66],[8271,8271,2.47],[8272,8272,5],[8273,8273,4.66],[8274,8274,5.75],[8275,8275,10],[8276,8276,5],[8277,8277,6.97],[8278,8278,5.93],[8279,8279,10],[8280,8281,5.93],[8282,8282,10],[8283,8283,5.93],[8284,8284,6.98],[8285,8285,10],[8286,8286,3.33],[8287,8287,2.22],[8288,8302,0],[8304,8304,4.82],[8305,8305,3.01],[8306,8307,10],[8308,8309,5.98],[8310,8310,4.82],[8311,8312,5.98],[8313,8316,4.82],[8317,8318,2.41],[8319,8319,5.98],[8320,8332,4.82],[8333,8334,2.41],[8335,8335,10],[8336,8336,2.92],[8337,8337,2.59],[8338,8338,2.87],[8339,8339,2.86],[8340,8340,2.59],[8341,8350,10],[8352,8352,7.11],[8353,8354,7.24],[8355,8356,7.11],[8357,8357,10.58],[8358,8358,8.47],[8359,8359,13.43],[8360,8360,13.4],[8361,8361,11.28],[8362,8362,9.15],[8363,8363,6.99],[8364,8364,7.11],[8365,8365,7.71],[8366,8366,6.82],[8367,8367,11.25],[8368,8368,6.71],[8369,8369,7.33],[8370,8370,8.11],[8371,8371,7.76],[8372,8372,7.1],[8373,8373,7.24],[8374,8374,6.77],[8375,8375,9.39],[8376,8376,5.65],[8377,8377,6],[8378,8378,5.56],[8379,8379,9.84],[8380,8381,5.65],[8382,8382,7.53],[8383,8383,6.59],[8384,8398,10],[8400,8402,0],[8403,8403,6],[8404,8405,7],[8406,8408,0],[8409,8410,6],[8411,8413,0],[8414,8414,10],[8415,8415,8.65],[8416,8416,9],[8417,8417,0],[8418,8418,10],[8419,8432,0],[8433,8446,10],[8448,8449,8.25],[8450,8450,6.02],[8451,8451,10.03],[8452,8452,6.4],[8453,8453,12.72],[8454,8454,8.25],[8455,8455,6.99],[8456,8456,6.35],[8457,8457,8.81],[8458,8458,10],[8459,8459,9.06],[8460,8460,8.43],[8461,8461,6.02],[8462,8462,5.76],[8463,8463,6.46],[8464,8464,6.88],[8465,8465,7.9],[8466,8466,7.08],[8467,8467,4.14],[8468,8468,7.78],[8469,8469,6.02],[8470,8470,12.94],[8471,8471,8.4],[8472,8472,8.5],[8473,8474,6.02],[8475,8475,9.27],[8476,8476,8.84],[8477,8477,6.02],[8478,8478,6.83],[8479,8479,6.67],[8480,8480,13.4],[8481,8481,14.57],[8482,8482,9.64],[8483,8483,7.22],[8484,8484,6.02],[8485,8485,5.42],[8486,8486,8.44],[8487,8487,8.43],[8488,8488,7.55],[8489,8489,3.92],[8490,8490,7.71],[8491,8491,7.76],[8492,8492,9.27],[8493,8493,7.73],[8494,8494,7.48],[8495,8495,3.85],[8496,8496,6.15],[8497,8497,6.88],[8498,8498,5.74],[8499,8499,11.15],[8500,8500,4.06],[8501,8501,6.55],[8502,8502,6.04],[8503,8503,4.65],[8504,8504,5.62],[8505,8505,6.6],[8506,8506,9.21],[8507,8507,17.49],[8508,8508,8.04],[8509,8509,6.46],[8510,8510,4.97],[8511,8511,7.68],[8512,8512,9.76],[8513,8513,7.46],[8514,8515,5.81],[8516,8516,6.87],[8517,8517,8.08],[8518,8518,6.94],[8519,8519,6.12],[8520,8520,4.11],[8521,8521,4.23],[8522,8522,6.76],[8523,8523,7.45],[8524,8524,8.1],[8525,8525,9.18],[8526,8526,4.79],[8528,8530,10],[8531,8532,7.5],[8533,8538,9.5],[8539,8542,11.82],[8543,8543,9.5],[8544,8544,3.32],[8545,8545,6.26],[8546,8546,9.22],[8547,8547,9.75],[8548,8548,6.99],[8549,8549,9.78],[8550,8550,12.73],[8551,8551,15.68],[8552,8552,9.32],[8553,8553,6.67],[8554,8554,9.35],[8555,8555,12.29],[8556,8556,5.81],[8557,8557,7.12],[8558,8558,7.93],[8559,8559,9.08],[8560,8560,3.25],[8561,8561,6.14],[8562,8562,9.04],[8563,8563,8.58],[8564,8564,5.93],[8565,8565,8.57],[8566,8566,11.46],[8567,8567,14.36],[8568,8568,8.4],[8569,8569,5.91],[8570,8570,8.44],[8571,8571,11.33],[8572,8572,3.25],[8573,8573,5.32],[8574,8574,6.63],[8575,8575,9.7],[8576,8576,10.82],[8577,8577,7.93],[8578,8578,12.61],[8579,8579,7.12],[8580,8580,4.44],[8581,8581,6.51],[8582,8582,5.64],[8583,8590,10],[8592,8592,10],[8593,8593,5],[8594,8594,10],[8595,8595,5],[8596,8596,10],[8597,8597,5],[8598,8598,9.16],[8599,8599,10],[8600,8600,9.16],[8601,8603,10],[8604,8615,6.02],[8616,8616,5],[8617,8618,10],[8619,8621,6.02],[8622,8622,10],[8623,8623,6.02],[8624,8626,8.65],[8627,8627,10],[8628,8628,8.65],[8629,8629,10],[8630,8631,8.65],[8632,8633,10],[8634,8635,6.02],[8636,8636,8.65],[8637,8639,6.02],[8640,8640,8.65],[8641,8643,6.02],[8644,8646,10],[8647,8650,6.02],[8651,8652,10],[8653,8653,8.8],[8654,8654,6.02],[8655,8655,8.69],[8656,8656,10],[8657,8657,8.65],[8658,8658,10],[8659,8659,8.65],[8660,8660,10],[8661,8669,6.02],[8670,8671,7.23],[8672,8672,10],[8673,8673,7.23],[8674,8674,10],[8675,8675,7.23],[8676,8678,10],[8679,8679,11.81],[8680,8681,10],[8682,8682,11.81],[8683,8687,6.02],[8688,8688,8.65],[8689,8692,6.02],[8693,8693,10],[8694,8702,6.02],[8704,8704,6.3],[8705,8705,4.69],[8706,8706,7.11],[8707,8707,5.26],[8708,8708,5.35],[8709,8709,7.17],[8710,8710,8.06],[8711,8711,7.33],[8712,8712,5.76],[8713,8713,6.12],[8714,8714,5.09],[8715,8715,5.76],[8716,8716,5.89],[8717,8717,5.09],[8718,8718,5.22],[8719,8719,8.69],[8720,8720,7.95],[8721,8721,6.98],[8722,8722,8.67],[8723,8723,7.95],[8724,8724,5.99],[8725,8725,4.39],[8726,8726,8.04],[8727,8727,5.23],[8728,8728,3.55],[8729,8729,3.61],[8730,8730,8.67],[8731,8731,7.49],[8732,8732,7.24],[8733,8733,5.19],[8734,8734,10.59],[8735,8735,9.79],[8736,8736,5.98],[8737,8737,6.01],[8738,8738,6.05],[8739,8739,2.5],[8740,8740,4.73],[8741,8741,3.46],[8742,8742,5.25],[8743,8744,5.94],[8745,8745,7.19],[8746,8746,5.31],[8747,8747,5.38],[8748,8748,9.15],[8749,8749,11.24],[8750,8750,6.78],[8751,8751,9.24],[8752,8752,11.66],[8753,8753,5.98],[8754,8754,6.28],[8755,8755,5.97],[8756,8756,6.04],[8757,8757,5.97],[8758,8758,3.36],[8759,8759,5.76],[8760,8760,5.63],[8761,8761,5.76],[8762,8762,5.8],[8763,8763,5.6],[8764,8765,5.5],[8766,8766,5.43],[8767,8767,5.83],[8768,8768,3.9],[8769,8769,5.74],[8770,8770,5.8],[8771,8771,5.84],[8772,8772,6.71],[8773,8773,6.96],[8774,8774,6.29],[8775,8775,6.11],[8776,8776,8.67],[8777,8777,5.49],[8778,8778,6.04],[8779,8779,6.71],[8780,8780,5.43],[8781,8781,6.03],[8782,8782,5.97],[8783,8783,5.93],[8784,8784,5.6],[8785,8785,6.38],[8786,8787,6.32],[8788,8789,7.64],[8790,8790,5.79],[8791,8791,5.96],[8792,8792,5.89],[8793,8793,6.08],[8794,8794,6.19],[8795,8795,6.46],[8796,8796,6.36],[8797,8797,5.63],[8798,8798,5.75],[8799,8799,5.9],[8800,8801,8.67],[8802,8802,5.7],[8803,8803,5.93],[8804,8805,8.67],[8806,8806,5.75],[8807,8807,5.64],[8808,8808,6.22],[8809,8809,5.89],[8810,8810,7.33],[8811,8811,7.01],[8812,8812,3.58],[8813,8813,5.53],[8814,8815,5.7],[8816,8817,5.49],[8818,8818,5.64],[8819,8819,5.67],[8820,8820,5.83],[8821,8821,5.81],[8822,8823,6.05],[8824,8824,5.61],[8825,8825,5.77],[8826,8826,5.67],[8827,8827,5.78],[8828,8828,5.96],[8829,8829,5.78],[8830,8830,5.85],[8831,8831,5.82],[8832,8832,6.07],[8833,8833,5.79],[8834,8835,6.32],[8836,8836,6.44],[8837,8837,6.31],[8838,8839,6.63],[8840,8840,6.67],[8841,8841,6.49],[8842,8843,5.62],[8844,8845,5.82],[8846,8846,6.09],[8847,8848,6.54],[8849,8850,6.51],[8851,8852,6.11],[8853,8853,7.24],[8854,8854,7.45],[8855,8855,7.11],[8856,8856,7.22],[8857,8857,7.56],[8858,8858,7.35],[8859,8859,7.18],[8860,8860,7.61],[8861,8861,7.56],[8862,8862,7.84],[8863,8863,7.6],[8864,8864,7.33],[8865,8865,7.16],[8866,8869,7.5],[8870,8870,3.3],[8871,8871,3.33],[8872,8872,6.24],[8873,8873,7.29],[8874,8874,6.23],[8875,8875,7.55],[8876,8876,7.76],[8877,8877,7.78],[8878,8878,8.74],[8879,8879,8.36],[8880,8881,6.32],[8882,8883,7.41],[8884,8885,7.03],[8886,8887,7.35],[8888,8888,5.96],[8889,8889,6.83],[8890,8890,4.8],[8891,8892,6.96],[8893,8893,6.74],[8894,8894,7.42],[8895,8895,6.31],[8896,8897,6.71],[8898,8899,6.41],[8900,8900,3.81],[8901,8901,4.41],[8902,8902,4.48],[8903,8903,6.31],[8904,8904,7.72],[8905,8906,7.4],[8907,8908,7.24],[8909,8909,5.84],[8910,8911,6.35],[8912,8913,6.48],[8914,8915,5.69],[8916,8916,5.49],[8917,8917,6.14],[8918,8919,6.03],[8920,8921,9.68],[8922,8923,6.51],[8924,8925,6.46],[8926,8927,6.69],[8928,8928,6.66],[8929,8929,6.56],[8930,8930,6.86],[8931,8931,6.64],[8932,8932,6.71],[8933,8933,6.73],[8934,8934,6.76],[8935,8935,6.86],[8936,8936,7.19],[8937,8937,6.88],[8938,8938,7.49],[8939,8939,7.66],[8940,8940,7.71],[8941,8941,7.76],[8942,8942,4.11],[8943,8943,10],[8944,8944,9.2],[8945,8945,9.39],[8946,8946,6.5],[8947,8947,5.76],[8948,8948,5.09],[8949,8950,5.76],[8951,8951,5.09],[8952,8952,5.76],[8953,8953,6.32],[8954,8954,6.5],[8955,8955,5.76],[8956,8956,5.09],[8957,8957,5.76],[8958,8958,5.09],[8960,8961,6.02],[8962,8962,6],[8963,8963,9.28],[8964,8964,6.02],[8965,8965,7.95],[8966,8966,6.85],[8967,8967,10],[8968,8975,6.02],[8976,8976,5.7],[8977,8977,6.02],[8978,8978,10],[8979,8979,6.02],[8980,8980,8.65],[8981,8981,6.02],[8982,8982,5.49],[8983,8983,6.5],[8984,8984,9.28],[8985,8985,6.02],[8986,8987,10],[8988,8991,6.02],[8992,8993,6.04],[8994,8995,8.65],[8996,8996,7.95],[8997,8997,10],[8998,8998,13.07],[8999,8999,10],[9000,9000,6.02],[9001,9002,10],[9003,9003,13.07],[9004,9012,5.49],[9013,9013,6.02],[9014,9014,9.26],[9015,9020,6.02],[9021,9021,10],[9022,9022,6.02],[9023,9023,7.28],[9024,9024,6],[9025,9028,6.02],[9029,9030,6],[9031,9033,6.02],[9034,9034,6],[9035,9037,6.02],[9038,9039,6],[9040,9040,6.02],[9041,9041,6],[9042,9044,6.02],[9045,9046,6],[9047,9052,6.02],[9053,9053,6],[9054,9056,6.02],[9057,9058,6],[9059,9061,6.02],[9062,9063,6],[9064,9065,6.02],[9066,9066,6],[9067,9072,6.02],[9073,9074,6],[9075,9082,6.02],[9083,9083,6.69],[9084,9084,9.37],[9085,9085,3.19],[9086,9086,9.39],[9087,9087,3.71],[9088,9091,6.02],[9092,9092,7.85],[9093,9093,6.84],[9094,9094,6.75],[9095,9096,10],[9097,9098,6.02],[9099,9099,8.92],[9100,9100,8.08],[9101,9101,7.86],[9102,9102,7.47],[9103,9107,6.58],[9108,9108,7.43],[9109,9109,6.02],[9110,9110,4.72],[9111,9112,7.89],[9113,9114,8.15],[9115,9133,10],[9134,9134,6.02],[9135,9135,3.15],[9136,9137,10],[9138,9139,14.88],[9140,9141,6.16],[9142,9142,7.24],[9143,9143,6.43],[9144,9149,5.03],[9150,9164,10],[9165,9165,9.98],[9166,9166,10],[9167,9167,8.57],[9168,9168,5.11],[9169,9171,5.42],[9172,9173,10.31],[9174,9174,9.58],[9175,9177,9.76],[9178,9179,10],[9180,9183,6.17],[9184,9184,6.16],[9185,9185,10],[9186,9186,11.44],[9187,9187,9.1],[9188,9188,10.94],[9189,9189,10.18],[9190,9190,9.26],[9191,9191,7.98],[9192,9214,10],[9216,9247,10],[9248,9248,6],[9249,9249,10],[9250,9250,6],[9251,9251,5.9],[9252,9252,6],[9253,9253,7.92],[9254,9254,4.03],[9255,9278,10],[9280,9285,6.04],[9286,9289,7.5],[9290,9290,6.04],[9291,9310,10],[9312,9412,10],[9413,9413,8.4],[9414,9470,10],[9472,9472,7.08],[9473,9473,10],[9474,9474,7.08],[9475,9483,10],[9484,9484,7.08],[9485,9487,10],[9488,9488,7.08],[9489,9491,10],[9492,9492,7.08],[9493,9495,10],[9496,9496,7.08],[9497,9499,10],[9500,9500,7.08],[9501,9507,10],[9508,9508,7.08],[9509,9515,10],[9516,9516,7.08],[9517,9523,10],[9524,9524,7.08],[9525,9531,10],[9532,9532,7.08],[9533,9547,10],[9548,9551,6.18],[9552,9580,7.08],[9581,9588,10],[9589,9598,6.18],[9600,9600,7.08],[9601,9603,10],[9604,9604,7.08],[9605,9607,10],[9608,9608,7.08],[9609,9611,10],[9612,9612,7.08],[9613,9615,10],[9616,9618,7.08],[9619,9619,7.29],[9620,9621,10],[9622,9630,6.02],[9632,9633,6.04],[9634,9634,10],[9635,9641,8.65],[9642,9643,3.54],[9644,9644,10],[9645,9645,8.65],[9646,9648,6.02],[9649,9649,10],[9650,9650,9.9],[9651,9651,10],[9652,9652,6.32],[9653,9653,8.65],[9654,9654,8.8],[9655,9655,10],[9656,9657,5.3],[9658,9658,9.9],[9659,9659,6.02],[9660,9660,9.9],[9661,9661,10],[9662,9663,6.39],[9664,9664,10],[9665,9665,7.95],[9666,9666,6.02],[9667,9667,8.65],[9668,9668,9.9],[9669,9669,6.02],[9670,9670,7.23],[9671,9671,6.15],[9672,9672,8.65],[9673,9673,10],[9674,9674,8.67],[9675,9675,6.04],[9676,9676,5.94],[9677,9677,6.02],[9678,9678,10],[9679,9679,6.04],[9680,9683,10],[9684,9687,6.02],[9688,9689,6.04],[9690,9697,6.02],[9698,9701,10],[9702,9702,3.54],[9703,9710,6.02],[9711,9711,10],[9712,9722,6.02],[9723,9726,10],[9728,9731,10],[9732,9732,6.02],[9733,9734,10],[9735,9736,6.02],[9737,9737,10],[9738,9741,6.02],[9742,9742,10],[9743,9743,8.65],[9744,9746,8.3],[9747,9747,6.02],[9748,9751,10],[9752,9755,6.02],[9756,9759,10],[9760,9774,6.02],[9775,9775,8.65],[9776,9783,9],[9784,9785,6.02],[9786,9786,10.21],[9787,9787,10.52],[9788,9788,9.17],[9789,9791,6.02],[9792,9792,7.5],[9793,9793,6.02],[9794,9794,7.5],[9795,9799,6.02],[9800,9811,10],[9812,9823,6.02],[9824,9824,5.31],[9825,9826,10],[9827,9827,6.56],[9828,9828,10],[9829,9829,5.94],[9830,9830,5.1],[9831,9833,10],[9834,9834,5],[9835,9835,7.5],[9836,9838,10],[9839,9839,5],[9840,9841,6.02],[9842,9853,10],[9854,9854,6.02],[9855,9855,10],[9856,9867,6.02],[9868,9868,8.79],[9869,9869,8.63],[9870,9870,8.59],[9871,9871,8.96],[9872,9874,6.02],[9875,9875,10],[9876,9884,6.02],[9885,9889,10],[9890,9890,8.92],[9891,9891,8.97],[9892,9892,8.83],[9893,9893,6.6],[9894,9894,7.41],[9895,9895,9.23],[9896,9896,5.33],[9897,9897,9.2],[9898,9899,10],[9900,9900,6.47],[9901,9901,7.76],[9902,9902,10.55],[9903,9903,11.18],[9904,9905,6.02],[9906,9906,6.03],[9907,9953,10],[9954,9954,7],[9955,9982,10],[9984,9984,10],[9985,9985,9.74],[9986,9986,9.61],[9987,9987,9.74],[9988,9988,9.8],[9989,9989,10],[9990,9990,7.89],[9991,9991,7.9],[9992,9992,7.91],[9993,9993,6.9],[9994,9997,10],[9998,9998,7.93],[9999,9999,9.33],[10000,10000,9.11],[10001,10001,9.45],[10002,10002,9.74],[10003,10003,7.64],[10004,10004,8.46],[10005,10005,7.62],[10006,10006,7.61],[10007,10007,5.71],[10008,10008,6.77],[10009,10009,7.63],[10010,10010,7.6],[10011,10011,7.59],[10012,10012,7.54],[10013,10013,4.94],[10014,10014,5.52],[10015,10015,5.37],[10016,10016,5.77],[10017,10017,6.92],[10018,10018,7.86],[10019,10020,7.88],[10021,10021,7.9],[10022,10022,7.93],[10023,10023,7.94],[10024,10024,10],[10025,10025,8.23],[10026,10026,7.89],[10027,10027,8.41],[10028,10028,8.23],[10029,10029,8.33],[10030,10030,8.16],[10031,10031,8.31],[10032,10032,9.23],[10033,10033,7.44],[10034,10034,7.23],[10035,10035,7.49],[10036,10036,7.9],[10037,10037,7.92],[10038,10038,6.95],[10039,10039,7.76],[10040,10040,7.68],[10041,10041,7.92],[10042,10042,7.59],[10043,10043,7.07],[10044,10044,7.08],[10045,10045,6.82],[10046,10046,7.01],[10047,10047,8.26],[10048,10048,8.15],[10049,10050,7.89],[10051,10051,7.07],[10052,10052,6.87],[10053,10053,6.96],[10054,10054,6.89],[10055,10055,7.86],[10056,10056,7.87],[10057,10057,7.13],[10058,10058,7.91],[10059,10059,7.85],[10060,10060,10],[10061,10061,8.73],[10062,10062,10],[10063,10064,7.62],[10065,10066,7.59],[10067,10069,10],[10070,10070,7.84],[10071,10071,10],[10072,10072,3.01],[10073,10073,2.77],[10074,10074,4.15],[10075,10076,3.92],[10077,10078,6.68],[10079,10080,10],[10081,10081,7.32],[10082,10083,5.44],[10084,10084,9.1],[10085,10085,6.67],[10086,10087,7.6],[10088,10089,3.9],[10090,10091,3.17],[10092,10093,2.76],[10094,10095,5.09],[10096,10097,4.1],[10098,10099,2.34],[10100,10101,3.34],[10102,10131,7.88],[10132,10132,8.94],[10133,10135,10],[10136,10136,7.48],[10137,10137,9.24],[10138,10138,7.48],[10139,10139,9.18],[10140,10140,9.27],[10141,10142,9.28],[10143,10143,8.34],[10144,10144,8.73],[10145,10145,8.28],[10146,10147,9.24],[10148,10148,9.17],[10149,10149,9.3],[10150,10150,9.31],[10151,10151,4.63],[10152,10152,8.83],[10153,10154,8.36],[10155,10156,8.67],[10157,10158,6.96],[10159,10159,8.74],[10160,10160,10],[10161,10161,8.74],[10162,10162,7.6],[10163,10163,9.46],[10164,10164,7.71],[10165,10165,8.65],[10166,10166,7.71],[10167,10167,8.88],[10168,10168,9.67],[10169,10169,8.88],[10170,10170,8.31],[10171,10171,8.73],[10172,10172,9.27],[10173,10173,9.7],[10174,10174,9.18],[10176,10176,5.48],[10177,10177,9.48],[10178,10178,6.89],[10179,10180,5.64],[10181,10182,6.02],[10183,10183,6.2],[10184,10185,9.18],[10186,10186,3.4],[10187,10187,8.38],[10188,10188,3.25],[10189,10189,8.38],[10190,10191,10],[10192,10192,7.46],[10193,10193,6.2],[10194,10194,5.97],[10195,10196,5.42],[10197,10198,9.02],[10199,10199,11.15],[10200,10201,6.89],[10202,10202,8.7],[10203,10203,8.56],[10204,10204,10.55],[10205,10206,8.49],[10207,10207,3.96],[10208,10208,5.51],[10209,10209,7],[10210,10211,8.76],[10212,10213,9.46],[10214,10215,4.22],[10216,10217,3.66],[10218,10219,4.63],[10220,10221,4.88],[10222,10222,2.33],[10224,10225,9.82],[10226,10227,9.53],[10228,10228,12.46],[10229,10238,11.79],[10240,10494,6.84],[10496,10497,9.36],[10498,10499,8.66],[10500,10500,10.35],[10501,10501,9.36],[10502,10503,8.66],[10504,10505,4.78],[10506,10507,7.17],[10508,10511,8.82],[10512,10512,10.43],[10513,10513,8.38],[10514,10515,7.59],[10516,10517,8.65],[10518,10520,10.43],[10521,10524,8.65],[10525,10528,8.82],[10529,10530,7.46],[10531,10534,6.5],[10535,10535,7.79],[10536,10536,7.39],[10537,10537,7.79],[10538,10538,7.39],[10539,10540,6.98],[10541,10544,7.39],[10545,10546,7.79],[10547,10547,8.47],[10548,10549,10],[10550,10551,8.65],[10552,10552,4.08],[10553,10553,8.65],[10554,10557,8.08],[10558,10559,6.55],[10560,10561,7.63],[10562,10567,8.38],[10568,10568,9.21],[10569,10569,4.87],[10570,10571,8.38],[10572,10573,4.94],[10574,10574,8.38],[10575,10575,4.33],[10576,10576,8.38],[10577,10577,4.33],[10578,10579,8.62],[10580,10581,4.33],[10582,10583,8.62],[10584,10585,4.33],[10586,10587,8.72],[10588,10589,4.33],[10590,10591,8.72],[10592,10593,4.33],[10594,10597,8.65],[10598,10605,8.38],[10606,10607,7.14],[10608,10613,8.38],[10614,10614,7.23],[10615,10615,10.43],[10616,10616,7.23],[10617,10617,7.65],[10618,10618,9.21],[10619,10619,7.65],[10620,10621,5.56],[10622,10622,5.98],[10624,10624,3.65],[10625,10625,3.8],[10626,10626,3.13],[10627,10628,3.74],[10629,10630,4.47],[10631,10632,3.35],[10633,10634,3.95],[10635,10636,3.01],[10637,10640,3],[10641,10641,3.66],[10642,10642,3.68],[10643,10644,6.59],[10645,10646,6.95],[10647,10648,6.48],[10649,10649,2.26],[10650,10650,2.77],[10651,10651,5.94],[10652,10653,5.92],[10654,10654,6.61],[10655,10655,5.48],[10656,10657,5.94],[10658,10661,5.48],[10662,10663,7.53],[10664,10671,5.94],[10672,10676,7.03],[10677,10677,8.69],[10678,10678,7],[10679,10679,7.02],[10680,10680,7.22],[10681,10681,7.02],[10682,10682,7.03],[10683,10683,7.04],[10684,10689,7.02],[10690,10690,8.55],[10691,10691,8.74],[10692,10696,7.47],[10697,10697,7.96],[10698,10700,7.49],[10701,10701,9.44],[10702,10702,6.5],[10703,10704,7.58],[10705,10707,6.87],[10708,10709,6.51],[10710,10711,7.67],[10712,10713,2.77],[10714,10715,4.23],[10716,10716,6.37],[10717,10717,6.47],[10718,10718,6.37],[10719,10719,6.74],[10720,10720,7.47],[10721,10721,6.53],[10722,10722,6.83],[10723,10725,6.64],[10726,10726,7.1],[10727,10727,6.35],[10728,10729,7.49],[10730,10730,7.17],[10731,10731,4.73],[10732,10733,8.99],[10734,10735,5.98],[10736,10737,7.08],[10738,10739,7.02],[10740,10740,8.18],[10741,10741,6.1],[10742,10742,5.76],[10743,10745,5.08],[10746,10747,6.76],[10748,10749,5.37],[10750,10750,4.73],[10752,10753,8.99],[10754,10754,9.01],[10755,10756,5.44],[10757,10758,5.95],[10759,10760,7.66],[10761,10761,6.66],[10762,10762,8.55],[10763,10763,6.52],[10764,10764,15.05],[10765,10767,6.11],[10768,10768,5.93],[10769,10769,7.28],[10770,10770,6.13],[10771,10771,5.93],[10772,10772,6.75],[10773,10773,5.93],[10774,10774,6.11],[10775,10775,6.76],[10776,10778,6.11],[10779,10779,6.38],[10780,10780,6.17],[10781,10781,6.87],[10782,10782,3.95],[10783,10783,3.34],[10784,10784,8.11],[10785,10785,3.26],[10786,10787,5.41],[10788,10788,5.44],[10789,10789,5.41],[10790,10790,5.44],[10791,10791,6.47],[10792,10792,6.38],[10793,10794,5.45],[10795,10796,5.43],[10797,10798,7.61],[10799,10799,4.58],[10800,10800,5.29],[10801,10801,5.42],[10802,10802,5.21],[10803,10803,8.05],[10804,10805,7.14],[10806,10808,8.99],[10809,10811,7.49],[10812,10813,5.12],[10814,10814,3.34],[10815,10815,6.15],[10816,10821,5.44],[10822,10823,3.88],[10824,10825,5.42],[10826,10827,5.11],[10828,10829,7.39],[10830,10831,5.95],[10832,10832,7.39],[10833,10834,6.1],[10835,10836,6.52],[10837,10838,7.53],[10839,10840,6.52],[10841,10841,6.06],[10842,10843,6.52],[10844,10845,7.38],[10846,10848,6.1],[10849,10849,5.43],[10850,10851,6.1],[10852,10853,6.67],[10854,10857,5.42],[10858,10861,5.43],[10862,10862,4.85],[10863,10866,5.43],[10867,10867,5.44],[10868,10868,8.48],[10869,10869,9.84],[10870,10870,14.57],[10871,10871,5.45],[10872,10872,5.95],[10873,10874,6.59],[10875,10876,5.12],[10877,10879,5.43],[10880,10880,5.44],[10881,10886,5.43],[10887,10887,5.51],[10888,10888,5.7],[10889,10892,5.43],[10893,10893,5.51],[10894,10894,5.48],[10895,10896,5.45],[10897,10903,5.43],[10904,10906,5.44],[10907,10910,5.43],[10911,10911,5.52],[10912,10912,5.46],[10913,10914,6.83],[10915,10915,8.07],[10916,10916,5.44],[10917,10917,9.35],[10918,10921,6.13],[10922,10922,5.12],[10923,10923,5.24],[10924,10924,5.51],[10925,10925,5.56],[10926,10926,5.42],[10927,10929,5.53],[10930,10930,5.51],[10931,10934,5.53],[10935,10935,5.47],[10936,10936,5.48],[10937,10937,5.47],[10938,10938,5.48],[10939,10940,8.88],[10941,10942,5.64],[10943,10950,4.59],[10951,10954,5.46],[10955,10956,4.59],[10957,10958,9.53],[10959,10960,5.64],[10961,10962,5.63],[10963,10966,4.59],[10967,10968,8.5],[10969,10971,5.97],[10972,10972,6.1],[10973,10973,5.97],[10974,10974,3.93],[10975,10977,6.89],[10978,10978,6.86],[10979,10979,6.84],[10980,10980,6.86],[10981,10981,8.37],[10982,10982,6.86],[10983,10985,6.89],[10986,10987,6.93],[10988,10989,5.12],[10990,10990,3.13],[10991,10992,2.84],[10993,10993,2.99],[10994,10994,3.9],[10995,10995,5.43],[10996,10996,3.49],[10997,10997,4.78],[10998,10998,2.26],[10999,11000,9.71],[11001,11002,5.43],[11003,11003,4.99],[11004,11004,3.55],[11005,11005,4.11],[11006,11006,2.94],[11904,12030,10],[12272,12286,10],[12288,12333,10],[12334,12335,16],[12336,12350,10],[12800,12827,8.65],[12828,12828,8.69],[12829,12895,10],[12896,12923,8.65],[12924,12926,10],[12927,12927,8.65],[12928,13054,10],[13056,13183,10],[13184,13188,8.65],[13189,13193,10],[13194,13196,8.65],[13197,13200,10],[13201,13205,8.65],[13206,13208,10],[13209,13210,8.65],[13211,13222,10],[13223,13231,8.65],[13232,13235,10],[13236,13249,8.65],[13250,13250,10],[13251,13251,8.65],[13252,13252,10],[13253,13255,8.65],[13256,13256,10],[13257,13258,8.65],[13259,13262,10],[13263,13264,8.65],[13265,13266,10],[13267,13267,8.65],[13268,13269,10],[13270,13270,8.65],[13271,13274,10],[13275,13277,8.65],[13278,13310,10],[13312,19902,10],[19968,40958,10],[63744,64254,10],[65072,65102,10],[65136,65136,3.12],[65137,65137,2.03],[65138,65138,3.12],[65139,65139,3],[65140,65140,3.12],[65141,65141,10],[65142,65142,3.12],[65143,65143,2.03],[65144,65144,3.12],[65145,65145,2.03],[65146,65146,3.12],[65147,65147,2.03],[65148,65148,3.12],[65149,65149,2.03],[65150,65150,3.12],[65151,65151,2.03],[65152,65152,4.69],[65153,65153,2.38],[65154,65154,2.53],[65155,65155,2.17],[65156,65156,2.34],[65157,65158,4.51],[65159,65159,2.17],[65160,65160,2.34],[65161,65161,6.45],[65162,65162,5.77],[65163,65164,2.71],[65165,65165,2.17],[65166,65166,2.34],[65167,65168,6.49],[65169,65170,2.71],[65171,65171,3.43],[65172,65172,4.15],[65173,65174,6.49],[65175,65176,2.71],[65177,65178,6.49],[65179,65180,2.71],[65181,65181,5.77],[65182,65182,5.59],[65183,65184,5.23],[65185,65185,5.77],[65186,65186,5.59],[65187,65188,5.23],[65189,65189,5.77],[65190,65190,5.59],[65191,65192,5.23],[65193,65196,3.43],[65197,65200,4.33],[65201,65202,8.99],[65203,65204,6.08],[65205,65206,8.99],[65207,65208,6.08],[65209,65210,10.63],[65211,65212,7.71],[65213,65214,10.63],[65215,65216,7.71],[65217,65224,5.23],[65225,65225,5.41],[65226,65226,4.69],[65227,65227,5.41],[65228,65228,3.6],[65229,65229,5.41],[65230,65230,4.69],[65231,65231,5.41],[65232,65232,3.6],[65233,65234,7.58],[65235,65235,3.05],[65236,65236,3.24],[65237,65238,6.12],[65239,65239,3.05],[65240,65240,3.24],[65241,65242,5.41],[65243,65244,3.6],[65245,65246,4.51],[65247,65248,2.34],[65249,65250,3.6],[65251,65252,4.15],[65253,65254,5.41],[65255,65256,2.71],[65257,65257,3.43],[65258,65258,4.15],[65259,65259,4.69],[65260,65262,4.51],[65263,65263,6.45],[65264,65264,5.54],[65265,65265,6.45],[65266,65266,5.77],[65267,65268,2.71],[65269,65269,5.41],[65270,65270,5.96],[65271,65271,4.86],[65272,65272,5.41],[65273,65273,4.86],[65274,65274,5.41],[65275,65275,4.86],[65276,65276,5.41],[65277,65278,10],[65280,65376,10],[65377,65440,5],[65441,65441,4.83],[65442,65443,5],[65444,65444,4.83],[65445,65446,5],[65447,65447,4.83],[65448,65470,5],[65471,65473,10],[65474,65479,5],[65480,65481,10],[65482,65487,5],[65488,65489,10],[65490,65495,5],[65496,65497,10],[65498,65500,5],[65501,65508,10],[65509,65509,7.11],[65510,65510,11.28],[65511,65512,10],[65513,65518,5],[65792,65792,7.76],[65793,65793,6.68],[65794,65794,7.76],[65795,65795,6.68],[65796,65796,7.76],[65797,65797,6.68],[65798,65798,7.24],[65799,65799,5.88],[65800,65800,7.24],[65801,65801,5.88],[65802,65802,7.24],[65803,65803,5.88],[65804,65804,7.24],[65805,65805,5.88],[65806,65806,8.3],[65807,65807,8.8],[65808,65808,8.3],[65809,65809,6.99],[65810,65810,6.83],[65811,65811,6.64],[65812,65812,6.83],[65813,65813,6.64],[65814,65814,6.83],[65815,65815,6.64],[65816,65816,6.83],[65817,65817,6.64],[65818,65818,6.83],[65819,65819,6.64],[65820,65820,8.11],[65821,65821,6.99],[65822,65822,8.11],[65823,65823,6.99],[65824,65824,8.11],[65825,65825,6.99],[65826,65826,8.11],[65827,65827,6.99],[65828,65828,8.37],[65829,65829,7.12],[65830,65830,8.37],[65831,65831,7.12],[65832,65832,5.46],[65833,65833,3.42],[65834,65834,5.46],[65835,65835,3.42],[65836,65836,5.46],[65837,65837,3.42],[65838,65838,5.46],[65839,65839,3.42],[65840,65840,5.46],[65841,65841,3.42],[65842,65842,10.07],[65843,65843,7.28],[65844,65844,5.55],[65845,65845,4.03],[65846,65846,7.71],[65847,65848,6.71],[65849,65849,6.37],[65850,65850,3.42],[65851,65851,6.37],[65852,65852,3.42],[65853,65853,6.37],[65854,65854,5.22],[66304,66350,0],[66352,66382,0],[66560,66561,6.83],[66562,66562,9.11],[66563,66563,6.37],[66564,66564,7.42],[66565,66565,7.1],[66566,66567,5.46],[66568,66568,5.55],[66569,66569,12.22],[66570,66570,12.14],[66571,66571,9.36],[66572,66572,7.71],[66573,66573,8.46],[66574,66574,7.37],[66575,66575,8.37],[66576,66576,7.76],[66577,66577,7.58],[66578,66578,7.62],[66579,66579,6.37],[66580,66580,8.41],[66581,66581,6.83],[66582,66582,11.15],[66583,66583,7.07],[66584,66585,8.46],[66586,66586,7.71],[66587,66587,8.45],[66588,66588,9.48],[66589,66589,8.37],[66590,66590,8.5],[66591,66591,8.37],[66592,66592,7.33],[66593,66593,7.24],[66594,66594,6.82],[66595,66595,7.37],[66596,66596,9.52],[66597,66597,7.64],[66598,66598,8.5],[66599,66599,7.87],[66600,66600,11.64],[66601,66601,11.77],[66602,66602,9.07],[66603,66603,10.63],[66604,66604,7.58],[66605,66605,7.42],[66606,66606,11.95],[66607,66607,7.95],[66608,66608,6.68],[66609,66609,6.97],[66610,66610,6.77],[66611,66611,5.31],[66612,66612,6.91],[66613,66613,6.64],[66614,66614,9.99],[66615,66615,5.88],[66616,66617,7.2],[66618,66618,6.71],[66619,66619,7.09],[66620,66620,8.3],[66621,66621,7.2],[66622,66622,6.87],[66623,66623,7.2],[66624,66624,6.99],[66625,66625,5.98],[66626,66626,5.35],[66627,66627,6.51],[66628,66628,9.66],[66629,66629,6.69],[66630,66630,7.29],[66631,66631,6.84],[66632,66632,10.02],[66633,66633,10.13],[66634,66634,7.43],[66635,66635,9.37],[66636,66636,6.49],[66637,66637,6.06],[66638,66638,9.94],[119040,119294,8.65],[119808,120739,8.65],[120740,120830,10],[131072,131072,0],[131073,131079,3.33],[131080,131080,0],[131081,131085,3.42],[131086,131100,3.33],[131101,131101,0],[131102,131103,3.33],[131104,131104,3.42],[131105,131105,4.02],[131106,131106,5.87],[131107,131107,8.67],[131108,131108,7.11],[131109,131109,12.72],[131110,131110,8.62],[131111,131111,3.32],[131112,131113,5.43],[131114,131114,7.11],[131115,131115,8.67],[131116,131116,3.61],[131117,131117,4.8],[131118,131118,3.61],[131119,131119,6.89],[131120,131129,7.11],[131130,131131,4.02],[131132,131134,8.67],[131135,131135,6.17],[131136,131136,9.64],[131137,131137,7.76],[131138,131138,7.62],[131139,131139,7.24],[131140,131140,8.3],[131141,131141,6.83],[131142,131142,6.5],[131143,131143,8.11],[131144,131144,8.37],[131145,131145,5.46],[131146,131146,5.55],[131147,131147,7.71],[131148,131148,6.37],[131149,131149,9.48],[131150,131150,8.47],[131151,131151,8.5],[131152,131152,7.33],[131153,131153,8.5],[131154,131154,7.82],[131155,131155,7.1],[131156,131156,6.82],[131157,131157,8.12],[131158,131158,7.64],[131159,131159,11.28],[131160,131160,7.64],[131161,131161,7.37],[131162,131162,6.92],[131163,131163,5.43],[131164,131164,6.89],[131165,131165,5.43],[131166,131166,8.67],[131167,131168,7.11],[131169,131169,6.68],[131170,131170,6.99],[131171,131171,5.88],[131172,131172,6.99],[131173,131173,6.64],[131174,131174,4.22],[131175,131175,6.99],[131176,131176,7.12],[131177,131177,3.42],[131178,131178,4.03],[131179,131179,6.71],[131180,131180,3.42],[131181,131181,10.58],[131182,131182,7.12],[131183,131183,6.87],[131184,131185,6.99],[131186,131186,4.97],[131187,131187,5.93],[131188,131188,4.56],[131189,131189,7.12],[131190,131190,6.5],[131191,131191,9.79],[131192,131192,6.69],[131193,131193,6.51],[131194,131194,5.97],[131195,131195,7.11],[131196,131196,5.43],[131197,131197,7.11],[131198,131198,8.67],[131199,131199,0],[131200,131200,5.81],[131201,131231,5],[131232,131232,3.42],[131233,131233,4.02],[131234,131237,7.11],[131238,131238,5.43],[131239,131240,7.11],[131241,131241,9.64],[131242,131242,5.98],[131243,131243,8.5],[131244,131244,8.67],[131245,131245,0],[131246,131246,9.64],[131247,131247,7.11],[131248,131248,5.87],[131249,131249,8.67],[131250,131251,5.98],[131252,131252,7.11],[131253,131253,7.21],[131254,131254,7.11],[131255,131255,3.61],[131256,131256,7.11],[131257,131258,5.98],[131259,131259,8.5],[131260,131262,11.82],[131263,131263,6.17],[131264,131269,7.76],[131270,131270,10.94],[131271,131271,7.24],[131272,131275,6.83],[131276,131279,5.46],[131280,131280,8.3],[131281,131281,8.47],[131282,131286,8.5],[131287,131287,8.67],[131288,131288,8.5],[131289,131292,8.12],[131293,131293,7.37],[131294,131294,7.35],[131295,131295,7.13],[131296,131301,6.68],[131302,131302,10.18],[131303,131303,5.88],[131304,131307,6.64],[131308,131311,3.42],[131312,131312,6.79],[131313,131313,7.12],[131314,131318,6.87],[131319,131319,8.67],[131320,131320,6.87],[131321,131324,7.12],[131325,131325,6.51],[131326,131326,6.99],[131327,131327,6.51],[131328,131328,7.76],[131329,131329,6.68],[131330,131330,7.76],[131331,131331,6.68],[131332,131332,7.76],[131333,131333,6.68],[131334,131334,7.24],[131335,131335,5.88],[131336,131336,7.24],[131337,131337,5.88],[131338,131338,7.24],[131339,131339,5.88],[131340,131340,7.24],[131341,131341,5.88],[131342,131342,8.3],[131343,131343,8.8],[131344,131344,8.3],[131345,131345,6.99],[131346,131346,6.83],[131347,131347,6.64],[131348,131348,6.83],[131349,131349,6.64],[131350,131350,6.83],[131351,131351,6.64],[131352,131352,6.83],[131353,131353,6.64],[131354,131354,6.83],[131355,131355,6.64],[131356,131356,8.11],[131357,131357,6.99],[131358,131358,8.11],[131359,131359,6.99],[131360,131360,8.11],[131361,131361,6.99],[131362,131362,8.11],[131363,131363,6.99],[131364,131364,8.37],[131365,131365,7.12],[131366,131366,8.37],[131367,131367,7.12],[131368,131368,5.46],[131369,131369,3.42],[131370,131370,5.46],[131371,131371,3.42],[131372,131372,5.46],[131373,131373,3.42],[131374,131374,5.46],[131375,131375,3.42],[131376,131376,5.46],[131377,131377,3.42],[131378,131378,10.07],[131379,131379,7.28],[131380,131380,5.55],[131381,131381,4.03],[131382,131382,7.71],[131383,131384,6.71],[131385,131385,6.37],[131386,131386,3.42],[131387,131387,6.37],[131388,131388,3.42],[131389,131389,6.37],[131390,131390,5.22],[131391,131391,6.37],[131392,131392,5.57],[131393,131393,6.42],[131394,131394,3.52],[131395,131395,8.47],[131396,131396,7.12],[131397,131397,8.47],[131398,131398,7.12],[131399,131399,8.47],[131400,131400,7.12],[131401,131401,8.25],[131402,131402,8.47],[131403,131403,7.12],[131404,131404,8.5],[131405,131405,6.87],[131406,131406,8.5],[131407,131407,6.87],[131408,131408,8.5],[131409,131409,6.87],[131410,131410,11.35],[131411,131411,10.68],[131412,131412,7.82],[131413,131413,4.97],[131414,131414,7.82],[131415,131415,4.97],[131416,131416,7.82],[131417,131417,4.97],[131418,131418,7.1],[131419,131419,5.93],[131420,131420,7.1],[131421,131421,5.93],[131422,131422,7.1],[131423,131423,5.93],[131424,131424,7.1],[131425,131425,5.93],[131426,131426,6.82],[131427,131427,4.56],[131428,131428,6.82],[131429,131429,4.65],[131430,131430,6.82],[131431,131431,4.56],[131432,131432,8.12],[131433,131433,7.12],[131434,131434,8.12],[131435,131435,7.12],[131436,131436,8.12],[131437,131437,7.12],[131438,131438,8.12],[131439,131439,7.12],[131440,131440,8.12],[131441,131441,7.12],[131442,131442,8.12],[131443,131443,7.12],[131444,131444,11.28],[131445,131445,9.79],[131446,131446,7.37],[131447,131447,6.51],[131448,131448,7.37],[131449,131449,6.92],[131450,131450,5.97],[131451,131451,6.92],[131452,131452,5.97],[131453,131453,6.92],[131454,131454,5.97],[131455,131455,3.45],[131456,131456,5.56],[131457,131457,7.55],[131458,131458,6.61],[131459,131459,5.56],[131460,131460,6.61],[131461,131461,5.56],[131462,131463,7.22],[131464,131464,4.44],[131465,131465,7.22],[131466,131466,8.16],[131467,131467,6.61],[131468,131468,5.56],[131469,131469,5.19],[131470,131470,6.67],[131471,131471,8.05],[131472,131472,5.28],[131473,131473,6.11],[131474,131474,7.11],[131475,131475,7.78],[131476,131476,7.22],[131477,131477,7.82],[131478,131478,3.07],[131479,131479,3.89],[131480,131480,7.78],[131481,131481,5.56],[131482,131482,2.78],[131483,131483,4.91],[131484,131484,9.4],[131485,131485,7.22],[131486,131486,5.56],[131487,131487,7.78],[131488,131488,9.14],[131489,131489,6.87],[131490,131490,10.56],[131491,131491,7.71],[131492,131492,6.94],[131493,131493,5.56],[131494,131494,6.11],[131495,131495,5.56],[131496,131496,3.89],[131497,131497,6.54],[131498,131498,5.13],[131499,131499,3.33],[131500,131500,6.67],[131501,131501,3.33],[131502,131502,6.67],[131503,131503,8.46],[131504,131504,7.42],[131505,131505,8.01],[131506,131506,6.52],[131507,131507,7.91],[131508,131508,5],[131509,131509,6.67],[131510,131510,4.44],[131511,131512,5.82],[131513,131513,4.58],[131514,131514,4.53],[131515,131515,5],[131516,131516,5.04],[131517,131517,3.85],[131518,131518,3.33],[131519,131519,5.96],[131520,131520,2.2],[131521,131521,3.24],[131522,131522,2.79],[131523,131523,3.33],[131524,131524,13.89],[131525,131525,11.66],[131526,131526,10],[131527,131527,11.67],[131528,131528,10],[131529,131529,6.11],[131530,131530,12.22],[131531,131531,10.55],[131532,131532,8.89],[131533,131533,7.22],[131534,131534,5],[131535,131535,3.89],[131536,131536,2.78],[131537,131537,7.78],[131538,131538,5],[131539,131539,7.22],[131540,131540,5.56],[131541,131541,7.22],[131542,131542,5.56],[131543,131543,8.12],[131544,131544,7.12],[131545,131545,7.22],[131546,131546,5.56],[131547,131547,8.12],[131548,131548,7.12],[131549,131549,4.44],[131550,131550,7.22],[131551,131551,5],[131552,131552,7.22],[131553,131553,5],[131554,131554,10],[131555,131555,7.22],[131556,131556,7.78],[131557,131557,5],[131558,131558,7.78],[131559,131559,5],[131560,131560,7.78],[131561,131561,5.56],[131562,131562,7.78],[131563,131563,5],[131564,131564,7.78],[131565,131565,5],[131566,131566,5.82],[131567,131567,4.58],[131568,131568,3.33],[131569,131569,13.89],[131570,131570,11.66],[131571,131571,10],[131572,131572,8.11],[131573,131573,6.99],[131574,131574,9.7],[131575,131575,6.46],[131576,131576,8.47],[131577,131577,7.12],[131578,131578,7.76],[131579,131579,6.68],[131580,131580,10.94],[131581,131581,10.18],[131582,131582,8.5],[131583,131583,6.87],[131584,131584,7.22],[131585,131585,5],[131586,131586,7.22],[131587,131587,5],[131588,131588,6.67],[131589,131589,4.44],[131590,131590,6.67],[131591,131591,4.44],[131592,131592,3.89],[131593,131593,2.78],[131594,131594,3.89],[131595,131595,2.78],[131596,131596,7.78],[131597,131597,5],[131598,131598,7.78],[131599,131599,5],[131600,131600,7.22],[131601,131601,4.44],[131602,131602,7.22],[131603,131603,4.44],[131604,131604,7.22],[131605,131605,5.56],[131606,131606,7.22],[131607,131607,5.56],[131608,131608,7.1],[131609,131609,5.93],[131610,131610,6.82],[131611,131611,4.56],[131612,131612,5.54],[131613,131613,3.74],[131614,131614,7.78],[131615,131615,5.56],[131616,131616,7.34],[131617,131617,5.56],[131618,131618,6.76],[131619,131619,5.01],[131620,131620,6.67],[131621,131621,4.44],[131622,131622,7.22],[131623,131623,5],[131624,131624,6.67],[131625,131625,4.44],[131626,131626,7.78],[131627,131627,5],[131628,131628,7.78],[131629,131629,5],[131630,131630,7.78],[131631,131631,5],[131632,131632,7.78],[131633,131633,5],[131634,131634,7.22],[131635,131635,5],[131636,131636,2.78],[131637,131637,5.56],[131638,131638,3.61],[131639,131639,3.33],[131640,131641,8.23],[131642,131643,7.22],[131644,131644,5],[131645,131646,6.67],[131647,131647,3.89],[131648,131648,4.44],[131649,131649,5.32],[131650,131650,4.66],[131651,131651,6.67],[131652,131652,7.22],[131653,131653,7.17],[131654,131654,6.67],[131655,131655,4.44],[131656,131656,5],[131657,131657,3.33],[131658,131658,8.25],[131659,131659,5.56],[131660,131660,7.22],[131661,131661,4.44],[131662,131662,7.22],[131663,131664,5],[131665,131666,5.75],[131667,131667,5.56],[131668,131669,4.44],[131670,131671,5.56],[131672,131672,4.44],[131673,131673,6.64],[131674,131674,6.27],[131675,131676,4.27],[131677,131677,5.93],[131678,131678,4.57],[131679,131679,3.33],[131680,131681,5.51],[131682,131682,5.91],[131683,131683,5],[131684,131684,5.18],[131685,131687,5.56],[131688,131688,2.78],[131689,131689,3.1],[131690,131690,2.88],[131691,131693,2.78],[131694,131694,6.07],[131695,131697,8.33],[131698,131699,5.56],[131700,131700,5.23],[131701,131701,5],[131702,131702,7.59],[131703,131703,7.31],[131704,131704,7.22],[131705,131709,4.44],[131710,131711,4.01],[131712,131713,5.75],[131714,131714,3.89],[131715,131715,3.02],[131716,131716,3.33],[131717,131717,3.51],[131718,131718,3.19],[131719,131720,3.33],[131721,131721,5.56],[131722,131722,6.17],[131723,131723,5.23],[131724,131724,5],[131725,131725,7.22],[131726,131726,5],[131727,131727,5.33],[131728,131728,4.44],[131729,131729,5.13],[131730,131731,4.58],[131732,131734,4.44],[131735,131735,4.98],[131736,131736,7.78],[131737,131737,5.4],[131738,131738,4.57],[131739,131739,5.91],[131740,131740,5.76],[131741,131741,3.33],[131742,131742,5.56],[131743,131743,5.07],[131744,131744,5.56],[131745,131746,4.44],[131747,131747,8.61],[131748,131748,8.72],[131749,131749,9.3],[131750,131750,6.48],[131751,131751,5.37],[131752,131752,7.08],[131753,131753,8.49],[131754,131754,6.22],[131755,131755,5.96],[131756,131756,5.12],[131757,131757,4.81],[131758,131759,6.67],[131760,131761,3.25],[131762,131762,1.81],[131763,131764,2.54],[131765,131765,2.66],[131766,131766,3.48],[131767,131767,4.32],[131768,131768,2.99],[131769,131769,2.81],[131770,131770,4.96],[131771,131775,3.33],[131776,131777,2.51],[131778,131781,5.7],[131782,131783,7.11],[131784,131784,3.33],[131785,131785,7.11],[131786,131791,3.33],[131792,131793,2.78],[131794,131799,3.33],[131800,131805,7.11],[131806,131806,0],[131807,131807,3.82],[131808,131808,2.99],[131809,131809,1.77],[131810,131810,2.17],[131811,131811,2.86],[131812,131812,2.51],[131813,131817,3.83],[131818,131821,3.33],[131822,131822,5],[131823,131836,3.33],[131837,131838,3.97],[131839,131839,3.33],[131840,131951,0],[131952,131952,4.25],[131953,131953,3.35],[131954,131954,6.3],[131955,131955,5.3],[131956,131957,3.33],[131958,131958,7.3],[131959,131959,5.93],[131960,131961,10],[131962,131962,3.33],[131963,131965,4.44],[131966,131966,4.02],[131967,131967,3.33],[131968,131971,10],[131972,131973,7.11],[131974,131974,7.97],[131975,131975,4.02],[131976,131976,8.48],[131977,131977,10.01],[131978,131978,7.05],[131979,131979,10],[131980,131980,9.68],[131981,131981,10],[131982,131982,9.39],[131983,131983,9.7],[131984,131984,3.42],[131985,131985,7.76],[131986,131986,7.62],[131987,131987,6.37],[131988,131988,8.06],[131989,131989,6.83],[131990,131990,6.92],[131991,131991,8.37],[131992,131992,8.5],[131993,131993,5.46],[131994,131994,7.71],[131995,131995,7.76],[131996,131996,9.48],[131997,131997,8.47],[131998,131998,7.15],[131999,131999,8.5],[132000,132000,8.37],[132001,132001,7.33],[132002,132002,10],[132003,132003,6.84],[132004,132004,6.82],[132005,132005,7.37],[132006,132006,9.52],[132007,132007,7.64],[132008,132008,9.76],[132009,132009,8.44],[132010,132010,5.46],[132011,132011,7.37],[132012,132012,6.99],[132013,132013,5.85],[132014,132014,7.12],[132015,132015,3.42],[132016,132016,7.06],[132017,132017,6.99],[132018,132018,7.16],[132019,132019,6.51],[132020,132020,6.87],[132021,132021,5.85],[132022,132022,5.49],[132023,132023,7.12],[132024,132024,7],[132025,132025,3.42],[132026,132026,6.71],[132027,132027,6.51],[132028,132028,7.21],[132029,132029,6.5],[132030,132030,5.81],[132031,132031,6.87],[132032,132032,7.2],[132033,132033,6.99],[132034,132034,5.62],[132035,132035,7.26],[132036,132036,5.35],[132037,132037,7.06],[132038,132038,9.15],[132039,132039,6.35],[132040,132040,9.41],[132041,132041,8.94],[132042,132042,3.42],[132043,132043,7.06],[132044,132044,6.87],[132045,132045,7.06],[132046,132046,8.94],[132047,132047,5.58],[132048,132048,5.27],[132049,132049,5.99],[132050,132050,7.22],[132051,132051,9.23],[132052,132052,7.22],[132053,132053,6.24],[132054,132054,7.31],[132055,132055,5.8],[132056,132056,7.78],[132057,132057,5],[132058,132058,7.22],[132059,132059,4.22],[132060,132060,6.11],[132061,132061,5.46],[132062,132062,5.95],[132063,132063,4.61],[132064,132064,7.51],[132065,132065,5.54],[132066,132066,8.7],[132067,132067,8.33],[132068,132068,7.25],[132069,132069,5.86],[132070,132070,7.4],[132071,132071,4.44],[132072,132072,6.25],[132073,132073,5.86],[132074,132074,6.82],[132075,132075,6.05],[132076,132076,7.25],[132077,132077,5.16],[132078,132078,5.4],[132079,132079,4.5],[132080,132080,5.8],[132081,132081,5],[132082,132082,4.44],[132083,132083,3.33],[132084,132084,7.78],[132085,132086,4.21],[132087,132087,6.11],[132088,132088,5.56],[132089,132089,7.22],[132090,132090,9.44],[132091,132091,6.81],[132092,132092,5.35],[132093,132095,7.22],[132096,132097,6.83],[132098,132098,9.11],[132099,132099,6.37],[132100,132100,7.42],[132101,132101,7.1],[132102,132103,5.46],[132104,132104,5.55],[132105,132105,12.22],[132106,132106,12.14],[132107,132107,9.36],[132108,132108,7.71],[132109,132109,8.46],[132110,132110,7.37],[132111,132111,8.37],[132112,132112,7.76],[132113,132113,7.58],[132114,132114,7.62],[132115,132115,6.37],[132116,132116,8.41],[132117,132117,6.83],[132118,132118,11.15],[132119,132119,7.07],[132120,132121,8.46],[132122,132122,7.71],[132123,132123,8.45],[132124,132124,9.48],[132125,132125,8.37],[132126,132126,8.5],[132127,132127,8.37],[132128,132128,7.33],[132129,132129,7.24],[132130,132130,6.82],[132131,132131,7.37],[132132,132132,9.52],[132133,132133,7.64],[132134,132134,8.5],[132135,132135,7.87],[132136,132136,11.64],[132137,132137,11.77],[132138,132138,9.07],[132139,132139,10.63],[132140,132140,7.58],[132141,132141,7.42],[132142,132142,11.95],[132143,132143,7.95],[132144,132144,6.68],[132145,132145,6.97],[132146,132146,6.77],[132147,132147,5.31],[132148,132148,6.91],[132149,132149,6.64],[132150,132150,9.99],[132151,132151,5.88],[132152,132153,7.2],[132154,132154,6.71],[132155,132155,7.09],[132156,132156,8.3],[132157,132157,7.2],[132158,132158,6.87],[132159,132159,7.2],[132160,132160,6.99],[132161,132161,5.98],[132162,132162,5.35],[132163,132163,6.51],[132164,132164,9.66],[132165,132165,6.69],[132166,132166,7.29],[132167,132167,6.84],[132168,132168,10.02],[132169,132169,10.13],[132170,132170,7.43],[132171,132171,9.37],[132172,132172,6.49],[132173,132173,6.06],[132174,132174,9.94],[132175,132175,6.82],[132176,132177,6.64],[132178,132178,7.12],[132179,132179,5.31],[132180,132180,6.05],[132181,132181,5.93],[132182,132183,3.42],[132184,132184,4.03],[132185,132185,10.12],[132186,132186,10.2],[132187,132187,7.12],[132188,132188,6.71],[132189,132189,7.2],[132190,132190,6.51],[132191,132191,7.2],[132192,132192,12.5],[132193,132193,6.19],[132194,132194,7.64],[132195,132195,6],[132196,132196,10.07],[132197,132197,6.64],[132198,132198,7.22],[132199,132199,5],[132200,132200,10.98],[132201,132201,7.73],[132202,132202,9.89],[132203,132203,7.25],[132204,132204,13.6],[132205,132205,9.99],[132206,132206,5.28],[132207,132207,4.02],[132208,132208,7.8],[132209,132209,6.88],[132210,132210,7.78],[132211,132211,5],[132212,132212,8.15],[132213,132213,6.05],[132214,132214,8.15],[132215,132215,6.05],[132216,132216,13.52],[132217,132217,12.28],[132218,132218,8.24],[132219,132219,5.85],[132220,132220,10.46],[132221,132221,8.98],[132222,132222,12.5],[132223,132223,6.19],[132224,132224,7.22],[132225,132225,4.44],[132226,132226,3.38],[132227,132230,0],[132231,132231,6.36],[132232,132233,0],[132234,132234,7.78],[132235,132235,5.76],[132236,132236,6.61],[132237,132237,5.29],[132238,132238,6.11],[132239,132239,5.56],[132240,132240,6.37],[132241,132241,5.31],[132242,132242,6.37],[132243,132243,5.31],[132244,132244,7.22],[132245,132245,5.77],[132246,132246,11.15],[132247,132247,9.99],[132248,132248,5.28],[132249,132249,4.02],[132250,132250,7.71],[132251,132251,6.71],[132252,132252,7.71],[132253,132253,6.71],[132254,132254,7.25],[132255,132255,5.76],[132256,132256,8.29],[132257,132257,6.3],[132258,132258,8.37],[132259,132259,7.2],[132260,132260,9.21],[132261,132261,6.67],[132262,132262,11.15],[132263,132263,8.44],[132264,132264,8.71],[132265,132265,6.87],[132266,132266,7.22],[132267,132267,4.44],[132268,132268,6.67],[132269,132269,4.91],[132270,132270,7.37],[132271,132271,6.51],[132272,132272,7.37],[132273,132273,6.51],[132274,132274,7.64],[132275,132275,6.69],[132276,132276,8.67],[132277,132277,6.09],[132278,132278,7.34],[132279,132279,5.64],[132280,132280,7.87],[132281,132281,6.84],[132282,132282,7.87],[132283,132283,7.12],[132284,132284,10.15],[132285,132285,7.88],[132286,132286,10.15],[132287,132287,7.88],[132288,132288,3.89],[132289,132289,9.89],[132290,132290,7.25],[132291,132291,7.37],[132292,132292,5.93],[132293,132293,7.45],[132294,132294,5.61],[132295,132295,7.78],[132296,132296,5.76],[132297,132297,7.78],[132298,132298,5.76],[132299,132299,7.34],[132300,132300,5.64],[132301,132301,9.44],[132302,132302,6.81],[132303,132303,2.78],[132304,132304,7.22],[132305,132305,5],[132306,132306,7.22],[132307,132307,5],[132308,132308,10],[132309,132309,7.22],[132310,132310,6.67],[132311,132311,4.44],[132312,132312,8.05],[132313,132313,6.64],[132314,132314,7.39],[132315,132315,4.44],[132316,132316,9.89],[132317,132317,7.25],[132318,132318,5.28],[132319,132319,4.02],[132320,132320,5.28],[132321,132321,4.58],[132322,132322,7.78],[132323,132323,5.76],[132324,132324,7.78],[132325,132325,5.76],[132326,132326,7.78],[132327,132327,5],[132328,132328,8.5],[132329,132329,6.87],[132330,132330,7.78],[132331,132331,5],[132332,132332,6.78],[132333,132333,4.32],[132334,132334,7.34],[132335,132335,5],[132336,132336,7.34],[132337,132337,5],[132338,132338,7.34],[132339,132339,5],[132340,132340,7.34],[132341,132341,5.64],[132342,132342,6.36],[132343,132343,4.54],[132344,132344,9.82],[132345,132345,7.81],[132346,132346,6.36],[132347,132347,4.54],[132348,132348,7.22],[132349,132349,5],[132350,132350,7.22],[132351,132351,5],[132352,132352,6.61],[132353,132353,5.56],[132354,132354,8.52],[132355,132355,7.81],[132356,132356,7.97],[132357,132357,6.78],[132358,132358,5.95],[132359,132359,4.6],[132360,132360,9.36],[132361,132361,7.79],[132362,132362,9.7],[132363,132363,7.93],[132364,132364,7.78],[132365,132365,5.91],[132366,132366,7.16],[132367,132367,6.18],[132368,132368,5.28],[132369,132369,4.02],[132370,132370,7.45],[132371,132371,5.61],[132372,132372,7.62],[132373,132373,6.93],[132374,132374,8.3],[132375,132375,6.81],[132376,132376,10.31],[132377,132377,7.37],[132378,132378,8.5],[132379,132379,6.99],[132380,132380,11.28],[132381,132381,9.79],[132382,132382,6.85],[132383,132383,6.31],[132384,132384,9.81],[132385,132385,7.96],[132386,132386,11.11],[132387,132387,9.08],[132388,132388,7.08],[132389,132389,6.18],[132390,132390,6.89],[132391,132391,6.31],[132392,132392,4.44],[132393,132393,4.03],[132394,132394,8.91],[132395,132395,8.13],[132396,132396,5.62],[132397,132397,5.24],[132398,132398,6.83],[132399,132399,6.07],[132400,132400,10],[132401,132401,8.51],[132402,132402,7.17],[132403,132403,7.73],[132404,132404,7.8],[132405,132405,7.17],[132406,132406,6.93],[132407,132407,6.32],[132408,132408,7.17],[132409,132409,9.24],[132410,132410,7.72],[132411,132411,7.27],[132412,132412,4.46],[132413,132413,9.1],[132414,132414,7.36],[132415,132415,7.41],[132416,132416,6.33],[132417,132417,6.69],[132418,132418,7.8],[132419,132419,7.22],[132420,132420,8.13],[132421,132421,6.35],[132422,132422,6.72],[132423,132423,6.82],[132424,132424,7.34],[132425,132425,6.47],[132426,132426,8.57],[132427,132427,6.7],[132428,132428,8.18],[132429,132429,7.34],[132430,132430,8.16],[132431,132431,5.93],[132432,132432,6.75],[132433,132433,6.53],[132434,132434,6.32],[132435,132435,8.5],[132436,132436,6.53],[132437,132437,7.93],[132438,132438,7.76],[132439,132440,10],[132441,132442,2.34],[132443,132443,2.79],[132444,132444,3.02],[132445,132445,2.79],[132446,132446,4.41],[132447,132447,4.02],[132448,132448,10],[132449,132449,9.73],[132450,132450,6.41],[132451,132451,7.09],[132452,132452,7.12],[132453,132453,6.41],[132454,132454,6.44],[132455,132455,5.14],[132456,132456,6.41],[132457,132457,7.5],[132458,132458,6.71],[132459,132459,6.41],[132460,132460,3.19],[132461,132461,9.76],[132462,132462,6.33],[132463,132463,6.41],[132464,132464,6.02],[132465,132465,6.66],[132466,132466,6.54],[132467,132467,6.19],[132468,132468,6.5],[132469,132469,3.13],[132470,132470,6.37],[132471,132471,4.41],[132472,132472,6.41],[132473,132473,3.81],[132474,132474,9.73],[132475,132475,5.32],[132476,132476,6.73],[132477,132477,6.41],[132478,132478,6.5],[132479,132479,9.71],[132480,132480,7.12],[132481,132481,6.35],[132482,132482,3.96],[132483,132483,9.71],[132484,132484,6.35],[132485,132485,6.14],[132486,132486,7.47],[132487,132487,6.97],[132488,132488,10],[132489,132489,2.8],[132490,132490,4.31],[132491,132492,10],[132493,132493,8.17],[132494,132494,8.18],[132495,132495,7.56],[132496,132496,10],[132497,132541,0],[132542,132542,3.63],[132543,132543,0],[132544,132544,3.33],[132545,132546,0],[132547,132547,3.33],[132548,132549,0],[132550,132550,3.16],[132551,132551,0],[132552,132559,10],[132560,132560,5.27],[132561,132561,4.59],[132562,132562,3.67],[132563,132563,4.64],[132564,132564,5.12],[132565,132565,2.98],[132566,132566,3.17],[132567,132567,5.04],[132568,132568,5.29],[132569,132569,3.11],[132570,132570,4.58],[132571,132571,4.46],[132572,132572,4.35],[132573,132573,5.11],[132574,132574,5.33],[132575,132575,3.26],[132576,132576,3.16],[132577,132577,4.78],[132578,132578,5.07],[132579,132579,4.93],[132580,132580,4.57],[132581,132581,5.64],[132582,132582,5.15],[132583,132583,4.83],[132584,132584,4.64],[132585,132585,6.88],[132586,132586,5.18],[132587,132591,10],[132592,132592,5.97],[132593,132593,6.09],[132594,132594,6.21],[132595,132595,2.55],[132596,132596,4.6],[132597,132607,10],[132608,132608,7.41],[132609,132609,13.24],[132610,132610,7.59],[132611,132611,9.19],[132612,132612,27.92],[132613,132613,10.94],[132614,132615,6.44],[132616,132616,7.78],[132617,132618,5.25],[132619,132619,3.24],[132620,132620,3.19],[132621,132621,2.39],[132622,132622,6.57],[132623,132623,5.41],[132624,132634,0],[132635,132635,3.19],[132636,132636,0],[132637,132637,10],[132638,132638,4.05],[132639,132639,3.56],[132640,132640,8.78],[132641,132641,4.69],[132642,132642,2.38],[132643,132643,2.17],[132644,132644,4.51],[132645,132645,2.17],[132646,132646,6.45],[132647,132647,2.17],[132648,132648,6.49],[132649,132649,3.43],[132650,132651,6.49],[132652,132654,5.77],[132655,132656,3.43],[132657,132658,4.33],[132659,132660,8.99],[132661,132662,10.63],[132663,132664,5.23],[132665,132666,5.41],[132667,132668,7.11],[132669,132671,7.33],[132672,132672,1.98],[132673,132673,7.58],[132674,132674,6.12],[132675,132675,5.41],[132676,132676,4.51],[132677,132677,3.6],[132678,132678,5.41],[132679,132679,3.43],[132680,132680,4.51],[132681,132682,6.45],[132683,132703,0],[132704,132713,5.62],[132714,132714,5.26],[132715,132716,3.19],[132717,132717,5.26],[132718,132718,6.49],[132719,132719,6.12],[132720,132720,0],[132721,132723,2.17],[132724,132724,0],[132725,132725,2.17],[132726,132727,4.51],[132728,132728,6.45],[132729,132736,6.49],[132737,132743,5.77],[132744,132752,3.43],[132753,132761,4.33],[132762,132764,8.99],[132765,132766,10.63],[132767,132767,5.23],[132768,132768,5.41],[132769,132774,7.58],[132775,132776,6.12],[132777,132777,7.57],[132778,132778,11.55],[132779,132779,7.57],[132780,132782,5.41],[132783,132788,7.57],[132789,132792,4.51],[132793,132797,5.41],[132798,132798,4.69],[132799,132799,5.77],[132800,132803,3.43],[132804,132811,4.51],[132812,132814,6.45],[132815,132815,4.51],[132816,132817,6.45],[132818,132819,8.12],[132820,132820,2.07],[132821,132821,3.43],[132822,132828,0],[132829,132829,11.23],[132830,132830,10.84],[132831,132840,0],[132841,132841,6],[132842,132845,0],[132846,132846,3.43],[132847,132847,4.33],[132848,132857,5.62],[132858,132858,8.99],[132859,132859,10.63],[132860,132860,5.41],[132861,132861,4.69],[132862,132862,3.6],[132863,132863,4.69],[132864,132864,5.91],[132865,132865,2.97],[132866,132868,2.57],[132869,132869,5.35],[132870,132871,3.86],[132872,132873,3.76],[132874,132874,5.79],[132875,132875,9.23],[132876,132876,6.94],[132877,132877,7.58],[132878,132878,10],[132879,132879,0],[132880,132880,9.3],[132881,132881,0],[132882,132882,9.58],[132883,132884,10.91],[132885,132886,5.39],[132887,132887,9.3],[132888,132888,6.1],[132889,132889,2.75],[132890,132890,7.01],[132891,132892,9.99],[132893,132893,2.43],[132894,132894,12.2],[132895,132895,8.89],[132896,132896,6.56],[132897,132897,8.85],[132898,132898,6.78],[132899,132900,8.86],[132901,132901,9.53],[132902,132902,8.43],[132903,132903,7.97],[132904,132904,6.26],[132905,132905,8.34],[132906,132906,5.39],[132907,132907,9.45],[132908,132908,7.43],[132909,132909,9.58],[132910,132910,10.91],[132911,132911,5.95],[132912,132938,0],[132939,132940,10],[132941,132941,5.83],[132942,132942,8.43],[132943,132943,6.56],[132944,132950,6.49],[132951,132952,5.77],[132953,132954,3.43],[132955,132955,4.33],[132956,132956,8.99],[132957,132959,5.41],[132960,132961,7.58],[132962,132964,7.57],[132965,132966,3.6],[132967,132969,5.41],[132970,132970,4.51],[132971,132972,4.33],[132973,132973,8.99],[132974,132975,6.86],[132976,132976,10.55],[132977,132977,4.32],[132978,132978,6.86],[132979,132980,2.92],[132981,132983,7.33],[132984,132985,5.43],[132986,132987,5.84],[132988,132988,6.86],[132989,132990,10.55],[132991,132991,6.08],[132992,132992,5.29],[132993,132993,6.78],[132994,132994,8.09],[132995,132995,6.49],[132996,132996,7.12],[132997,132997,5.45],[132998,132998,5.5],[132999,132999,5.33],[133000,133000,5.38],[133001,133001,5.18],[133002,133002,4.49],[133003,133003,6.34],[133004,133004,6.49],[133005,133005,5.76],[133006,133006,5],[133007,133007,7.22],[133008,133008,10.19],[133009,133009,3.9],[133010,133010,5.7],[133011,133011,6.71],[133012,133012,7.28],[133013,133013,4.49],[133014,133014,5.83],[133015,133015,6.46],[133016,133016,6.18],[133017,133018,5.29],[133019,133019,6.34],[133020,133020,6.49],[133021,133023,10.19],[133024,133025,6.49],[133026,133027,5.38],[133028,133028,5],[133029,133029,5.06],[133030,133040,0],[133041,133041,4.73],[133042,133055,10],[133056,133056,5.4],[133057,133057,5.42],[133058,133058,5.45],[133059,133059,5.14],[133060,133061,5.39],[133062,133062,5.25],[133063,133064,5.42],[133065,133065,5.54],[133066,133066,2.65],[133067,133067,6.6],[133068,133068,4.37],[133069,133069,6.19],[133070,133070,5.93],[133071,133071,5.51],[133072,133072,6.45],[133073,133073,5.22],[133074,133074,6.85],[133075,133076,4.19],[133077,133077,5.64],[133078,133078,4.87],[133079,133079,3.77],[133080,133080,7.92],[133081,133081,3.91],[133082,133082,6.5],[133083,133083,7.08],[133084,133084,5.76],[133085,133085,7.33],[133086,133086,5.44],[133087,133087,5.78],[133088,133088,5.21],[133089,133089,5.76],[133090,133090,5.41],[133091,133092,5.44],[133093,133093,5.25],[133094,133094,5.21],[133095,133095,5.29],[133096,133097,4.53],[133098,133098,3.91],[133099,133107,0],[133108,133109,3.38],[133110,133110,5.54],[133111,133111,9.5],[133112,133113,4.81],[133114,133114,4.17],[133115,133119,10],[133120,133120,9.27],[133121,133121,7.76],[133122,133122,7.91],[133123,133123,6.58],[133124,133124,8.58],[133125,133125,9.26],[133126,133126,8.78],[133127,133127,9.45],[133128,133128,9.53],[133129,133129,10.94],[133130,133130,7.36],[133131,133131,6.07],[133132,133132,9.12],[133133,133133,7.27],[133134,133134,7.71],[133135,133135,8.98],[133136,133136,7.54],[133137,133137,10.72],[133138,133138,7.28],[133139,133139,7.13],[133140,133140,8.41],[133141,133141,9.37],[133142,133145,0],[133146,133146,4.05],[133147,133155,0],[133156,133156,2.29],[133157,133159,0],[133160,133160,2.47],[133161,133165,0],[133166,133167,10],[133168,133169,3.59],[133170,133170,5.91],[133171,133172,8.75],[133173,133173,5.79],[133174,133174,6.7],[133175,133175,13.09],[133176,133176,10.75],[133177,133178,10.64],[133179,133179,5.02],[133180,133180,6.16],[133181,133181,8.06],[133182,133182,4.25],[133183,133183,10],[133184,133184,5.34],[133185,133185,8.94],[133186,133186,4.77],[133187,133187,6.62],[133188,133188,9.01],[133189,133189,4.12],[133190,133190,2.49],[133191,133191,7.8],[133192,133192,6.76],[133193,133193,4.42],[133194,133194,6.71],[133195,133195,4.6],[133196,133196,9.91],[133197,133197,5.87],[133198,133198,9.93],[133199,133199,8.54],[133200,133200,7.2],[133201,133201,10.23],[133202,133202,8.62],[133203,133203,8.31],[133204,133204,9.13],[133205,133205,6.42],[133206,133206,7.63],[133207,133207,11.33],[133208,133208,4.76],[133209,133211,0],[133212,133213,10],[133214,133214,5.57],[133215,133279,10],[133280,133281,8.75],[133282,133282,6.76],[133283,133283,7.65],[133284,133284,9.22],[133285,133285,6.76],[133286,133286,6.33],[133287,133287,4.85],[133288,133289,7.58],[133290,133290,5.48],[133291,133291,4.29],[133292,133292,5.81],[133293,133293,2.39],[133294,133294,4.77],[133295,133295,11.27],[133296,133296,8.39],[133297,133297,4.69],[133298,133298,3.37],[133299,133299,6.16],[133300,133300,7.96],[133301,133301,10],[133302,133304,8.75],[133305,133305,3.42],[133306,133306,7.58],[133307,133307,9.26],[133308,133308,6.76],[133309,133309,5.99],[133310,133332,10],[133333,133333,5.25],[133334,133334,3.6],[133335,133335,3.7],[133336,133336,3.1],[133337,133337,2.97],[133338,133343,10],[133344,133344,5.13],[133345,133345,5.63],[133346,133346,10],[133347,133369,0],[133370,133370,10],[133371,133375,0],[133376,133378,6.6],[133379,133379,9.75],[133380,133381,7.64],[133382,133382,10.55],[133383,133384,5.51],[133385,133385,5.09],[133386,133386,7.4],[133387,133387,9.08],[133388,133388,7.37],[133389,133392,5.77],[133393,133395,10.55],[133396,133396,10.54],[133397,133397,7.98],[133398,133398,8.39],[133399,133399,5.96],[133400,133400,6.67],[133401,133401,6.54],[133402,133402,6.81],[133403,133403,6.99],[133404,133404,7.69],[133405,133405,7.99],[133406,133406,7.6],[133407,133407,5.39],[133408,133408,6.11],[133409,133409,5.72],[133410,133410,5.68],[133411,133411,7.94],[133412,133412,5.9],[133413,133413,7.07],[133414,133414,5.59],[133415,133415,6.52],[133416,133417,5.54],[133418,133418,5.92],[133419,133419,8.3],[133420,133420,5.91],[133421,133421,6.3],[133422,133422,6.08],[133423,133423,6.26],[133424,133424,4.41],[133425,133425,4.67],[133426,133426,7.37],[133427,133428,7.31],[133429,133429,5.74],[133430,133430,7.75],[133431,133431,5.99],[133432,133432,7.19],[133433,133433,5.35],[133434,133434,6.6],[133435,133435,9.51],[133436,133436,6.6],[133437,133437,5.4],[133438,133440,9.51],[133441,133448,6.6],[133449,133452,9.51],[133453,133453,6.6],[133454,133455,9.51],[133456,133456,12.22],[133457,133460,0],[133461,133463,6.6],[133464,133464,7.98],[133465,133465,8.39],[133466,133466,5.96],[133467,133467,7.69],[133468,133468,5.72],[133469,133469,5.68],[133470,133470,8.3],[133471,133471,6.26],[133472,133472,9.08],[133473,133473,7.37],[133474,133475,6.6],[133476,133476,5.42],[133477,133477,7.91],[133478,133478,4.99],[133479,133479,4.59],[133480,133480,4.99],[133481,133481,5.1],[133482,133482,5.3],[133483,133483,5.5],[133484,133484,5.2],[133485,133485,6.71],[133486,133486,5.17],[133487,133487,4.96],[133488,133488,5.33],[133489,133489,3.33],[133490,133491,7.64],[133492,133493,10.55],[133494,133495,7.64],[133496,133496,5.51],[133497,133497,7.69],[133498,133498,6.26],[133499,133499,5.96],[133500,133500,7.47],[133501,133501,4.97],[133502,133502,5.88],[133503,133503,5.91],[133504,133504,5.99],[133505,133505,6.6],[133506,133506,11.52],[133507,133507,11.32],[133508,133508,10],[133509,133509,9.48],[133510,133510,12.48],[133511,133511,5.16],[133512,133512,6.98],[133513,133513,7.26],[133514,133514,7.42],[133515,133515,7.95],[133516,133516,6.56],[133517,133518,10],[133519,133519,7.54],[133520,133520,8.54],[133521,133522,10],[133523,133523,6.37],[133524,133524,7.99],[133525,133525,7.37],[133526,133526,7.27],[133527,133527,6.87],[133528,133528,6.48],[133529,133529,7.25],[133530,133530,5.43],[133531,133531,6.22],[133532,133532,8.91],[133533,133533,8.2],[133534,133534,10.23],[133535,133535,5.59],[133536,133536,5.98],[133537,133537,7.26],[133538,133538,5.69],[133539,133539,6.65],[133540,133540,7.21],[133541,133541,7.12],[133542,133542,5.84],[133543,133543,6.21],[133544,133544,6.76],[133545,133545,10],[133546,133546,6.97],[133547,133547,8.09],[133548,133548,5.69],[133549,133549,7.91],[133550,133550,6.24],[133551,133551,5.94],[133552,133552,5.69],[133553,133553,10],[133554,133554,7.83],[133555,133557,10],[133558,133558,7.19],[133559,133559,6.22],[133560,133560,6.98],[133561,133561,5.06],[133562,133563,10],[133564,133564,6.6],[133565,133565,4.98],[133566,133566,9.6],[133567,133567,9.59],[133568,133568,9.6],[133569,133572,6.6],[133573,133574,10],[133575,133576,9.68],[133577,133578,10],[133579,133580,12.68],[133581,133581,6.6],[133582,133582,5.57],[133583,133590,10],[133591,133591,9.6],[133592,133595,10],[133596,133596,7.26],[133597,133597,5.69],[133598,133598,10],[133599,133599,5.94],[133600,133600,7.95],[133601,133601,6.56],[133602,133603,6.6],[133604,133605,10],[133606,133606,6.49],[133607,133607,5.4],[133608,133608,4.9],[133609,133609,7.61],[133610,133610,5.26],[133611,133611,6.48],[133612,133612,6.97],[133613,133613,5.99],[133614,133614,7.68],[133615,133615,6.47],[133616,133616,5.87],[133617,133617,5.69],[133618,133618,4.3],[133619,133619,6.98],[133620,133620,4.21],[133621,133621,6.86],[133622,133622,6.6],[133623,133623,3],[133624,133624,6.13],[133625,133625,6.05],[133626,133626,6.73],[133627,133627,3.06],[133628,133632,10],[133633,133634,6.77],[133635,133635,9.17],[133636,133636,10],[133637,133637,7.85],[133638,133638,10.36],[133639,133640,8.39],[133641,133642,6.2],[133643,133646,10],[133647,133647,5.79],[133648,133648,7.85],[133649,133650,10],[133651,133651,6.12],[133652,133652,7.85],[133653,133653,6.01],[133654,133654,6.05],[133655,133655,7.77],[133656,133656,7.66],[133657,133657,5.66],[133658,133658,6.25],[133659,133659,5.97],[133660,133660,6.17],[133661,133661,5.65],[133662,133662,5.75],[133663,133663,5.45],[133664,133664,6.06],[133665,133665,5.62],[133666,133666,6.13],[133667,133667,5.81],[133668,133668,5.29],[133669,133669,6.08],[133670,133670,5.96],[133671,133671,5.93],[133672,133672,6.09],[133673,133673,10],[133674,133674,5.91],[133675,133675,5.65],[133676,133676,6.14],[133677,133677,5.7],[133678,133678,5.91],[133679,133679,7.43],[133680,133680,5.62],[133681,133681,10],[133682,133682,7],[133683,133683,7.02],[133684,133684,10],[133685,133685,5.61],[133686,133686,5.99],[133687,133687,10],[133688,133688,5.91],[133689,133689,5.62],[133690,133691,10],[133692,133692,6.77],[133693,133693,10],[133694,133694,9.28],[133695,133696,9.36],[133697,133698,6.77],[133699,133702,10],[133703,133704,6.77],[133705,133706,10],[133707,133709,6.77],[133710,133712,10],[133713,133713,6.77],[133714,133720,10],[133721,133721,6.05],[133722,133722,7.77],[133723,133723,6.13],[133724,133724,5.63],[133725,133725,10],[133726,133726,5.65],[133727,133733,10],[133734,133734,5.55],[133735,133735,4.99],[133736,133736,5.22],[133737,133737,5.31],[133738,133738,5.82],[133739,133739,5.97],[133740,133740,5.19],[133741,133741,5.41],[133742,133742,5.99],[133743,133743,6.05],[133744,133745,6.77],[133746,133746,5.79],[133747,133747,6.2],[133748,133748,11.06],[133749,133749,6.77],[133750,133760,10],[133761,133762,6.51],[133763,133763,9.26],[133764,133764,10],[133765,133765,9.34],[133766,133766,12.29],[133767,133767,6.42],[133768,133768,6.47],[133769,133769,6.69],[133770,133770,9.19],[133771,133771,9.43],[133772,133772,7.42],[133773,133773,9.34],[133774,133774,10],[133775,133776,9.34],[133777,133777,12.29],[133778,133778,10],[133779,133780,12.29],[133781,133781,6.05],[133782,133782,8.09],[133783,133783,7.67],[133784,133784,6.85],[133785,133785,6.13],[133786,133786,7.38],[133787,133787,7.5],[133788,133788,6.78],[133789,133789,8.19],[133790,133790,7.63],[133791,133791,5.36],[133792,133792,6.37],[133793,133793,5.41],[133794,133794,6.05],[133795,133795,8.7],[133796,133796,6.3],[133797,133797,7.03],[133798,133798,5.13],[133799,133799,6.88],[133800,133800,5.9],[133801,133801,10],[133802,133802,6.02],[133803,133803,6.05],[133804,133804,8.2],[133805,133805,8.24],[133806,133806,6.34],[133807,133807,6.82],[133808,133808,5.1],[133809,133809,10],[133810,133810,7.16],[133811,133811,8.21],[133812,133812,10],[133813,133813,6.42],[133814,133814,7.79],[133815,133815,6.18],[133816,133816,7.89],[133817,133817,6.05],[133818,133819,10],[133820,133820,6.51],[133821,133821,5.4],[133822,133824,9.46],[133825,133829,6.51],[133830,133830,10],[133831,133832,6.51],[133833,133833,9.46],[133834,133834,10],[133835,133836,9.46],[133837,133837,6.51],[133838,133839,10],[133840,133840,11.18],[133841,133855,10],[133856,133856,9.97],[133857,133857,7.42],[133858,133859,6.51],[133860,133861,10],[133862,133862,5.38],[133863,133863,5.55],[133864,133864,5.07],[133865,133865,4.96],[133866,133866,5.46],[133867,133867,5.94],[133868,133868,5.26],[133869,133869,7],[133870,133870,5],[133871,133871,5.2],[133872,133872,4.18],[133873,133873,9.41],[133874,133880,10],[133881,133881,7.7],[133882,133888,10],[133889,133889,5.1],[133890,133890,8.66],[133891,133891,9.75],[133892,133892,10],[133893,133893,7.1],[133894,133894,9.42],[133895,133895,7.48],[133896,133896,7.57],[133897,133897,7.42],[133898,133898,7.56],[133899,133899,7.38],[133900,133900,5.67],[133901,133902,10],[133903,133903,6.96],[133904,133904,9.24],[133905,133906,10],[133907,133907,6.87],[133908,133908,9.13],[133909,133909,7.2],[133910,133910,7.26],[133911,133911,7.15],[133912,133912,7.07],[133913,133913,7.73],[133914,133914,6.67],[133915,133915,6.79],[133916,133916,7.2],[133917,133917,6.96],[133918,133918,7.32],[133919,133919,6.98],[133920,133920,7.42],[133921,133921,6.95],[133922,133922,6.89],[133923,133923,7.02],[133924,133924,6.89],[133925,133925,6.93],[133926,133926,6.89],[133927,133927,6.3],[133928,133928,6.89],[133929,133929,10],[133930,133930,7.07],[133931,133931,8.65],[133932,133932,6.81],[133933,133933,7.59],[133934,133934,7.07],[133935,133935,7.5],[133936,133936,7.2],[133937,133937,10],[133938,133938,7.89],[133939,133939,7.2],[133940,133940,10],[133941,133941,6.81],[133942,133942,7.22],[133943,133943,7.21],[133944,133944,7.02],[133945,133945,6.71],[133946,133947,10],[133948,133948,5.1],[133949,133949,3.91],[133950,133950,7.42],[133951,133951,5.1],[133952,133952,8.57],[133953,133956,5.1],[133957,133958,10],[133959,133960,9.96],[133961,133962,10],[133963,133964,12.28],[133965,133965,5.1],[133966,133973,10],[133974,133974,5.1],[133975,133975,7.42],[133976,133979,10],[133980,133980,6.95],[133981,133981,6.89],[133982,133982,10],[133983,133983,7.92],[133984,133984,7.41],[133985,133985,5.67],[133986,133987,5.1],[133988,133989,10],[133990,133999,5.72],[134000,134000,6.21],[134001,134001,6.34],[134002,134002,2.6],[134003,134003,4.34],[134004,134004,5.86],[134005,134005,4.94],[134006,134006,5.92],[134007,134007,6.62],[134008,134017,10],[134018,134018,5.58],[134019,134019,6.95],[134020,134020,10],[134021,134021,8.86],[134022,134022,10.48],[134023,134023,9.21],[134024,134024,6.39],[134025,134025,9.29],[134026,134026,11.68],[134027,134029,10],[134030,134031,7.12],[134032,134032,7.8],[134033,134033,10],[134034,134035,7.5],[134036,134036,15.33],[134037,134037,7.12],[134038,134040,10],[134041,134041,8.32],[134042,134042,6.54],[134043,134043,10],[134044,134044,7.52],[134045,134045,10],[134046,134046,9.54],[134047,134047,7.61],[134048,134050,10],[134051,134051,12.29],[134052,134052,6.94],[134053,134055,10],[134056,134056,6.72],[134057,134057,9.16],[134058,134058,5.98],[134059,134061,10],[134062,134062,6.73],[134063,134063,6.84],[134064,134064,5.5],[134065,134065,6.42],[134066,134066,7.91],[134067,134067,8.41],[134068,134068,6.73],[134069,134069,7.31],[134070,134070,9.01],[134071,134071,9.24],[134072,134072,9.83],[134073,134073,11.62],[134074,134077,10],[134078,134078,10.83],[134079,134079,7.64],[134080,134080,6.02],[134081,134081,9.73],[134082,134082,11.15],[134083,134085,10],[134086,134086,12.59],[134087,134087,11.62],[134088,134088,14.79],[134089,134089,10],[134090,134090,17.21],[134091,134091,16.1],[134092,134092,20.12],[134093,134093,5.58],[134094,134095,10],[134096,134096,8.3],[134097,134102,10],[134103,134103,13.69],[134104,134115,10],[134116,134116,2.61],[134117,134117,4.32],[134118,134118,5.48],[134119,134119,6.35],[134120,134120,6.36],[134121,134121,6.06],[134122,134122,6.12],[134123,134123,7.38],[134124,134124,8.22],[134125,134125,6.43],[134126,134126,8.5],[134127,134127,8.34],[134128,134128,7.09],[134129,134129,6.93],[134130,134130,7.74],[134131,134131,8.17],[134132,134132,7.12],[134133,134133,14.24],[134134,134134,7.33],[134135,134135,11.35],[134136,134136,12.52],[134137,134137,7.3],[134138,134138,10.05],[134139,134143,10],[134144,134144,6.6],[134145,134145,10.12],[134146,134146,13.03],[134147,134147,10.54],[134148,134148,10],[134149,134149,8.81],[134150,134150,8.68],[134151,134151,7.8],[134152,134152,10.76],[134153,134153,9.3],[134154,134154,12.83],[134155,134155,15.89],[134156,134156,10.91],[134157,134157,10],[134158,134159,8.15],[134160,134160,8.39],[134161,134161,10],[134162,134163,8.11],[134164,134164,8.35],[134165,134165,5.53],[134166,134166,9.25],[134167,134167,6.36],[134168,134168,11.48],[134169,134169,8.21],[134170,134171,8.53],[134172,134172,8.16],[134173,134173,13.56],[134174,134174,10.46],[134175,134175,8.5],[134176,134176,6.43],[134177,134178,8.57],[134179,134179,8.86],[134180,134180,8.15],[134181,134183,8.32],[134184,134184,7.95],[134185,134185,10],[134186,134187,8.07],[134188,134189,8.71],[134190,134190,11.54],[134191,134191,13.56],[134192,134192,6.43],[134193,134193,9.3],[134194,134194,7.98],[134195,134195,6.69],[134196,134196,9.3],[134197,134197,7.98],[134198,134198,5.7],[134199,134199,7.98],[134200,134200,8.02],[134201,134201,11.66],[134202,134204,10],[134205,134205,6.88],[134206,134206,9.94],[134207,134208,6.6],[134209,134209,10.15],[134210,134210,12.97],[134211,134211,11.22],[134212,134212,14.3],[134213,134213,10],[134214,134216,6.6],[134217,134217,10],[134218,134219,6.6],[134220,134220,9.93],[134221,134221,6.6],[134222,134228,10],[134229,134230,6.6],[134231,134231,10],[134232,134232,8.53],[134233,134233,8.16],[134234,134234,8.32],[134235,134239,10],[134240,134240,19.65],[134241,134241,14.73],[134242,134243,6.6],[134244,134245,10],[134246,134246,6.04],[134247,134247,6.16],[134248,134248,7.75],[134249,134249,5.36],[134250,134250,6.22],[134251,134251,7.02],[134252,134252,5.14],[134253,134253,5.38],[134254,134254,6.08],[134255,134255,5.14],[134256,134263,10],[134264,134264,5.47],[134265,134265,2.61],[134266,134266,4.97],[134267,134267,7.78],[134268,134268,7.05],[134269,134269,6.97],[134270,134270,6.92],[134271,134271,8.2],[134272,134272,6.12],[134273,134273,5.61],[134274,134274,11.69],[134275,134275,9.03],[134276,134276,10],[134277,134277,9.57],[134278,134278,9.39],[134279,134279,8.1],[134280,134280,10.87],[134281,134281,13.35],[134282,134282,17.5],[134283,134283,12.72],[134284,134284,9.44],[134285,134285,10],[134286,134287,8.54],[134288,134288,8.76],[134289,134289,10],[134290,134291,8.66],[134292,134292,8.67],[134293,134293,6.37],[134294,134294,9.22],[134295,134295,7.01],[134296,134296,10.77],[134297,134297,8.66],[134298,134298,8.94],[134299,134299,9.24],[134300,134300,8.66],[134301,134301,14.16],[134302,134302,10.91],[134303,134303,9.07],[134304,134304,7],[134305,134306,8.37],[134307,134307,9.69],[134308,134308,6.86],[134309,134311,8.2],[134312,134312,7.7],[134313,134313,10],[134314,134315,8.61],[134316,134316,8.88],[134317,134317,8.96],[134318,134318,12.25],[134319,134319,13.84],[134320,134320,6.92],[134321,134321,9.82],[134322,134322,8.16],[134323,134323,7.7],[134324,134324,10],[134325,134325,8.63],[134326,134326,6.98],[134327,134327,8.8],[134328,134328,7.68],[134329,134329,8.61],[134330,134331,10],[134332,134332,5.61],[134333,134333,5.05],[134334,134334,10.67],[134335,134335,9.4],[134336,134336,14.19],[134337,134337,9.23],[134338,134338,13.87],[134339,134339,7.02],[134340,134340,10.75],[134341,134341,10],[134342,134342,5.61],[134343,134343,10.4],[134344,134344,7.48],[134345,134345,10],[134346,134346,13.87],[134347,134347,18.66],[134348,134348,10.58],[134349,134349,9.25],[134350,134356,10],[134357,134357,10.4],[134358,134358,7.48],[134359,134365,10],[134366,134366,9.58],[134367,134367,10],[134368,134368,17.33],[134369,134369,14.39],[134370,134371,6.34],[134372,134373,10],[134374,134383,6.88],[134384,134384,10],[134385,134385,5.78],[134386,134386,8.92],[134387,134400,10],[134401,134401,0],[134402,134402,3.85],[134403,134403,2.83],[134404,134404,10],[134405,134405,12.39],[134406,134406,13.72],[134407,134407,8.99],[134408,134408,16.3],[134409,134409,6.36],[134410,134410,13.61],[134411,134411,8.03],[134412,134412,9.98],[134413,134413,10],[134414,134415,11.13],[134416,134416,16.73],[134417,134417,10],[134418,134418,6.65],[134419,134419,11.08],[134420,134420,14.11],[134421,134421,8.85],[134422,134422,7.99],[134423,134423,7.52],[134424,134424,11.91],[134425,134425,9.69],[134426,134426,8.29],[134427,134427,11.58],[134428,134428,7.97],[134429,134429,14.45],[134430,134430,12.57],[134431,134431,5.18],[134432,134432,5.8],[134433,134433,10.94],[134434,134434,11.26],[134435,134435,12.42],[134436,134436,8.72],[134437,134437,7.36],[134438,134438,5.56],[134439,134440,8.4],[134441,134441,9.14],[134442,134442,7.16],[134443,134443,10.26],[134444,134444,11.31],[134445,134445,5.79],[134446,134446,5.8],[134447,134447,8.82],[134448,134448,6.11],[134449,134449,5.71],[134450,134450,7.69],[134451,134451,6.5],[134452,134452,5.75],[134453,134453,7.99],[134454,134454,8.59],[134455,134455,10.03],[134456,134456,10.94],[134457,134457,11.02],[134458,134458,7.36],[134459,134460,10],[134461,134461,3.81],[134462,134462,10.2],[134463,134463,8.1],[134464,134464,8.02],[134465,134465,8.69],[134466,134466,8.75],[134467,134467,9.25],[134468,134468,9.29],[134469,134469,10],[134470,134470,11.43],[134471,134471,10.61],[134472,134472,16.83],[134473,134473,10],[134474,134474,15.59],[134475,134475,18.36],[134476,134476,13.3],[134477,134477,5.99],[134478,134478,1.73],[134479,134486,10],[134487,134487,13.3],[134488,134494,10],[134495,134495,13.73],[134496,134496,7.99],[134497,134497,11.01],[134498,134498,6.03],[134499,134499,6.71],[134500,134501,10],[134502,134502,5.8],[134503,134503,7.82],[134504,134504,7.99],[134505,134505,9.86],[134506,134506,6.18],[134507,134507,8.82],[134508,134508,12.05],[134509,134509,4.4],[134510,134510,7.99],[134511,134511,9.22],[134512,134512,8.4],[134513,134513,8.76],[134514,134514,11.95],[134515,134515,6.87],[134516,134516,7.49],[134517,134517,10.09],[134518,134520,10],[134521,134521,10.55],[134522,134522,13.41],[134523,134523,9.22],[134524,134524,6.18],[134525,134525,9.86],[134526,134526,8.51],[134527,134527,9.82],[134528,134529,10],[134530,134530,4.16],[134531,134531,2.83],[134532,134532,10],[134533,134533,6.03],[134534,134534,8.74],[134535,134535,9.21],[134536,134536,9.17],[134537,134537,5.93],[134538,134538,5.68],[134539,134539,5.88],[134540,134540,10.38],[134541,134541,10.2],[134542,134542,13.85],[134543,134543,7.86],[134544,134544,13.12],[134545,134545,6.69],[134546,134546,6.85],[134547,134547,11.14],[134548,134549,6.66],[134550,134550,11.35],[134551,134553,10],[134554,134554,7.8],[134555,134555,7.31],[134556,134556,6.65],[134557,134557,5.94],[134558,134558,6.49],[134559,134559,8.22],[134560,134560,6.14],[134561,134561,5.46],[134562,134562,5.33],[134563,134563,11.99],[134564,134564,11.12],[134565,134565,10.23],[134566,134566,6.6],[134567,134567,5.88],[134568,134568,6.18],[134569,134569,6.62],[134570,134570,6.31],[134571,134571,8.53],[134572,134572,8.22],[134573,134573,7.12],[134574,134574,5.92],[134575,134575,5.04],[134576,134576,6.49],[134577,134577,6.84],[134578,134578,10],[134579,134579,6.45],[134580,134580,5.33],[134581,134581,6.29],[134582,134582,6.8],[134583,134583,7.86],[134584,134584,6.61],[134585,134585,6.58],[134586,134586,6.05],[134587,134587,5.42],[134588,134588,10],[134589,134589,6.26],[134590,134591,10],[134592,134592,6.04],[134593,134593,6.97],[134594,134594,5.53],[134595,134595,6.31],[134596,134596,7.29],[134597,134597,6.77],[134598,134598,6.27],[134599,134601,10],[134602,134602,6.2],[134603,134606,10],[134607,134607,8.12],[134608,134608,8.41],[134609,134609,8.4],[134610,134611,5.61],[134612,134612,5.56],[134613,134613,10],[134614,134614,5.56],[134615,134615,10],[134616,134616,9.18],[134617,134617,10.42],[134618,134618,11.16],[134619,134619,15.1],[134620,134621,12.95],[134622,134622,14.91],[134623,134623,10.05],[134624,134641,10],[134642,134642,12.94],[134643,134643,4.65],[134644,134644,10.67],[134645,134655,10],[134656,134656,1.95],[134657,134657,6],[134658,134658,5.72],[134659,134659,5.69],[134660,134660,6.39],[134661,134661,6.29],[134662,134662,6.35],[134663,134663,4.77],[134664,134664,5.28],[134665,134665,6.1],[134666,134666,5.86],[134667,134667,5.91],[134668,134668,8.18],[134669,134669,8.15],[134670,134671,6.61],[134672,134672,5.32],[134673,134673,6.92],[134674,134674,8.52],[134675,134675,8.18],[134676,134676,6.3],[134677,134677,6.29],[134678,134678,6],[134679,134679,6.3],[134680,134680,5.52],[134681,134681,6.19],[134682,134683,6.51],[134684,134685,5.95],[134686,134686,6.71],[134687,134687,6.76],[134688,134688,6.64],[134689,134689,6.3],[134690,134690,6.11],[134691,134691,4.78],[134692,134692,5.98],[134693,134693,5.82],[134694,134694,6.64],[134695,134695,5.11],[134696,134696,6.25],[134697,134697,6.48],[134698,134698,5.96],[134699,134699,6.32],[134700,134700,6.71],[134701,134701,5.78],[134702,134702,5.76],[134703,134703,6.14],[134704,134704,4.36],[134705,134705,5.08],[134706,134706,5.06],[134707,134707,10.23],[134708,134714,5.08],[134715,134718,10],[134719,134719,7.62],[134720,134720,3.16],[134721,134721,5.8],[134722,134722,5.02],[134723,134723,5.45],[134724,134724,4.22],[134725,134725,5.16],[134726,134726,6.05],[134727,134734,5.08],[134735,134735,7.32],[134736,134736,5.85],[134737,134737,6.14],[134738,134738,6.55],[134739,134739,6.78],[134740,134740,6.15],[134741,134741,6.03],[134742,134742,5.79],[134743,134743,7.63],[134744,134744,6.2],[134745,134745,6.68],[134746,134746,7.75],[134747,134747,12.73],[134748,134784,10],[134785,134785,6.18],[134786,134786,5.41],[134787,134787,10],[134788,134788,5.67],[134789,134790,10],[134791,134791,5.11],[134792,134792,5.56],[134793,134793,10],[134794,134794,5.49],[134795,134796,10],[134797,134797,5.67],[134798,134803,10],[134804,134804,5.83],[134805,134805,6.02],[134806,134806,6.23],[134807,134807,6.41],[134808,134808,10],[134809,134809,6.14],[134810,134810,5.27],[134811,134811,5.31],[134812,134812,6.75],[134813,134813,6.67],[134814,134814,6.65],[134815,134815,6.69],[134816,134816,10],[134817,134817,6.18],[134818,134818,5.59],[134819,134819,5.41],[134820,134820,10],[134821,134821,5.55],[134822,134822,10],[134823,134823,5.35],[134824,134825,10],[134826,134826,5.55],[134827,134827,7.68],[134828,134828,10],[134829,134829,5.55],[134830,134830,5.51],[134831,134831,5.28],[134832,134832,5.13],[134833,134833,0],[134834,134834,4.3],[134835,134841,0],[134842,134842,10],[134843,134844,0],[134845,134845,4.54],[134846,134847,10],[134848,134848,3.41],[134849,134849,5.91],[134850,134850,3.37],[134851,134851,3.4],[134852,134852,3.33],[134853,134853,10],[134854,134854,5.87],[134855,134855,10],[134856,134859,0],[134860,134860,3.25],[134861,134861,0],[134862,134863,10],[134864,134864,5.58],[134865,134865,5.08],[134866,134866,4.98],[134867,134867,5.75],[134868,134868,5.11],[134869,134869,5.27],[134870,134870,6.23],[134871,134871,6.28],[134872,134872,6.65],[134873,134873,6.27],[134874,134875,10],[134876,134877,10.01],[134878,134911,10],[134912,134912,6.23],[134913,134913,4.94],[134914,134915,7.69],[134916,134916,11.57],[134917,134917,5.97],[134918,134918,11.57],[134919,134919,14.99],[134920,134920,3.85],[134921,134921,5.77],[134922,134922,6.44],[134923,134924,1.6],[134925,134925,2.45],[134926,134926,4.58],[134927,134928,2.45],[134929,134929,2.62],[134930,134930,10.52],[134931,134931,5.95],[134932,134932,3.59],[134933,134933,6.48],[134934,134934,4.72],[134935,134935,7.52],[134936,134937,0],[134938,134938,2.93],[134939,134940,5.03],[134941,134941,3.05],[134942,134942,4.98],[134943,134943,5.31],[134944,134945,3.41],[134946,134946,5.43],[134947,134947,5.17],[134948,134948,6.92],[134949,134949,4.98],[134950,134951,5.69],[134952,134952,4.73],[134953,134953,5.07],[134954,134954,5.09],[134955,134955,5.43],[134956,134956,5.17],[134957,134957,6.92],[134958,134958,4.98],[134959,134960,5.69],[134961,134961,5.05],[134962,134962,5.07],[134963,134963,4.97],[134964,134964,5.25],[134965,134965,0],[134966,134966,4.97],[134967,134967,0],[134968,134968,5.47],[134969,134969,0],[134970,134970,13.6],[134971,134971,13.3],[134972,134972,4.88],[134973,134973,4.92],[134974,134974,2.86],[134975,134975,4.28],[134976,134978,5.17],[134979,134979,5.07],[134980,134980,4.73],[134981,134981,5.34],[134982,134982,5.17],[134983,134983,4.73],[134984,134984,10],[134985,134985,4.64],[134986,134988,4.73],[134989,134989,5.07],[134990,134993,4.73],[134994,134994,5.07],[134995,134995,4.73],[134996,134998,5.17],[134999,134999,5.07],[135000,135000,5.17],[135001,135001,5.34],[135002,135002,5.17],[135003,135003,4.73],[135004,135004,5.07],[135005,135006,4.73],[135007,135007,4.9],[135008,135008,4.73],[135009,135009,5.6],[135010,135010,4.9],[135011,135011,5.34],[135012,135014,5.17],[135015,135015,4.73],[135016,135016,6.04],[135017,135017,5.07],[135018,135018,4.9],[135019,135019,5.24],[135020,135020,5.3],[135021,135024,10],[135025,135025,5.44],[135026,135026,0],[135027,135027,5.44],[135028,135028,5.52],[135029,135029,10.96],[135030,135030,5.07],[135031,135031,10.51],[135032,135032,5.07],[135033,135033,10.51],[135034,135038,0],[135039,135039,4.62],[135040,135040,0],[135041,135041,5.44],[135042,135044,0],[135045,135045,5.16],[135046,135048,0],[135049,135049,5.25],[135050,135050,4.77],[135051,135051,5.23],[135052,135055,10],[135056,135063,5.07],[135064,135064,10],[135065,135100,5.07],[135101,135101,10],[135102,135102,5.11],[135103,135103,5.13],[135104,135104,5.8],[135105,135105,3.92],[135106,135106,4.97],[135107,135107,5.85],[135108,135108,4.13],[135109,135109,3.28],[135110,135110,0],[135111,135111,6.45],[135112,135112,3.55],[135113,135113,5.53],[135114,135114,5.97],[135115,135115,5.79],[135116,135116,6.16],[135117,135117,10],[135118,135118,5.49],[135119,135119,4.98],[135120,135120,20.63],[135121,135121,4.75],[135122,135122,2.1],[135123,135123,11.52],[135124,135124,4.86],[135125,135125,6.38],[135126,135126,6.57],[135127,135127,6.09],[135128,135128,6.35],[135129,135167,10],[135168,135168,11.1],[135169,135169,6.99],[135170,135170,6.89],[135171,135171,11.11],[135172,135172,6.61],[135173,135173,6.98],[135174,135174,11.12],[135175,135175,6.98],[135176,135176,9.15],[135177,135177,6.6],[135178,135178,10.87],[135179,135179,6.79],[135180,135180,6.6],[135181,135181,6.79],[135182,135182,7.12],[135183,135183,13.54],[135184,135184,11.09],[135185,135185,11.1],[135186,135186,6.65],[135187,135187,6.98],[135188,135188,5.61],[135189,135189,6.98],[135190,135190,6.97],[135191,135191,7.01],[135192,135192,11.11],[135193,135193,6.97],[135194,135194,11.1],[135195,135195,6.98],[135196,135196,11.1],[135197,135197,6.98],[135198,135198,11.14],[135199,135199,11.09],[135200,135200,6.79],[135201,135201,10.14],[135202,135202,11.04],[135203,135203,10.88],[135204,135204,13.93],[135205,135206,6.63],[135207,135207,6.3],[135208,135208,7.63],[135209,135209,14.18],[135210,135210,24.91],[135211,135211,9.11],[135212,135212,10.02],[135213,135216,5.94],[135217,135217,12.26],[135218,135223,5.94],[135224,135224,9.77],[135225,135226,5.94],[135227,135227,9.04],[135228,135228,9.25],[135229,135230,5.94],[135231,135231,15.25],[135232,135232,6.65],[135233,135233,6.25],[135234,135234,7.28],[135235,135236,6.25],[135237,135238,7.63],[135239,135239,6.49],[135240,135240,6.65],[135241,135241,7.63],[135242,135242,3.05],[135243,135243,5.26],[135244,135244,6.79],[135245,135245,10.14],[135246,135246,6.6],[135247,135247,12.91],[135248,135248,6.89],[135249,135249,6.97],[135250,135250,6.96],[135251,135251,6.81],[135252,135252,6.32],[135253,135253,6.64],[135254,135254,9.7],[135255,135255,9.9],[135256,135257,5.94],[135258,135258,6.25],[135259,135259,9.15],[135260,135260,6.85],[135261,135261,6.65],[135262,135264,5.94],[135265,135265,7.38],[135266,135266,9.33],[135267,135267,12.54],[135268,135268,10.18],[135269,135269,6.98],[135270,135270,6.65],[135271,135271,10.39],[135272,135272,9.95],[135273,135273,10.52],[135274,135276,10.48],[135277,135277,10.52],[135278,135278,13.52],[135279,135279,10.92],[135280,135280,10.77],[135281,135284,5.94],[135285,135285,7.03],[135286,135286,7],[135287,135287,6.99],[135288,135289,11.11],[135290,135290,10.72],[135291,135291,11.12],[135292,135292,11.02],[135293,135293,10.99],[135294,135294,10.4],[135295,135295,6.98],[135296,135296,11.07],[135297,135297,6.65],[135298,135298,5.94],[135299,135299,9.33],[135300,135300,11.98],[135301,135302,5.94],[135303,135303,9.99],[135304,135305,9.79],[135306,135306,10.49],[135307,135307,9.79],[135308,135308,13.22],[135309,135309,5.94],[135310,135310,6.98],[135311,135311,9.79],[135312,135312,7.63],[135313,135313,6.46],[135314,135314,6.92],[135315,135315,7.34],[135316,135316,7.49],[135317,135317,7.45],[135318,135318,7.32],[135319,135319,5.55],[135320,135321,6.65],[135322,135322,9.79],[135323,135323,9.99],[135324,135324,10.49],[135325,135325,5.94],[135326,135326,4.01],[135327,135327,10.13],[135328,135328,6.62],[135329,135329,6.77],[135330,135330,7.08],[135331,135331,6.96],[135332,135332,6.09],[135333,135333,7.9],[135334,135334,6.64],[135335,135335,7.85],[135336,135336,5.6],[135337,135337,6.34],[135338,135338,7.82],[135339,135339,7.01],[135340,135340,6.29],[135341,135341,6.82],[135342,135342,7.05],[135343,135343,6.92],[135344,135344,7.34],[135345,135345,6.15],[135346,135346,5.92],[135347,135347,6.8],[135348,135348,6.79],[135349,135349,7.05],[135350,135350,6.43],[135351,135352,6.23],[135353,135353,6.29],[135354,135354,6.33],[135355,135355,7.7],[135356,135356,5.92],[135357,135357,6.62],[135358,135358,6.29],[135359,135359,6.72],[135360,135360,7.35],[135361,135361,5.76],[135362,135362,6.06],[135363,135363,6.05],[135364,135364,6.76],[135365,135365,7.92],[135366,135375,10],[135376,135376,5.18],[135377,135377,5.69],[135378,135378,5.27],[135379,135379,8.31],[135380,135380,5.39],[135381,135381,5.34],[135382,135382,6.21],[135383,135383,8.47],[135384,135384,5.38],[135385,135385,5.22],[135386,135386,9.72],[135387,135387,5.76],[135388,135388,5.77],[135389,135389,7.36],[135390,135390,5.34],[135391,135391,5.57],[135392,135392,7.39],[135393,135393,5.52],[135394,135394,6.63],[135395,135395,5.57],[135396,135396,8],[135397,135397,5.35],[135398,135398,7.36],[135399,135399,5.51],[135400,135400,5.8],[135401,135401,5.66],[135402,135402,5.88],[135403,135403,5.75],[135404,135404,5.8],[135405,135405,6.02],[135406,135406,5.75],[135407,135407,5.18],[135408,135408,5.3],[135409,135409,5.93],[135410,135410,5.3],[135411,135412,5.43],[135413,135413,5.91],[135414,135414,7.34],[135415,135415,5.18],[135416,135416,5.56],[135417,135417,5.27],[135418,135418,5.18],[135419,135419,5.37],[135420,135420,3.7],[135421,135421,5.77],[135422,135422,5.38],[135423,135423,5.69],[135424,135442,8.65],[135443,135518,10],[135519,135520,0],[135521,135541,8.65],[135542,135581,10],[135582,135582,8.65],[135583,135585,10],[135586,135586,8.65],[135587,135591,10],[135592,135618,8.65],[135619,135679,10],[135680,135680,7.36],[135681,135681,9.67],[135682,135682,6.84],[135683,135683,7.02],[135684,135684,6.94],[135685,135685,7.81],[135686,135686,9.57],[135687,135687,11.67],[135688,135688,6.91],[135689,135689,9.05],[135690,135690,8.87],[135691,135691,6.91],[135692,135692,9.12],[135693,135693,8.24],[135694,135694,11.43],[135695,135695,9.24],[135696,135696,10.9],[135697,135697,13.06],[135698,135698,13.04],[135699,135699,10.9],[135700,135700,12.92],[135701,135701,10.9],[135702,135702,10.95],[135703,135703,13.13],[135704,135704,11.43],[135705,135705,14.27],[135706,135706,12.03],[135707,135707,11.43],[135708,135708,12.04],[135709,135710,11.43],[135711,135711,12.15],[135712,135712,10.31],[135713,135713,12.91],[135714,135714,10.57],[135715,135715,10.31],[135716,135716,10.62],[135717,135717,11.56],[135718,135718,10.04],[135719,135719,10.69],[135720,135720,6.51],[135721,135721,7.7],[135722,135722,7.29],[135723,135723,9.65],[135724,135724,8.68],[135725,135725,6.61],[135726,135726,8.81],[135727,135727,9.65],[135728,135728,7.14],[135729,135729,9.39],[135730,135730,9.33],[135731,135731,7.14],[135732,135732,9.2],[135733,135734,7.14],[135735,135735,9.42],[135736,135736,8.4],[135737,135737,9.96],[135738,135738,9.89],[135739,135739,8.4],[135740,135740,9.77],[135741,135741,8.96],[135742,135742,8.4],[135743,135743,9.99],[135744,135751,9.05],[135752,135752,10.6],[135753,135753,10],[135754,135754,13.5],[135755,135756,9.05],[135757,135757,13.5],[135758,135759,10],[135760,135764,9.35],[135765,135765,10.67],[135766,135766,9.35],[135767,135767,10],[135768,135768,10.75],[135769,135769,10],[135770,135770,13.65],[135771,135772,9.35],[135773,135773,11.9],[135774,135775,10],[135776,135776,7.53],[135777,135777,9.59],[135778,135778,9.53],[135779,135779,7.53],[135780,135780,9.4],[135781,135781,9.88],[135782,135782,7.53],[135783,135783,9.62],[135784,135784,8.4],[135785,135785,9.96],[135786,135786,9.89],[135787,135787,8.4],[135788,135788,9.77],[135789,135789,10.28],[135790,135790,8.4],[135791,135791,9.99],[135792,135794,8.37],[135795,135795,8.38],[135796,135796,8.47],[135797,135800,8.37],[135801,135801,8.4],[135802,135802,8.37],[135803,135803,8.38],[135804,135804,8.37],[135805,135805,10.05],[135806,135806,8.44],[135807,135807,8.37],[135808,135808,7.56],[135809,135809,9.52],[135810,135810,8.99],[135811,135811,7.56],[135812,135812,8.75],[135813,135813,7.36],[135814,135815,11.01],[135816,135816,11.45],[135817,135817,10],[135818,135818,11.13],[135819,135819,8.31],[135820,135820,8.75],[135821,135821,11.12],[135822,135823,10],[135824,135824,5.8],[135825,135825,7.76],[135826,135826,7.23],[135827,135827,6.83],[135828,135828,6.99],[135829,135829,7.46],[135830,135830,8.5],[135831,135831,7.97],[135832,135832,8.35],[135833,135833,9.68],[135834,135834,9.16],[135835,135835,8.35],[135836,135836,8.92],[135837,135837,8.35],[135838,135838,10.35],[135839,135839,8.67],[135840,135840,6.67],[135841,135841,9.12],[135842,135842,9.1],[135843,135843,6.67],[135844,135844,8.97],[135845,135845,6.98],[135846,135846,6.67],[135847,135847,8.59],[135848,135848,7.65],[135849,135849,9.9],[135850,135850,9.83],[135851,135851,7.65],[135852,135852,9.71],[135853,135854,7.65],[135855,135855,9.56],[135856,135856,12.11],[135857,135857,10],[135858,135858,11.5],[135859,135859,9.26],[135860,135860,9.71],[135861,135861,11.5],[135862,135863,10],[135864,135864,9.62],[135865,135865,11.88],[135866,135866,11.81],[135867,135867,9.62],[135868,135868,11.68],[135869,135870,9.62],[135871,135871,10],[135872,135872,14.09],[135873,135873,10],[135874,135874,13.48],[135875,135875,11.9],[135876,135876,11.68],[135877,135877,13.48],[135878,135879,10],[135880,135880,9.74],[135881,135881,12],[135882,135884,9.74],[135885,135885,12.39],[135886,135886,9.74],[135887,135887,12.55],[135888,135888,7.11],[135889,135889,9.56],[135890,135890,9.29],[135891,135891,6.92],[135892,135892,9.23],[135893,135893,6.91],[135894,135894,7.31],[135895,135895,10],[135896,135896,7.89],[135897,135898,9.8],[135899,135899,7.89],[135900,135900,9.69],[135901,135901,9.6],[135902,135902,7.89],[135903,135903,9.92],[135904,135908,12],[135909,135909,13.53],[135910,135911,12],[135912,135912,6.25],[135913,135913,7.87],[135914,135914,9.29],[135915,135915,6.45],[135916,135916,10.24],[135917,135917,7.45],[135918,135918,8.85],[135919,135919,11.13],[135920,135920,8.24],[135921,135921,11.11],[135922,135922,10.4],[135923,135923,8.04],[135924,135924,10.05],[135925,135925,9.09],[135926,135926,8.95],[135927,135927,10.38],[135928,135928,8.19],[135929,135929,10.81],[135930,135930,10.1],[135931,135931,7.74],[135932,135932,10],[135933,135933,9.68],[135934,135934,8.95],[135935,135935,10.08],[135936,135936,8.49],[135937,135937,11.36],[135938,135938,10.65],[135939,135939,8.29],[135940,135940,10.56],[135941,135941,9.98],[135942,135942,9.02],[135943,135943,10.63],[135944,135944,6.29],[135945,135945,9.02],[135946,135946,6.67],[135947,135947,6.83],[135948,135948,6.55],[135949,135949,8.68],[135950,135950,6.29],[135951,135951,7.66],[135952,135952,11.25],[135953,135953,10],[135954,135954,10.64],[135955,135955,6.72],[135956,135956,7.92],[135957,135957,10.64],[135958,135959,10],[135960,135960,8.15],[135961,135961,9.91],[135962,135964,8.15],[135965,135965,9.49],[135966,135966,8.44],[135967,135967,8.15],[135968,135968,12],[135969,135969,14.11],[135970,135970,14.09],[135971,135971,11.95],[135972,135972,13.96],[135973,135973,11.58],[135974,135974,12],[135975,135975,14.13],[135976,135976,14.7],[135977,135977,15.07],[135978,135978,15],[135979,135979,14.7],[135980,135980,18.12],[135981,135981,14.3],[135982,135982,14.5],[135983,135983,15.1],[135984,135984,7.22],[135985,135985,9.61],[135986,135986,9.4],[135987,135987,7.1],[135988,135988,9.28],[135989,135989,9.23],[135990,135990,7.27],[135991,135991,9.38],[135992,135992,7.47],[135993,135993,9.76],[135994,135994,9.55],[135995,135995,7.25],[135996,135996,9.42],[135997,135997,9.41],[135998,135998,7.51],[135999,135999,9.43],[136000,136000,7.11],[136001,136001,9.56],[136002,136002,7.23],[136003,136003,6.39],[136004,136004,7.29],[136005,136005,6.91],[136006,136006,7.3],[136007,136007,8.92],[136008,136008,9.3],[136009,136009,9.48],[136010,136010,9.89],[136011,136011,9.48],[136012,136012,10.97],[136013,136013,9.18],[136014,136014,9.33],[136015,136015,9.18],[136016,136016,8.37],[136017,136017,8.4],[136018,136018,8.37],[136019,136019,8.38],[136020,136021,8.37],[136022,136022,8.46],[136023,136023,8.37],[136024,136024,8.84],[136025,136025,12.07],[136026,136026,10.14],[136027,136030,10],[136031,136031,7.95],[136032,136032,9.61],[136033,136033,3.3],[136034,136034,6.68],[136035,136037,3.97],[136038,136038,5.78],[136039,136039,3.3],[136040,136040,10.06],[136041,136041,5.89],[136042,136042,5.36],[136043,136043,5.88],[136044,136044,5.84],[136045,136045,7.08],[136046,136046,6.63],[136047,136047,6.8],[136048,136048,7.19],[136049,136049,6.09],[136050,136050,4.56],[136051,136051,8],[136052,136052,7.95],[136053,136053,9.22],[136054,136054,5.84],[136055,136055,7.19],[136056,136056,8.54],[136057,136057,9.49],[136058,136058,6.02],[136059,136059,6.19],[136060,136060,11.56],[136061,136063,10],[136064,136064,16.38],[136065,136065,15.47],[136066,136066,12.04],[136067,136067,16.14],[136068,136068,11.72],[136069,136069,11.27],[136070,136070,9.4],[136071,136071,14.08],[136072,136073,10.68],[136074,136074,11.68],[136075,136075,13.67],[136076,136076,10.54],[136077,136077,10.06],[136078,136078,8.47],[136079,136079,11.85],[136080,136080,3.28],[136081,136081,5.93],[136082,136083,3.28],[136084,136084,5.93],[136085,136085,7.24],[136086,136086,4.82],[136087,136087,9.34],[136088,136088,10.98],[136089,136089,5.7],[136090,136095,10],[136096,136096,7.47],[136097,136097,6.94],[136098,136098,6.6],[136099,136099,9.39],[136100,136100,10.51],[136101,136101,4.68],[136102,136102,7.2],[136103,136103,8.81],[136104,136104,6.48],[136105,136105,6.19],[136106,136106,7.32],[136107,136107,6.01],[136108,136108,6.22],[136109,136109,9.64],[136110,136110,6.23],[136111,136111,8.54],[136112,136112,5.64],[136113,136113,5.92],[136114,136114,10.74],[136115,136115,10.09],[136116,136116,6.39],[136117,136117,6.13],[136118,136118,7.45],[136119,136119,9.17],[136120,136120,6.1],[136121,136121,9.91],[136122,136122,10.55],[136123,136123,7.83],[136124,136124,6.3],[136125,136125,8.29],[136126,136126,7.86],[136127,136127,7.57],[136128,136128,7.59],[136129,136129,8.83],[136130,136130,6.18],[136131,136131,6.31],[136132,136132,6.1],[136133,136133,11.38],[136134,136134,6.35],[136135,136135,9.22],[136136,136136,8.88],[136137,136137,12.22],[136138,136138,9.22],[136139,136139,6.62],[136140,136140,7.61],[136141,136141,10.82],[136142,136142,6.82],[136143,136143,6.56],[136144,136144,6.05],[136145,136145,7.88],[136146,136146,6.94],[136147,136147,5.26],[136148,136148,10.11],[136149,136149,6.98],[136150,136150,8.64],[136151,136152,6.93],[136153,136153,7.21],[136154,136154,6.75],[136155,136155,9.06],[136156,136156,8.96],[136157,136157,6.2],[136158,136158,5.95],[136159,136159,7.21],[136160,136160,9.13],[136161,136161,10.85],[136162,136162,6.56],[136163,136163,8.19],[136164,136164,8.15],[136165,136165,8.25],[136166,136166,7.27],[136167,136167,6.49],[136168,136168,9.42],[136169,136169,8.21],[136170,136170,10.43],[136171,136171,7.86],[136172,136172,9.21],[136173,136173,7.27],[136174,136174,6.69],[136175,136175,9.22],[136176,136176,7.44],[136177,136177,9.22],[136178,136178,6.52],[136179,136179,9.46],[136180,136180,6.94],[136181,136181,7.54],[136182,136183,9.22],[136184,136184,5.81],[136185,136185,7.19],[136186,136186,5.08],[136187,136187,7.38],[136188,136188,5.41],[136189,136189,5.88],[136190,136190,8.21],[136191,136191,9.22],[136192,136192,10],[136193,136196,8.73],[136197,136198,7.91],[136199,136199,7.9],[136200,136201,7.94],[136202,136203,7.91],[136204,136209,9.02],[136210,136210,9.52],[136211,136211,9.63],[136212,136212,9.46],[136213,136213,9.63],[136214,136214,7.94],[136215,136215,9.65],[136216,136216,9.12],[136217,136217,9.64],[136218,136218,9.15],[136219,136219,7.9],[136220,136220,7.84],[136221,136221,6.3],[136222,136222,5.61],[136223,136223,3.65],[136224,136224,3.67],[136225,136226,5.39],[136227,136227,3.95],[136228,136228,4.81],[136229,136229,5.72],[136230,136230,4.2],[136231,136231,2.15],[136232,136232,4],[136233,136233,4.72],[136234,136234,4.18],[136235,136235,12.22],[136236,136236,9.61],[136237,136237,10.29],[136238,136238,11.2],[136239,136239,8.75],[136240,136242,8.58],[136243,136247,7.89],[136248,136249,7.88],[136250,136250,8.91],[136251,136251,8.88],[136252,136252,8.9],[136253,136253,9.05],[136254,136254,8.9],[136255,136255,8.93],[136256,136256,8.97],[136257,136257,9.56],[136258,136258,8.97],[136259,136259,9.56],[136260,136260,9.37],[136261,136261,8.71],[136262,136262,9.62],[136263,136263,8.74],[136264,136264,7.6],[136265,136265,4.33],[136266,136266,1.99],[136267,136267,4.97],[136268,136271,8.88],[136272,136278,7.24],[136279,136279,10.7],[136280,136280,10.58],[136281,136281,10.56],[136282,136282,10.57],[136283,136283,10.56],[136284,136284,10.57],[136285,136285,8.31],[136286,136286,9.01],[136287,136287,8.31],[136288,136288,9.01],[136289,136289,8.63],[136290,136290,8.35],[136291,136291,8.62],[136292,136292,8.35],[136293,136293,8.63],[136294,136294,3.95],[136295,136296,11.13],[136297,136298,9.52],[136299,136307,6.51],[136308,136308,8.1],[136309,136309,7.94],[136310,136310,7.84],[136311,136311,8.19],[136312,136312,7.84],[136313,136313,8.19],[136314,136314,8.12],[136315,136315,7.92],[136316,136316,8.12],[136317,136317,7.92],[136318,136318,8.12],[136319,136319,7.92],[136320,136320,8.12],[136321,136321,7.92],[136322,136322,7.78],[136323,136324,4.8],[136325,136325,8.52],[136326,136326,8.63],[136327,136328,7.87],[136329,136337,7.09],[136338,136345,8.68],[136346,136346,8.56],[136347,136350,8.68],[136351,136351,8.56],[136352,136352,8.68],[136353,136354,4.53],[136355,136355,6.43],[136356,136363,6.22],[136364,136364,7.31],[136365,136365,8.02],[136366,136366,7.76],[136367,136367,7.15],[136368,136368,7.76],[136369,136369,7.15],[136370,136370,7.1],[136371,136371,7.81],[136372,136372,7.1],[136373,136374,7.81],[136375,136375,7.15],[136376,136376,7.8],[136377,136377,7.15],[136378,136378,7.69],[136379,136379,3.87],[136380,136380,3.71],[136381,136381,3.87],[136382,136382,4.5],[136383,136383,6.05],[136384,136391,9.17],[136392,136392,8.99],[136393,136393,10.74],[136394,136394,10.76],[136395,136395,10.79],[136396,136396,9.06],[136397,136397,10.79],[136398,136398,9.06],[136399,136399,9.17],[136400,136400,5.96],[136401,136401,5.58],[136402,136402,6.11],[136403,136411,8.73],[136412,136413,10.32],[136414,136414,10.46],[136415,136415,10.32],[136416,136416,10.46],[136417,136417,10.31],[136418,136418,8.73],[136419,136419,10.32],[136420,136420,8.73],[136421,136421,10.32],[136422,136422,10.42],[136423,136423,8.61],[136424,136424,10.49],[136425,136425,8.61],[136426,136426,5.54],[136427,136427,4.46],[136428,136428,6.68],[136429,136437,6.12],[136438,136438,7.46],[136439,136439,7.7],[136440,136440,7.4],[136441,136441,7.2],[136442,136442,7.55],[136443,136443,7.2],[136444,136444,6.35],[136445,136445,8.14],[136446,136446,6.34],[136447,136447,8.14],[136448,136448,7.83],[136449,136449,7.6],[136450,136450,7.92],[136451,136451,7.6],[136452,136452,7.85],[136453,136453,4.16],[136454,136454,4.09],[136455,136455,4.16],[136456,136456,4.98],[136457,136458,4.17],[136459,136459,4.16],[136460,136460,12],[136461,136461,11.44],[136462,136462,10.57],[136463,136463,11.15],[136464,136466,9.75],[136467,136470,6.88],[136471,136476,11.56],[136477,136484,8.36],[136485,136485,6.3],[136486,136494,6.12],[136495,136495,7.37],[136496,136496,6.12],[136497,136497,7.71],[136498,136498,7.42],[136499,136499,7.71],[136500,136500,7.42],[136501,136501,7.66],[136502,136502,7.71],[136503,136503,7.66],[136504,136505,7.71],[136506,136506,7.86],[136507,136507,7.37],[136508,136509,7.71],[136510,136510,3.71],[136511,136511,4.96],[136512,136512,4.06],[136513,136513,4.36],[136514,136519,9.41],[136520,136525,6.54],[136526,136526,8.13],[136527,136527,8.01],[136528,136528,4.03],[136529,136529,4.46],[136530,136530,6.68],[136531,136534,9.08],[136535,136538,9.22],[136539,136539,10.62],[136540,136540,10.56],[136541,136541,5.95],[136542,136547,9.51],[136548,136551,8.34],[136552,136552,9.93],[136553,136553,9.79],[136554,136554,5.27],[136555,136556,8.88],[136557,136558,7.24],[136559,136559,6.01],[136560,136561,8.88],[136562,136563,7.24],[136564,136564,8.39],[136565,136566,8.41],[136567,136570,7.92],[136571,136571,6.25],[136572,136572,7.32],[136573,136573,4.31],[136574,136580,10.54],[136581,136581,8.76],[136582,136585,6.68],[136586,136589,8.98],[136590,136592,13.75],[136593,136594,10.55],[136595,136596,13.74],[136597,136597,6.69],[136598,136598,10.38],[136599,136602,7.54],[136603,136606,9.17],[136607,136607,5.96],[136608,136613,8.73],[136614,136614,5.54],[136615,136621,6.12],[136622,136622,3.71],[136623,136623,5.69],[136624,136627,6.28],[136628,136631,5.76],[136632,136635,8.38],[136636,136639,7.98],[136640,136643,8.38],[136644,136645,8.67],[136646,136649,7.88],[136650,136651,8.67],[136652,136655,7.88],[136656,136657,8.52],[136658,136659,7.92],[136660,136660,7.59],[136661,136661,7.92],[136662,136663,8.31],[136664,136665,7.92],[136666,136666,8.06],[136667,136667,7.92],[136668,136669,8.02],[136670,136670,6.99],[136671,136672,6.84],[136673,136673,6.99],[136674,136675,8.02],[136676,136677,6.7],[136678,136678,6.63],[136679,136679,6.7],[136680,136681,9.35],[136682,136685,7.3],[136686,136686,4.58],[136687,136688,10.56],[136689,136692,5.82],[136693,136694,10.55],[136695,136698,6.69],[136699,136700,10.48],[136701,136704,6.69],[136705,136705,4.98],[136706,136707,7.08],[136708,136711,9.05],[136712,136713,10.56],[136714,136717,5.82],[136718,136719,8.37],[136720,136723,7.05],[136724,136726,6.38],[136727,136731,9.42],[136732,136733,7.82],[136734,136737,9.32],[136738,136739,9.42],[136740,136743,6.41],[136744,136745,9.8],[136746,136749,6.47],[136750,136751,8.7],[136752,136752,6.25],[136753,136754,6.22],[136755,136755,6.25],[136756,136757,10.05],[136758,136761,6.32],[136762,136763,12.24],[136764,136767,6.04],[136768,136769,7.62],[136770,136773,6.94],[136774,136775,4.07],[136776,136777,7.62],[136778,136778,6.94],[136779,136779,6.88],[136780,136781,6.94],[136782,136783,10.76],[136784,136787,5.91],[136788,136789,10.76],[136790,136793,7.02],[136794,136794,3.76],[136795,136796,10.76],[136797,136800,7.45],[136801,136802,10.76],[136803,136804,5.91],[136805,136805,6.13],[136806,136806,5.91],[136807,136808,10.76],[136809,136809,7.45],[136810,136811,7.15],[136812,136812,7.45],[136813,136813,7.19],[136814,136814,5.48],[136815,136815,10.54],[136816,136817,17.49],[136818,136818,17.83],[136819,136820,14.31],[136821,136822,17.47],[136823,136831,10],[136832,136832,4.45],[136833,136833,3.01],[136834,136834,4.45],[136835,136835,5.89],[136836,136836,7.33],[136837,136837,8.77],[136838,136838,3.01],[136839,136839,4.45],[136840,136840,5.89],[136841,136841,7.33],[136842,136842,8.77],[136843,136843,3.01],[136844,136844,4.45],[136845,136845,5.89],[136846,136846,7.33],[136847,136847,8.77],[136848,136848,3.01],[136849,136849,4.45],[136850,136850,5.89],[136851,136851,7.33],[136852,136852,8.77],[136853,136853,3.01],[136854,136854,4.45],[136855,136856,5.89],[136857,136857,7.33],[136858,136858,5.89],[136859,136860,4.55],[136861,136863,10],[136864,136864,6.81],[136865,136865,7.06],[136866,136866,6.84],[136867,136867,5.99],[136868,136869,6.84],[136870,136871,5.25],[136872,136872,3.96],[136873,136874,5.89],[136875,136875,5.56],[136876,136876,5.05],[136877,136877,3.96],[136878,136878,4.02],[136879,136879,5.17],[136880,136880,5.19],[136881,136881,5.01],[136882,136882,3.34],[136883,136883,4.45],[136884,136885,5.69],[136886,136886,5.89],[136887,136887,5.86],[136888,136888,6.44],[136889,136889,4.39],[136890,136891,7.31],[136892,136892,5.13],[136893,136893,3.27],[136894,136894,5.08],[136895,136895,3.96],[136896,136896,5.08],[136897,136897,2.85],[136898,136898,3.27],[136899,136899,5.12],[136900,136900,4.87],[136901,136901,5.19],[136902,136902,4.02],[136903,136903,5.08],[136904,136904,4.59],[136905,136905,6.07],[136906,136906,3.81],[136907,136907,6.53],[136908,136908,2.85],[136909,136909,3.27],[136910,136910,5.19],[136911,136911,5.13],[136912,136912,4.03],[136913,136913,4.24],[136914,136914,5.09],[136915,136915,4.02],[136916,136916,5.5],[136917,136917,5.17],[136918,136918,7.36],[136919,136919,7.54],[136920,136920,6.62],[136921,136921,3.52],[136922,136922,3.97],[136923,136923,4.29],[136924,136924,5.31],[136925,136925,5.88],[136926,136926,7.31],[136927,136927,5.82],[136928,136928,6.33],[136929,136929,5.13],[136930,136930,6.33],[136931,136931,6.07],[136932,136932,6.86],[136933,136933,7.31],[136934,136934,6.62],[136935,136935,2.85],[136936,136936,5.19],[136937,136937,4.39],[136938,136938,7.65],[136939,136939,3.66],[136940,136940,2.77],[136941,136941,4.63],[136942,136942,5.13],[136943,136943,6.62],[136944,136944,6.02],[136945,136945,5.16],[136946,136946,5.52],[136947,136947,4.56],[136948,136948,5.53],[136949,136949,3.72],[136950,136950,4.74],[136951,136951,5.04],[136952,136952,5.66],[136953,136959,10],[136960,136960,10.14],[136961,136961,10.11],[136962,136962,5.35],[136963,136963,9.84],[136964,136964,8.37],[136965,136965,10.11],[136966,136966,9.75],[136967,136967,10.48],[136968,136968,8.5],[136969,136969,10.7],[136970,136970,8.51],[136971,136971,10.3],[136972,136972,10.29],[136973,136973,10],[136974,136974,9.13],[136975,136975,7.61],[136976,136976,9.22],[136977,136977,10.49],[136978,136980,5.94],[136981,136991,10],[136992,136992,8.8],[136993,136993,8.76],[136994,136994,5.21],[136995,136995,6.27],[136996,136996,7.84],[136997,136997,8.05],[136998,136998,9.6],[136999,136999,8.7],[137000,137000,9.66],[137001,137001,8.73],[137002,137002,5.19],[137003,137003,8.72],[137004,137004,8.75],[137005,137005,6.13],[137006,137006,8.92],[137007,137007,10.17],[137008,137008,9.58],[137009,137009,8.05],[137010,137012,5.94],[137013,137013,3.29],[137014,137014,4.88],[137015,137023,10],[137024,137025,8.28],[137026,137026,6.25],[137027,137027,6.19],[137028,137028,5.99],[137029,137029,8.05],[137030,137030,10.25],[137031,137031,8.17],[137032,137032,4.38],[137033,137033,8.28],[137034,137034,6.19],[137035,137035,7.34],[137036,137036,8.81],[137037,137037,6.13],[137038,137038,8.67],[137039,137039,8.17],[137040,137040,7.58],[137041,137041,5.74],[137042,137043,5.94],[137044,137055,10],[137056,137056,8.05],[137057,137057,9.18],[137058,137058,3.92],[137059,137059,6.29],[137060,137060,7.97],[137061,137061,9.45],[137062,137062,10.15],[137063,137063,8.05],[137064,137064,7.97],[137065,137065,9.18],[137066,137066,8.53],[137067,137067,9.18],[137068,137068,9.41],[137069,137069,10],[137070,137070,9.38],[137071,137071,8.34],[137072,137072,10.53],[137073,137073,10],[137074,137075,5.94],[137076,137087,10],[137088,137090,6],[137091,137091,9.5],[137092,137095,6],[137096,137096,13],[137097,137097,9.5],[137098,137100,6],[137101,137101,9.5],[137102,137102,13],[137103,137104,6],[137105,137105,6.22],[137106,137112,6],[137113,137113,9.5],[137114,137114,3.5],[137115,137115,9.5],[137116,137116,3.5],[137117,137118,6],[137119,137120,9.5],[137121,137121,9.72],[137122,137122,5.8],[137123,137123,6],[137124,137124,9.5],[137125,137125,6],[137126,137126,9.5],[137127,137128,6],[137129,137129,7.1],[137130,137130,6.2],[137131,137139,6],[137140,137141,0],[137142,137142,8.58],[137143,137143,5.57],[137144,137146,5.56],[137147,137149,4.77],[137150,137150,9.01],[137151,137152,10.21],[137153,137154,8.31],[137155,137155,8.51],[137156,137156,12.09],[137157,137157,12.44],[137158,137158,4.77],[137159,137159,7.95],[137160,137160,7.14],[137161,137161,4.77],[137162,137162,5.97],[137163,137164,4.77],[137165,137165,4.81],[137166,137171,4.77],[137172,137172,4.65],[137173,137173,6.2],[137174,137174,3.43],[137175,137175,5.3],[137176,137176,18.25],[137177,137177,6.47],[137178,137178,11.76],[137179,137179,3.8],[137180,137180,5.3],[137181,137181,4.77],[137182,137183,10],[137184,137185,5.3],[137186,137186,6.61],[137187,137187,8.8],[137188,137190,5.94],[137191,137191,6.97],[137192,137192,5.94],[137193,137193,5.65],[137194,137199,10],[137200,137200,3.76],[137201,137201,4.12],[137202,137202,1.6],[137203,137203,6.59],[137204,137204,4.12],[137205,137205,3.98],[137206,137206,2.84],[137207,137207,5.34],[137208,137208,2.84],[137209,137209,4.44],[137210,137215,10],[137216,137216,5.34],[137217,137217,10.3],[137218,137218,3.84],[137219,137219,6.38],[137220,137220,3.84],[137221,137221,5.82],[137222,137222,4],[137223,137223,5.34],[137224,137224,4.22],[137225,137225,6.42],[137226,137226,1.68],[137227,137230,0],[137231,137231,10],[137232,137233,5.72],[137234,137234,6.05],[137235,137235,8.75],[137236,137236,5.34],[137237,137237,7.12],[137238,137239,6.3],[137240,137240,5.64],[137241,137241,5.34],[137242,137247,10],[137248,137248,9.29],[137249,137249,8.24],[137250,137250,9.93],[137251,137252,9.32],[137253,137254,12.35],[137255,137255,12],[137256,137256,5.67],[137257,137257,7.38],[137258,137258,6.8],[137259,137259,6.75],[137260,137261,8.63],[137262,137263,5.67],[137264,137265,7.56],[137266,137266,7.45],[137267,137267,7.48],[137268,137268,7.67],[137269,137270,4.96],[137271,137271,6.93],[137272,137272,5.95],[137273,137273,6.8],[137274,137274,5.51],[137275,137275,5.5],[137276,137276,8.92],[137277,137277,8.15],[137278,137278,10.88],[137279,137279,9.08],[137280,137280,10.88],[137281,137281,6.41],[137282,137282,11.77],[137283,137283,2.01],[137284,137284,8.99],[137285,137285,9.06],[137286,137286,9.15],[137287,137287,11.26],[137288,137288,9.15],[137289,137289,11.26],[137290,137290,10.69],[137291,137291,9.25],[137292,137292,7.16],[137293,137294,8.61],[137295,137295,5.26],[137296,137296,7.23],[137297,137297,5.51],[137298,137298,7.85],[137299,137299,7.67],[137300,137300,6.5],[137301,137301,4.51],[137302,137302,7.49],[137303,137303,5.68],[137304,137304,5.48],[137305,137305,11],[137306,137306,7.39],[137307,137307,5.18],[137308,137308,7.27],[137309,137309,8.24],[137310,137310,9.93],[137311,137311,2.84],[137312,137312,9.32],[137313,137313,12.35],[137314,137314,9.2],[137315,137315,4.28],[137316,137316,6.93],[137317,137317,7.92],[137318,137318,7.18],[137319,137319,6.81],[137320,137320,8.32],[137321,137321,7.45],[137322,137322,5.12],[137323,137323,5.95],[137324,137325,5.51],[137326,137327,7.56],[137328,137328,3.73],[137329,137329,7.67],[137330,137330,5.12],[137331,137331,9.93],[137332,137332,5.47],[137333,137333,8.68],[137334,137334,5.6],[137335,137335,4.96],[137336,137343,10],[137344,137344,5.83],[137345,137345,7.9],[137346,137346,6.73],[137347,137348,4.83],[137349,137349,10.57],[137350,137350,9.87],[137351,137351,10.21],[137352,137352,9.93],[137353,137353,7.06],[137354,137354,9.1],[137355,137355,6.27],[137356,137356,5.1],[137357,137357,7.92],[137358,137358,6.15],[137359,137359,5.25],[137360,137360,5.44],[137361,137361,5.51],[137362,137362,6.8],[137363,137363,6.75],[137364,137364,6.55],[137365,137365,8.33],[137366,137366,7.27],[137367,137367,5.5],[137368,137368,6.25],[137369,137369,8.6],[137370,137370,11.68],[137371,137371,8.49],[137372,137372,7.56],[137373,137373,9.23],[137374,137374,5.2],[137375,137375,6.97],[137376,137376,5.51],[137377,137377,10.48],[137378,137378,7.56],[137379,137379,5.2],[137380,137381,7.56],[137382,137382,5.05],[137383,137383,5.57],[137384,137384,9.98],[137385,137385,0],[137386,137386,7.18],[137387,137471,10],[137472,137472,6.74],[137473,137473,6.05],[137474,137474,7.01],[137475,137475,5.95],[137476,137476,6.02],[137477,137477,9.27],[137478,137478,6.27],[137479,137479,6.32],[137480,137480,6.75],[137481,137481,5.83],[137482,137482,7.77],[137483,137483,5.53],[137484,137484,6.91],[137485,137485,6.25],[137486,137486,6.8],[137487,137487,6.05],[137488,137488,7.47],[137489,137489,8.11],[137490,137490,6.15],[137491,137491,7],[137492,137492,6.47],[137493,137493,6.04],[137494,137494,6.25],[137495,137495,6.56],[137496,137496,6.61],[137497,137497,6.36],[137498,137498,5.21],[137499,137499,6.31],[137500,137500,6.59],[137501,137501,6.15],[137502,137502,6.01],[137503,137503,10],[137504,137506,7.21],[137507,137507,10.07],[137508,137508,12.82],[137509,137509,10.07],[137510,137510,12.82],[137511,137512,7.21],[137513,137513,10.79],[137514,137514,7.21],[137515,137515,11.31],[137516,137519,10],[137520,137520,12.68],[137521,137521,9.85],[137522,137522,7.21],[137523,137523,9.91],[137524,137524,11.98],[137525,137525,12.35],[137526,137526,12.24],[137527,137527,8.32],[137528,137528,10.45],[137529,137531,7.21],[137532,137535,10],[137536,137536,5.5],[137537,137539,10],[137540,137540,4.4],[137541,137541,4.8],[137542,137542,5.49],[137543,137543,4.99],[137544,137544,4.97],[137545,137545,4.61],[137546,137546,5],[137547,137547,4.87],[137548,137549,4.92],[137550,137550,4.97],[137551,137551,4.92],[137552,137552,5.13],[137553,137553,6.64],[137554,137554,5.36],[137555,137555,7.27],[137556,137556,6.58],[137557,137557,6.08],[137558,137558,9.02],[137559,137559,9.67],[137560,137560,5.69],[137561,137561,5.2],[137562,137562,8.31],[137563,137563,5.09],[137564,137564,8.31],[137565,137565,5.77],[137566,137566,8.49],[137567,137567,6.8],[137568,137568,5.08],[137569,137569,6.55],[137570,137570,5.36],[137571,137571,2.39],[137572,137572,5.49],[137573,137573,5.14],[137574,137574,5.49],[137575,137575,2.9],[137576,137576,2.47],[137577,137577,5.02],[137578,137578,5.49],[137579,137579,5.14],[137580,137580,2.09],[137581,137581,6.29],[137582,137583,10],[137584,137584,5.54],[137585,137585,5.23],[137586,137586,6.03],[137587,137587,5.46],[137588,137588,5.23],[137589,137599,10],[137600,137601,9.29],[137602,137602,9.08],[137603,137603,5.3],[137604,137604,9.14],[137605,137605,6.11],[137606,137606,5.98],[137607,137607,6.46],[137608,137608,5.78],[137609,137609,9.29],[137610,137610,6.21],[137611,137611,6.11],[137612,137612,5.98],[137613,137614,9.08],[137615,137615,6.29],[137616,137616,9.14],[137617,137617,6.42],[137618,137618,7.49],[137619,137619,5.76],[137620,137620,6.35],[137621,137621,8.33],[137622,137622,9.14],[137623,137623,9.08],[137624,137624,9.29],[137625,137625,6.11],[137626,137626,6.42],[137627,137628,9.14],[137629,137629,9.08],[137630,137630,5.54],[137631,137632,9.14],[137633,137633,5.43],[137634,137634,6.11],[137635,137635,6.78],[137636,137636,5.43],[137637,137637,6.11],[137638,137638,9.08],[137639,137639,5.41],[137640,137640,6.11],[137641,137641,5.98],[137642,137642,9.29],[137643,137643,5.98],[137644,137647,10],[137648,137648,6.66],[137649,137649,5.43],[137650,137650,6.04],[137651,137651,5.43],[137652,137652,5.97],[137653,137653,7.03],[137654,137654,13],[137655,137655,5.28],[137656,137656,5.19],[137657,137657,6.04],[137658,137658,5.63],[137659,137659,8.07],[137660,137660,8.2],[137661,137661,8.18],[137662,137662,7.24],[137663,137664,8.68],[137665,137665,5.54],[137666,137666,6.47],[137667,137667,5.84],[137668,137668,6.11],[137669,137669,9.08],[137670,137670,5.43],[137671,137671,6.11],[137672,137672,5.12],[137673,137673,5.22],[137674,137679,10],[137680,137680,5.54],[137681,137681,5.43],[137682,137682,3.59],[137683,137684,5.38],[137685,137685,7.76],[137686,137686,6.28],[137687,137687,7.76],[137688,137688,5.61],[137689,137689,5.98],[137690,137690,6.17],[137691,137693,10],[137694,137695,8.36],[137696,137696,6.44],[137697,137697,5.3],[137698,137698,6.61],[137699,137699,8.8],[137700,137702,5.94],[137703,137703,6.97],[137704,137704,5.94],[137705,137705,5.65],[137706,137707,12.7],[137708,137708,13.18],[137709,137709,14.4],[137710,137711,12.7],[137712,137712,6.35],[137713,137713,5.3],[137714,137714,6.61],[137715,137715,8.8],[137716,137718,5.94],[137719,137719,6.97],[137720,137720,5.94],[137721,137721,5.65],[137722,137723,12.7],[137724,137724,13.18],[137725,137725,14.4],[137726,137727,12.7],[137728,137728,6.77],[137729,137729,10.46],[137730,137730,6.05],[137731,137731,7.55],[137732,137732,10.46],[137733,137733,6.77],[137734,137734,9.45],[137735,137735,8.78],[137736,137738,9.45],[137739,137740,10.46],[137741,137741,7.84],[137742,137742,12.21],[137743,137743,13.25],[137744,137744,12.19],[137745,137745,6.89],[137746,137746,12.48],[137747,137747,12.19],[137748,137748,5.76],[137749,137749,12.16],[137750,137750,10.34],[137751,137752,5.94],[137753,137753,9.51],[137754,137754,11.34],[137755,137755,5.94],[137756,137757,10],[137758,137758,5.04],[137759,137759,5.38],[137760,137760,9.26],[137761,137761,5.28],[137762,137762,5.23],[137763,137763,5.94],[137764,137764,5.84],[137765,137765,10.42],[137766,137766,6.31],[137767,137767,5.96],[137768,137768,9.09],[137769,137770,5.56],[137771,137771,9.8],[137772,137772,9.1],[137773,137774,6.76],[137775,137775,5.24],[137776,137776,6.54],[137777,137777,10.92],[137778,137778,8.93],[137779,137779,7.02],[137780,137780,6.47],[137781,137781,6.37],[137782,137782,5.52],[137783,137783,5.94],[137784,137784,6.27],[137785,137785,7],[137786,137786,6.88],[137787,137788,6.58],[137789,137789,8.78],[137790,137790,5.94],[137791,137791,9.76],[137792,137792,6.12],[137793,137793,6.46],[137794,137794,6.59],[137795,137795,8.98],[137796,137796,5.24],[137797,137797,5.39],[137798,137798,5.94],[137799,137800,9.1],[137801,137801,8.98],[137802,137802,6.31],[137803,137803,8.85],[137804,137804,8.98],[137805,137805,6.58],[137806,137806,8.11],[137807,137808,5.24],[137809,137809,5.96],[137810,137810,10.8],[137811,137811,9.18],[137812,137812,12.96],[137813,137814,0],[137815,137815,2.83],[137816,137822,0],[137823,137823,10],[137824,137824,0],[137825,137825,4.48],[137826,137826,0],[137827,137827,4.91],[137828,137828,2.47],[137829,137836,0],[137837,137837,2.12],[137838,137838,5.39],[137839,137839,10.1],[137840,137841,5.39],[137842,137842,5.47],[137843,137852,0],[137853,137854,10],[137855,137855,0],[137856,137856,5.39],[137857,137857,5.35],[137858,137858,3.39],[137859,137860,5.3],[137861,137861,5.29],[137862,137862,5.34],[137863,137863,5.29],[137864,137864,5.58],[137865,137865,5.34],[137866,137871,10],[137872,137872,5.39],[137873,137873,6.62],[137874,137874,4.06],[137875,137875,9],[137876,137876,6.57],[137877,137877,6.47],[137878,137878,6.77],[137879,137879,6.76],[137880,137880,6.58],[137881,137881,8.98],[137882,137887,10],[137888,137888,7.14],[137889,137889,7.17],[137890,137890,9.8],[137891,137891,8.24],[137892,137892,7.14],[137893,137893,7.32],[137894,137894,6.53],[137895,137895,6.67],[137896,137896,2.98],[137897,137897,4.59],[137898,137898,5.99],[137899,137899,7.46],[137900,137900,12.32],[137901,137901,5.52],[137902,137983,10],[137984,137987,5.94],[137988,137988,10.06],[137989,137989,11.03],[137990,137990,15.5],[137991,137991,9.33],[137992,137992,13.8],[137993,137993,7.49],[137994,137994,11.96],[137995,137995,8.07],[137996,137996,12.54],[137997,137997,9.47],[137998,137998,13.94],[137999,137999,7.18],[138000,138000,11.44],[138001,138001,9.83],[138002,138002,14.3],[138003,138003,11.11],[138004,138004,11.31],[138005,138005,10.92],[138006,138006,11.68],[138007,138007,9.33],[138008,138008,7.94],[138009,138009,10.52],[138010,138010,8.79],[138011,138011,12.08],[138012,138012,15.09],[138013,138013,10.5],[138014,138014,10.11],[138015,138015,9.34],[138016,138016,8.1],[138017,138017,12.21],[138018,138018,12.04],[138019,138019,7.93],[138020,138020,10.72],[138021,138021,9.2],[138022,138022,8.54],[138023,138023,8.07],[138024,138024,7.65],[138025,138025,11.8],[138026,138026,9.25],[138027,138027,8.54],[138028,138028,9.59],[138029,138029,8.45],[138030,138030,12.23],[138031,138031,7.93],[138032,138032,10.92],[138033,138033,8.07],[138034,138034,8.08],[138035,138035,12.23],[138036,138036,5.94],[138037,138037,10.41],[138038,138042,5.94],[138043,138043,10.41],[138044,138044,5.94],[138045,138045,10.41],[138046,138047,10.77],[138048,138049,15.24],[138050,138050,5.94],[138051,138051,10.41],[138052,138052,3.48],[138053,138053,12.13],[138054,138054,18.09],[138055,138055,12.04],[138056,138056,8.07],[138057,138057,7.93],[138058,138058,8.08],[138059,138059,14.62],[138060,138063,10],[138064,138064,4.72],[138065,138065,11.82],[138066,138066,9.47],[138067,138067,9.83],[138068,138068,5.08],[138069,138069,6.54],[138070,138070,7.18],[138071,138071,10.93],[138072,138072,7.65],[138073,138073,9.02],[138074,138074,11.7],[138075,138075,12.92],[138076,138076,3.7],[138077,138077,4.58],[138078,138078,3.93],[138079,138079,6.42],[138080,138080,4.31],[138081,138081,5.56],[138082,138082,4.83],[138083,138083,4.2],[138084,138084,4.79],[138085,138085,6.08],[138086,138086,6.64],[138087,138087,9.4],[138088,138088,3.87],[138089,138089,13.03],[138090,138090,4.12],[138091,138099,5.94],[138100,138100,6.01],[138101,138101,5.71],[138102,138102,6.01],[138103,138103,5.71],[138104,138104,5.9],[138105,138105,6.24],[138106,138106,5.9],[138107,138107,6.33],[138108,138108,4.02],[138109,138111,10],[138112,138113,5.94],[138114,138114,9.81],[138115,138115,8.71],[138116,138116,5.61],[138117,138117,7.65],[138118,138118,9.11],[138119,138119,8.04],[138120,138120,7.95],[138121,138121,8.71],[138122,138122,7.93],[138123,138123,8],[138124,138124,8.01],[138125,138125,7.28],[138126,138126,7.5],[138127,138127,8.15],[138128,138128,8.29],[138129,138129,10.77],[138130,138130,8.61],[138131,138131,7.12],[138132,138132,7.21],[138133,138134,7.93],[138135,138135,6.76],[138136,138136,9.7],[138137,138137,6.91],[138138,138138,8.69],[138139,138139,5.35],[138140,138140,7.88],[138141,138141,6.84],[138142,138143,7.97],[138144,138144,7.7],[138145,138149,5.94],[138150,138151,9.69],[138152,138153,5.94],[138154,138154,8.58],[138155,138155,0],[138156,138157,5.94],[138158,138158,13.82],[138159,138159,16.47],[138160,138160,8.28],[138161,138161,7.99],[138162,138162,7.01],[138163,138163,7.65],[138164,138164,5.35],[138165,138165,8.66],[138166,138166,6.63],[138167,138167,7.42],[138168,138168,7.97],[138169,138169,7.45],[138170,138170,3.64],[138171,138171,7.12],[138172,138172,11.8],[138173,138173,13.36],[138174,138174,10.75],[138175,138175,7.27],[138176,138176,11.26],[138177,138177,11.44],[138178,138178,10.4],[138179,138179,10.56],[138180,138180,10.58],[138181,138181,10.7],[138182,138182,9.9],[138183,138183,8.4],[138184,138184,9.43],[138185,138185,9.9],[138186,138186,9.56],[138187,138187,10],[138188,138188,10.56],[138189,138189,7.88],[138190,138190,9.41],[138191,138191,10.56],[138192,138192,10.23],[138193,138193,8.11],[138194,138194,9.53],[138195,138195,9.86],[138196,138196,10.54],[138197,138197,10.88],[138198,138198,7.98],[138199,138199,10.73],[138200,138200,9.6],[138201,138202,10.56],[138203,138204,10.7],[138205,138205,7.56],[138206,138206,9.31],[138207,138207,10.56],[138208,138208,9.17],[138209,138209,10.17],[138210,138210,8.75],[138211,138211,9.9],[138212,138213,9.13],[138214,138214,5.94],[138215,138215,9.12],[138216,138217,5.94],[138218,138218,10.77],[138219,138219,9.41],[138220,138220,11.27],[138221,138225,5.94],[138226,138226,11.43],[138227,138227,10.38],[138228,138235,10],[138236,138236,10.7],[138237,138237,11.07],[138238,138238,8.51],[138239,138239,6.88],[138240,138240,6.02],[138241,138241,5.41],[138242,138242,6.48],[138243,138244,9.33],[138245,138245,4.29],[138246,138246,6.77],[138247,138247,6.95],[138248,138248,7.13],[138249,138249,6.1],[138250,138250,6.39],[138251,138251,6.66],[138252,138252,6.07],[138253,138253,7.3],[138254,138256,6.01],[138257,138257,6.3],[138258,138258,9.75],[138259,138259,6.54],[138260,138260,9.33],[138261,138262,7.41],[138263,138263,6.4],[138264,138264,10.3],[138265,138265,5.92],[138266,138266,5.26],[138267,138267,5.09],[138268,138268,9.75],[138269,138269,7.1],[138270,138270,5.9],[138271,138271,6.54],[138272,138272,10.1],[138273,138273,6.75],[138274,138274,10.71],[138275,138275,6.09],[138276,138276,8.56],[138277,138277,7.4],[138278,138278,8.64],[138279,138279,8.63],[138280,138280,7.61],[138281,138281,7.1],[138282,138282,7.89],[138283,138283,8.79],[138284,138291,5.1],[138292,138292,8.95],[138293,138293,6.9],[138294,138295,5.1],[138296,138298,10],[138299,138299,2.5],[138300,138300,4.3],[138301,138301,5.24],[138302,138302,5.64],[138303,138303,5.88],[138304,138305,4.9],[138306,138306,5.61],[138307,138307,5.76],[138308,138308,6.78],[138309,138309,6.75],[138310,138310,5.91],[138311,138311,4.71],[138312,138312,5.45],[138313,138313,5.04],[138314,138316,10],[138317,138318,5.64],[138319,138319,6.63],[138320,138320,5.72],[138321,138321,5.15],[138322,138322,5.13],[138323,138323,5.21],[138324,138324,4.83],[138325,138325,5.51],[138326,138326,5.06],[138327,138327,5.14],[138328,138328,6.68],[138329,138329,6.32],[138330,138330,6.49],[138331,138331,7.81],[138332,138332,6.76],[138333,138333,6.72],[138334,138334,5.84],[138335,138335,6.92],[138336,138336,5.79],[138337,138338,6.29],[138339,138339,6.55],[138340,138340,5.61],[138341,138341,5.87],[138342,138342,7.62],[138343,138343,5.84],[138344,138344,5.42],[138345,138345,5.45],[138346,138346,6.54],[138347,138347,6.78],[138348,138348,7.62],[138349,138349,6.55],[138350,138350,5.74],[138351,138351,7.28],[138352,138352,7.18],[138353,138354,5.68],[138355,138355,6.69],[138356,138356,6.29],[138357,138357,7.18],[138358,138358,6.55],[138359,138359,7.18],[138360,138362,2.68],[138363,138363,5],[138364,138364,3.26],[138365,138365,5.32],[138366,138366,2.68],[138367,138367,5.01],[138368,138383,10],[138384,138384,5.68],[138385,138386,5.9],[138387,138387,8.96],[138388,138388,5.79],[138389,138389,5.7],[138390,138390,6.07],[138391,138391,9.12],[138392,138392,5.94],[138393,138393,5.61],[138394,138394,10.45],[138395,138396,6.08],[138397,138397,8.29],[138398,138398,5.54],[138399,138399,5.88],[138400,138400,7.62],[138401,138401,5.91],[138402,138402,7.29],[138403,138403,6.16],[138404,138404,8.18],[138405,138405,5.82],[138406,138406,7.81],[138407,138407,6],[138408,138408,6.08],[138409,138409,5.95],[138410,138410,6.54],[138411,138412,6.13],[138413,138413,6.39],[138414,138414,6.13],[138415,138415,5.73],[138416,138416,5.72],[138417,138417,6.41],[138418,138418,5.96],[138419,138419,5.72],[138420,138420,5.71],[138421,138421,6.13],[138422,138422,7.53],[138423,138423,5.76],[138424,138424,5.95],[138425,138425,5.76],[138426,138426,5.85],[138427,138428,10],[138429,138429,6.44],[138430,138430,5.96],[138431,138431,7.1],[138432,138432,10.18],[138433,138435,6.74],[138436,138436,16.8],[138437,138437,7.44],[138438,138438,11.35],[138439,138439,16.45],[138440,138457,10],[138458,138458,0],[138459,138484,10],[138485,138485,5.52],[138486,138495,10],[138496,138496,5.19],[138497,138497,7.03],[138498,138498,7.22],[138499,138499,5.4],[138500,138500,5.23],[138501,138502,5.77],[138503,138503,4.79],[138504,138504,4.02],[138505,138505,2.78],[138506,138506,3.98],[138507,138507,6.13],[138508,138508,4.84],[138509,138509,6.81],[138510,138510,5.76],[138511,138511,5],[138512,138512,5.23],[138513,138515,5.56],[138516,138516,7.22],[138517,138517,5.01],[138518,138519,5],[138520,138520,5.29],[138521,138522,5.41],[138523,138523,4.91],[138524,138524,5.46],[138525,138525,5.39],[138526,138526,7.13],[138527,138527,5.39],[138528,138528,5],[138529,138529,7.22],[138530,138530,4.44],[138531,138531,4.2],[138532,138532,4.63],[138533,138533,5.44],[138534,138534,4.54],[138535,138535,4.87],[138536,138536,5.76],[138537,138537,5.29],[138538,138538,5.99],[138539,138539,5.61],[138540,138540,4.27],[138541,138541,5.97],[138542,138543,3.96],[138544,138544,4.3],[138545,138546,3.9],[138547,138547,4.65],[138548,138548,4.72],[138549,138549,2.37],[138550,138550,3.19],[138551,138551,4.77],[138552,138552,3.97],[138553,138553,5.73],[138554,138554,4.4],[138555,138555,4.79],[138556,138556,4.51],[138557,138557,3.93],[138558,138558,3.63],[138559,138559,4.44],[138560,138560,3.85],[138561,138561,4.38],[138562,138562,5.95],[138563,138564,2.92],[138565,138565,3.37],[138566,138566,4.19],[138567,138567,3.24],[138568,138568,3.26],[138569,138570,2.59],[138571,138572,2.52],[138573,138573,2.96],[138574,138574,1.77],[138575,138575,3.36],[138576,138576,4.92],[138577,138577,3.07],[138578,138578,2.87],[138579,138579,2.59],[138580,138581,2.86],[138582,138582,3.26],[138583,138583,2.12],[138584,138584,3.25],[138585,138585,3.11],[138586,138586,4.92],[138587,138587,2.99],[138588,138588,3.22],[138589,138589,2.92],[138590,138590,2.81],[138591,138591,2.94],[138592,138592,3.57],[138593,138593,2.84],[138594,138594,1.77],[138595,138595,2.54],[138596,138596,3.25],[138597,138597,2.99],[138598,138598,2.92],[138599,138599,2.81],[138600,138600,2.87],[138601,138601,3.57],[138602,138602,2.84],[138603,138603,7.51],[138604,138605,5.56],[138606,138606,3.33],[138607,138607,8.33],[138608,138609,5.56],[138610,138610,4.44],[138611,138611,4.01],[138612,138612,3.89],[138613,138613,3.33],[138614,138614,4.44],[138615,138615,5],[138616,138616,3.33],[138617,138617,5.19],[138618,138618,8.45],[138619,138619,2.88],[138620,138620,3.1],[138621,138621,5.56],[138622,138622,5.46],[138623,138623,6.17],[138624,138625,5.56],[138626,138626,3.33],[138627,138627,6.09],[138628,138628,5.56],[138629,138629,2.78],[138630,138630,8.33],[138631,138632,5.56],[138633,138633,4.44],[138634,138634,3.89],[138635,138635,4.58],[138636,138637,5],[138638,138638,4.44],[138639,138639,5],[138640,138640,5.75],[138641,138641,5.56],[138642,138642,4.44],[138643,138644,4.27],[138645,138645,4.44],[138646,138646,2.78],[138647,138647,4.44],[138648,138648,3.62],[138649,138649,5.56],[138650,138650,4.58],[138651,138651,3.37],[138652,138653,2.59],[138654,138654,2.87],[138655,138655,2.52],[138656,138657,1.95],[138658,138658,2.82],[138659,138659,3.25],[138660,138660,1.77],[138661,138661,2.01],[138662,138663,1.77],[138664,138664,2.29],[138665,138666,1.77],[138667,138667,3.01],[138668,138669,4.92],[138670,138671,3.25],[138672,138672,3.23],[138673,138673,2.87],[138674,138674,4.19],[138675,138675,2.17],[138676,138676,1.77],[138677,138677,2.12],[138678,138678,3.25],[138679,138679,3.56],[138680,138680,3.25],[138681,138681,3.09],[138682,138682,2.99],[138683,138684,2.8],[138685,138685,3.18],[138686,138686,2.8],[138687,138687,2.94],[138688,138703,0],[138704,138706,10],[138707,138713,0],[138714,138714,10],[138715,138726,0],[138727,138749,10],[138750,138751,0],[138752,138752,7.22],[138753,138753,5],[138754,138754,6.67],[138755,138755,5.56],[138756,138756,7.62],[138757,138757,6.99],[138758,138758,6.67],[138759,138759,5.56],[138760,138760,7.24],[138761,138761,5.88],[138762,138762,7.22],[138763,138763,5.56],[138764,138764,8.3],[138765,138765,6.99],[138766,138766,7.22],[138767,138767,5.56],[138768,138768,7.22],[138769,138769,5.56],[138770,138770,7.22],[138771,138771,5.56],[138772,138772,6.83],[138773,138773,6.64],[138774,138774,6.83],[138775,138775,6.64],[138776,138776,6.67],[138777,138777,4.44],[138778,138778,6.67],[138779,138779,4.44],[138780,138780,6.67],[138781,138781,4.44],[138782,138782,6.11],[138783,138783,3.33],[138784,138784,7.78],[138785,138785,5],[138786,138786,7.78],[138787,138787,5.56],[138788,138788,8.37],[138789,138789,7.12],[138790,138790,7.78],[138791,138791,5.56],[138792,138792,7.78],[138793,138793,5.56],[138794,138794,7.78],[138795,138795,5.56],[138796,138796,3.89],[138797,138797,2.78],[138798,138798,5.46],[138799,138799,3.42],[138800,138800,7.71],[138801,138801,6.71],[138802,138802,7.71],[138803,138803,6.71],[138804,138804,7.78],[138805,138805,5.56],[138806,138806,6.37],[138807,138807,3.42],[138808,138808,6.67],[138809,138809,2.78],[138810,138810,6.67],[138811,138811,2.78],[138812,138812,6.67],[138813,138813,2.78],[138814,138814,9.48],[138815,138815,10.58],[138816,138816,9.44],[138817,138817,8.33],[138818,138818,9.48],[138819,138819,10.58],[138820,138820,7.22],[138821,138821,5.56],[138822,138822,8.47],[138823,138823,7.12],[138824,138824,7.22],[138825,138825,5.56],[138826,138826,7.22],[138827,138827,5.56],[138828,138828,8.5],[138829,138829,6.87],[138830,138830,7.78],[138831,138831,5],[138832,138832,8.5],[138833,138833,6.87],[138834,138834,8.5],[138835,138835,6.87],[138836,138836,7.33],[138837,138837,6.99],[138838,138838,6.11],[138839,138839,5.56],[138840,138840,7.22],[138841,138841,4.44],[138842,138842,7.82],[138843,138843,4.97],[138844,138844,7.22],[138845,138845,4.44],[138846,138846,7.22],[138847,138847,4.44],[138848,138848,5.56],[138849,138849,3.89],[138850,138850,7.1],[138851,138851,5.93],[138852,138852,5.56],[138853,138853,3.89],[138854,138854,5.56],[138855,138855,3.89],[138856,138856,5.56],[138857,138857,3.89],[138858,138858,6.67],[138859,138859,3.33],[138860,138860,6.82],[138861,138861,4.56],[138862,138862,6.67],[138863,138863,3.33],[138864,138864,6.67],[138865,138865,3.33],[138866,138866,7.22],[138867,138867,5.56],[138868,138868,7.22],[138869,138869,5.56],[138870,138870,7.22],[138871,138871,5.56],[138872,138872,8.12],[138873,138873,7.12],[138874,138874,7.22],[138875,138875,5.56],[138876,138876,7.64],[138877,138877,6.5],[138878,138878,7.64],[138879,138879,6.5],[138880,138880,11.28],[138881,138881,9.79],[138882,138882,11.28],[138883,138883,9.79],[138884,138884,11.28],[138885,138885,9.79],[138886,138886,10],[138887,138887,7.22],[138888,138888,11.28],[138889,138889,9.79],[138890,138890,7.22],[138891,138891,5],[138892,138892,7.22],[138893,138893,5],[138894,138894,7.22],[138895,138895,5],[138896,138896,6.67],[138897,138897,4.44],[138898,138898,6.92],[138899,138899,5.97],[138900,138900,6.67],[138901,138901,4.44],[138902,138902,5.56],[138903,138903,3.33],[138904,138904,7.22],[138905,138906,5],[138907,138907,2.78],[138908,138908,4.23],[138909,138909,4.22],[138910,138910,7.48],[138911,138911,6.02],[138912,138912,7.76],[138913,138913,6.68],[138914,138914,7.76],[138915,138915,6.68],[138916,138916,7.76],[138917,138917,6.68],[138918,138918,7.76],[138919,138919,6.68],[138920,138920,7.76],[138921,138921,6.68],[138922,138922,7.76],[138923,138923,6.68],[138924,138924,7.76],[138925,138925,6.68],[138926,138926,7.76],[138927,138927,6.68],[138928,138928,7.76],[138929,138929,6.68],[138930,138930,7.76],[138931,138931,6.68],[138932,138932,7.76],[138933,138933,6.68],[138934,138934,7.76],[138935,138935,6.68],[138936,138936,6.83],[138937,138937,6.64],[138938,138938,6.83],[138939,138939,6.64],[138940,138940,6.83],[138941,138941,6.64],[138942,138942,6.83],[138943,138943,6.64],[138944,138944,6.83],[138945,138945,6.64],[138946,138946,6.83],[138947,138947,6.64],[138948,138948,6.83],[138949,138949,6.64],[138950,138950,6.83],[138951,138951,6.64],[138952,138952,5.46],[138953,138953,3.42],[138954,138954,5.46],[138955,138955,3.42],[138956,138956,8.5],[138957,138957,6.87],[138958,138958,8.5],[138959,138959,6.87],[138960,138960,8.5],[138961,138961,6.87],[138962,138962,8.5],[138963,138963,6.87],[138964,138964,8.5],[138965,138965,6.87],[138966,138966,8.5],[138967,138967,6.87],[138968,138968,8.5],[138969,138969,6.87],[138970,138970,9.14],[138971,138971,6.87],[138972,138972,9.14],[138973,138973,6.87],[138974,138974,9.14],[138975,138975,6.87],[138976,138976,9.14],[138977,138977,6.87],[138978,138978,9.14],[138979,138979,6.87],[138980,138980,8.12],[138981,138981,7.12],[138982,138982,8.12],[138983,138983,7.12],[138984,138984,8.46],[138985,138985,7.42],[138986,138986,8.46],[138987,138987,7.42],[138988,138988,8.46],[138989,138989,7.42],[138990,138990,8.46],[138991,138991,7.42],[138992,138992,8.46],[138993,138993,7.42],[138994,138994,7.37],[138995,138995,6.51],[138996,138996,7.37],[138997,138997,6.51],[138998,138998,7.37],[138999,138999,6.51],[139000,139000,7.37],[139001,139001,6.51],[139002,139002,9.36],[139003,139003,5.89],[139004,139004,5.06],[139005,139005,4.45],[139006,139007,4.58],[139008,139015,5.58],[139016,139017,7.22],[139018,139019,8],[139020,139021,7.47],[139022,139023,7.22],[139024,139029,4.27],[139030,139031,10],[139032,139033,8.01],[139034,139037,9.89],[139038,139039,10],[139040,139047,5.68],[139048,139049,9.12],[139050,139055,11],[139056,139063,3.1],[139064,139065,5.23],[139066,139071,7.11],[139072,139077,5],[139078,139079,10],[139080,139081,8.75],[139082,139083,10.61],[139084,139085,9.88],[139086,139087,10],[139088,139095,5.19],[139096,139096,10],[139097,139097,8.66],[139098,139098,10],[139099,139099,10.44],[139100,139100,10],[139101,139101,10.44],[139102,139102,10],[139103,139103,10.44],[139104,139111,7.31],[139112,139113,8.86],[139114,139115,10.74],[139116,139119,10.11],[139120,139121,6.99],[139122,139123,5.85],[139124,139125,7.12],[139126,139127,3.42],[139128,139129,6.87],[139130,139131,7.06],[139132,139133,8.94],[139134,139135,10],[139136,139143,5.58],[139144,139145,7.22],[139146,139147,8],[139148,139149,7.47],[139150,139151,7.22],[139152,139159,5.68],[139160,139161,9.12],[139162,139167,11],[139168,139175,7.31],[139176,139177,8.86],[139178,139179,10.74],[139180,139183,10.11],[139184,139188,5.58],[139189,139189,10],[139190,139191,5.58],[139192,139193,7.22],[139194,139194,7.76],[139195,139195,7.97],[139196,139196,7.22],[139197,139197,3.33],[139198,139198,3.42],[139199,139201,3.33],[139202,139204,5.68],[139205,139205,10],[139206,139207,5.68],[139208,139208,6.83],[139209,139209,8.48],[139210,139210,8.37],[139211,139211,10.01],[139212,139212,7.78],[139213,139215,3.33],[139216,139217,3.1],[139218,139219,3.42],[139220,139221,10],[139222,139223,3.1],[139224,139225,3.89],[139226,139226,5.46],[139227,139227,7.05],[139228,139228,10],[139229,139231,3.33],[139232,139233,5.19],[139234,139235,7.06],[139236,139237,5.35],[139238,139239,5.19],[139240,139241,7.22],[139242,139242,7.37],[139243,139243,9.39],[139244,139244,7.45],[139245,139247,7.11],[139248,139249,10],[139250,139252,7.31],[139253,139253,10],[139254,139255,7.31],[139256,139256,8.5],[139257,139257,9.68],[139258,139258,8.44],[139259,139259,9.7],[139260,139260,8.01],[139261,139261,7.11],[139262,139262,3.33],[139263,139263,10],[139264,139264,5],[139265,139265,10],[139266,139266,5],[139267,139267,10],[139268,139268,3.33],[139269,139269,2.5],[139270,139270,1.67],[139271,139271,7.11],[139272,139272,3.61],[139273,139273,2],[139274,139274,0.63],[139275,139279,0],[139280,139281,6.39],[139282,139283,7.11],[139284,139285,10],[139286,139286,3.24],[139287,139287,7.11],[139288,139291,3.32],[139292,139295,5.87],[139296,139298,7.11],[139299,139299,5.3],[139300,139300,3.33],[139301,139301,6.67],[139302,139302,10.49],[139303,139303,2.47],[139304,139310,0],[139311,139311,1.71],[139312,139312,17.77],[139313,139313,15.42],[139314,139314,3.53],[139315,139316,6.16],[139317,139317,3.5],[139318,139318,5.66],[139319,139319,7.83],[139320,139320,3.53],[139321,139322,5.43],[139323,139323,7.23],[139324,139324,7.03],[139325,139325,4.97],[139326,139326,7.11],[139327,139329,5],[139330,139330,8.95],[139331,139331,3.33],[139332,139332,4.39],[139333,139334,3.74],[139335,139335,9.57],[139336,139336,7.89],[139337,139337,7.86],[139338,139341,6.6],[139342,139342,4.66],[139343,139343,2.47],[139344,139344,5],[139345,139345,4.66],[139346,139346,5.75],[139347,139347,10],[139348,139348,5],[139349,139349,6.97],[139350,139350,5.93],[139351,139351,10],[139352,139353,5.93],[139354,139354,10],[139355,139355,5.93],[139356,139356,6.98],[139357,139357,10],[139358,139358,3.33],[139359,139359,2.22],[139360,139375,0],[139376,139376,4.82],[139377,139377,3.01],[139378,139379,10],[139380,139381,5.98],[139382,139382,4.82],[139383,139384,5.98],[139385,139388,4.82],[139389,139390,2.41],[139391,139391,5.98],[139392,139404,4.82],[139405,139406,2.41],[139407,139407,10],[139408,139408,2.92],[139409,139409,2.59],[139410,139410,2.87],[139411,139411,2.86],[139412,139412,2.59],[139413,139423,10],[139424,139424,7.11],[139425,139426,7.24],[139427,139428,7.11],[139429,139429,10.58],[139430,139430,8.47],[139431,139431,13.43],[139432,139432,13.4],[139433,139433,11.28],[139434,139434,9.15],[139435,139435,6.99],[139436,139436,7.11],[139437,139437,7.71],[139438,139438,6.82],[139439,139439,11.25],[139440,139440,6.71],[139441,139441,7.33],[139442,139442,8.11],[139443,139443,7.76],[139444,139444,7.1],[139445,139445,7.24],[139446,139446,6.77],[139447,139447,9.39],[139448,139448,5.65],[139449,139449,6],[139450,139450,5.56],[139451,139451,9.84],[139452,139453,5.65],[139454,139454,7.53],[139455,139455,6.59],[139456,139471,10],[139472,139474,0],[139475,139475,6],[139476,139477,7],[139478,139480,0],[139481,139482,6],[139483,139485,0],[139486,139486,10],[139487,139487,8.65],[139488,139488,9],[139489,139489,0],[139490,139490,10],[139491,139504,0],[139505,139519,10],[139520,139521,8.25],[139522,139522,6.02],[139523,139523,10.03],[139524,139524,6.4],[139525,139525,12.72],[139526,139526,8.25],[139527,139527,6.99],[139528,139528,6.35],[139529,139529,8.81],[139530,139530,10],[139531,139531,9.06],[139532,139532,8.43],[139533,139533,6.02],[139534,139534,5.76],[139535,139535,6.46],[139536,139536,6.88],[139537,139537,7.9],[139538,139538,7.08],[139539,139539,4.14],[139540,139540,7.78],[139541,139541,6.02],[139542,139542,12.94],[139543,139543,8.4],[139544,139544,8.5],[139545,139546,6.02],[139547,139547,9.27],[139548,139548,8.84],[139549,139549,6.02],[139550,139550,6.83],[139551,139551,6.67],[139552,139552,13.4],[139553,139553,14.57],[139554,139554,9.64],[139555,139555,7.22],[139556,139556,6.02],[139557,139557,5.42],[139558,139558,8.44],[139559,139559,8.43],[139560,139560,7.55],[139561,139561,3.92],[139562,139562,7.71],[139563,139563,7.76],[139564,139564,9.27],[139565,139565,7.73],[139566,139566,7.48],[139567,139567,3.85],[139568,139568,6.15],[139569,139569,6.88],[139570,139570,5.74],[139571,139571,11.15],[139572,139572,4.06],[139573,139573,6.55],[139574,139574,6.04],[139575,139575,4.65],[139576,139576,5.62],[139577,139577,6.6],[139578,139578,9.21],[139579,139579,17.49],[139580,139580,8.04],[139581,139581,6.46],[139582,139582,4.97],[139583,139583,7.68],[139584,139584,9.76],[139585,139585,7.46],[139586,139587,5.81],[139588,139588,6.87],[139589,139589,8.08],[139590,139590,6.94],[139591,139591,6.12],[139592,139592,4.11],[139593,139593,4.23],[139594,139594,6.76],[139595,139595,7.45],[139596,139596,8.1],[139597,139597,9.18],[139598,139598,4.79],[139599,139602,10],[139603,139604,7.5],[139605,139610,9.5],[139611,139614,11.82],[139615,139615,9.5],[139616,139616,3.32],[139617,139617,6.26],[139618,139618,9.22],[139619,139619,9.75],[139620,139620,6.99],[139621,139621,9.78],[139622,139622,12.73],[139623,139623,15.68],[139624,139624,9.32],[139625,139625,6.67],[139626,139626,9.35],[139627,139627,12.29],[139628,139628,5.81],[139629,139629,7.12],[139630,139630,7.93],[139631,139631,9.08],[139632,139632,3.25],[139633,139633,6.14],[139634,139634,9.04],[139635,139635,8.58],[139636,139636,5.93],[139637,139637,8.57],[139638,139638,11.46],[139639,139639,14.36],[139640,139640,8.4],[139641,139641,5.91],[139642,139642,8.44],[139643,139643,11.33],[139644,139644,3.25],[139645,139645,5.32],[139646,139646,6.63],[139647,139647,9.7],[139648,139648,10.82],[139649,139649,7.93],[139650,139650,12.61],[139651,139651,7.12],[139652,139652,4.44],[139653,139653,6.51],[139654,139654,5.64],[139655,139664,10],[139665,139665,5],[139666,139666,10],[139667,139667,5],[139668,139668,10],[139669,139669,5],[139670,139670,9.16],[139671,139671,10],[139672,139672,9.16],[139673,139675,10],[139676,139687,6.02],[139688,139688,5],[139689,139690,10],[139691,139693,6.02],[139694,139694,10],[139695,139695,6.02],[139696,139698,8.65],[139699,139699,10],[139700,139700,8.65],[139701,139701,10],[139702,139703,8.65],[139704,139705,10],[139706,139707,6.02],[139708,139708,8.65],[139709,139711,6.02],[139712,139712,8.65],[139713,139715,6.02],[139716,139718,10],[139719,139722,6.02],[139723,139724,10],[139725,139725,8.8],[139726,139726,6.02],[139727,139727,8.69],[139728,139728,10],[139729,139729,8.65],[139730,139730,10],[139731,139731,8.65],[139732,139732,10],[139733,139741,6.02],[139742,139743,7.23],[139744,139744,10],[139745,139745,7.23],[139746,139746,10],[139747,139747,7.23],[139748,139750,10],[139751,139751,11.81],[139752,139753,10],[139754,139754,11.81],[139755,139759,6.02],[139760,139760,8.65],[139761,139764,6.02],[139765,139765,10],[139766,139775,6.02],[139776,139776,6.3],[139777,139777,4.69],[139778,139778,7.11],[139779,139779,5.26],[139780,139780,5.35],[139781,139781,7.17],[139782,139782,8.06],[139783,139783,7.33],[139784,139784,5.76],[139785,139785,6.12],[139786,139786,5.09],[139787,139787,5.76],[139788,139788,5.89],[139789,139789,5.09],[139790,139790,5.22],[139791,139791,8.69],[139792,139792,7.95],[139793,139793,6.98],[139794,139794,8.67],[139795,139795,7.95],[139796,139796,5.99],[139797,139797,4.39],[139798,139798,8.04],[139799,139799,5.23],[139800,139800,3.55],[139801,139801,3.61],[139802,139802,8.67],[139803,139803,7.49],[139804,139804,7.24],[139805,139805,5.19],[139806,139806,10.59],[139807,139807,9.79],[139808,139808,5.98],[139809,139809,6.01],[139810,139810,6.05],[139811,139811,2.5],[139812,139812,4.73],[139813,139813,3.46],[139814,139814,5.25],[139815,139816,5.94],[139817,139817,7.19],[139818,139818,5.31],[139819,139819,5.38],[139820,139820,9.15],[139821,139821,11.24],[139822,139822,6.78],[139823,139823,9.24],[139824,139824,11.66],[139825,139825,5.98],[139826,139826,6.28],[139827,139827,5.97],[139828,139828,6.04],[139829,139829,5.97],[139830,139830,3.36],[139831,139831,5.76],[139832,139832,5.63],[139833,139833,5.76],[139834,139834,5.8],[139835,139835,5.6],[139836,139837,5.5],[139838,139838,5.43],[139839,139839,5.83],[139840,139840,3.9],[139841,139841,5.74],[139842,139842,5.8],[139843,139843,5.84],[139844,139844,6.71],[139845,139845,6.96],[139846,139846,6.29],[139847,139847,6.11],[139848,139848,8.67],[139849,139849,5.49],[139850,139850,6.04],[139851,139851,6.71],[139852,139852,5.43],[139853,139853,6.03],[139854,139854,5.97],[139855,139855,5.93],[139856,139856,5.6],[139857,139857,6.38],[139858,139859,6.32],[139860,139861,7.64],[139862,139862,5.79],[139863,139863,5.96],[139864,139864,5.89],[139865,139865,6.08],[139866,139866,6.19],[139867,139867,6.46],[139868,139868,6.36],[139869,139869,5.63],[139870,139870,5.75],[139871,139871,5.9],[139872,139873,8.67],[139874,139874,5.7],[139875,139875,5.93],[139876,139877,8.67],[139878,139878,5.75],[139879,139879,5.64],[139880,139880,6.22],[139881,139881,5.89],[139882,139882,7.33],[139883,139883,7.01],[139884,139884,3.58],[139885,139885,5.53],[139886,139887,5.7],[139888,139889,5.49],[139890,139890,5.64],[139891,139891,5.67],[139892,139892,5.83],[139893,139893,5.81],[139894,139895,6.05],[139896,139896,5.61],[139897,139897,5.77],[139898,139898,5.67],[139899,139899,5.78],[139900,139900,5.96],[139901,139901,5.78],[139902,139902,5.85],[139903,139903,5.82],[139904,139904,6.07],[139905,139905,5.79],[139906,139907,6.32],[139908,139908,6.44],[139909,139909,6.31],[139910,139911,6.63],[139912,139912,6.67],[139913,139913,6.49],[139914,139915,5.62],[139916,139917,5.82],[139918,139918,6.09],[139919,139920,6.54],[139921,139922,6.51],[139923,139924,6.11],[139925,139925,7.24],[139926,139926,7.45],[139927,139927,7.11],[139928,139928,7.22],[139929,139929,7.56],[139930,139930,7.35],[139931,139931,7.18],[139932,139932,7.61],[139933,139933,7.56],[139934,139934,7.84],[139935,139935,7.6],[139936,139936,7.33],[139937,139937,7.16],[139938,139941,7.5],[139942,139942,3.3],[139943,139943,3.33],[139944,139944,6.24],[139945,139945,7.29],[139946,139946,6.23],[139947,139947,7.55],[139948,139948,7.76],[139949,139949,7.78],[139950,139950,8.74],[139951,139951,8.36],[139952,139953,6.32],[139954,139955,7.41],[139956,139957,7.03],[139958,139959,7.35],[139960,139960,5.96],[139961,139961,6.83],[139962,139962,4.8],[139963,139964,6.96],[139965,139965,6.74],[139966,139966,7.42],[139967,139967,6.31],[139968,139969,6.71],[139970,139971,6.41],[139972,139972,3.81],[139973,139973,4.41],[139974,139974,4.48],[139975,139975,6.31],[139976,139976,7.72],[139977,139978,7.4],[139979,139980,7.24],[139981,139981,5.84],[139982,139983,6.35],[139984,139985,6.48],[139986,139987,5.69],[139988,139988,5.49],[139989,139989,6.14],[139990,139991,6.03],[139992,139993,9.68],[139994,139995,6.51],[139996,139997,6.46],[139998,139999,6.69],[140000,140000,6.66],[140001,140001,6.56],[140002,140002,6.86],[140003,140003,6.64],[140004,140004,6.71],[140005,140005,6.73],[140006,140006,6.76],[140007,140007,6.86],[140008,140008,7.19],[140009,140009,6.88],[140010,140010,7.49],[140011,140011,7.66],[140012,140012,7.71],[140013,140013,7.76],[140014,140014,4.11],[140015,140015,10],[140016,140016,9.2],[140017,140017,9.39],[140018,140018,6.5],[140019,140019,5.76],[140020,140020,5.09],[140021,140022,5.76],[140023,140023,5.09],[140024,140024,5.76],[140025,140025,6.32],[140026,140026,6.5],[140027,140027,5.76],[140028,140028,5.09],[140029,140029,5.76],[140030,140030,5.09],[140031,140031,5.26],[140032,140033,6.02],[140034,140034,6],[140035,140035,9.28],[140036,140036,6.02],[140037,140037,7.95],[140038,140038,6.85],[140039,140039,10],[140040,140047,6.02],[140048,140048,5.7],[140049,140049,6.02],[140050,140050,10],[140051,140051,6.02],[140052,140052,8.65],[140053,140053,6.02],[140054,140054,5.49],[140055,140055,6.5],[140056,140056,9.28],[140057,140057,6.02],[140058,140059,10],[140060,140063,6.02],[140064,140065,6.04],[140066,140067,8.65],[140068,140068,7.95],[140069,140069,10],[140070,140070,13.07],[140071,140071,10],[140072,140072,6.02],[140073,140074,10],[140075,140075,13.07],[140076,140084,5.49],[140085,140085,6.02],[140086,140086,9.26],[140087,140092,6.02],[140093,140093,10],[140094,140094,6.02],[140095,140095,7.28],[140096,140096,6],[140097,140100,6.02],[140101,140102,6],[140103,140105,6.02],[140106,140106,6],[140107,140109,6.02],[140110,140111,6],[140112,140112,6.02],[140113,140113,6],[140114,140116,6.02],[140117,140118,6],[140119,140124,6.02],[140125,140125,6],[140126,140128,6.02],[140129,140130,6],[140131,140133,6.02],[140134,140135,6],[140136,140137,6.02],[140138,140138,6],[140139,140144,6.02],[140145,140146,6],[140147,140154,6.02],[140155,140155,6.69],[140156,140156,9.37],[140157,140157,3.19],[140158,140158,9.39],[140159,140159,3.71],[140160,140163,6.02],[140164,140164,7.85],[140165,140165,6.84],[140166,140166,6.75],[140167,140168,10],[140169,140170,6.02],[140171,140171,8.92],[140172,140172,8.08],[140173,140173,7.86],[140174,140174,7.47],[140175,140179,6.58],[140180,140180,7.43],[140181,140181,6.02],[140182,140182,4.72],[140183,140184,7.89],[140185,140186,8.15],[140187,140205,10],[140206,140206,6.02],[140207,140207,3.15],[140208,140209,10],[140210,140211,14.88],[140212,140213,6.16],[140214,140214,7.24],[140215,140215,6.43],[140216,140221,5.03],[140222,140236,10],[140237,140237,9.98],[140238,140238,10],[140239,140239,8.57],[140240,140240,5.11],[140241,140243,5.42],[140244,140245,10.31],[140246,140246,9.58],[140247,140249,9.76],[140250,140251,10],[140252,140255,6.17],[140256,140256,6.16],[140257,140257,10],[140258,140258,11.44],[140259,140259,9.1],[140260,140260,10.94],[140261,140261,10.18],[140262,140262,9.26],[140263,140263,7.98],[140264,140319,10],[140320,140320,6],[140321,140321,10],[140322,140322,6],[140323,140323,5.9],[140324,140324,6],[140325,140325,7.92],[140326,140326,4.03],[140327,140351,10],[140352,140357,6.04],[140358,140361,7.5],[140362,140362,6.04],[140363,140484,10],[140485,140485,8.4],[140486,140543,10],[140544,140544,7.08],[140545,140545,10],[140546,140546,7.08],[140547,140555,10],[140556,140556,7.08],[140557,140559,10],[140560,140560,7.08],[140561,140563,10],[140564,140564,7.08],[140565,140567,10],[140568,140568,7.08],[140569,140571,10],[140572,140572,7.08],[140573,140579,10],[140580,140580,7.08],[140581,140587,10],[140588,140588,7.08],[140589,140595,10],[140596,140596,7.08],[140597,140603,10],[140604,140604,7.08],[140605,140619,10],[140620,140623,6.18],[140624,140652,7.08],[140653,140660,10],[140661,140671,6.18],[140672,140672,7.08],[140673,140675,10],[140676,140676,7.08],[140677,140679,10],[140680,140680,7.08],[140681,140683,10],[140684,140684,7.08],[140685,140687,10],[140688,140690,7.08],[140691,140691,7.29],[140692,140693,10],[140694,140703,6.02],[140704,140705,6.04],[140706,140706,10],[140707,140713,8.65],[140714,140715,3.54],[140716,140716,10],[140717,140717,8.65],[140718,140720,6.02],[140721,140721,10],[140722,140722,9.9],[140723,140723,10],[140724,140724,6.32],[140725,140725,8.65],[140726,140726,8.8],[140727,140727,10],[140728,140729,5.3],[140730,140730,9.9],[140731,140731,6.02],[140732,140732,9.9],[140733,140733,10],[140734,140735,6.39],[140736,140736,10],[140737,140737,7.95],[140738,140738,6.02],[140739,140739,8.65],[140740,140740,9.9],[140741,140741,6.02],[140742,140742,7.23],[140743,140743,6.15],[140744,140744,8.65],[140745,140745,10],[140746,140746,8.67],[140747,140747,6.04],[140748,140748,5.94],[140749,140749,6.02],[140750,140750,10],[140751,140751,6.04],[140752,140755,10],[140756,140759,6.02],[140760,140761,6.04],[140762,140769,6.02],[140770,140773,10],[140774,140774,3.54],[140775,140782,6.02],[140783,140783,10],[140784,140794,6.02],[140795,140798,10],[140799,140799,6.02],[140800,140803,10],[140804,140804,6.02],[140805,140806,10],[140807,140808,6.02],[140809,140809,10],[140810,140813,6.02],[140814,140814,10],[140815,140815,8.65],[140816,140818,8.3],[140819,140819,6.02],[140820,140823,10],[140824,140827,6.02],[140828,140831,10],[140832,140846,6.02],[140847,140847,8.65],[140848,140855,9],[140856,140857,6.02],[140858,140858,10.21],[140859,140859,10.52],[140860,140860,9.17],[140861,140863,6.02],[140864,140864,7.5],[140865,140865,6.02],[140866,140866,7.5],[140867,140871,6.02],[140872,140883,10],[140884,140895,6.02],[140896,140896,5.31],[140897,140898,10],[140899,140899,6.56],[140900,140900,10],[140901,140901,5.94],[140902,140902,5.1],[140903,140905,10],[140906,140906,5],[140907,140907,7.5],[140908,140910,10],[140911,140911,5],[140912,140913,6.02],[140914,140925,10],[140926,140926,6.02],[140927,140927,10],[140928,140939,6.02],[140940,140940,8.79],[140941,140941,8.63],[140942,140942,8.59],[140943,140943,8.96],[140944,140946,6.02],[140947,140947,10],[140948,140956,6.02],[140957,140961,10],[140962,140962,8.92],[140963,140963,8.97],[140964,140964,8.83],[140965,140965,6.6],[140966,140966,7.41],[140967,140967,9.23],[140968,140968,5.33],[140969,140969,9.2],[140970,140971,10],[140972,140972,6.47],[140973,140973,7.76],[140974,140974,10.55],[140975,140975,11.18],[140976,140977,6.02],[140978,140978,6.03],[140979,141025,10],[141026,141026,7],[141027,141056,10],[141057,141057,9.74],[141058,141058,9.61],[141059,141059,9.74],[141060,141060,9.8],[141061,141061,10],[141062,141062,7.89],[141063,141063,7.9],[141064,141064,7.91],[141065,141065,6.9],[141066,141069,10],[141070,141070,7.93],[141071,141071,9.33],[141072,141072,9.11],[141073,141073,9.45],[141074,141074,9.74],[141075,141075,7.64],[141076,141076,8.46],[141077,141077,7.62],[141078,141078,7.61],[141079,141079,5.71],[141080,141080,6.77],[141081,141081,7.63],[141082,141082,7.6],[141083,141083,7.59],[141084,141084,7.54],[141085,141085,4.94],[141086,141086,5.52],[141087,141087,5.37],[141088,141088,5.77],[141089,141089,6.92],[141090,141090,7.86],[141091,141092,7.88],[141093,141093,7.9],[141094,141094,7.93],[141095,141095,7.94],[141096,141096,10],[141097,141097,8.23],[141098,141098,7.89],[141099,141099,8.41],[141100,141100,8.23],[141101,141101,8.33],[141102,141102,8.16],[141103,141103,8.31],[141104,141104,9.23],[141105,141105,7.44],[141106,141106,7.23],[141107,141107,7.49],[141108,141108,7.9],[141109,141109,7.92],[141110,141110,6.95],[141111,141111,7.76],[141112,141112,7.68],[141113,141113,7.92],[141114,141114,7.59],[141115,141115,7.07],[141116,141116,7.08],[141117,141117,6.82],[141118,141118,7.01],[141119,141119,8.26],[141120,141120,8.15],[141121,141122,7.89],[141123,141123,7.07],[141124,141124,6.87],[141125,141125,6.96],[141126,141126,6.89],[141127,141127,7.86],[141128,141128,7.87],[141129,141129,7.13],[141130,141130,7.91],[141131,141131,7.85],[141132,141132,10],[141133,141133,8.73],[141134,141134,10],[141135,141136,7.62],[141137,141138,7.59],[141139,141141,10],[141142,141142,7.84],[141143,141143,10],[141144,141144,3.01],[141145,141145,2.77],[141146,141146,4.15],[141147,141148,3.92],[141149,141150,6.68],[141151,141152,10],[141153,141153,7.32],[141154,141155,5.44],[141156,141156,9.1],[141157,141157,6.67],[141158,141159,7.6],[141160,141161,3.9],[141162,141163,3.17],[141164,141165,2.76],[141166,141167,5.09],[141168,141169,4.1],[141170,141171,2.34],[141172,141173,3.34],[141174,141203,7.88],[141204,141204,8.94],[141205,141207,10],[141208,141208,7.48],[141209,141209,9.24],[141210,141210,7.48],[141211,141211,9.18],[141212,141212,9.27],[141213,141214,9.28],[141215,141215,8.34],[141216,141216,8.73],[141217,141217,8.28],[141218,141219,9.24],[141220,141220,9.17],[141221,141221,9.3],[141222,141222,9.31],[141223,141223,4.63],[141224,141224,8.83],[141225,141226,8.36],[141227,141228,8.67],[141229,141230,6.96],[141231,141231,8.74],[141232,141232,10],[141233,141233,8.74],[141234,141234,7.6],[141235,141235,9.46],[141236,141236,7.71],[141237,141237,8.65],[141238,141238,7.71],[141239,141239,8.88],[141240,141240,9.67],[141241,141241,8.88],[141242,141242,8.31],[141243,141243,8.73],[141244,141244,9.27],[141245,141245,9.7],[141246,141246,9.18],[141247,141247,10],[141248,141248,5.48],[141249,141249,9.48],[141250,141250,6.89],[141251,141252,5.64],[141253,141254,6.02],[141255,141255,6.2],[141256,141257,9.18],[141258,141258,3.4],[141259,141259,8.38],[141260,141260,3.25],[141261,141261,8.38],[141262,141263,10],[141264,141264,7.46],[141265,141265,6.2],[141266,141266,5.97],[141267,141268,5.42],[141269,141270,9.02],[141271,141271,11.15],[141272,141273,6.89],[141274,141274,8.7],[141275,141275,8.56],[141276,141276,10.55],[141277,141278,8.49],[141279,141279,3.96],[141280,141280,5.51],[141281,141281,7],[141282,141283,8.76],[141284,141285,9.46],[141286,141287,4.22],[141288,141289,3.66],[141290,141291,4.63],[141292,141293,4.88],[141294,141295,2.33],[141296,141297,9.82],[141298,141299,9.53],[141300,141300,12.46],[141301,141311,11.79],[141312,141567,6.84],[141568,141569,9.36],[141570,141571,8.66],[141572,141572,10.35],[141573,141573,9.36],[141574,141575,8.66],[141576,141577,4.78],[141578,141579,7.17],[141580,141583,8.82],[141584,141584,10.43],[141585,141585,8.38],[141586,141587,7.59],[141588,141589,8.65],[141590,141592,10.43],[141593,141596,8.65],[141597,141600,8.82],[141601,141602,7.46],[141603,141606,6.5],[141607,141607,7.79],[141608,141608,7.39],[141609,141609,7.79],[141610,141610,7.39],[141611,141612,6.98],[141613,141616,7.39],[141617,141618,7.79],[141619,141619,8.47],[141620,141621,10],[141622,141623,8.65],[141624,141624,4.08],[141625,141625,8.65],[141626,141629,8.08],[141630,141631,6.55],[141632,141633,7.63],[141634,141639,8.38],[141640,141640,9.21],[141641,141641,4.87],[141642,141643,8.38],[141644,141645,4.94],[141646,141646,8.38],[141647,141647,4.33],[141648,141648,8.38],[141649,141649,4.33],[141650,141651,8.62],[141652,141653,4.33],[141654,141655,8.62],[141656,141657,4.33],[141658,141659,8.72],[141660,141661,4.33],[141662,141663,8.72],[141664,141665,4.33],[141666,141669,8.65],[141670,141677,8.38],[141678,141679,7.14],[141680,141685,8.38],[141686,141686,7.23],[141687,141687,10.43],[141688,141688,7.23],[141689,141689,7.65],[141690,141690,9.21],[141691,141691,7.65],[141692,141693,5.56],[141694,141695,5.98],[141696,141696,3.65],[141697,141697,3.8],[141698,141698,3.13],[141699,141700,3.74],[141701,141702,4.47],[141703,141704,3.35],[141705,141706,3.95],[141707,141708,3.01],[141709,141712,3],[141713,141713,3.66],[141714,141714,3.68],[141715,141716,6.59],[141717,141718,6.95],[141719,141720,6.48],[141721,141721,2.26],[141722,141722,2.77],[141723,141723,5.94],[141724,141725,5.92],[141726,141726,6.61],[141727,141727,5.48],[141728,141729,5.94],[141730,141733,5.48],[141734,141735,7.53],[141736,141743,5.94],[141744,141748,7.03],[141749,141749,8.69],[141750,141750,7],[141751,141751,7.02],[141752,141752,7.22],[141753,141753,7.02],[141754,141754,7.03],[141755,141755,7.04],[141756,141761,7.02],[141762,141762,8.55],[141763,141763,8.74],[141764,141768,7.47],[141769,141769,7.96],[141770,141772,7.49],[141773,141773,9.44],[141774,141774,6.5],[141775,141776,7.58],[141777,141779,6.87],[141780,141781,6.51],[141782,141783,7.67],[141784,141785,2.77],[141786,141787,4.23],[141788,141788,6.37],[141789,141789,6.47],[141790,141790,6.37],[141791,141791,6.74],[141792,141792,7.47],[141793,141793,6.53],[141794,141794,6.83],[141795,141797,6.64],[141798,141798,7.1],[141799,141799,6.35],[141800,141801,7.49],[141802,141802,7.17],[141803,141803,4.73],[141804,141805,8.99],[141806,141807,5.98],[141808,141809,7.08],[141810,141811,7.02],[141812,141812,8.18],[141813,141813,6.1],[141814,141814,5.76],[141815,141817,5.08],[141818,141819,6.76],[141820,141821,5.37],[141822,141823,4.73],[141824,141825,8.99],[141826,141826,9.01],[141827,141828,5.44],[141829,141830,5.95],[141831,141832,7.66],[141833,141833,6.66],[141834,141834,8.55],[141835,141835,6.52],[141836,141836,15.05],[141837,141839,6.11],[141840,141840,5.93],[141841,141841,7.28],[141842,141842,6.13],[141843,141843,5.93],[141844,141844,6.75],[141845,141845,5.93],[141846,141846,6.11],[141847,141847,6.76],[141848,141850,6.11],[141851,141851,6.38],[141852,141852,6.17],[141853,141853,6.87],[141854,141854,3.95],[141855,141855,3.34],[141856,141856,8.11],[141857,141857,3.26],[141858,141859,5.41],[141860,141860,5.44],[141861,141861,5.41],[141862,141862,5.44],[141863,141863,6.47],[141864,141864,6.38],[141865,141866,5.45],[141867,141868,5.43],[141869,141870,7.61],[141871,141871,4.58],[141872,141872,5.29],[141873,141873,5.42],[141874,141874,5.21],[141875,141875,8.05],[141876,141877,7.14],[141878,141880,8.99],[141881,141883,7.49],[141884,141885,5.12],[141886,141886,3.34],[141887,141887,6.15],[141888,141893,5.44],[141894,141895,3.88],[141896,141897,5.42],[141898,141899,5.11],[141900,141901,7.39],[141902,141903,5.95],[141904,141904,7.39],[141905,141906,6.1],[141907,141908,6.52],[141909,141910,7.53],[141911,141912,6.52],[141913,141913,6.06],[141914,141915,6.52],[141916,141917,7.38],[141918,141920,6.1],[141921,141921,5.43],[141922,141923,6.1],[141924,141925,6.67],[141926,141929,5.42],[141930,141933,5.43],[141934,141934,4.85],[141935,141938,5.43],[141939,141939,5.44],[141940,141940,8.48],[141941,141941,9.84],[141942,141942,14.57],[141943,141943,5.45],[141944,141944,5.95],[141945,141946,6.59],[141947,141948,5.12],[141949,141951,5.43],[141952,141952,5.44],[141953,141958,5.43],[141959,141959,5.51],[141960,141960,5.7],[141961,141964,5.43],[141965,141965,5.51],[141966,141966,5.48],[141967,141968,5.45],[141969,141975,5.43],[141976,141978,5.44],[141979,141982,5.43],[141983,141983,5.52],[141984,141984,5.46],[141985,141986,6.83],[141987,141987,8.07],[141988,141988,5.44],[141989,141989,9.35],[141990,141993,6.13],[141994,141994,5.12],[141995,141995,5.24],[141996,141996,5.51],[141997,141997,5.56],[141998,141998,5.42],[141999,142001,5.53],[142002,142002,5.51],[142003,142006,5.53],[142007,142007,5.47],[142008,142008,5.48],[142009,142009,5.47],[142010,142010,5.48],[142011,142012,8.88],[142013,142014,5.64],[142015,142022,4.59],[142023,142026,5.46],[142027,142028,4.59],[142029,142030,9.53],[142031,142032,5.64],[142033,142034,5.63],[142035,142038,4.59],[142039,142040,8.5],[142041,142043,5.97],[142044,142044,6.1],[142045,142045,5.97],[142046,142046,3.93],[142047,142049,6.89],[142050,142050,6.86],[142051,142051,6.84],[142052,142052,6.86],[142053,142053,8.37],[142054,142054,6.86],[142055,142057,6.89],[142058,142059,6.93],[142060,142061,5.12],[142062,142062,3.13],[142063,142064,2.84],[142065,142065,2.99],[142066,142066,3.9],[142067,142067,5.43],[142068,142068,3.49],[142069,142069,4.78],[142070,142070,2.26],[142071,142072,9.71],[142073,142074,5.43],[142075,142075,4.99],[142076,142076,3.55],[142077,142077,4.11],[142078,142079,2.94],[142080,142083,6.02],[142084,142084,10.98],[142085,142087,10],[142088,142091,6.02],[142092,142092,10.98],[142093,142093,5.86],[142094,142097,6],[142098,142105,6.02],[142106,142108,10],[142109,142110,2.4],[142111,142114,9.1],[142115,142115,9.26],[142116,142116,12.07],[142117,142118,10],[142119,142120,5.44],[142121,142121,10],[142122,142123,3.57],[142124,142125,8.42],[142126,142127,5.96],[142128,142129,9.26],[142130,142130,12],[142131,142131,15.74],[142132,142134,9.26],[142135,142135,14.12],[142136,142148,9.26],[142149,142150,9.28],[142151,142156,9.26],[142157,142160,10],[142161,142161,7.94],[142162,142162,7],[142163,142164,8.65],[142165,142223,10],[142224,142225,12.34],[142226,142335,10],[142336,142336,8.17],[142337,142337,8.47],[142338,142338,10.63],[142339,142339,9.58],[142340,142340,10.71],[142341,142341,6.58],[142342,142342,10.63],[142343,142343,8.54],[142344,142344,10.19],[142345,142346,10.72],[142347,142347,5.21],[142348,142348,10.96],[142349,142349,4.45],[142350,142350,10.38],[142351,142351,8.36],[142352,142353,5.69],[142354,142354,7.69],[142355,142355,5.69],[142356,142356,8.04],[142357,142357,10.63],[142358,142358,8.54],[142359,142359,7.96],[142360,142360,8.55],[142361,142361,7.96],[142362,142362,8.65],[142363,142363,8.18],[142364,142364,8.4],[142365,142365,9.09],[142366,142366,8.57],[142367,142367,7.42],[142368,142368,6.99],[142369,142369,9.36],[142370,142370,7.78],[142371,142371,8.57],[142372,142372,7.27],[142373,142373,8.5],[142374,142374,8.6],[142375,142375,10.3],[142376,142376,10.4],[142377,142377,13.04],[142378,142378,9.27],[142379,142379,6.01],[142380,142380,3.88],[142381,142381,7.92],[142382,142382,9.89],[142383,142383,10],[142384,142384,7.07],[142385,142385,7.27],[142386,142386,9.2],[142387,142387,7.98],[142388,142388,8.96],[142389,142389,5.08],[142390,142390,9.2],[142391,142391,6.88],[142392,142392,8.34],[142393,142394,9.14],[142395,142395,4.73],[142396,142396,9.19],[142397,142397,3.97],[142398,142398,8.71],[142399,142399,7.23],[142400,142400,4.93],[142401,142401,5.06],[142402,142402,6.63],[142403,142403,4.86],[142404,142404,6.42],[142405,142405,9.2],[142406,142406,7.38],[142407,142407,7.43],[142408,142408,6.99],[142409,142409,6.23],[142410,142410,7.02],[142411,142411,7.07],[142412,142412,6.69],[142413,142413,6.98],[142414,142414,7.46],[142415,142415,6.39],[142416,142416,6.13],[142417,142417,7.22],[142418,142418,6.04],[142419,142419,7.46],[142420,142420,5.64],[142421,142421,6.64],[142422,142422,7.22],[142423,142423,7.84],[142424,142424,8.53],[142425,142425,10.38],[142426,142426,7.97],[142427,142427,4.83],[142428,142428,3.12],[142429,142429,6.44],[142430,142430,7.71],[142431,142431,10],[142432,142432,6.67],[142433,142433,2.78],[142434,142434,6.67],[142435,142435,6.11],[142436,142436,7.22],[142437,142437,5],[142438,142438,3.33],[142439,142439,7.78],[142440,142440,5.56],[142441,142441,7.78],[142442,142442,5.56],[142443,142443,6.67],[142444,142444,4.44],[142445,142445,8.32],[142446,142447,6.02],[142448,142448,8.98],[142449,142449,7.4],[142450,142450,12.22],[142451,142451,10.6],[142452,142452,4.92],[142453,142453,6.47],[142454,142454,4.83],[142455,142455,6.24],[142456,142456,6.89],[142457,142458,6.02],[142459,142459,4.07],[142460,142461,6.02],[142462,142462,5.86],[142463,142463,6],[142464,142464,6.33],[142465,142465,5.74],[142466,142466,6.5],[142467,142467,5.76],[142468,142468,5.24],[142469,142469,4.33],[142470,142470,8.14],[142471,142471,6.58],[142472,142472,6.43],[142473,142473,4.95],[142474,142474,5.56],[142475,142475,4.79],[142476,142476,5.72],[142477,142477,4.54],[142478,142478,7.41],[142479,142479,6.37],[142480,142480,7.82],[142481,142481,6.05],[142482,142482,2.84],[142483,142483,2.58],[142484,142484,6.19],[142485,142485,5.34],[142486,142486,5.81],[142487,142487,4.67],[142488,142488,8],[142489,142489,7.46],[142490,142490,7.6],[142491,142491,6.32],[142492,142492,5.72],[142493,142493,4.7],[142494,142494,7.81],[142495,142495,6.05],[142496,142496,7.31],[142497,142497,6.24],[142498,142498,6.05],[142499,142499,5.3],[142500,142500,6.32],[142501,142501,4.8],[142502,142502,6.1],[142503,142503,5.67],[142504,142504,5.66],[142505,142505,5.08],[142506,142506,8.04],[142507,142507,7.25],[142508,142508,5.86],[142509,142509,5.29],[142510,142510,8.34],[142511,142511,7],[142512,142512,10.32],[142513,142513,8.16],[142514,142514,6.47],[142515,142515,5.06],[142516,142516,5.54],[142517,142517,5.72],[142518,142518,6.3],[142519,142519,5.52],[142520,142520,5.72],[142521,142521,4.7],[142522,142522,6.47],[142523,142523,5.06],[142524,142524,7.88],[142525,142525,7.06],[142526,142526,8.16],[142527,142527,7.45],[142528,142528,6.49],[142529,142529,5.38],[142530,142530,10.32],[142531,142531,8.16],[142532,142532,5.84],[142533,142533,4.98],[142534,142534,4.41],[142535,142535,3.8],[142536,142536,5.49],[142537,142537,5.25],[142538,142539,5.72],[142540,142540,5.88],[142541,142541,5.1],[142542,142542,6.17],[142543,142543,5.5],[142544,142544,5.24],[142545,142545,4.35],[142546,142547,5.72],[142548,142548,3.57],[142549,142549,3.69],[142550,142550,5.99],[142551,142551,5.17],[142552,142552,7.31],[142553,142553,6.24],[142554,142554,8.14],[142555,142555,6.58],[142556,142557,6.04],[142558,142558,5.56],[142559,142559,4.7],[142560,142560,8.24],[142561,142561,7.28],[142562,142562,6.58],[142563,142563,5.85],[142564,142564,5.34],[142565,142565,7.49],[142566,142566,7.28],[142567,142567,8.71],[142568,142569,6.93],[142570,142570,10.45],[142571,142571,8.18],[142572,142572,5.92],[142573,142573,7.6],[142574,142574,6.61],[142575,142577,0],[142578,142578,7.3],[142579,142579,6.15],[142580,142584,10],[142585,142585,8.36],[142586,142587,5.54],[142588,142588,8.36],[142589,142589,3.46],[142590,142590,4.26],[142591,142591,3],[142592,142639,10],[142640,142640,4.14],[142641,142641,8.56],[142642,142642,8.57],[142643,142644,6.79],[142645,142645,6.39],[142646,142646,6.05],[142647,142648,6.31],[142649,142650,6.47],[142651,142651,7],[142652,142652,7.94],[142653,142653,7.24],[142654,142654,4.98],[142655,142655,7.24],[142656,142657,8.57],[142658,142658,2.85],[142659,142659,6.39],[142660,142660,7.25],[142661,142661,6.39],[142662,142662,6.99],[142663,142663,7.28],[142664,142664,7.42],[142665,142665,4.77],[142666,142666,5.11],[142667,142667,6.27],[142668,142668,7.84],[142669,142669,5.36],[142670,142670,6.47],[142671,142671,2.83],[142672,142672,7.65],[142673,142673,2.73],[142674,142674,5.51],[142675,142675,4.14],[142676,142677,8.57],[142678,142678,7.25],[142679,142679,2.92],[142680,142680,7.1],[142681,142682,8.57],[142683,142683,7.56],[142684,142684,5.19],[142685,142685,6.39],[142686,142686,7.56],[142687,142687,6.47],[142688,142688,6.71],[142689,142689,7.05],[142690,142690,4.77],[142691,142691,8.36],[142692,142692,4.54],[142693,142693,8.36],[142694,142694,6.51],[142695,142695,7.71],[142696,142702,10],[142703,142703,3.08],[142704,142704,7.69],[142705,142718,10],[142719,142719,0],[142720,142720,13.8],[142721,142721,11.43],[142722,142722,11.67],[142723,142723,9.54],[142724,142724,10.23],[142725,142725,9.83],[142726,142726,8.37],[142727,142727,8.44],[142728,142728,8.5],[142729,142729,10.35],[142730,142730,8.8],[142731,142731,10.02],[142732,142732,11],[142733,142733,10.68],[142734,142734,10.71],[142735,142735,15.02],[142736,142736,17.51],[142737,142737,9.16],[142738,142738,9.85],[142739,142739,11.58],[142740,142740,11.43],[142741,142741,8.15],[142742,142742,11.43],[142743,142751,10],[142752,142752,10.23],[142753,142753,11.88],[142754,142754,11.72],[142755,142755,10.23],[142756,142756,11.6],[142757,142758,10.23],[142759,142759,10],[142760,142762,8.37],[142763,142763,8.38],[142764,142764,8.37],[142765,142765,10.05],[142766,142766,8.44],[142767,142767,10],[142768,142772,12.19],[142773,142773,13.53],[142774,142774,12.19],[142775,142775,10],[142776,142776,16.94],[142777,142777,17.31],[142778,142778,17.25],[142779,142779,17.03],[142780,142780,20.36],[142781,142781,16.64],[142782,142782,16.83],[142783,142783,10],[142784,142790,9.05],[142791,142791,10],[142792,142792,7.65],[142793,142793,9.9],[142794,142794,9.83],[142795,142795,7.65],[142796,142796,9.71],[142797,142798,7.65],[142799,142799,10],[142800,142800,9.62],[142801,142801,11.88],[142802,142802,11.81],[142803,142803,9.62],[142804,142804,11.68],[142805,142806,9.62],[142807,142807,10],[142808,142808,6.29],[142809,142809,9.02],[142810,142810,6.67],[142811,142811,6.83],[142812,142812,6.55],[142813,142813,8.68],[142814,142814,6.29],[142815,142815,10],[142816,142847,0],[142848,142848,2.38],[142849,142849,2.43],[142850,142851,1.73],[142852,142852,2.03],[142853,142853,2.02],[142854,142854,3.79],[142855,142855,3.83],[142856,142856,3.05],[142857,142858,2.97],[142859,142859,3.54],[142860,142861,2.34],[142862,142862,10.05],[142863,142863,12.05],[142864,142865,11.68],[142866,142866,1.57],[142867,142867,5.51],[142868,142869,7.03],[142870,142870,6.03],[142871,142871,3.33],[142872,142872,6.02],[142873,142873,10],[142874,142874,3.79],[142875,142875,6.67],[142876,142877,2.34],[142878,142879,6.67],[142880,142881,4.28],[142882,142885,4.47],[142886,142887,6.73],[142888,142889,6.31],[142890,142892,6.91],[142893,142893,6.67],[142894,142894,6.02],[142895,142895,2.35],[142896,142896,3.41],[142897,142897,2.82],[142898,142911,10],[142912,142912,5],[142913,143405,10],[143406,143407,16],[143408,143422,10],[143423,143423,5],[143424,143512,10],[143513,143514,0],[143515,143664,10],[143665,143758,8.65],[143759,143871,10],[143872,143899,8.65],[143900,143900,8.69],[143901,143967,10],[143968,143995,8.65],[143996,143998,10],[143999,143999,8.65],[144000,144255,10],[144256,144260,8.65],[144261,144265,10],[144266,144268,8.65],[144269,144272,10],[144273,144277,8.65],[144278,144280,10],[144281,144282,8.65],[144283,144294,10],[144295,144303,8.65],[144304,144307,10],[144308,144321,8.65],[144322,144322,10],[144323,144323,8.65],[144324,144324,10],[144325,144327,8.65],[144328,144328,10],[144329,144330,8.65],[144331,144334,10],[144335,144336,8.65],[144337,144338,10],[144339,144339,8.65],[144340,144341,10],[144342,144342,8.65],[144343,144346,10],[144347,144349,8.65],[144350,150975,10],[150976,151039,8.79],[151040,172031,10],[172032,172034,6.17],[172035,172035,6.41],[172036,172036,6.15],[172037,172038,5.68],[172039,172039,6.3],[172040,172040,5.25],[172041,172042,5.43],[172043,172043,5.62],[172044,172045,5.93],[172046,172046,5.73],[172047,172047,5.82],[172048,172050,6.85],[172051,172051,5.89],[172052,172052,5.78],[172053,172053,6.37],[172054,172054,6.26],[172055,172057,5.32],[172058,172058,6.75],[172059,172060,5.84],[172061,172061,6.27],[172062,172062,5.14],[172063,172064,6.37],[172065,172065,6.05],[172066,172067,5.83],[172068,172068,4.49],[172069,172069,6.01],[172070,172071,5.2],[172072,172072,5.18],[172073,172074,6.12],[172075,172075,4.49],[172076,172076,5.72],[172077,172078,5.24],[172079,172079,4.95],[172080,172081,6.06],[172082,172082,5.47],[172083,172084,5.39],[172085,172085,6.02],[172086,172087,7.05],[172088,172088,6.07],[172089,172090,6.22],[172091,172091,5.72],[172092,172093,6.67],[172094,172094,6.12],[172095,172095,5.93],[172096,172097,6.13],[172098,172098,6.23],[172099,172100,5.73],[172101,172101,5.89],[172102,172102,6.2],[172103,172104,6.39],[172105,172105,5.63],[172106,172106,5.01],[172107,172108,5.8],[172109,172109,5.97],[172110,172111,6.23],[172112,172112,6.07],[172113,172114,6.43],[172115,172115,6.11],[172116,172117,6.17],[172118,172118,6.12],[172119,172120,5.82],[172121,172121,5.92],[172122,172122,6.27],[172123,172124,5.71],[172125,172125,6.14],[172126,172126,6.29],[172127,172128,8.01],[172129,172129,6.37],[172130,172131,5.74],[172132,172132,6.07],[172133,172133,6.09],[172134,172135,5.03],[172136,172136,6.12],[172137,172138,5.76],[172139,172139,6.08],[172140,172140,6.16],[172141,172142,5.91],[172143,172143,5.54],[172144,172145,5.76],[172146,172146,5.58],[172147,172148,5.3],[172149,172149,5.1],[172150,172150,5.85],[172151,172152,5.68],[172153,172153,5.53],[172154,172155,5.89],[172156,172156,5.27],[172157,172157,6.63],[172158,172159,5.45],[172160,172160,6.71],[172161,172161,6.03],[172162,172164,6.37],[172165,172165,5.61],[172166,172167,6.07],[172168,172168,5.63],[172169,172170,7.09],[172171,172171,5.86],[172172,172173,6.13],[172174,172174,5.7],[172175,172176,5.64],[172177,172177,5.1],[172178,172179,5.6],[172180,172180,5.92],[172181,172181,6.39],[172182,172182,6.19],[172183,172183,5.06],[172184,172184,6.03],[172185,172186,5.95],[172187,172187,5.76],[172188,172189,5.87],[172190,172190,5.34],[172191,172191,6.07],[172192,172193,5.84],[172194,172194,5.56],[172195,172195,5.49],[172196,172197,5.42],[172198,172198,5.92],[172199,172200,6.39],[172201,172202,5.2],[172203,172203,5.34],[172204,172205,6.12],[172206,172206,5.92],[172207,172208,5.41],[172209,172209,5.18],[172210,172211,5.92],[172212,172212,5.45],[172213,172213,6.33],[172214,172215,5.98],[172216,172216,6.37],[172217,172217,5.59],[172218,172219,5.69],[172220,172220,6.85],[172221,172221,6.07],[172222,172223,5.6],[172224,172224,5.83],[172225,172226,6],[172227,172227,5.77],[172228,172229,6.54],[172230,172230,5.82],[172231,172232,5.27],[172233,172233,5.32],[172234,172235,6.39],[172236,172236,5.27],[172237,172237,5.54],[172238,172239,5.56],[172240,172240,5.24],[172241,172241,6.58],[172242,172244,5.61],[172245,172246,5.28],[172247,172247,5.36],[172248,172248,4.82],[172249,172250,6.22],[172251,172251,6.08],[172252,172253,5.47],[172254,172254,5.6],[172255,172258,6.08],[172259,172260,5.4],[172261,172261,5.47],[172262,172262,5.39],[172263,172264,5.03],[172265,172265,5.15],[172266,172268,5.92],[172269,172269,5.15],[172270,172270,5.66],[172271,172272,5.57],[172273,172273,6.35],[172274,172275,5.42],[172276,172276,5.77],[172277,172278,5.18],[172279,172279,5.4],[172280,172281,5.56],[172282,172282,5.6],[172283,172284,6.39],[172285,172285,5.6],[172286,172287,6.24],[172288,172288,6.74],[172289,172290,5.54],[172291,172291,6.17],[172292,172293,5.71],[172294,172294,5.66],[172295,172295,6.26],[172296,172297,5.21],[172298,172298,6.12],[172299,172300,5.36],[172301,172301,5.68],[172302,172303,5.65],[172304,172304,5.1],[172305,172306,4.98],[172307,172307,5.37],[172308,172308,4.9],[172309,172310,5.08],[172311,172311,5.53],[172312,172313,5.03],[172314,172314,5.1],[172315,172316,4.93],[172317,172317,5.08],[172318,172319,5.72],[172320,172320,5.69],[172321,172321,4.98],[172322,172323,5.37],[172324,172324,4.98],[172325,172325,5.59],[172326,172327,4.82],[172328,172328,5.95],[172329,172329,5.1],[172330,172331,5.34],[172332,172332,5.38],[172333,172334,5.63],[172335,172335,5.37],[172336,172336,5.9],[172337,172338,5.92],[172339,172339,5.87],[172340,172341,6.15],[172342,172342,5.37],[172343,172344,5.21],[172345,172348,5.37],[172349,172349,5.63],[172350,172352,5.37],[172353,172354,5.59],[172355,172355,5.51],[172356,172356,5.2],[172357,172358,5.07],[172359,172359,5.3],[172360,172361,5.18],[172362,172362,6.07],[172363,172363,5.75],[172364,172365,6.39],[172366,172366,5.87],[172367,172368,6.13],[172369,172369,5.37],[172370,172371,4.86],[172372,172372,5.54],[172373,172374,5.73],[172375,172375,5.63],[172376,172377,5.6],[172378,172378,6.46],[172379,172379,5.53],[172380,172382,5.6],[172383,172384,6.07],[172385,172385,5.97],[172386,172386,5.1],[172387,172388,5.31],[172389,172389,5.82],[172390,172391,5.53],[172392,172392,4.94],[172393,172394,4.84],[172395,172395,5.6],[172396,172396,5.41],[172397,172398,6.08],[172399,172399,5.64],[172400,172400,5.02],[172401,172402,5.86],[172403,172403,5.34],[172404,172405,6.66],[172406,172406,5.76],[172407,172408,5.22],[172409,172410,5.37],[172411,172411,5.71],[172412,172412,5.81],[172413,172413,5.92],[172414,172415,6.13],[172416,172416,6.07],[172417,172418,5.94],[172419,172419,5.5],[172420,172421,5.59],[172422,172422,5.49],[172423,172424,5.38],[172425,172425,5.73],[172426,172426,5.64],[172427,172428,5.69],[172429,172429,5.64],[172430,172431,5.24],[172432,172432,5.2],[172433,172433,5.47],[172434,172436,5.76],[172437,172438,5.42],[172439,172441,5.6],[172442,172442,5.39],[172443,172444,5.6],[172445,172445,5.82],[172446,172446,6.22],[172447,172448,6.09],[172449,172449,5.72],[172450,172451,5.55],[172452,172452,5.71],[172453,172454,5.36],[172455,172455,5.71],[172456,172458,5.2],[172459,172459,5.65],[172460,172461,5],[172462,172462,5.42],[172463,172464,5.47],[172465,172465,5.94],[172466,172467,6],[172468,172468,5.8],[172469,172470,5.76],[172471,172471,5.37],[172472,172473,4.63],[172474,172474,5.92],[172475,172475,4.9],[172476,172477,4.88],[172478,172478,4.87],[172479,172479,6.25],[172480,172481,5.13],[172482,172482,5.59],[172483,172485,5.31],[172486,172486,6],[172487,172487,5.99],[172488,172489,5.68],[172490,172490,5.54],[172491,172492,5.01],[172493,172493,6.37],[172494,172494,5.92],[172495,172496,6.37],[172497,172497,5.6],[172498,172499,5.11],[172500,172500,6],[172501,172502,5.61],[172503,172503,5.37],[172504,172505,4.99],[172506,172506,5.96],[172507,172508,5.83],[172509,172510,5.2],[172511,172512,5.99],[172513,172513,5.2],[172514,172514,5.62],[172515,172516,5.46],[172517,172517,5.92],[172518,172518,6.25],[172519,172520,6.43],[172521,172521,5.92],[172522,172522,6.54],[172523,172524,5.57],[172525,172525,5.27],[172526,172526,5.32],[172527,172528,5.1],[172529,172529,4.94],[172530,172530,6.26],[172531,172532,6.13],[172533,172533,5.92],[172534,172535,5.59],[172536,172536,5.7],[172537,172538,5.54],[172539,172539,4.96],[172540,172541,5.37],[172542,172542,5.64],[172543,172543,5.81],[172544,172545,5.31],[172546,172546,5.32],[172547,172548,5.42],[172549,172549,5.78],[172550,172550,5.27],[172551,172552,5.03],[172553,172553,5.46],[172554,172554,6.16],[172555,172556,4.54],[172557,172557,6.39],[172558,172558,6],[172559,172560,5.74],[172561,172561,5.38],[172562,172563,5.07],[172564,172564,5.92],[172565,172566,5.37],[172567,172568,5.97],[172569,172569,5.66],[172570,172570,5.71],[172571,172572,5.52],[172573,172573,5.25],[172574,172574,5.47],[172575,172576,6.26],[172577,172577,5.82],[172578,172578,5.29],[172579,172580,4.67],[172581,172581,4.58],[172582,172582,5.42],[172583,172584,5.93],[172585,172585,6.73],[172586,172586,6.03],[172587,172589,5.29],[172590,172591,5.53],[172592,172593,5.98],[172594,172594,5.39],[172595,172596,6.09],[172597,172597,5.39],[172598,172599,5.53],[172600,172601,5.41],[172602,172603,5.85],[172604,172604,5.76],[172605,172606,5.16],[172607,172607,5.47],[172608,172608,6.29],[172609,172610,4.77],[172611,172611,5.73],[172612,172613,6.13],[172614,172614,5.59],[172615,172616,5.64],[172617,172617,5.49],[172618,172618,5.07],[172619,172620,5.58],[172621,172621,6.08],[172622,172622,5.87],[172623,172624,5.33],[172625,172625,5.62],[172626,172626,6.05],[172627,172628,5.7],[172629,172629,6.05],[172630,172630,4.98],[172631,172632,5.24],[172633,172633,5.64],[172634,172635,5.53],[172636,172636,5.54],[172637,172638,5.59],[172639,172639,5.24],[172640,172640,6.09],[172641,172642,5.37],[172643,172643,5.88],[172644,172644,5.92],[172645,172646,5.22],[172647,172647,4.78],[172648,172649,5.63],[172650,172650,6.46],[172651,172652,5.18],[172653,172653,6.11],[172654,172656,5.25],[172657,172657,6.04],[172658,172660,6.16],[172661,172661,5.43],[172662,172663,5.53],[172664,172664,5.8],[172665,172665,5.26],[172666,172667,5.92],[172668,172668,5.67],[172669,172670,5.89],[172671,172671,6.12],[172672,172672,6.2],[172673,172675,5.57],[172676,172677,5.5],[172678,172678,5.8],[172679,172680,5.17],[172681,172681,4.88],[172682,172683,5.48],[172684,172684,5.76],[172685,172685,5.7],[172686,172687,6.17],[172688,172688,5.61],[172689,172690,5.69],[172691,172691,5.55],[172692,172694,5.46],[172695,172695,6.17],[172696,172697,5.63],[172698,172698,6.04],[172699,172699,5.78],[172700,172701,5.98],[172702,172702,5.63],[172703,172704,5.71],[172705,172705,5.25],[172706,172706,5.53],[172707,172708,4.78],[172709,172709,5.46],[172710,172711,6.5],[172712,172712,5.17],[172713,172714,5.41],[172715,172715,4.79],[172716,172717,5.49],[172718,172718,5.18],[172719,172720,4.84],[172721,172721,4.96],[172722,172722,5.95],[172723,172724,5.53],[172725,172725,5.54],[172726,172728,5.92],[172729,172729,6.75],[172730,172731,5.1],[172732,172732,5.69],[172733,172733,6.35],[172734,172735,6.3],[172736,172736,5.67],[172737,172738,5.92],[172739,172739,6.37],[172740,172740,5.96],[172741,172742,6.33],[172743,172743,5.65],[172744,172745,5.88],[172746,172746,4.89],[172747,172748,5.83],[172749,172749,5.1],[172750,172751,5.13],[172752,172752,5.71],[172753,172754,6.07],[172755,172755,5.32],[172756,172756,5.18],[172757,172758,5.53],[172759,172759,5.57],[172760,172760,5.88],[172761,172762,5.77],[172763,172763,5.88],[172764,172765,5.82],[172766,172766,5.41],[172767,172768,5.83],[172769,172769,5.75],[172770,172771,5.53],[172772,172772,5.49],[172773,172774,5.09],[172775,172775,6.04],[172776,172777,5.15],[172778,172778,5.37],[172779,172780,5.99],[172781,172781,5.66],[172782,172783,5.42],[172784,172784,5.29],[172785,172787,6.45],[172788,172790,5.42],[172791,172791,5.31],[172792,172793,5.97],[172794,172795,5.63],[172796,172797,4.59],[172798,172799,5.97],[172800,172800,5.74],[172801,172802,6.13],[172803,172803,5.66],[172804,172805,4.77],[172806,172806,5.92],[172807,172808,6.13],[172809,172809,5.99],[172810,172811,5.97],[172812,172812,5.25],[172813,172814,6.33],[172815,172815,6.08],[172816,172816,5.2],[172817,172818,5.06],[172819,172819,5.51],[172820,172822,4.77],[172823,172823,5.46],[172824,172825,5.13],[172826,172826,5.46],[172827,172828,5.71],[172829,172829,5.22],[172830,172830,5.98],[172831,172832,5.14],[172833,172833,5.63],[172834,172835,5.52],[172836,172838,5.73],[172839,172839,5.42],[172840,172841,5.73],[172842,172842,4.99],[172843,172844,5.01],[172845,172845,5.23],[172846,172847,5.6],[172848,172848,5.37],[172849,172849,6.37],[172850,172852,5.53],[172853,172853,5.44],[172854,172855,5.92],[172856,172856,6.55],[172857,172858,5.1],[172859,172859,5.92],[172860,172860,5.42],[172861,172862,5.49],[172863,172863,6.28],[172864,172864,6.49],[172865,172866,5.5],[172867,172867,5.58],[172868,172869,6.12],[172870,172870,5.83],[172871,172872,5.76],[172873,172873,5.08],[172874,172875,5.42],[172876,172876,5.32],[172877,172877,6.67],[172878,172879,6.33],[172880,172880,5.71],[172881,172883,5.2],[172884,172884,6.13],[172885,172885,6.61],[172886,172887,6.41],[172888,172888,6.06],[172889,172890,5.77],[172891,172891,5.52],[172892,172893,5.6],[172894,172894,5.18],[172895,172896,5.59],[172897,172897,5.34],[172898,172899,5.96],[172900,172900,5.6],[172901,172901,5.76],[172902,172903,5.38],[172904,172904,5.94],[172905,172905,5.64],[172906,172907,5.03],[172908,172908,5.25],[172909,172911,5.68],[172912,172912,5.37],[172913,172914,7.05],[172915,172915,5.83],[172916,172917,5.74],[172918,172918,5.58],[172919,172920,5.72],[172921,172921,5.34],[172922,172923,5.58],[172924,172925,5.63],[172926,172927,5.32],[172928,172928,5.87],[172929,172930,5.54],[172931,172931,5.83],[172932,172932,5.22],[172933,172934,5.08],[172935,172935,5.6],[172936,172936,5.31],[172937,172938,5.83],[172939,172939,6.33],[172940,172941,5.3],[172942,172942,5.66],[172943,172944,5.3],[172945,172945,5.14],[172946,172947,5.53],[172948,172948,5.92],[172949,172950,5.84],[172951,172951,5.18],[172952,172954,5.83],[172955,172955,5.08],[172956,172957,5.68],[172958,172958,6.07],[172959,172959,5.6],[172960,172961,5.63],[172962,172962,6.08],[172963,172964,5.72],[172965,172965,5.35],[172966,172967,5.66],[172968,172968,5.37],[172969,172970,5.97],[172971,172971,5.31],[172972,172973,5.68],[172974,172974,6.23],[172975,172976,5.03],[172977,172977,5],[172978,172978,5.81],[172979,172980,5.97],[172981,172981,6.1],[172982,172982,6],[172983,172985,5.22],[172986,172986,5.19],[172987,172988,5.78],[172989,172989,5.53],[172990,172991,5.42],[172992,172992,5.37],[172993,172994,4.79],[172995,172995,6.08],[172996,172997,5.03],[172998,172998,5.92],[172999,173000,6.51],[173001,173001,5.47],[173002,173003,5.84],[173004,173004,5.05],[173005,173005,5.75],[173006,173006,5.63],[173007,173007,5.75],[173008,173008,6.09],[173009,173010,5.58],[173011,173011,6.14],[173012,173012,5.03],[173013,173014,5.37],[173015,173015,5.34],[173016,173017,5.03],[173018,173018,7.01],[173019,173020,5.32],[173021,173021,5.77],[173022,173023,5.08],[173024,173024,5.61],[173025,173026,5.37],[173027,173027,5.66],[173028,173028,5.49],[173029,173030,6.07],[173031,173031,5.55],[173032,173032,5.41],[173033,173035,5.97],[173036,173038,6.37],[173039,173039,5.97],[173040,173040,5.92],[173041,173042,4.92],[173043,173043,5.61],[173044,173045,6.13],[173046,173046,5.77],[173047,173048,5.71],[173049,173049,4.98],[173050,173051,5.64],[173052,173052,5.98],[173053,173054,5.7],[173055,173055,5.92],[173056,173056,7.74],[173057,173058,6.07],[173059,173059,6.32],[173060,173060,5.32],[173061,173063,5.59],[173064,173064,5.27],[173065,173066,6.75],[173067,173067,5.92],[173068,173068,5.66],[173069,173070,5.92],[173071,173071,5.18],[173072,173073,5.92],[173074,173074,5.48],[173075,173077,6.08],[173078,173079,5.54],[173080,173080,5.6],[173081,173082,5.13],[173083,173083,5.59],[173084,173084,5.73],[173085,173086,5.64],[173087,173087,6.17],[173088,173089,5.46],[173090,173090,6.54],[173091,173091,5.86],[173092,173093,5.6],[173094,173094,5.46],[173095,173095,5.82],[173096,173097,6.6],[173098,173098,5.72],[173099,173100,5.61],[173101,173101,5.37],[173102,173103,6.19],[173104,173104,5.41],[173105,173105,5.3],[173106,173107,5.73],[173108,173108,6],[173109,173109,6.37],[173110,173111,6.2],[173112,173112,5.53],[173113,173114,6.37],[173115,173115,6.01],[173116,173117,6.59],[173118,173118,5.63],[173119,173120,5.04],[173121,173121,5],[173122,173123,5.77],[173124,173124,5.41],[173125,173126,5.17],[173127,173127,5.1],[173128,173129,5.58],[173130,173130,5.71],[173131,173132,4.84],[173133,173133,4.77],[173134,173134,5.84],[173135,173136,6.04],[173137,173137,5],[173138,173139,5.53],[173140,173140,5.89],[173141,173141,5.58],[173142,173143,5.76],[173144,173144,5.68],[173145,173145,5.92],[173146,173147,5.31],[173148,173148,5.42],[173149,173149,6.37],[173150,173151,6.14],[173152,173152,5.41],[173153,173155,6.37],[173156,173156,6.73],[173157,173158,5.6],[173159,173159,6.37],[173160,173161,5.81],[173162,173162,5.96],[173163,173163,5.41],[173164,173168,5.37],[173169,173169,6.17],[173170,173171,5.81],[173172,173172,5.1],[173173,173173,6.17],[173174,173175,5.41],[173176,173176,5.72],[173177,173177,5.61],[173178,173179,5.32],[173180,173180,5.42],[173181,173181,5.59],[173182,173183,5.61],[173184,173184,5.73],[173185,173185,5.34],[173186,173187,6.17],[173188,173188,5.31],[173189,173190,5.42],[173191,173191,5.41],[173192,173193,5.33],[173194,173194,5.49],[173195,173196,5.56],[173197,173199,10],[173200,173200,2.64],[173201,173202,4.08],[173203,173203,3.75],[173204,173204,5.1],[173205,173206,5.36],[173207,173207,4.79],[173208,173208,5],[173209,173209,5.59],[173210,173210,5.46],[173211,173211,3.39],[173212,173212,5.83],[173213,173213,5.61],[173214,173214,4.82],[173215,173215,4.51],[173216,173216,4.98],[173217,173218,6.39],[173219,173219,4.89],[173220,173220,6.13],[173221,173221,5.39],[173222,173222,5.67],[173223,173223,5.68],[173224,173224,5.92],[173225,173225,5],[173226,173226,5.72],[173227,173227,5.39],[173228,173228,6.07],[173229,173229,5.84],[173230,173230,6.17],[173231,173231,5.03],[173232,173233,3.87],[173234,173234,3.52],[173235,173235,6.37],[173236,173236,8.14],[173237,173237,6.19],[173238,173238,7.35],[173239,173239,5.64],[173240,173240,4.71],[173241,173241,5.08],[173242,173242,5.42],[173243,173243,4.88],[173244,173244,5.11],[173245,173245,5.69],[173246,173246,4.96],[173247,173247,5.89],[173248,173248,5.31],[173249,173249,5.51],[173250,173250,6.1],[173251,173251,4.97],[173252,173252,4.88],[173253,173253,5.53],[173254,173254,4.2],[173255,173263,10],[173264,173264,6.5],[173265,173266,6.05],[173267,173267,7.3],[173268,173269,5.56],[173270,173270,7.28],[173271,173272,6.19],[173273,173273,3.71],[173274,173275,6.32],[173276,173276,5.72],[173277,173278,5.19],[173279,173279,9.07],[173280,173280,7.6],[173281,173281,5.24],[173282,173282,5.49],[173283,173284,6.22],[173285,173286,6],[173287,173287,7.41],[173288,173288,7.28],[173289,173289,3.71],[173290,173290,9.3],[173291,173291,5.86],[173292,173292,5.66],[173293,173293,6.5],[173294,173295,6.39],[173296,173297,5.56],[173298,173298,2.85],[173299,173299,7.81],[173300,173301,7.31],[173302,173302,5.24],[173303,173303,7.3],[173304,173304,3],[173305,173305,3.03],[173306,173306,4.9],[173307,173307,4.93],[173308,173308,3.03],[173309,173309,3],[173310,173310,6.33],[173311,173311,5.46],[173312,173312,6.5],[173313,173313,6.94],[173314,173314,7.79],[173315,173316,8.57],[173317,173317,8.82],[173318,173318,10.82],[173319,173320,7.35],[173321,173323,6.68],[173324,173325,5.44],[173326,173326,9.13],[173327,173327,9.24],[173328,173329,11.96],[173330,173331,8.51],[173332,173332,7.09],[173333,173333,6.95],[173334,173334,7],[173335,173335,7.01],[173336,173337,7],[173338,173339,10.66],[173340,173341,7.79],[173342,173342,13.9],[173343,173343,10.4],[173344,173344,7.9],[173345,173345,7.24],[173346,173346,7.72],[173347,173347,10.66],[173348,173348,8.51],[173349,173349,9.41],[173350,173350,9.31],[173351,173351,4.5],[173352,173352,8.42],[173353,173353,8.92],[173354,173354,6.07],[173355,173355,8.72],[173356,173356,6.64],[173357,173357,7.04],[173358,173358,6.17],[173359,173359,6.46],[173360,173360,7.7],[173361,173361,7.95],[173362,173362,7.28],[173363,173363,8.01],[173364,173364,8.44],[173365,173366,6.61],[173367,173368,4.34],[173369,173369,6.16],[173370,173370,9.05],[173371,173371,7.63],[173372,173372,8.33],[173373,173373,6.82],[173374,173374,7.73],[173375,173375,6.06],[173376,173378,9.06],[173379,173380,5.28],[173381,173381,9.5],[173382,173382,7.78],[173383,173383,6.26],[173384,173384,6.95],[173385,173385,5.46],[173386,173386,7.18],[173387,173387,7.4],[173388,173389,9.28],[173390,173390,8.01],[173391,173391,9.32],[173392,173392,8.69],[173393,173393,8.35],[173394,173394,9.46],[173395,173395,8.94],[173396,173396,6.82],[173397,173397,6.47],[173398,173398,7.48],[173399,173399,6.07],[173400,173400,5.48],[173401,173401,7.34],[173402,173403,7.06],[173404,173404,7.63],[173405,173405,9.62],[173406,173407,7.02],[173408,173409,8.78],[173410,173411,9.17],[173412,173412,8.74],[173413,173413,9.06],[173414,173414,7.23],[173415,173415,7.68],[173416,173416,6.79],[173417,173417,8.1],[173418,173418,6.72],[173419,173419,8.17],[173420,173420,7.43],[173421,173421,9.48],[173422,173422,7.32],[173423,173423,6.14],[173424,173424,9.14],[173425,173425,6.79],[173426,173426,7.09],[173427,173427,6.79],[173428,173428,7.11],[173429,173429,7.41],[173430,173431,5.66],[173432,173432,7.36],[173433,173433,8.87],[173434,173434,5.99],[173435,173435,7.93],[173436,173436,5.93],[173437,173438,7.26],[173439,173440,6.88],[173441,173442,9.28],[173443,173444,8.57],[173445,173445,8.68],[173446,173446,9.38],[173447,173447,7.8],[173448,173448,8.01],[173449,173449,4.99],[173450,173450,7.14],[173451,173452,6.4],[173453,173453,8.21],[173454,173454,5.02],[173455,173455,7.32],[173456,173456,8.19],[173457,173457,6.72],[173458,173458,8.87],[173459,173459,9.92],[173460,173460,7],[173461,173461,7.82],[173462,173462,8.04],[173463,173463,7.68],[173464,173464,7.16],[173465,173465,7.06],[173466,173466,7.79],[173467,173467,7.9],[173468,173468,8.82],[173469,173469,7.5],[173470,173470,7.8],[173471,173473,7.26],[173474,173474,8.53],[173475,173475,9.72],[173476,173476,5.31],[173477,173477,5.95],[173478,173478,8.1],[173479,173479,9.72],[173480,173483,6.71],[173484,173487,7.09],[173488,173491,7.71],[173492,173492,6.17],[173493,173494,5.44],[173495,173495,6.72],[173496,173496,7.6],[173497,173497,6.12],[173498,173498,7.95],[173499,173500,8.38],[173501,173501,8.47],[173502,173502,8.37],[173503,173503,7.72],[173504,173504,8.47],[173505,173506,9.72],[173507,173508,7.02],[173509,173510,8.25],[173511,173512,8.16],[173513,173514,5.88],[173515,173515,6.75],[173516,173516,8.21],[173517,173517,6.75],[173518,173518,8.39],[173519,173520,5.37],[173521,173522,7.38],[173523,173523,7.27],[173524,173524,8.12],[173525,173525,7.27],[173526,173526,8.12],[173527,173527,5.45],[173528,173529,6.84],[173530,173530,5.59],[173531,173531,7.36],[173532,173532,10.49],[173533,173533,7.86],[173534,173534,6.13],[173535,173535,5.66],[173536,173536,9.56],[173537,173537,7.07],[173538,173538,12.56],[173539,173539,7.53],[173540,173540,7.61],[173541,173541,9.68],[173542,173542,7.38],[173543,173543,7.58],[173544,173544,5.73],[173545,173545,6.65],[173546,173546,6.37],[173547,173547,7.37],[173548,173550,8.87],[173551,173552,8.73],[173553,173554,7.36],[173555,173555,8.2],[173556,173556,9],[173557,173558,8.1],[173559,173562,6.1],[173563,173566,9.05],[173567,173567,6.96],[173568,173568,8.26],[173569,173569,8.16],[173570,173570,7.96],[173571,173575,7.06],[173576,173576,9],[173577,173577,5.68],[173578,173578,7.57],[173579,173579,8.23],[173580,173580,6.35],[173581,173581,4.71],[173582,173582,5.69],[173583,173583,7.42],[173584,173584,13.46],[173585,173585,7.72],[173586,173586,9.81],[173587,173587,4.91],[173588,173588,8.61],[173589,173589,9.28],[173590,173590,6.9],[173591,173591,7.09],[173592,173592,7.27],[173593,173593,7.42],[173594,173594,10.78],[173595,173595,9.14],[173596,173596,7.22],[173597,173597,8.26],[173598,173598,9.19],[173599,173599,6.22],[173600,173600,5.95],[173601,173601,3],[173602,173602,6.62],[173603,173603,6.66],[173604,173604,6.54],[173605,173605,6.49],[173606,173606,5.46],[173607,173607,6.55],[173608,173608,5.88],[173609,173609,6.22],[173610,173610,8.97],[173611,173611,5.43],[173612,173631,10],[173632,173632,7.48],[173633,173633,5.56],[173634,173634,7.48],[173635,173635,5.56],[173636,173636,7.43],[173637,173637,4.54],[173638,173638,3.11],[173639,173639,2.6],[173640,173640,7.1],[173641,173641,5.72],[173642,173643,5.78],[173644,173644,9.03],[173645,173645,7.09],[173646,173646,7.06],[173647,173647,5.94],[173648,173648,9.43],[173649,173649,8.18],[173650,173650,8.09],[173651,173651,6.98],[173652,173652,10.22],[173653,173653,8.06],[173654,173654,9.36],[173655,173655,7.45],[173656,173656,7.27],[173657,173657,5.62],[173658,173658,7.1],[173659,173659,6.02],[173660,173660,9.26],[173661,173661,7.92],[173662,173662,7.25],[173663,173663,6.38],[173664,173664,7.21],[173665,173665,5.92],[173666,173666,7.69],[173667,173667,6.91],[173668,173668,7.16],[173669,173669,6.45],[173670,173670,10.44],[173671,173671,9.36],[173672,173672,7.2],[173673,173673,5.73],[173674,173674,7.2],[173675,173675,5.73],[173676,173676,9.5],[173677,173677,7.07],[173678,173678,6.82],[173679,173682,0],[173683,173683,5.04],[173684,173693,0],[173694,173695,5],[173696,173696,7.69],[173697,173697,6.63],[173698,173698,4.34],[173699,173699,3.46],[173700,173700,12.6],[173701,173701,11.08],[173702,173702,9.14],[173703,173704,7.69],[173705,173705,6.63],[173706,173706,7.89],[173707,173707,6.76],[173708,173708,5.67],[173709,173709,5.37],[173710,173710,7.27],[173711,173711,6.3],[173712,173712,6.12],[173713,173713,5.37],[173714,173714,8.43],[173715,173715,7.28],[173716,173716,6.95],[173717,173717,5.83],[173718,173718,9.07],[173719,173719,7.91],[173720,173720,7.86],[173721,173721,6.68],[173722,173722,5.26],[173723,173723,4.5],[173724,173724,1.96],[173725,173725,1.69],[173726,173727,0],[173728,173728,6.6],[173729,173729,7.68],[173730,173730,5.46],[173731,173731,6.56],[173732,173732,7.07],[173733,173733,6.17],[173734,173734,5.78],[173735,173735,6.06],[173736,173736,5.5],[173737,173737,7.25],[173738,173738,6.59],[173739,173739,6],[173740,173740,6.61],[173741,173741,5.72],[173742,173742,5.49],[173743,173743,6],[173744,173744,6.37],[173745,173745,5.5],[173746,173746,5.66],[173747,173747,5.24],[173748,173748,6.91],[173749,173749,5.88],[173750,173750,7.41],[173751,173751,7.16],[173752,173752,7.82],[173753,173753,4.8],[173754,173754,6.21],[173755,173755,6.18],[173756,173756,6.39],[173757,173757,6],[173758,173758,7.41],[173759,173761,6.19],[173762,173762,5.33],[173763,173763,7.7],[173764,173764,6.97],[173765,173765,6.02],[173766,173766,5.69],[173767,173767,6.21],[173768,173768,6.7],[173769,173769,5.72],[173770,173770,7.48],[173771,173771,5.63],[173772,173772,4.83],[173773,173773,5.46],[173774,173774,6],[173775,173775,7.1],[173776,173776,4.65],[173777,173777,6.21],[173778,173778,5.2],[173779,173779,6.79],[173780,173780,7.13],[173781,173781,5.2],[173782,173782,5.79],[173783,173783,7.19],[173784,173784,7.18],[173785,173785,6],[173786,173786,5.24],[173787,173787,6.51],[173788,173788,6.19],[173789,173789,6.68],[173790,173790,5.79],[194560,194814,10],[194815,194815,7.9],[194816,195102,10],[917504,917504,0],[917505,917511,3.33],[917512,917512,0],[917513,917517,3.42],[917518,917532,3.33],[917533,917533,0],[917534,917535,3.33],[917536,917536,3.42],[917537,917537,4.02],[917538,917538,5.87],[917539,917539,8.67],[917540,917540,7.11],[917541,917541,12.72],[917542,917542,8.62],[917543,917543,3.32],[917544,917545,5.43],[917546,917546,7.11],[917547,917547,8.67],[917548,917548,3.61],[917549,917549,4.8],[917550,917550,3.61],[917551,917551,6.89],[917552,917561,7.11],[917562,917563,4.02],[917564,917566,8.67],[917567,917567,6.17],[917568,917568,9.64],[917569,917569,7.76],[917570,917570,7.62],[917571,917571,7.24],[917572,917572,8.3],[917573,917573,6.83],[917574,917574,6.5],[917575,917575,8.11],[917576,917576,8.37],[917577,917577,5.46],[917578,917578,5.55],[917579,917579,7.71],[917580,917580,6.37],[917581,917581,9.48],[917582,917582,8.47],[917583,917583,8.5],[917584,917584,7.33],[917585,917585,8.5],[917586,917586,7.82],[917587,917587,7.1],[917588,917588,6.82],[917589,917589,8.12],[917590,917590,7.64],[917591,917591,11.28],[917592,917592,7.64],[917593,917593,7.37],[917594,917594,6.92],[917595,917595,5.43],[917596,917596,6.89],[917597,917597,5.43],[917598,917598,8.67],[917599,917600,7.11],[917601,917601,6.68],[917602,917602,6.99],[917603,917603,5.88],[917604,917604,6.99],[917605,917605,6.64],[917606,917606,4.22],[917607,917607,6.99],[917608,917608,7.12],[917609,917609,3.42],[917610,917610,4.03],[917611,917611,6.71],[917612,917612,3.42],[917613,917613,10.58],[917614,917614,7.12],[917615,917615,6.87],[917616,917617,6.99],[917618,917618,4.97],[917619,917619,5.93],[917620,917620,4.56],[917621,917621,7.12],[917622,917622,6.5],[917623,917623,9.79],[917624,917624,6.69],[917625,917625,6.51],[917626,917626,5.97],[917627,917627,7.11],[917628,917628,5.43],[917629,917629,7.11],[917630,917630,8.67]] \ No newline at end of file diff --git a/node_modules/anafanafo/data/verdana-10px-normal.json b/node_modules/anafanafo/data/verdana-10px-normal.json new file mode 100644 index 0000000..900760d --- /dev/null +++ b/node_modules/anafanafo/data/verdana-10px-normal.json @@ -0,0 +1 @@ +[[32,32,3.52],[33,33,3.94],[34,34,4.59],[35,35,8.18],[36,36,6.36],[37,37,10.76],[38,38,7.27],[39,39,2.69],[40,41,4.54],[42,42,6.36],[43,43,8.18],[44,44,3.64],[45,45,4.54],[46,46,3.64],[47,47,4.54],[48,57,6.36],[58,59,4.54],[60,62,8.18],[63,63,5.45],[64,64,10],[65,65,6.84],[66,66,6.86],[67,67,6.98],[68,68,7.71],[69,69,6.32],[70,70,5.75],[71,71,7.75],[72,72,7.51],[73,73,4.21],[74,74,4.55],[75,75,6.93],[76,76,5.57],[77,77,8.43],[78,78,7.48],[79,79,7.87],[80,80,6.03],[81,81,7.87],[82,82,6.95],[83,83,6.84],[84,84,6.16],[85,85,7.32],[86,86,6.84],[87,87,9.89],[88,88,6.85],[89,89,6.15],[90,90,6.85],[91,93,4.54],[94,94,8.18],[95,96,6.36],[97,97,6.01],[98,98,6.23],[99,99,5.21],[100,100,6.23],[101,101,5.96],[102,102,3.52],[103,103,6.23],[104,104,6.33],[105,105,2.74],[106,106,3.44],[107,107,5.92],[108,108,2.74],[109,109,9.73],[110,110,6.33],[111,111,6.07],[112,113,6.23],[114,114,4.27],[115,115,5.21],[116,116,3.94],[117,117,6.33],[118,118,5.92],[119,119,8.18],[120,121,5.92],[122,122,5.25],[123,123,6.35],[124,124,4.54],[125,125,6.35],[126,126,8.18],[160,160,3.52],[161,161,3.94],[162,165,6.36],[166,166,4.54],[167,168,6.36],[169,169,10],[170,170,5.45],[171,171,6.45],[172,172,8.18],[173,173,0],[174,174,10],[175,175,6.36],[176,176,5.42],[177,177,8.18],[178,179,5.42],[180,180,6.36],[181,181,6.42],[182,182,6.36],[183,183,3.64],[184,184,6.36],[185,185,5.42],[186,186,5.45],[187,187,6.45],[188,190,10],[191,191,5.45],[192,197,6.84],[198,198,9.84],[199,199,6.98],[200,203,6.32],[204,207,4.21],[208,208,7.75],[209,209,7.48],[210,214,7.87],[215,215,8.18],[216,216,7.87],[217,220,7.32],[221,221,6.15],[222,222,6.05],[223,223,6.2],[224,229,6.01],[230,230,9.55],[231,231,5.21],[232,235,5.96],[236,239,2.74],[240,240,6.12],[241,241,6.33],[242,246,6.07],[247,247,8.18],[248,248,6.07],[249,252,6.33],[253,253,5.92],[254,254,6.23],[256,256,6.84],[257,257,6.01],[258,258,6.84],[259,259,6.01],[260,260,6.84],[261,261,6.01],[262,262,6.98],[263,263,5.21],[264,264,6.98],[265,265,5.21],[266,266,6.98],[267,267,5.21],[268,268,6.98],[269,269,5.21],[270,270,7.71],[271,271,6.47],[272,272,7.75],[273,273,6.23],[274,274,6.32],[275,275,5.96],[276,276,6.32],[277,277,5.96],[278,278,6.32],[279,279,5.96],[280,280,6.32],[281,281,5.96],[282,282,6.32],[283,283,5.96],[284,284,7.75],[285,285,6.23],[286,286,7.75],[287,287,6.23],[288,288,7.75],[289,289,6.23],[290,290,7.75],[291,291,6.23],[292,292,7.51],[293,293,6.33],[294,294,7.51],[295,295,6.33],[296,296,4.21],[297,297,2.74],[298,298,4.21],[299,299,2.74],[300,300,4.21],[301,301,2.74],[302,302,4.21],[303,303,2.74],[304,304,4.21],[305,305,2.74],[306,306,8.71],[307,307,6.14],[308,308,4.55],[309,309,3.44],[310,310,6.93],[311,312,5.92],[313,313,5.57],[314,314,2.74],[315,315,5.57],[316,316,2.74],[317,317,5.57],[318,318,2.96],[319,319,5.57],[320,320,4.58],[321,321,5.62],[322,322,2.84],[323,323,7.48],[324,324,6.33],[325,325,7.48],[326,326,6.33],[327,327,7.48],[328,328,6.33],[329,329,7.3],[330,330,7.48],[331,331,6.33],[332,332,7.87],[333,333,6.07],[334,334,7.87],[335,335,6.07],[336,336,7.87],[337,337,6.07],[338,338,10.7],[339,339,9.81],[340,340,6.95],[341,341,4.27],[342,342,6.95],[343,343,4.27],[344,344,6.95],[345,345,4.27],[346,346,6.84],[347,347,5.21],[348,348,6.84],[349,349,5.21],[350,350,6.84],[351,351,5.21],[352,352,6.84],[353,353,5.21],[354,354,6.16],[355,355,3.94],[356,356,6.16],[357,357,3.94],[358,358,6.16],[359,359,3.94],[360,360,7.32],[361,361,6.33],[362,362,7.32],[363,363,6.33],[364,364,7.32],[365,365,6.3],[366,366,7.32],[367,367,6.33],[368,368,7.32],[369,369,6.33],[370,370,7.32],[371,371,6.3],[372,372,9.89],[373,373,8.18],[374,374,6.15],[375,375,5.92],[376,376,6.15],[377,377,6.85],[378,378,5.25],[379,379,6.85],[380,380,5.25],[381,381,6.85],[382,382,5.25],[384,384,5],[385,385,7.6],[386,386,5.74],[387,387,5],[388,388,5.74],[389,389,5],[390,391,6.67],[392,392,4.44],[393,393,7.22],[394,394,8.15],[395,395,5.74],[396,396,5],[397,397,4.71],[398,398,6.11],[399,399,7.55],[400,400,5.01],[401,401,5.56],[402,402,6.36],[403,404,7.22],[405,405,7.7],[406,406,2.53],[407,407,3.33],[408,408,7.22],[409,409,5],[410,410,2.78],[411,411,4.85],[412,412,8.16],[413,413,7.22],[414,414,5],[415,415,7.22],[416,416,8.07],[417,417,6.07],[418,418,9.25],[419,419,6.91],[420,420,6.5],[421,421,5],[422,423,5.56],[424,424,3.89],[425,425,5.82],[426,426,3.44],[427,427,2.78],[428,428,6.11],[429,429,2.78],[430,430,6.11],[431,431,7.56],[432,432,6.6],[433,433,7.43],[434,434,7.22],[435,435,7.81],[436,436,5],[437,437,6.11],[438,438,4.44],[439,440,5.39],[441,442,4.44],[443,444,5],[445,445,4.43],[446,446,4.22],[447,447,5],[448,448,2],[449,449,2.81],[450,450,2.49],[451,451,3.33],[452,452,13.33],[453,453,11.66],[454,454,9.44],[455,455,10],[456,456,8.89],[457,457,5.56],[458,458,11.11],[459,459,10],[460,460,7.78],[461,461,7.22],[462,462,4.44],[463,463,3.33],[464,464,2.78],[465,465,7.22],[466,466,5],[467,467,7.22],[468,468,5],[469,469,7.22],[470,470,5],[471,471,7.32],[472,472,6.33],[473,473,7.22],[474,474,5],[475,475,7.32],[476,476,6.33],[477,477,4.44],[478,478,7.22],[479,479,4.44],[480,480,7.22],[481,481,4.44],[482,482,8.89],[483,483,6.67],[484,484,7.22],[485,485,5],[486,486,7.22],[487,487,5],[488,488,7.22],[489,489,5],[490,490,7.22],[491,491,5],[492,492,7.22],[493,493,5],[494,494,5.39],[495,495,4.44],[496,496,2.78],[497,497,13.33],[498,498,11.66],[499,499,9.44],[500,500,7.75],[501,501,6.23],[502,502,9.5],[503,503,5.6],[504,504,7.48],[505,505,6.33],[506,506,6.84],[507,507,6.01],[508,508,9.84],[509,509,9.55],[510,510,7.87],[511,511,6.07],[512,512,7.22],[513,513,4.44],[514,514,7.22],[515,515,4.44],[516,516,6.11],[517,517,4.44],[518,518,6.11],[519,519,4.44],[520,520,3.33],[521,521,2.78],[522,522,3.33],[523,523,2.78],[524,524,7.22],[525,525,5],[526,526,7.22],[527,527,5],[528,528,6.67],[529,529,3.33],[530,530,6.67],[531,531,3.33],[532,532,7.22],[533,533,5],[534,534,7.22],[535,535,5],[536,536,6.84],[537,537,5.21],[538,538,6.16],[539,539,3.94],[540,540,5.63],[541,541,3.95],[542,542,7.22],[543,543,5],[544,544,6.5],[545,545,5],[546,546,6.04],[547,547,5],[548,548,6.11],[549,549,4.44],[550,550,7.22],[551,551,4.44],[552,552,6.11],[553,553,4.44],[554,554,7.22],[555,555,5],[556,556,7.22],[557,557,5],[558,558,7.22],[559,559,5],[560,560,7.22],[561,561,5],[562,562,7.22],[563,563,5],[564,564,2.78],[565,565,5],[566,566,3.17],[567,567,2.78],[568,568,7.74],[569,569,7.72],[570,570,7.22],[571,571,6.67],[572,572,5],[573,574,6.11],[575,575,3.89],[576,576,4.44],[577,577,5.34],[578,578,3.97],[579,579,6.67],[580,580,7.22],[581,581,7.25],[582,582,6.11],[583,583,4.44],[584,584,3.89],[585,585,2.78],[586,586,7.02],[587,587,5],[588,588,6.67],[589,589,3.33],[590,590,7.22],[880,880,4.19],[881,881,3.32],[882,882,5.87],[883,883,4.67],[884,885,3.33],[886,886,7.21],[887,887,5.8],[888,889,10],[890,890,3.33],[891,893,4.44],[894,894,4.54],[895,895,3.33],[896,899,10],[900,901,6.36],[902,902,6.84],[903,903,4.54],[904,904,7.51],[905,905,8.7],[906,906,5.4],[907,907,10],[908,908,8.81],[909,909,10],[910,910,7.53],[911,911,9.08],[912,912,2.74],[913,913,6.84],[914,914,6.86],[915,915,5.66],[916,916,7.03],[917,917,6.32],[918,918,6.85],[919,919,7.51],[920,920,7.87],[921,921,4.21],[922,922,6.93],[923,923,6.86],[924,924,8.43],[925,925,7.48],[926,926,6.49],[927,927,7.87],[928,928,7.51],[929,929,6.03],[930,930,10],[931,931,6.72],[932,932,6.16],[933,933,6.15],[934,934,8.19],[935,935,6.85],[936,936,8.71],[937,937,8.18],[938,938,4.21],[939,939,6.15],[940,940,6.23],[941,941,5.13],[942,942,6.33],[943,943,2.74],[944,944,6.31],[945,945,6.23],[946,946,6.2],[947,947,5.92],[948,948,6.08],[949,949,5.13],[950,950,4.58],[951,951,6.33],[952,952,6.24],[953,953,2.74],[954,955,5.92],[956,956,6.4],[957,957,5.92],[958,958,5.03],[959,959,6.07],[960,960,6.37],[961,961,6.25],[962,962,5.08],[963,963,6.3],[964,964,4.96],[965,965,6.31],[966,966,7.9],[967,967,5.9],[968,968,8.22],[969,969,8.13],[970,970,2.74],[971,971,6.31],[972,972,6.07],[973,973,6.31],[974,974,8.13],[975,975,5.66],[976,976,5.09],[977,977,4.95],[978,978,7.22],[979,979,8.9],[980,980,7.22],[981,981,5.26],[982,982,6.58],[983,983,5.6],[984,984,7.22],[985,985,5],[986,986,6.67],[987,987,4.2],[988,988,5.56],[989,989,4.47],[990,990,5.76],[991,991,4.51],[992,992,7.31],[993,993,5.54],[994,994,8.28],[995,995,7.78],[996,996,6.16],[997,997,5.21],[998,998,6.61],[999,999,4.44],[1000,1001,5.42],[1002,1002,6.56],[1003,1003,5.81],[1004,1004,6.99],[1005,1005,5.09],[1006,1006,4.75],[1007,1007,3.86],[1008,1008,5.6],[1009,1009,5.09],[1010,1010,4.44],[1011,1011,2.78],[1012,1012,7.22],[1013,1014,4.05],[1015,1015,5.56],[1016,1016,5],[1017,1017,6.67],[1018,1018,8.89],[1019,1019,6.33],[1020,1020,4.99],[1021,1022,6.67],[1024,1025,6.32],[1026,1026,7.92],[1027,1027,5.66],[1028,1028,7.01],[1029,1029,6.84],[1030,1031,4.21],[1032,1032,4.55],[1033,1033,11.18],[1034,1034,11.03],[1035,1035,8.18],[1036,1036,6.93],[1037,1037,7.5],[1038,1038,6.15],[1039,1039,7.51],[1040,1040,6.84],[1041,1042,6.86],[1043,1043,5.66],[1044,1044,7.46],[1045,1045,6.32],[1046,1046,9.73],[1047,1047,6.16],[1048,1049,7.5],[1050,1050,6.93],[1051,1051,7.34],[1052,1052,8.43],[1053,1053,7.51],[1054,1054,7.87],[1055,1055,7.51],[1056,1056,6.03],[1057,1057,6.98],[1058,1058,6.16],[1059,1059,6.15],[1060,1060,8.19],[1061,1061,6.85],[1062,1062,7.61],[1063,1063,7.12],[1064,1064,10.3],[1065,1065,10.45],[1066,1066,7.83],[1067,1067,9.2],[1068,1068,6.81],[1069,1069,7.01],[1070,1070,10.34],[1071,1071,7.06],[1072,1072,6.01],[1073,1073,6.14],[1074,1074,5.95],[1075,1075,4.71],[1076,1076,6.22],[1077,1077,5.96],[1078,1078,7.98],[1079,1079,5.24],[1080,1081,6.4],[1082,1082,5.92],[1083,1083,6.21],[1084,1084,6.96],[1085,1085,6.37],[1086,1086,6.07],[1087,1087,6.37],[1088,1088,6.23],[1089,1089,5.34],[1090,1090,4.96],[1091,1091,5.92],[1092,1092,8.41],[1093,1093,5.92],[1094,1094,6.45],[1095,1095,6.05],[1096,1096,8.76],[1097,1097,8.88],[1098,1098,6.41],[1099,1099,7.94],[1100,1100,5.71],[1101,1101,5.47],[1102,1102,8.39],[1103,1103,6],[1104,1105,5.96],[1106,1106,6.33],[1107,1107,4.71],[1108,1108,5.47],[1109,1109,5.21],[1110,1111,2.74],[1112,1112,3.44],[1113,1114,9.14],[1115,1115,6.33],[1116,1116,5.92],[1117,1117,6.4],[1118,1118,5.92],[1119,1119,6.37],[1120,1120,11.72],[1121,1121,6.33],[1122,1122,6.71],[1123,1123,5.43],[1124,1124,9.68],[1125,1125,6.77],[1126,1126,7.22],[1127,1127,5.9],[1128,1128,10.33],[1129,1129,8.34],[1130,1130,8.96],[1131,1131,6.91],[1132,1132,12.08],[1133,1133,9.35],[1134,1134,5.01],[1135,1135,3.95],[1136,1136,7.38],[1137,1137,6.26],[1138,1138,7.22],[1139,1139,5],[1140,1140,8.13],[1141,1141,5.89],[1142,1142,8.13],[1143,1143,5.89],[1144,1144,11.88],[1145,1145,10.4],[1146,1146,7.63],[1147,1147,5.66],[1148,1148,9.83],[1149,1149,8.13],[1150,1150,11.72],[1151,1151,6.33],[1152,1152,6.67],[1153,1153,4.44],[1154,1154,3.34],[1155,1158,0],[1159,1159,6.36],[1160,1161,0],[1162,1162,7.22],[1163,1163,5.35],[1164,1164,5.74],[1165,1165,4.7],[1166,1166,5.56],[1167,1167,5],[1168,1168,5.66],[1169,1169,4.71],[1170,1170,5.66],[1171,1171,4.71],[1172,1172,6.31],[1173,1173,5.15],[1174,1174,9.73],[1175,1175,7.98],[1176,1176,5.01],[1177,1177,3.95],[1178,1178,6.93],[1179,1179,5.92],[1180,1180,6.93],[1181,1181,5.92],[1182,1182,6.67],[1183,1183,4.86],[1184,1184,7.86],[1185,1185,5.73],[1186,1186,7.51],[1187,1187,6.37],[1188,1188,8.51],[1189,1189,6.23],[1190,1190,10.32],[1191,1191,7.89],[1192,1192,7.87],[1193,1193,6.17],[1194,1194,6.67],[1195,1195,4.44],[1196,1196,6.11],[1197,1197,4.37],[1198,1198,6.15],[1199,1199,5.92],[1200,1200,6.15],[1201,1201,5.92],[1202,1202,6.85],[1203,1203,5.92],[1204,1204,7.97],[1205,1205,6.03],[1206,1206,6.5],[1207,1207,5.03],[1208,1208,7.12],[1209,1209,6.05],[1210,1210,7.12],[1211,1211,6.33],[1212,1212,8.78],[1213,1213,6.89],[1214,1214,8.78],[1215,1215,6.89],[1216,1216,3.33],[1217,1217,8.96],[1218,1218,6.91],[1219,1219,6.67],[1220,1220,5.15],[1221,1221,6.78],[1222,1222,4.99],[1223,1223,7.22],[1224,1224,5.35],[1225,1225,7.22],[1226,1226,5.35],[1227,1227,6.5],[1228,1228,5.03],[1229,1229,8.89],[1230,1230,6.33],[1231,1231,2.78],[1232,1232,7.22],[1233,1233,4.44],[1234,1234,7.22],[1235,1235,4.44],[1236,1236,8.89],[1237,1237,6.67],[1238,1238,6.11],[1239,1239,4.44],[1240,1240,7.55],[1241,1241,5.96],[1242,1242,7.22],[1243,1243,4.44],[1244,1244,8.96],[1245,1245,6.91],[1246,1246,5.01],[1247,1247,3.95],[1248,1248,5.01],[1249,1249,4.44],[1250,1250,7.22],[1251,1251,5.35],[1252,1252,7.22],[1253,1253,5.35],[1254,1254,7.22],[1255,1255,5],[1256,1256,7.87],[1257,1257,6.07],[1258,1258,7.22],[1259,1259,5],[1260,1260,6.6],[1261,1261,4.29],[1262,1262,7.08],[1263,1263,5],[1264,1264,7.08],[1265,1265,5],[1266,1266,7.08],[1267,1267,5],[1268,1268,6.5],[1269,1269,5.03],[1270,1270,5.78],[1271,1271,4.1],[1272,1272,8.72],[1273,1273,6.72],[1274,1274,5.78],[1275,1275,4.1],[1276,1276,7.22],[1277,1277,5],[1278,1278,7.22],[1280,1280,5.74],[1281,1281,5],[1282,1282,8.04],[1283,1283,7.71],[1284,1284,8.02],[1285,1285,7.06],[1286,1286,5.74],[1287,1287,4.53],[1288,1288,9.07],[1289,1289,7.52],[1290,1290,9.5],[1291,1291,7.88],[1292,1292,7.22],[1293,1293,4.53],[1294,1294,6.96],[1295,1295,6.02],[1296,1296,5.01],[1297,1297,3.95],[1298,1298,6.78],[1299,1299,4.99],[1300,1300,7.62],[1301,1301,6.93],[1302,1302,8.3],[1303,1303,6.81],[1304,1304,10.31],[1305,1305,7.37],[1306,1306,7.87],[1307,1307,6.23],[1308,1308,9.89],[1309,1309,8.18],[1310,1310,6.85],[1311,1311,6.31],[1312,1312,9.81],[1313,1313,7.96],[1314,1314,11.11],[1315,1315,9.08],[1316,1316,7.08],[1317,1317,6.18],[1318,1318,6.89],[1319,1319,6.31],[1320,1320,4.44],[1321,1321,4.03],[1322,1322,8.91],[1323,1323,8.13],[1324,1324,5.62],[1325,1325,5.24],[1326,1326,6.83],[7424,7424,5.02],[7425,7425,6.45],[7426,7426,6.67],[7427,7427,4.65],[7428,7428,4.78],[7429,7430,5.24],[7431,7431,4.44],[7432,7432,3.95],[7433,7433,2.78],[7434,7434,2.96],[7435,7435,5.4],[7436,7436,4.45],[7437,7437,6.33],[7438,7438,5.35],[7439,7439,5],[7440,7440,4.78],[7441,7441,5.42],[7442,7442,5.38],[7443,7443,5.42],[7444,7444,7.22],[7445,7445,4.37],[7446,7447,5],[7448,7448,4.56],[7449,7450,4.6],[7451,7451,4.37],[7452,7452,5.37],[7453,7453,5.05],[7454,7454,6.55],[7455,7455,5.04],[7456,7456,5],[7457,7457,7.22],[7458,7458,4.44],[7459,7459,3.95],[7460,7460,3.97],[7461,7461,5.39],[7462,7462,4.1],[7463,7463,5],[7464,7464,5.35],[7465,7465,4.56],[7466,7466,5.28],[7467,7467,4.99],[7468,7468,4.22],[7469,7469,5.38],[7470,7471,3.87],[7472,7472,4.3],[7473,7474,3.7],[7475,7475,4.33],[7476,7476,4.4],[7477,7477,2],[7478,7478,2.47],[7479,7479,4.58],[7480,7480,3.71],[7481,7481,5.4],[7482,7482,4.62],[7483,7483,4.41],[7484,7484,4.18],[7485,7485,3.36],[7486,7486,3.32],[7487,7487,4.1],[7488,7488,3.62],[7489,7489,4.53],[7490,7490,5.54],[7491,7492,2.73],[7493,7493,3.14],[7494,7494,3.9],[7495,7495,3.1],[7496,7496,3.11],[7497,7498,2.56],[7499,7500,2.42],[7501,7501,3.01],[7502,7502,1.64],[7503,7503,3.15],[7504,7504,4.89],[7505,7505,2.82],[7506,7506,2.88],[7507,7507,2.56],[7508,7509,2.88],[7510,7510,3.11],[7511,7511,1.91],[7512,7512,3.28],[7513,7513,3.06],[7514,7514,4.89],[7515,7515,2.94],[7516,7516,3.19],[7517,7517,2.82],[7518,7518,2.65],[7519,7519,2.71],[7520,7520,3.34],[7521,7521,2.82],[7522,7522,1.64],[7523,7523,2.29],[7524,7524,3.28],[7525,7525,2.94],[7526,7526,2.82],[7527,7527,2.65],[7528,7528,2.96],[7529,7529,3.34],[7530,7530,2.82],[7531,7531,7.61],[7532,7533,5],[7534,7534,3.33],[7535,7535,7.78],[7536,7537,5],[7538,7539,3.33],[7540,7540,3.89],[7541,7541,2.78],[7542,7542,4.44],[7543,7543,5],[7544,7544,3.23],[7545,7545,4.71],[7546,7546,7.66],[7547,7547,2.78],[7548,7548,2.69],[7549,7549,5],[7550,7550,5.37],[7680,7680,7.22],[7681,7681,4.44],[7682,7682,6.67],[7683,7683,5],[7684,7684,6.86],[7685,7685,6.23],[7686,7686,6.67],[7687,7687,5],[7688,7688,6.98],[7689,7689,5.21],[7690,7690,7.22],[7691,7691,5],[7692,7692,7.71],[7693,7693,6.23],[7694,7694,7.22],[7695,7695,5],[7696,7696,7.22],[7697,7697,5],[7698,7698,7.22],[7699,7699,5],[7700,7700,6.32],[7701,7701,5.96],[7702,7702,6.32],[7703,7703,5.96],[7704,7704,6.11],[7705,7705,4.44],[7706,7706,6.11],[7707,7707,4.44],[7708,7708,6.11],[7709,7709,4.44],[7710,7710,5.56],[7711,7711,3.33],[7712,7712,7.22],[7713,7713,5],[7714,7714,7.22],[7715,7715,5],[7716,7716,7.51],[7717,7717,6.33],[7718,7718,7.22],[7719,7719,5],[7720,7720,7.22],[7721,7721,5],[7722,7722,7.22],[7723,7723,5],[7724,7724,3.33],[7725,7725,2.78],[7726,7726,4.21],[7727,7727,2.74],[7728,7728,6.93],[7729,7729,5.92],[7730,7730,6.93],[7731,7731,5.92],[7732,7732,7.22],[7733,7733,5],[7734,7734,5.57],[7735,7735,2.74],[7736,7736,6.11],[7737,7737,2.78],[7738,7738,6.11],[7739,7739,2.78],[7740,7740,6.11],[7741,7741,2.78],[7742,7742,8.43],[7743,7743,9.73],[7744,7744,8.89],[7745,7745,7.78],[7746,7746,8.43],[7747,7747,9.73],[7748,7748,7.22],[7749,7749,5],[7750,7750,7.48],[7751,7751,6.33],[7752,7752,7.22],[7753,7753,5],[7754,7754,7.22],[7755,7755,5],[7756,7756,7.87],[7757,7757,6.07],[7758,7758,7.22],[7759,7759,5],[7760,7760,7.87],[7761,7761,6.07],[7762,7762,7.87],[7763,7763,6.07],[7764,7764,6.03],[7765,7765,6.23],[7766,7766,5.56],[7767,7767,5],[7768,7768,6.67],[7769,7769,3.33],[7770,7770,6.95],[7771,7771,4.27],[7772,7772,6.67],[7773,7773,3.33],[7774,7774,6.67],[7775,7775,3.33],[7776,7776,5.56],[7777,7777,3.89],[7778,7778,6.84],[7779,7779,5.21],[7780,7780,5.56],[7781,7781,3.89],[7782,7782,5.56],[7783,7783,3.89],[7784,7784,5.56],[7785,7785,3.89],[7786,7786,6.11],[7787,7787,2.78],[7788,7788,6.16],[7789,7789,3.94],[7790,7790,6.11],[7791,7791,2.78],[7792,7792,6.11],[7793,7793,2.78],[7794,7794,7.22],[7795,7795,5],[7796,7796,7.22],[7797,7797,5],[7798,7798,7.22],[7799,7799,5],[7800,7800,7.32],[7801,7801,6.33],[7802,7802,7.22],[7803,7803,5],[7804,7804,6.84],[7805,7805,5.92],[7806,7806,6.84],[7807,7807,5.92],[7808,7808,9.89],[7809,7809,8.18],[7810,7810,9.89],[7811,7811,8.18],[7812,7812,9.89],[7813,7813,8.18],[7814,7814,9.44],[7815,7815,7.22],[7816,7816,9.89],[7817,7817,8.18],[7818,7818,7.22],[7819,7819,5],[7820,7820,7.22],[7821,7821,5],[7822,7822,7.22],[7823,7823,5],[7824,7824,6.11],[7825,7825,4.44],[7826,7826,6.85],[7827,7827,5.25],[7828,7828,6.11],[7829,7829,4.44],[7830,7830,5],[7831,7831,2.78],[7832,7832,7.22],[7833,7833,5],[7834,7834,4.44],[7835,7835,2.78],[7836,7836,4.23],[7837,7837,4.22],[7838,7838,6.78],[7839,7839,6.02],[7840,7840,6.84],[7841,7841,6.01],[7842,7842,6.84],[7843,7843,6.01],[7844,7844,6.84],[7845,7845,6.01],[7846,7846,6.84],[7847,7847,6.01],[7848,7848,6.84],[7849,7849,6.01],[7850,7850,6.84],[7851,7851,6.01],[7852,7852,6.84],[7853,7853,6.01],[7854,7854,6.84],[7855,7855,6.01],[7856,7856,6.84],[7857,7857,6.01],[7858,7858,6.84],[7859,7859,6.01],[7860,7860,6.84],[7861,7861,6.01],[7862,7862,6.84],[7863,7863,6.01],[7864,7864,6.32],[7865,7865,5.96],[7866,7866,6.32],[7867,7867,5.96],[7868,7868,6.32],[7869,7869,5.96],[7870,7870,6.32],[7871,7871,5.96],[7872,7872,6.32],[7873,7873,5.96],[7874,7874,6.32],[7875,7875,5.96],[7876,7876,6.32],[7877,7877,5.96],[7878,7878,6.32],[7879,7879,5.96],[7880,7880,4.21],[7881,7881,2.74],[7882,7882,4.21],[7883,7883,2.74],[7884,7884,7.87],[7885,7885,6.07],[7886,7886,7.87],[7887,7887,6.07],[7888,7888,7.87],[7889,7889,6.07],[7890,7890,7.87],[7891,7891,6.07],[7892,7892,7.87],[7893,7893,6.07],[7894,7894,7.87],[7895,7895,6.07],[7896,7896,7.87],[7897,7897,6.07],[7898,7898,8.07],[7899,7899,6.07],[7900,7900,8.07],[7901,7901,6.07],[7902,7902,8.07],[7903,7903,6.07],[7904,7904,8.07],[7905,7905,6.07],[7906,7906,8.07],[7907,7907,6.07],[7908,7908,7.32],[7909,7909,6.33],[7910,7910,7.32],[7911,7911,6.33],[7912,7912,7.56],[7913,7913,6.6],[7914,7914,7.56],[7915,7915,6.6],[7916,7916,7.56],[7917,7917,6.6],[7918,7918,7.56],[7919,7919,6.6],[7920,7920,7.56],[7921,7921,6.6],[7922,7922,6.15],[7923,7923,5.92],[7924,7924,6.15],[7925,7925,5.92],[7926,7926,6.15],[7927,7927,5.92],[7928,7928,6.15],[7929,7929,5.92],[7930,7930,9.36],[7931,7931,5.89],[7932,7932,5.06],[7933,7933,4.45],[7934,7934,4.58],[7936,7943,5.24],[7944,7945,7.22],[7946,7951,7.91],[7952,7957,4.2],[7958,7959,10],[7960,7961,7.48],[7962,7965,9.04],[7966,7967,10],[7968,7975,5.23],[7976,7977,8.59],[7978,7983,10.16],[7984,7991,2.69],[7992,7993,4.7],[7994,7999,6.26],[8000,8005,5],[8006,8007,10],[8008,8009,7.91],[8010,8011,9.96],[8012,8013,8.98],[8014,8015,10],[8016,8023,4.95],[8024,8024,10],[8025,8025,8.59],[8026,8026,10],[8027,8027,10.21],[8028,8028,10],[8029,8029,10.21],[8030,8030,10],[8031,8031,10.21],[8032,8039,6.58],[8040,8041,8.12],[8042,8043,9.98],[8044,8047,9.29],[8048,8049,6.23],[8050,8051,5.13],[8052,8053,6.33],[8054,8055,2.74],[8056,8057,6.07],[8058,8059,6.31],[8060,8061,8.13],[8062,8063,10],[8064,8071,5.24],[8072,8073,7.22],[8074,8079,7.91],[8080,8087,5.23],[8088,8089,8.59],[8090,8095,10.16],[8096,8103,6.58],[8104,8105,8.12],[8106,8107,9.98],[8108,8111,9.29],[8112,8116,5.24],[8117,8117,10],[8118,8119,5.24],[8120,8121,7.22],[8122,8123,6.84],[8124,8124,7.22],[8125,8125,3.33],[8126,8126,2.74],[8127,8129,3.33],[8130,8132,5.23],[8133,8133,10],[8134,8135,5.23],[8136,8136,6.32],[8137,8138,7.51],[8139,8139,8.7],[8140,8140,7.22],[8141,8143,3.33],[8144,8145,2.69],[8146,8147,2.74],[8148,8149,10],[8150,8151,2.69],[8152,8153,3.33],[8154,8154,4.21],[8155,8155,5.4],[8156,8156,10],[8157,8159,3.33],[8160,8161,4.95],[8162,8163,6.31],[8164,8165,4.99],[8166,8167,4.95],[8168,8169,7.22],[8170,8170,6.15],[8171,8171,7.53],[8172,8172,6.93],[8173,8175,6.36],[8176,8177,10],[8178,8180,6.58],[8181,8181,10],[8182,8183,6.58],[8184,8184,7.87],[8185,8185,8.81],[8186,8186,8.18],[8187,8187,9.08],[8188,8188,7.43],[8189,8189,6.36],[8190,8190,3.33],[8192,8192,5],[8193,8193,10],[8194,8194,5],[8195,8195,10],[8196,8196,3.33],[8197,8197,2.5],[8198,8198,1.67],[8199,8199,6.36],[8200,8200,3.64],[8201,8201,2],[8202,8202,0.63],[8203,8207,0],[8208,8209,5.79],[8210,8211,6.36],[8212,8213,10],[8214,8214,2.81],[8215,8215,6.36],[8216,8219,2.69],[8220,8223,4.59],[8224,8225,6.36],[8226,8226,5.45],[8227,8227,4.7],[8228,8228,3.33],[8229,8229,6.67],[8230,8230,8.18],[8231,8231,3.16],[8232,8238,0],[8239,8239,1.76],[8240,8240,15.21],[8241,8241,13.55],[8242,8242,3.61],[8243,8244,5.57],[8245,8245,3.25],[8246,8246,5.42],[8247,8247,7.59],[8248,8248,3.53],[8249,8250,4.54],[8251,8251,7.23],[8252,8252,6.25],[8253,8253,4.22],[8254,8254,6.36],[8255,8256,5],[8257,8257,4.65],[8258,8258,9.11],[8259,8259,3.25],[8260,8260,3.61],[8261,8262,3.25],[8263,8263,8.07],[8264,8265,7.07],[8266,8267,6.32],[8268,8269,5.42],[8270,8270,4.82],[8271,8271,3.16],[8272,8272,5],[8273,8273,4.82],[8274,8274,5.51],[8275,8275,10],[8276,8276,5],[8277,8277,6.97],[8278,8278,5.93],[8279,8279,9.74],[8280,8281,5.93],[8282,8282,10],[8283,8283,5.93],[8284,8284,6.98],[8285,8285,10],[8286,8286,2.78],[8287,8287,2.22],[8288,8302,0],[8304,8304,4.22],[8305,8305,2.17],[8306,8307,10],[8308,8309,5.42],[8310,8310,4.22],[8311,8312,5.42],[8313,8316,4.22],[8317,8318,2.26],[8319,8319,5.45],[8320,8332,4.22],[8333,8334,2.26],[8335,8335,10],[8336,8336,2.73],[8337,8337,2.56],[8338,8338,2.88],[8339,8339,2.9],[8340,8340,2.56],[8341,8350,10],[8352,8352,6.36],[8353,8354,6.98],[8355,8356,6.36],[8357,8357,9.73],[8358,8358,7.48],[8359,8359,11.64],[8360,8360,11.67],[8361,8361,9.89],[8362,8362,8.35],[8363,8363,6.23],[8364,8364,6.36],[8365,8365,6.93],[8366,8366,6.16],[8367,8367,10],[8368,8368,5.21],[8369,8369,6.03],[8370,8370,7.75],[8371,8372,6.84],[8373,8373,6.98],[8374,8374,6.77],[8375,8375,7.3],[8376,8376,5.65],[8377,8377,6],[8378,8378,5.56],[8379,8379,8.31],[8380,8381,5.65],[8382,8382,7.53],[8383,8383,6.59],[8384,8398,10],[8400,8402,0],[8403,8403,6],[8404,8405,7],[8406,8408,0],[8409,8410,6],[8411,8413,0],[8414,8414,10],[8415,8415,8.65],[8416,8416,9],[8417,8417,0],[8418,8418,10],[8419,8432,0],[8433,8446,10],[8448,8449,7.5],[8450,8450,6.02],[8451,8451,9.89],[8452,8452,6.4],[8453,8453,10.76],[8454,8454,7.5],[8455,8455,5.98],[8456,8456,6.03],[8457,8457,8.47],[8458,8458,10],[8459,8459,9.97],[8460,8460,8.24],[8461,8461,6.02],[8462,8462,5.77],[8463,8463,6.15],[8464,8464,8.97],[8465,8465,7.62],[8466,8466,9.46],[8467,8467,3.23],[8468,8468,7.78],[8469,8469,6.02],[8470,8470,11.72],[8471,8471,8.55],[8472,8472,8.26],[8473,8474,6.02],[8475,8475,9.44],[8476,8476,8.74],[8477,8477,6.02],[8478,8478,6.32],[8479,8479,6.67],[8480,8480,11.28],[8481,8481,15.03],[8482,8482,9.77],[8483,8483,7.22],[8484,8484,6.02],[8485,8485,5.12],[8486,8486,8.18],[8487,8487,7.95],[8488,8488,7.26],[8489,8489,4],[8490,8490,6.93],[8491,8491,6.84],[8492,8492,9.5],[8493,8493,7.17],[8494,8494,7.18],[8495,8495,6.27],[8496,8496,7.5],[8497,8497,9.19],[8498,8498,6.64],[8499,8499,10.72],[8500,8500,6.97],[8501,8501,6.45],[8502,8502,5.63],[8503,8503,4.27],[8504,8504,5.01],[8505,8505,6.6],[8506,8506,9.34],[8507,8507,16.4],[8508,8508,6.73],[8509,8509,5.4],[8510,8510,4.69],[8511,8511,7.18],[8512,8512,9.23],[8513,8513,7.23],[8514,8515,5.33],[8516,8516,6.23],[8517,8517,7.13],[8518,8518,5.81],[8519,8519,5.15],[8520,8520,2.93],[8521,8521,3.41],[8522,8522,6.64],[8523,8523,6.97],[8524,8524,8.1],[8525,8525,8.82],[8526,8526,4.17],[8528,8530,10],[8531,8532,7.5],[8533,8538,8.01],[8539,8542,10],[8543,8543,3.8],[8544,8544,2.88],[8545,8545,5.9],[8546,8546,8.37],[8547,8547,9.05],[8548,8548,6.53],[8549,8549,9.18],[8550,8550,12.13],[8551,8551,14.6],[8552,8552,8.72],[8553,8553,6.26],[8554,8554,8.53],[8555,8555,11.47],[8556,8556,5.33],[8557,8557,6.92],[8558,8558,7.49],[8559,8559,8.61],[8560,8560,2.89],[8561,8561,5.78],[8562,8562,8.19],[8563,8563,7.79],[8564,8564,5.18],[8565,8565,7.82],[8566,8566,10.71],[8567,8567,13.12],[8568,8568,8.35],[8569,8569,6.13],[8570,8570,8.33],[8571,8571,11.22],[8572,8572,2.89],[8573,8573,5.12],[8574,8574,6.29],[8575,8575,9.34],[8576,8576,10.41],[8577,8577,7.49],[8578,8578,10.41],[8579,8579,6.92],[8580,8580,4.44],[8581,8581,6.51],[8582,8582,5.64],[8583,8590,10],[8592,8592,10],[8593,8593,5],[8594,8594,10],[8595,8595,5],[8596,8596,10],[8597,8597,5],[8598,8603,10],[8604,8615,6.02],[8616,8616,5],[8617,8617,10],[8618,8618,9.88],[8619,8621,6.02],[8622,8622,10],[8623,8623,6.02],[8624,8626,8.65],[8627,8627,10],[8628,8628,8.65],[8629,8629,10],[8630,8631,8.65],[8632,8633,10],[8634,8635,6.02],[8636,8636,8.65],[8637,8639,6.02],[8640,8640,8.65],[8641,8643,6.02],[8644,8646,10],[8647,8650,6.02],[8651,8652,10],[8653,8653,8.8],[8654,8654,6.02],[8655,8655,8.69],[8656,8656,10],[8657,8657,8.65],[8658,8658,9.31],[8659,8659,8.65],[8660,8660,9.31],[8661,8669,6.02],[8670,8671,6.45],[8672,8672,10],[8673,8673,6.45],[8674,8674,10],[8675,8675,6.45],[8676,8682,10],[8683,8687,6.02],[8688,8688,8.65],[8689,8692,6.02],[8693,8693,10],[8694,8702,6.02],[8704,8704,6.3],[8705,8705,4.69],[8706,8706,6.36],[8707,8707,5.26],[8708,8708,5.35],[8709,8709,7.17],[8710,8710,7.27],[8711,8711,7],[8712,8712,5.76],[8713,8713,6.12],[8714,8714,5.09],[8715,8715,5.76],[8716,8716,5.89],[8717,8717,5.09],[8718,8718,5.22],[8719,8719,8.18],[8720,8720,7.95],[8721,8721,7.27],[8722,8722,8.18],[8723,8723,7.95],[8724,8724,5.99],[8725,8725,3.61],[8726,8726,7.95],[8727,8727,5.23],[8728,8728,3.55],[8729,8729,3.64],[8730,8730,8.18],[8731,8731,7.49],[8732,8732,7.24],[8733,8733,5.19],[8734,8734,10],[8735,8735,9.79],[8736,8736,5.98],[8737,8737,6.01],[8738,8738,6.05],[8739,8739,2.5],[8740,8740,4.73],[8741,8741,3.46],[8742,8742,5.25],[8743,8744,5.94],[8745,8745,7.22],[8746,8746,5.31],[8747,8747,6.36],[8748,8748,9.15],[8749,8749,11.24],[8750,8750,6.78],[8751,8751,9.24],[8752,8752,11.66],[8753,8753,5.98],[8754,8754,6.28],[8755,8755,5.97],[8756,8756,6.04],[8757,8757,5.97],[8758,8758,3.36],[8759,8759,5.76],[8760,8760,5.63],[8761,8761,5.76],[8762,8762,5.8],[8763,8763,5.6],[8764,8765,5.5],[8766,8766,5.43],[8767,8767,5.83],[8768,8768,3.9],[8769,8769,5.74],[8770,8770,5.8],[8771,8771,5.84],[8772,8772,6.71],[8773,8773,6.96],[8774,8774,6.29],[8775,8775,6.11],[8776,8776,8.18],[8777,8777,5.49],[8778,8778,6.04],[8779,8779,6.71],[8780,8780,5.43],[8781,8781,6.03],[8782,8782,5.97],[8783,8783,5.93],[8784,8784,5.6],[8785,8785,6.38],[8786,8787,6.32],[8788,8789,7.64],[8790,8790,5.79],[8791,8791,5.96],[8792,8792,5.89],[8793,8793,6.08],[8794,8794,6.19],[8795,8795,6.46],[8796,8796,6.36],[8797,8797,5.63],[8798,8798,5.75],[8799,8799,5.9],[8800,8801,8.18],[8802,8802,5.64],[8803,8803,5.93],[8804,8805,8.18],[8806,8806,5.75],[8807,8807,5.64],[8808,8808,6.22],[8809,8809,5.89],[8810,8810,7.33],[8811,8811,7.01],[8812,8812,3.58],[8813,8813,5.53],[8814,8815,5.64],[8816,8817,5.49],[8818,8818,5.64],[8819,8819,5.67],[8820,8820,5.83],[8821,8821,5.81],[8822,8823,6.05],[8824,8824,5.61],[8825,8825,5.77],[8826,8826,5.67],[8827,8827,5.78],[8828,8828,5.96],[8829,8829,5.78],[8830,8830,5.85],[8831,8831,5.82],[8832,8832,6.07],[8833,8833,5.79],[8834,8835,6.32],[8836,8836,6.44],[8837,8837,6.31],[8838,8839,6.63],[8840,8840,6.67],[8841,8841,6.49],[8842,8843,5.62],[8844,8845,5.82],[8846,8846,6.09],[8847,8848,6.54],[8849,8850,6.51],[8851,8852,6.11],[8853,8853,7.24],[8854,8854,7.45],[8855,8855,7.11],[8856,8856,7.22],[8857,8857,7.56],[8858,8858,7.35],[8859,8859,7.18],[8860,8860,7.61],[8861,8861,7.56],[8862,8862,7.84],[8863,8863,7.6],[8864,8864,7.33],[8865,8865,7.16],[8866,8869,7.5],[8870,8870,3.3],[8871,8871,3.33],[8872,8872,6.24],[8873,8873,7.29],[8874,8874,6.23],[8875,8875,7.55],[8876,8876,7.76],[8877,8877,7.78],[8878,8878,8.74],[8879,8879,8.36],[8880,8881,6.32],[8882,8883,7.41],[8884,8885,7.03],[8886,8887,7.35],[8888,8888,5.96],[8889,8889,6.83],[8890,8890,4.8],[8891,8892,6.96],[8893,8893,6.74],[8894,8894,7.42],[8895,8895,6.31],[8896,8897,6.71],[8898,8899,6.41],[8900,8900,3.81],[8901,8901,4.41],[8902,8902,4.48],[8903,8903,6.31],[8904,8904,7.72],[8905,8906,7.4],[8907,8908,7.24],[8909,8909,5.84],[8910,8911,6.35],[8912,8913,6.48],[8914,8915,5.69],[8916,8916,5.49],[8917,8917,6.14],[8918,8919,6.03],[8920,8921,9.68],[8922,8923,6.51],[8924,8925,6.46],[8926,8927,6.69],[8928,8928,6.66],[8929,8929,6.56],[8930,8930,6.86],[8931,8931,6.64],[8932,8932,6.71],[8933,8933,6.73],[8934,8934,6.76],[8935,8935,6.86],[8936,8936,7.19],[8937,8937,6.88],[8938,8938,7.49],[8939,8939,7.66],[8940,8940,7.71],[8941,8941,7.76],[8942,8942,4.11],[8943,8943,10],[8944,8944,9.2],[8945,8945,9.39],[8946,8946,6.5],[8947,8947,5.76],[8948,8948,5.09],[8949,8950,5.76],[8951,8951,5.09],[8952,8952,5.76],[8953,8953,6.32],[8954,8954,6.5],[8955,8955,5.76],[8956,8956,5.09],[8957,8957,5.76],[8958,8958,5.09],[8960,8961,6.02],[8962,8962,6],[8963,8963,7.95],[8964,8964,6.02],[8965,8965,7.95],[8966,8966,6.64],[8967,8967,10],[8968,8975,6.02],[8976,8976,5.64],[8977,8977,6.02],[8978,8978,10],[8979,8979,6.02],[8980,8980,8.65],[8981,8981,6.02],[8982,8983,11],[8984,8984,10],[8985,8985,6.02],[8986,8987,10],[8988,8991,6.02],[8992,8993,6.04],[8994,8995,8.65],[8996,8996,7.95],[8997,8997,10],[8998,8998,12.14],[8999,8999,10],[9000,9000,6.02],[9001,9002,10],[9003,9003,12.14],[9004,9004,9.26],[9005,9005,9.86],[9006,9006,6.24],[9007,9009,5.49],[9010,9010,8.89],[9011,9012,5.49],[9013,9013,6.02],[9014,9014,9.26],[9015,9020,6.02],[9021,9021,10],[9022,9022,6.02],[9023,9024,6.83],[9025,9028,6.02],[9029,9030,6],[9031,9033,6.02],[9034,9034,6],[9035,9037,6.02],[9038,9039,6],[9040,9040,6.02],[9041,9041,6],[9042,9044,6.02],[9045,9046,6],[9047,9052,6.02],[9053,9053,6],[9054,9056,6.02],[9057,9058,6],[9059,9061,6.02],[9062,9063,6],[9064,9065,6.02],[9066,9066,6],[9067,9072,6.02],[9073,9074,6],[9075,9082,6.02],[9083,9083,6.69],[9084,9084,8.71],[9085,9085,3.16],[9086,9086,9.39],[9087,9087,3.71],[9088,9091,6.02],[9092,9092,7.85],[9093,9093,6.84],[9094,9094,6.75],[9095,9096,10],[9097,9098,6.02],[9099,9099,10],[9100,9100,8.08],[9101,9101,7.86],[9102,9102,7.47],[9103,9106,6.58],[9107,9107,9.13],[9108,9108,9.26],[9109,9109,6.02],[9110,9110,4.72],[9111,9112,7.89],[9113,9114,8.15],[9115,9133,10],[9134,9134,6.02],[9135,9135,3.15],[9136,9137,10],[9138,9139,14.88],[9140,9142,9.26],[9143,9143,6.43],[9144,9149,5.03],[9150,9164,10],[9165,9165,9.98],[9166,9166,10],[9167,9167,8.57],[9168,9168,5.11],[9169,9171,5.42],[9172,9173,10.31],[9174,9174,9.58],[9175,9177,9.76],[9178,9185,10],[9186,9186,11.44],[9187,9187,9.1],[9188,9188,10.94],[9189,9189,10.18],[9190,9190,9.26],[9191,9191,7.98],[9192,9214,10],[9216,9247,10],[9248,9248,6],[9249,9249,10],[9250,9250,6],[9251,9251,3.16],[9252,9252,6],[9253,9253,7.92],[9254,9254,4.03],[9255,9278,10],[9280,9285,6.04],[9286,9289,7.5],[9290,9290,6.04],[9291,9310,10],[9312,9412,10],[9413,9413,8.55],[9414,9470,10],[9472,9472,7.08],[9473,9473,10],[9474,9474,7.08],[9475,9483,10],[9484,9484,7.08],[9485,9487,10],[9488,9488,7.08],[9489,9491,10],[9492,9492,7.08],[9493,9495,10],[9496,9496,7.08],[9497,9499,10],[9500,9500,7.08],[9501,9507,10],[9508,9508,7.08],[9509,9515,10],[9516,9516,7.08],[9517,9523,10],[9524,9524,7.08],[9525,9531,10],[9532,9532,7.08],[9533,9547,10],[9548,9551,6.02],[9552,9580,7.08],[9581,9588,10],[9589,9598,6.02],[9600,9600,7.08],[9601,9603,10],[9604,9604,7.08],[9605,9607,10],[9608,9608,7.08],[9609,9611,10],[9612,9612,7.08],[9613,9615,10],[9616,9618,7.08],[9619,9619,7.29],[9620,9621,10],[9622,9630,6.02],[9632,9633,6.04],[9634,9634,10],[9635,9641,8.65],[9642,9643,3.54],[9644,9644,10],[9645,9645,8.65],[9646,9648,6.02],[9649,9649,10],[9650,9650,9.9],[9651,9651,10],[9652,9652,5.51],[9653,9653,8.65],[9654,9654,8.8],[9655,9655,10],[9656,9657,5.3],[9658,9658,9.9],[9659,9659,6.02],[9660,9660,9.9],[9661,9661,10],[9662,9663,6.39],[9664,9664,10],[9665,9665,7.95],[9666,9666,6.02],[9667,9667,8.65],[9668,9668,9.9],[9669,9669,6.02],[9670,9670,7.23],[9671,9671,6.15],[9672,9672,8.65],[9673,9673,10],[9674,9674,8.18],[9675,9675,6.04],[9676,9676,5.94],[9677,9677,6.02],[9678,9678,10],[9679,9679,6.04],[9680,9683,10],[9684,9687,6.02],[9688,9689,6.04],[9690,9697,6.02],[9698,9701,10],[9702,9702,3.54],[9703,9710,6.02],[9711,9711,10],[9712,9722,6.02],[9723,9726,10],[9728,9731,10],[9732,9732,6.02],[9733,9734,10],[9735,9736,6.02],[9737,9737,10],[9738,9741,6.02],[9742,9742,10],[9743,9743,8.65],[9744,9746,8.3],[9747,9747,6.02],[9748,9751,10],[9752,9755,6.02],[9756,9759,10],[9760,9774,6.02],[9775,9775,8.65],[9776,9783,9],[9784,9785,6.02],[9786,9786,10.21],[9787,9787,10.52],[9788,9788,9.17],[9789,9791,6.02],[9792,9792,7.5],[9793,9793,6.02],[9794,9794,7.5],[9795,9799,6.02],[9800,9811,10],[9812,9823,6.02],[9824,9824,5.31],[9825,9826,10],[9827,9827,6.56],[9828,9828,10],[9829,9829,5.94],[9830,9830,5.1],[9831,9833,10],[9834,9834,5],[9835,9835,7.5],[9836,9838,10],[9839,9839,5],[9840,9841,6.02],[9842,9853,10],[9854,9854,6.02],[9855,9855,10],[9856,9867,6.02],[9868,9868,8.79],[9869,9869,8.63],[9870,9870,8.59],[9871,9871,8.96],[9872,9874,6.02],[9875,9875,10],[9876,9884,6.02],[9885,9889,10],[9890,9890,8.92],[9891,9891,8.97],[9892,9892,8.83],[9893,9893,6.6],[9894,9894,7.41],[9895,9895,9.23],[9896,9896,5.33],[9897,9897,9.2],[9898,9899,10],[9900,9900,5.65],[9901,9901,7.76],[9902,9902,10.55],[9903,9903,11.18],[9904,9905,6.02],[9906,9906,6.03],[9907,9953,10],[9954,9954,7],[9955,9982,10],[9984,9984,10],[9985,9985,9.74],[9986,9986,9.61],[9987,9987,9.74],[9988,9988,9.8],[9989,9989,10],[9990,9990,7.89],[9991,9991,7.9],[9992,9992,7.91],[9993,9993,6.9],[9994,9997,10],[9998,9998,7.88],[9999,9999,9.33],[10000,10000,9.11],[10001,10001,9.45],[10002,10002,9.74],[10003,10003,7.64],[10004,10004,8.46],[10005,10005,7.62],[10006,10006,7.61],[10007,10007,5.71],[10008,10008,6.77],[10009,10009,7.63],[10010,10010,7.6],[10011,10011,7.59],[10012,10012,7.54],[10013,10013,4.94],[10014,10014,5.52],[10015,10015,5.37],[10016,10016,5.77],[10017,10017,6.92],[10018,10018,7.86],[10019,10020,7.88],[10021,10021,7.9],[10022,10022,7.93],[10023,10023,7.94],[10024,10024,10],[10025,10025,8.23],[10026,10026,7.89],[10027,10027,8.41],[10028,10028,8.23],[10029,10029,8.33],[10030,10030,8.16],[10031,10031,8.31],[10032,10032,9.23],[10033,10033,7.44],[10034,10034,7.23],[10035,10035,7.49],[10036,10036,7.9],[10037,10037,7.92],[10038,10038,6.95],[10039,10039,7.76],[10040,10040,7.68],[10041,10041,7.92],[10042,10042,7.59],[10043,10043,7.07],[10044,10044,7.08],[10045,10045,6.82],[10046,10046,7.01],[10047,10047,8.26],[10048,10048,8.15],[10049,10050,7.89],[10051,10051,7.07],[10052,10052,6.87],[10053,10053,6.96],[10054,10054,6.89],[10055,10055,7.86],[10056,10056,7.87],[10057,10057,7.13],[10058,10058,7.91],[10059,10059,7.85],[10060,10060,10],[10061,10061,8.73],[10062,10062,10],[10063,10064,7.62],[10065,10066,7.59],[10067,10069,10],[10070,10070,7.84],[10071,10071,10],[10072,10072,2.89],[10073,10073,2.77],[10074,10074,4.15],[10075,10076,3.92],[10077,10078,6.68],[10079,10080,10],[10081,10081,7.32],[10082,10083,5.44],[10084,10084,9.1],[10085,10085,6.67],[10086,10087,7.6],[10088,10089,3.9],[10090,10091,3.17],[10092,10093,2.76],[10094,10095,5.09],[10096,10097,4.1],[10098,10099,2.34],[10100,10101,3.34],[10102,10131,7.88],[10132,10132,8.94],[10133,10135,10],[10136,10136,7.48],[10137,10137,9.24],[10138,10138,7.48],[10139,10139,9.18],[10140,10140,9.27],[10141,10142,9.28],[10143,10143,8.34],[10144,10144,8.73],[10145,10145,8.28],[10146,10147,9.24],[10148,10148,9.17],[10149,10149,9.3],[10150,10150,9.31],[10151,10151,4.63],[10152,10152,8.83],[10153,10154,8.36],[10155,10156,8.67],[10157,10158,6.96],[10159,10159,8.74],[10160,10160,10],[10161,10161,8.74],[10162,10162,7.6],[10163,10163,9.46],[10164,10164,7.71],[10165,10165,8.65],[10166,10166,7.71],[10167,10167,8.88],[10168,10168,9.67],[10169,10169,8.88],[10170,10170,8.31],[10171,10171,8.73],[10172,10172,9.27],[10173,10173,9.7],[10174,10174,9.18],[10176,10176,5.48],[10177,10177,9.48],[10178,10178,6.89],[10179,10180,5.64],[10181,10182,6.02],[10183,10183,6.2],[10184,10185,9.18],[10186,10186,3.4],[10187,10187,8.38],[10188,10188,3.25],[10189,10189,8.38],[10190,10191,10],[10192,10192,7.46],[10193,10193,6.2],[10194,10194,5.97],[10195,10196,5.42],[10197,10198,9.02],[10199,10199,11.15],[10200,10201,6.89],[10202,10202,8.7],[10203,10203,8.56],[10204,10204,10.55],[10205,10206,8.49],[10207,10207,3.96],[10208,10208,5.51],[10209,10209,7],[10210,10211,8.76],[10212,10213,9.46],[10214,10215,4.22],[10216,10217,3.66],[10218,10219,4.63],[10220,10221,4.88],[10222,10222,2.33],[10224,10225,10.33],[10226,10227,9.74],[10228,10228,12],[10229,10238,15.74],[10240,10494,6.84],[10496,10503,9.26],[10504,10505,5.11],[10506,10511,9.26],[10512,10512,14.12],[10513,10513,9.26],[10514,10515,5.11],[10516,10547,9.26],[10548,10549,10],[10550,10551,8.65],[10552,10552,5.11],[10553,10553,8.65],[10554,10568,9.26],[10569,10569,5.11],[10570,10571,9.26],[10572,10573,5.11],[10574,10574,9.26],[10575,10575,5.11],[10576,10576,9.26],[10577,10577,5.11],[10578,10579,9.26],[10580,10581,5.11],[10582,10583,9.26],[10584,10585,5.11],[10586,10587,9.26],[10588,10589,5.11],[10590,10591,9.26],[10592,10593,5.11],[10594,10597,8.65],[10598,10605,9.26],[10606,10607,6.85],[10608,10613,9.26],[10614,10614,6.85],[10615,10615,9.26],[10616,10617,6.85],[10618,10618,9.26],[10619,10619,6.85],[10620,10621,9.26],[10622,10622,6.85],[10624,10624,3.65],[10625,10625,3.8],[10626,10626,3.13],[10627,10628,3.74],[10629,10630,4.47],[10631,10632,3.35],[10633,10634,3.95],[10635,10636,3.01],[10637,10640,3],[10641,10641,3.66],[10642,10642,3.68],[10643,10644,6.59],[10645,10646,6.95],[10647,10648,6.48],[10649,10649,2.26],[10650,10650,2.77],[10651,10651,5.94],[10652,10653,5.92],[10654,10654,6.61],[10655,10655,5.48],[10656,10657,5.94],[10658,10661,5.48],[10662,10663,7.53],[10664,10671,5.94],[10672,10676,7.03],[10677,10677,8.69],[10678,10678,7],[10679,10679,7.02],[10680,10680,7.22],[10681,10681,7.02],[10682,10682,7.03],[10683,10683,7.04],[10684,10689,7.02],[10690,10690,8.55],[10691,10691,8.74],[10692,10696,7.47],[10697,10697,7.96],[10698,10700,7.49],[10701,10701,9.44],[10702,10702,6.5],[10703,10704,7.58],[10705,10707,6.87],[10708,10709,6.51],[10710,10711,7.67],[10712,10713,2.77],[10714,10715,4.23],[10716,10716,6.37],[10717,10717,6.47],[10718,10718,6.37],[10719,10719,6.74],[10720,10720,7.47],[10721,10721,6.53],[10722,10722,6.83],[10723,10725,6.64],[10726,10726,7.1],[10727,10727,6.35],[10728,10729,7.49],[10730,10730,7.17],[10731,10731,4.73],[10732,10733,8.99],[10734,10735,5.98],[10736,10737,7.08],[10738,10739,7.02],[10740,10740,8.18],[10741,10741,5.99],[10742,10742,5.76],[10743,10745,5.08],[10746,10747,6.76],[10748,10749,5.37],[10750,10750,4.73],[10752,10753,8.99],[10754,10754,9.01],[10755,10756,5.44],[10757,10758,5.95],[10759,10760,7.66],[10761,10761,6.66],[10762,10762,8.55],[10763,10763,6.52],[10764,10764,15.05],[10765,10767,6.11],[10768,10768,4.99],[10769,10769,7.28],[10770,10770,5.19],[10771,10771,4.99],[10772,10772,6.28],[10773,10773,4.99],[10774,10774,6.11],[10775,10775,6.76],[10776,10778,6.11],[10779,10779,6.38],[10780,10780,6.17],[10781,10781,6.87],[10782,10782,3.95],[10783,10783,3.34],[10784,10784,8.11],[10785,10785,3.26],[10786,10787,5.41],[10788,10788,5.44],[10789,10789,5.41],[10790,10790,5.44],[10791,10791,6.47],[10792,10792,6.38],[10793,10794,5.45],[10795,10796,5.43],[10797,10798,7.61],[10799,10799,4.58],[10800,10800,5.29],[10801,10801,5.42],[10802,10802,5.21],[10803,10803,8.05],[10804,10805,7.14],[10806,10808,8.99],[10809,10811,7.49],[10812,10813,5.12],[10814,10814,3.34],[10815,10815,6.15],[10816,10821,5.44],[10822,10823,3.88],[10824,10825,5.42],[10826,10827,5.11],[10828,10829,7.39],[10830,10831,5.95],[10832,10832,7.39],[10833,10834,6.1],[10835,10836,6.52],[10837,10838,7.53],[10839,10840,6.52],[10841,10841,6.06],[10842,10843,6.52],[10844,10845,7.38],[10846,10848,6.1],[10849,10849,5.43],[10850,10851,6.1],[10852,10853,6.67],[10854,10857,5.42],[10858,10861,5.43],[10862,10862,4.85],[10863,10866,5.43],[10867,10867,5.44],[10868,10868,8.48],[10869,10869,9.84],[10870,10870,14.57],[10871,10871,5.45],[10872,10872,5.95],[10873,10874,6.59],[10875,10876,5.12],[10877,10879,5.43],[10880,10880,5.44],[10881,10886,5.43],[10887,10887,5.51],[10888,10888,5.7],[10889,10892,5.43],[10893,10893,5.51],[10894,10894,5.48],[10895,10896,5.45],[10897,10903,5.43],[10904,10906,5.44],[10907,10910,5.43],[10911,10911,5.52],[10912,10912,5.46],[10913,10914,6.83],[10915,10915,8.07],[10916,10916,5.44],[10917,10917,9.35],[10918,10921,6.13],[10922,10922,5.12],[10923,10923,5.24],[10924,10924,5.51],[10925,10925,5.56],[10926,10926,5.42],[10927,10929,5.53],[10930,10930,5.51],[10931,10934,5.53],[10935,10935,5.47],[10936,10936,5.48],[10937,10937,5.47],[10938,10938,5.48],[10939,10940,8.88],[10941,10942,5.64],[10943,10950,4.59],[10951,10954,5.46],[10955,10956,4.59],[10957,10958,9.53],[10959,10960,5.64],[10961,10962,5.63],[10963,10966,4.59],[10967,10968,8.5],[10969,10971,5.97],[10972,10972,6.1],[10973,10973,5.97],[10974,10974,3.93],[10975,10977,6.89],[10978,10978,6.86],[10979,10979,6.84],[10980,10980,6.86],[10981,10981,8.37],[10982,10982,6.86],[10983,10985,6.89],[10986,10987,6.93],[10988,10989,5.12],[10990,10990,3.13],[10991,10992,2.84],[10993,10993,2.99],[10994,10994,3.9],[10995,10995,5.43],[10996,10996,3.49],[10997,10997,4.78],[10998,10998,2.26],[10999,11000,9.71],[11001,11002,5.43],[11003,11003,4.99],[11004,11004,3.55],[11005,11005,4.11],[11006,11006,2.94],[11904,12030,10],[12272,12286,10],[12288,12333,10],[12334,12335,16],[12336,12350,10],[12800,12827,8.65],[12828,12828,8.51],[12829,12895,10],[12896,12923,8.65],[12924,12926,10],[12927,12927,8.46],[12928,13054,10],[13056,13183,10],[13184,13188,8.65],[13189,13193,10],[13194,13196,8.65],[13197,13200,10],[13201,13205,8.65],[13206,13208,10],[13209,13210,8.65],[13211,13222,10],[13223,13231,8.65],[13232,13235,10],[13236,13249,8.65],[13250,13250,10],[13251,13251,8.65],[13252,13252,10],[13253,13254,8.65],[13255,13255,8.46],[13256,13256,10],[13257,13258,8.65],[13259,13262,10],[13263,13264,8.65],[13265,13266,10],[13267,13267,8.65],[13268,13269,10],[13270,13270,8.65],[13271,13274,10],[13275,13277,8.65],[13278,13310,10],[13312,19902,10],[19968,40958,10],[63744,64254,10],[65072,65102,10],[65136,65136,3.12],[65137,65137,2.03],[65138,65138,3.12],[65139,65139,3],[65140,65140,3.12],[65141,65141,10],[65142,65142,3.12],[65143,65143,2.03],[65144,65144,3.12],[65145,65145,2.03],[65146,65146,3.12],[65147,65147,2.03],[65148,65148,3.12],[65149,65149,2.03],[65150,65150,3.12],[65151,65151,2.03],[65152,65152,4.13],[65153,65153,2.07],[65154,65154,2.29],[65155,65155,2.07],[65156,65156,2.29],[65157,65158,4.32],[65159,65159,2.07],[65160,65160,2.29],[65161,65161,6.38],[65162,65162,5.88],[65163,65164,2.44],[65165,65165,2.07],[65166,65166,2.29],[65167,65168,7.13],[65169,65170,2.44],[65171,65171,2.82],[65172,65172,3.75],[65173,65174,7.13],[65175,65176,2.44],[65177,65178,7.13],[65179,65180,2.44],[65181,65181,5.63],[65182,65182,5.26],[65183,65184,5.3],[65185,65185,5.63],[65186,65186,5.26],[65187,65188,5.3],[65189,65189,5.63],[65190,65190,5.26],[65191,65192,5.3],[65193,65196,3.37],[65197,65200,4.89],[65201,65202,8.21],[65203,65204,5.31],[65205,65206,8.21],[65207,65208,5.31],[65209,65210,10.98],[65211,65212,8.46],[65213,65214,10.98],[65215,65216,8.46],[65217,65224,5.82],[65225,65225,5.44],[65226,65226,4.5],[65227,65227,5.26],[65228,65228,3.94],[65229,65229,5.44],[65230,65230,4.5],[65231,65231,5.26],[65232,65232,3.94],[65233,65234,7.89],[65235,65235,2.68],[65236,65236,2.63],[65237,65238,5.82],[65239,65239,2.68],[65240,65240,2.63],[65241,65242,6.01],[65243,65244,3.94],[65245,65246,5.06],[65247,65248,2.07],[65249,65250,3.38],[65251,65252,3.94],[65253,65254,5.26],[65255,65256,2.44],[65257,65257,2.82],[65258,65258,3.75],[65259,65259,4.5],[65260,65260,3.94],[65261,65262,4.32],[65263,65263,6.38],[65264,65264,5.88],[65265,65265,6.38],[65266,65266,5.88],[65267,65268,2.44],[65269,65269,5.44],[65270,65270,6.01],[65271,65271,5.44],[65272,65272,6.01],[65273,65273,5.44],[65274,65274,6.01],[65275,65275,5.44],[65276,65276,6.01],[65277,65278,10],[65280,65376,10],[65377,65440,5],[65441,65441,4.83],[65442,65443,5],[65444,65444,4.83],[65445,65446,5],[65447,65447,4.83],[65448,65470,5],[65471,65473,10],[65474,65479,5],[65480,65481,10],[65482,65487,5],[65488,65489,10],[65490,65495,5],[65496,65497,10],[65498,65500,5],[65501,65508,10],[65509,65509,6.36],[65510,65510,9.89],[65511,65512,10],[65513,65518,5],[65792,65792,6.84],[65793,65793,6.01],[65794,65794,6.84],[65795,65795,6.01],[65796,65796,6.84],[65797,65797,6.01],[65798,65798,6.98],[65799,65799,5.21],[65800,65800,6.98],[65801,65801,5.21],[65802,65802,6.98],[65803,65803,5.21],[65804,65804,6.98],[65805,65805,5.21],[65806,65806,7.71],[65807,65807,6.47],[65808,65808,7.75],[65809,65809,6.23],[65810,65810,6.32],[65811,65811,5.96],[65812,65812,6.32],[65813,65813,5.96],[65814,65814,6.32],[65815,65815,5.96],[65816,65816,6.32],[65817,65817,5.96],[65818,65818,6.32],[65819,65819,5.96],[65820,65820,7.75],[65821,65821,6.23],[65822,65822,7.75],[65823,65823,6.23],[65824,65824,7.75],[65825,65825,6.23],[65826,65826,7.75],[65827,65827,6.23],[65828,65828,7.51],[65829,65829,6.33],[65830,65830,7.51],[65831,65831,6.33],[65832,65832,4.21],[65833,65833,2.74],[65834,65834,4.21],[65835,65835,2.74],[65836,65836,4.21],[65837,65837,2.74],[65838,65838,4.21],[65839,65839,2.74],[65840,65840,4.21],[65841,65841,2.74],[65842,65842,8.71],[65843,65843,6.14],[65844,65844,4.55],[65845,65845,3.44],[65846,65846,6.93],[65847,65848,5.92],[65849,65849,5.57],[65850,65850,2.74],[65851,65851,5.57],[65852,65852,2.74],[65853,65853,5.57],[65854,65854,2.96],[66304,66350,0],[66352,66382,0],[66560,66561,6.32],[66562,66562,7.92],[66563,66563,5.66],[66564,66564,7.01],[66565,66565,6.84],[66566,66567,4.21],[66568,66568,4.55],[66569,66569,11.18],[66570,66570,11.03],[66571,66571,8.18],[66572,66572,6.93],[66573,66573,7.5],[66574,66574,6.15],[66575,66575,7.51],[66576,66576,6.84],[66577,66578,6.86],[66579,66579,5.66],[66580,66580,7.46],[66581,66581,6.32],[66582,66582,9.73],[66583,66583,6.16],[66584,66585,7.5],[66586,66586,6.93],[66587,66587,7.34],[66588,66588,8.43],[66589,66589,7.51],[66590,66590,7.87],[66591,66591,7.51],[66592,66592,6.03],[66593,66593,6.98],[66594,66594,6.16],[66595,66595,6.15],[66596,66596,8.19],[66597,66597,6.85],[66598,66598,7.61],[66599,66599,7.12],[66600,66600,10.3],[66601,66601,10.45],[66602,66602,7.83],[66603,66603,9.2],[66604,66604,6.81],[66605,66605,7.01],[66606,66606,10.34],[66607,66607,7.06],[66608,66608,6.01],[66609,66609,6.14],[66610,66610,5.95],[66611,66611,4.71],[66612,66612,6.22],[66613,66613,5.96],[66614,66614,7.98],[66615,66615,5.24],[66616,66617,6.4],[66618,66618,5.92],[66619,66619,6.21],[66620,66620,6.96],[66621,66621,6.37],[66622,66622,6.07],[66623,66623,6.37],[66624,66624,6.23],[66625,66625,5.34],[66626,66626,4.96],[66627,66627,5.92],[66628,66628,8.41],[66629,66629,5.92],[66630,66630,6.45],[66631,66631,6.05],[66632,66632,8.76],[66633,66633,8.88],[66634,66634,6.41],[66635,66635,7.94],[66636,66636,5.71],[66637,66637,5.47],[66638,66638,8.39],[119040,119294,8.65],[119808,120739,8.65],[120740,120830,10],[131072,131072,0],[131073,131079,3.33],[131080,131080,0],[131081,131085,3.52],[131086,131100,3.33],[131101,131101,0],[131102,131103,3.33],[131104,131104,3.52],[131105,131105,3.94],[131106,131106,4.59],[131107,131107,8.18],[131108,131108,6.36],[131109,131109,10.76],[131110,131110,7.27],[131111,131111,2.69],[131112,131113,4.54],[131114,131114,6.36],[131115,131115,8.18],[131116,131116,3.64],[131117,131117,4.54],[131118,131118,3.64],[131119,131119,4.54],[131120,131129,6.36],[131130,131131,4.54],[131132,131134,8.18],[131135,131135,5.45],[131136,131136,10],[131137,131137,6.84],[131138,131138,6.86],[131139,131139,6.98],[131140,131140,7.71],[131141,131141,6.32],[131142,131142,5.75],[131143,131143,7.75],[131144,131144,7.51],[131145,131145,4.21],[131146,131146,4.55],[131147,131147,6.93],[131148,131148,5.57],[131149,131149,8.43],[131150,131150,7.48],[131151,131151,7.87],[131152,131152,6.03],[131153,131153,7.87],[131154,131154,6.95],[131155,131155,6.84],[131156,131156,6.16],[131157,131157,7.32],[131158,131158,6.84],[131159,131159,9.89],[131160,131160,6.85],[131161,131161,6.15],[131162,131162,6.85],[131163,131165,4.54],[131166,131166,8.18],[131167,131168,6.36],[131169,131169,6.01],[131170,131170,6.23],[131171,131171,5.21],[131172,131172,6.23],[131173,131173,5.96],[131174,131174,3.52],[131175,131175,6.23],[131176,131176,6.33],[131177,131177,2.74],[131178,131178,3.44],[131179,131179,5.92],[131180,131180,2.74],[131181,131181,9.73],[131182,131182,6.33],[131183,131183,6.07],[131184,131185,6.23],[131186,131186,4.27],[131187,131187,5.21],[131188,131188,3.94],[131189,131189,6.33],[131190,131190,5.92],[131191,131191,8.18],[131192,131193,5.92],[131194,131194,5.25],[131195,131195,6.35],[131196,131196,4.54],[131197,131197,6.35],[131198,131198,8.18],[131199,131199,0],[131200,131200,5.56],[131201,131231,5],[131232,131232,3.52],[131233,131233,3.94],[131234,131237,6.36],[131238,131238,4.54],[131239,131240,6.36],[131241,131241,10],[131242,131242,5.45],[131243,131243,6.45],[131244,131244,8.18],[131245,131245,0],[131246,131246,10],[131247,131247,6.36],[131248,131248,5.42],[131249,131249,8.18],[131250,131251,5.42],[131252,131252,6.36],[131253,131253,6.42],[131254,131254,6.36],[131255,131255,3.64],[131256,131256,6.36],[131257,131257,5.42],[131258,131258,5.45],[131259,131259,6.45],[131260,131262,10],[131263,131263,5.45],[131264,131269,6.84],[131270,131270,9.84],[131271,131271,6.98],[131272,131275,6.32],[131276,131279,4.21],[131280,131280,7.75],[131281,131281,7.48],[131282,131286,7.87],[131287,131287,8.18],[131288,131288,7.87],[131289,131292,7.32],[131293,131293,6.15],[131294,131294,6.05],[131295,131295,6.2],[131296,131301,6.01],[131302,131302,9.55],[131303,131303,5.21],[131304,131307,5.96],[131308,131311,2.74],[131312,131312,6.12],[131313,131313,6.33],[131314,131318,6.07],[131319,131319,8.18],[131320,131320,6.07],[131321,131324,6.33],[131325,131325,5.92],[131326,131326,6.23],[131327,131327,5.92],[131328,131328,6.84],[131329,131329,6.01],[131330,131330,6.84],[131331,131331,6.01],[131332,131332,6.84],[131333,131333,6.01],[131334,131334,6.98],[131335,131335,5.21],[131336,131336,6.98],[131337,131337,5.21],[131338,131338,6.98],[131339,131339,5.21],[131340,131340,6.98],[131341,131341,5.21],[131342,131342,7.71],[131343,131343,6.47],[131344,131344,7.75],[131345,131345,6.23],[131346,131346,6.32],[131347,131347,5.96],[131348,131348,6.32],[131349,131349,5.96],[131350,131350,6.32],[131351,131351,5.96],[131352,131352,6.32],[131353,131353,5.96],[131354,131354,6.32],[131355,131355,5.96],[131356,131356,7.75],[131357,131357,6.23],[131358,131358,7.75],[131359,131359,6.23],[131360,131360,7.75],[131361,131361,6.23],[131362,131362,7.75],[131363,131363,6.23],[131364,131364,7.51],[131365,131365,6.33],[131366,131366,7.51],[131367,131367,6.33],[131368,131368,4.21],[131369,131369,2.74],[131370,131370,4.21],[131371,131371,2.74],[131372,131372,4.21],[131373,131373,2.74],[131374,131374,4.21],[131375,131375,2.74],[131376,131376,4.21],[131377,131377,2.74],[131378,131378,8.71],[131379,131379,6.14],[131380,131380,4.55],[131381,131381,3.44],[131382,131382,6.93],[131383,131384,5.92],[131385,131385,5.57],[131386,131386,2.74],[131387,131387,5.57],[131388,131388,2.74],[131389,131389,5.57],[131390,131390,2.96],[131391,131391,5.57],[131392,131392,4.58],[131393,131393,5.62],[131394,131394,2.84],[131395,131395,7.48],[131396,131396,6.33],[131397,131397,7.48],[131398,131398,6.33],[131399,131399,7.48],[131400,131400,6.33],[131401,131401,7.3],[131402,131402,7.48],[131403,131403,6.33],[131404,131404,7.87],[131405,131405,6.07],[131406,131406,7.87],[131407,131407,6.07],[131408,131408,7.87],[131409,131409,6.07],[131410,131410,10.7],[131411,131411,9.81],[131412,131412,6.95],[131413,131413,4.27],[131414,131414,6.95],[131415,131415,4.27],[131416,131416,6.95],[131417,131417,4.27],[131418,131418,6.84],[131419,131419,5.21],[131420,131420,6.84],[131421,131421,5.21],[131422,131422,6.84],[131423,131423,5.21],[131424,131424,6.84],[131425,131425,5.21],[131426,131426,6.16],[131427,131427,3.94],[131428,131428,6.16],[131429,131429,3.94],[131430,131430,6.16],[131431,131431,3.94],[131432,131432,7.32],[131433,131433,6.33],[131434,131434,7.32],[131435,131435,6.33],[131436,131436,7.32],[131437,131437,6.3],[131438,131438,7.32],[131439,131439,6.33],[131440,131440,7.32],[131441,131441,6.33],[131442,131442,7.32],[131443,131443,6.3],[131444,131444,9.89],[131445,131445,8.18],[131446,131446,6.15],[131447,131447,5.92],[131448,131448,6.15],[131449,131449,6.85],[131450,131450,5.25],[131451,131451,6.85],[131452,131452,5.25],[131453,131453,6.85],[131454,131454,5.25],[131455,131455,3],[131456,131456,5],[131457,131457,7.6],[131458,131458,5.74],[131459,131459,5],[131460,131460,5.74],[131461,131461,5],[131462,131463,6.67],[131464,131464,4.44],[131465,131465,7.22],[131466,131466,8.15],[131467,131467,5.74],[131468,131468,5],[131469,131469,4.71],[131470,131470,6.11],[131471,131471,7.55],[131472,131472,5.01],[131473,131473,5.56],[131474,131474,6.36],[131475,131476,7.22],[131477,131477,7.7],[131478,131478,2.53],[131479,131479,3.33],[131480,131480,7.22],[131481,131481,5],[131482,131482,2.78],[131483,131483,4.85],[131484,131484,8.16],[131485,131485,7.22],[131486,131486,5],[131487,131487,7.22],[131488,131488,8.07],[131489,131489,6.07],[131490,131490,9.25],[131491,131491,6.91],[131492,131492,6.5],[131493,131493,5],[131494,131495,5.56],[131496,131496,3.89],[131497,131497,5.82],[131498,131498,3.44],[131499,131499,2.78],[131500,131500,6.11],[131501,131501,2.78],[131502,131502,6.11],[131503,131503,7.56],[131504,131504,6.6],[131505,131505,7.43],[131506,131506,7.22],[131507,131507,7.81],[131508,131508,5],[131509,131509,6.11],[131510,131510,4.44],[131511,131512,5.39],[131513,131514,4.44],[131515,131516,5],[131517,131517,4.43],[131518,131518,4.22],[131519,131519,5],[131520,131520,2],[131521,131521,2.81],[131522,131522,2.49],[131523,131523,3.33],[131524,131524,13.33],[131525,131525,11.66],[131526,131526,9.44],[131527,131527,10],[131528,131528,8.89],[131529,131529,5.56],[131530,131530,11.11],[131531,131531,10],[131532,131532,7.78],[131533,131533,7.22],[131534,131534,4.44],[131535,131535,3.33],[131536,131536,2.78],[131537,131537,7.22],[131538,131538,5],[131539,131539,7.22],[131540,131540,5],[131541,131541,7.22],[131542,131542,5],[131543,131543,7.32],[131544,131544,6.33],[131545,131545,7.22],[131546,131546,5],[131547,131547,7.32],[131548,131548,6.33],[131549,131549,4.44],[131550,131550,7.22],[131551,131551,4.44],[131552,131552,7.22],[131553,131553,4.44],[131554,131554,8.89],[131555,131555,6.67],[131556,131556,7.22],[131557,131557,5],[131558,131558,7.22],[131559,131559,5],[131560,131560,7.22],[131561,131561,5],[131562,131562,7.22],[131563,131563,5],[131564,131564,7.22],[131565,131565,5],[131566,131566,5.39],[131567,131567,4.44],[131568,131568,2.78],[131569,131569,13.33],[131570,131570,11.66],[131571,131571,9.44],[131572,131572,7.75],[131573,131573,6.23],[131574,131574,9.5],[131575,131575,5.6],[131576,131576,7.48],[131577,131577,6.33],[131578,131578,6.84],[131579,131579,6.01],[131580,131580,9.84],[131581,131581,9.55],[131582,131582,7.87],[131583,131583,6.07],[131584,131584,7.22],[131585,131585,4.44],[131586,131586,7.22],[131587,131587,4.44],[131588,131588,6.11],[131589,131589,4.44],[131590,131590,6.11],[131591,131591,4.44],[131592,131592,3.33],[131593,131593,2.78],[131594,131594,3.33],[131595,131595,2.78],[131596,131596,7.22],[131597,131597,5],[131598,131598,7.22],[131599,131599,5],[131600,131600,6.67],[131601,131601,3.33],[131602,131602,6.67],[131603,131603,3.33],[131604,131604,7.22],[131605,131605,5],[131606,131606,7.22],[131607,131607,5],[131608,131608,6.84],[131609,131609,5.21],[131610,131610,6.16],[131611,131611,3.94],[131612,131612,5.63],[131613,131613,3.95],[131614,131614,7.22],[131615,131615,5],[131616,131616,6.5],[131617,131617,5],[131618,131618,6.04],[131619,131619,5],[131620,131620,6.11],[131621,131621,4.44],[131622,131622,7.22],[131623,131623,4.44],[131624,131624,6.11],[131625,131625,4.44],[131626,131626,7.22],[131627,131627,5],[131628,131628,7.22],[131629,131629,5],[131630,131630,7.22],[131631,131631,5],[131632,131632,7.22],[131633,131633,5],[131634,131634,7.22],[131635,131635,5],[131636,131636,2.78],[131637,131637,5],[131638,131638,3.17],[131639,131639,2.78],[131640,131640,7.74],[131641,131641,7.72],[131642,131642,7.22],[131643,131643,6.67],[131644,131644,5],[131645,131646,6.11],[131647,131647,3.89],[131648,131648,4.44],[131649,131649,5.34],[131650,131650,3.97],[131651,131651,6.67],[131652,131652,7.22],[131653,131653,7.25],[131654,131654,6.11],[131655,131655,4.44],[131656,131656,3.89],[131657,131657,2.78],[131658,131658,7.02],[131659,131659,5],[131660,131660,6.67],[131661,131661,3.33],[131662,131662,7.22],[131663,131663,5],[131664,131664,4.44],[131665,131666,5.23],[131667,131667,5],[131668,131669,4.44],[131670,131671,5],[131672,131672,4.44],[131673,131673,5.96],[131674,131674,6.27],[131675,131676,4.2],[131677,131677,5.88],[131678,131678,4.43],[131679,131679,3.33],[131680,131681,5],[131682,131682,4.53],[131683,131683,5],[131684,131684,4.44],[131685,131687,5],[131688,131688,2.78],[131689,131689,2.69],[131690,131693,2.78],[131694,131694,5.78],[131695,131697,7.78],[131698,131699,5],[131700,131700,4.97],[131701,131701,5],[131702,131702,6.3],[131703,131703,6.58],[131704,131704,5.53],[131705,131711,3.33],[131712,131713,4.88],[131714,131714,3.89],[131715,131716,3.33],[131717,131717,4.36],[131718,131718,3.33],[131719,131720,2.78],[131721,131721,5],[131722,131722,5.49],[131723,131723,4.7],[131724,131724,5],[131725,131725,7.22],[131726,131726,5],[131727,131727,4.93],[131728,131728,4.44],[131729,131729,4.96],[131730,131735,4.44],[131736,131736,7.22],[131737,131737,4.72],[131738,131738,4.43],[131739,131739,4.53],[131740,131740,5.35],[131741,131741,2.78],[131742,131742,5],[131743,131743,4.3],[131744,131744,5],[131745,131746,4.44],[131747,131747,8.02],[131748,131748,8.45],[131749,131749,8.53],[131750,131750,5.65],[131751,131751,4.6],[131752,131752,6.49],[131753,131753,7.88],[131754,131754,5.66],[131755,131755,5.6],[131756,131756,5.14],[131757,131757,4.81],[131758,131758,6.25],[131759,131759,6.16],[131760,131761,3.21],[131762,131762,1.55],[131763,131765,2.17],[131766,131766,2.93],[131767,131767,4.28],[131768,131768,2.97],[131769,131769,2.19],[131770,131770,3.65],[131771,131775,3.33],[131776,131777,2.48],[131778,131781,5.64],[131782,131783,6.36],[131784,131784,3.33],[131785,131785,6.36],[131786,131791,3.33],[131792,131793,2.78],[131794,131799,3.33],[131800,131805,6.36],[131806,131806,0],[131807,131807,3.82],[131808,131808,2.93],[131809,131809,1.66],[131810,131810,2.12],[131811,131811,2.89],[131812,131812,2.48],[131813,131817,3.83],[131818,131821,3.33],[131822,131822,4.44],[131823,131831,3.33],[131832,131832,2.78],[131833,131836,3.33],[131837,131838,3.97],[131839,131839,3.33],[131840,131951,0],[131952,131952,4.19],[131953,131953,3.32],[131954,131954,5.87],[131955,131955,4.67],[131956,131957,3.33],[131958,131958,7.21],[131959,131959,5.8],[131960,131961,10],[131962,131962,3.33],[131963,131965,4.44],[131966,131966,4.54],[131967,131967,3.33],[131968,131971,10],[131972,131973,6.36],[131974,131974,6.84],[131975,131975,4.54],[131976,131976,7.51],[131977,131977,8.7],[131978,131978,5.4],[131979,131979,10],[131980,131980,8.81],[131981,131981,10],[131982,131982,7.53],[131983,131983,9.08],[131984,131984,2.74],[131985,131985,6.84],[131986,131986,6.86],[131987,131987,5.66],[131988,131988,7.03],[131989,131989,6.32],[131990,131990,6.85],[131991,131991,7.51],[131992,131992,7.87],[131993,131993,4.21],[131994,131994,6.93],[131995,131995,6.86],[131996,131996,8.43],[131997,131997,7.48],[131998,131998,6.49],[131999,131999,7.87],[132000,132000,7.51],[132001,132001,6.03],[132002,132002,10],[132003,132003,6.72],[132004,132004,6.16],[132005,132005,6.15],[132006,132006,8.19],[132007,132007,6.85],[132008,132008,8.71],[132009,132009,8.18],[132010,132010,4.21],[132011,132011,6.15],[132012,132012,6.23],[132013,132013,5.13],[132014,132014,6.33],[132015,132015,2.74],[132016,132016,6.31],[132017,132017,6.23],[132018,132018,6.2],[132019,132019,5.92],[132020,132020,6.08],[132021,132021,5.13],[132022,132022,4.58],[132023,132023,6.33],[132024,132024,6.24],[132025,132025,2.74],[132026,132027,5.92],[132028,132028,6.4],[132029,132029,5.92],[132030,132030,5.03],[132031,132031,6.07],[132032,132032,6.37],[132033,132033,6.25],[132034,132034,5.08],[132035,132035,6.3],[132036,132036,4.96],[132037,132037,6.31],[132038,132038,7.9],[132039,132039,5.9],[132040,132040,8.22],[132041,132041,8.13],[132042,132042,2.74],[132043,132043,6.31],[132044,132044,6.07],[132045,132045,6.31],[132046,132046,8.13],[132047,132047,5.66],[132048,132048,5.09],[132049,132049,4.95],[132050,132050,7.22],[132051,132051,8.9],[132052,132052,7.22],[132053,132053,5.26],[132054,132054,6.58],[132055,132055,5.6],[132056,132056,7.22],[132057,132057,5],[132058,132058,6.67],[132059,132059,4.2],[132060,132060,5.56],[132061,132061,4.47],[132062,132062,5.76],[132063,132063,4.51],[132064,132064,7.31],[132065,132065,5.54],[132066,132066,8.28],[132067,132067,7.78],[132068,132068,6.16],[132069,132069,5.21],[132070,132070,6.61],[132071,132071,4.44],[132072,132073,5.42],[132074,132074,6.56],[132075,132075,5.81],[132076,132076,6.99],[132077,132077,5.09],[132078,132078,4.75],[132079,132079,3.86],[132080,132080,5.6],[132081,132081,5.09],[132082,132082,4.44],[132083,132083,2.78],[132084,132084,7.22],[132085,132086,4.05],[132087,132087,5.56],[132088,132088,5],[132089,132089,6.67],[132090,132090,8.89],[132091,132091,6.33],[132092,132092,4.99],[132093,132095,6.67],[132096,132097,6.32],[132098,132098,7.92],[132099,132099,5.66],[132100,132100,7.01],[132101,132101,6.84],[132102,132103,4.21],[132104,132104,4.55],[132105,132105,11.18],[132106,132106,11.03],[132107,132107,8.18],[132108,132108,6.93],[132109,132109,7.5],[132110,132110,6.15],[132111,132111,7.51],[132112,132112,6.84],[132113,132114,6.86],[132115,132115,5.66],[132116,132116,7.46],[132117,132117,6.32],[132118,132118,9.73],[132119,132119,6.16],[132120,132121,7.5],[132122,132122,6.93],[132123,132123,7.34],[132124,132124,8.43],[132125,132125,7.51],[132126,132126,7.87],[132127,132127,7.51],[132128,132128,6.03],[132129,132129,6.98],[132130,132130,6.16],[132131,132131,6.15],[132132,132132,8.19],[132133,132133,6.85],[132134,132134,7.61],[132135,132135,7.12],[132136,132136,10.3],[132137,132137,10.45],[132138,132138,7.83],[132139,132139,9.2],[132140,132140,6.81],[132141,132141,7.01],[132142,132142,10.34],[132143,132143,7.06],[132144,132144,6.01],[132145,132145,6.14],[132146,132146,5.95],[132147,132147,4.71],[132148,132148,6.22],[132149,132149,5.96],[132150,132150,7.98],[132151,132151,5.24],[132152,132153,6.4],[132154,132154,5.92],[132155,132155,6.21],[132156,132156,6.96],[132157,132157,6.37],[132158,132158,6.07],[132159,132159,6.37],[132160,132160,6.23],[132161,132161,5.34],[132162,132162,4.96],[132163,132163,5.92],[132164,132164,8.41],[132165,132165,5.92],[132166,132166,6.45],[132167,132167,6.05],[132168,132168,8.76],[132169,132169,8.88],[132170,132170,6.41],[132171,132171,7.94],[132172,132172,5.71],[132173,132173,5.47],[132174,132174,8.39],[132175,132175,6],[132176,132177,5.96],[132178,132178,6.33],[132179,132179,4.71],[132180,132180,5.47],[132181,132181,5.21],[132182,132183,2.74],[132184,132184,3.44],[132185,132186,9.14],[132187,132187,6.33],[132188,132188,5.92],[132189,132189,6.4],[132190,132190,5.92],[132191,132191,6.37],[132192,132192,11.72],[132193,132193,6.33],[132194,132194,6.71],[132195,132195,5.43],[132196,132196,9.68],[132197,132197,6.77],[132198,132198,7.22],[132199,132199,5.9],[132200,132200,10.33],[132201,132201,8.34],[132202,132202,8.96],[132203,132203,6.91],[132204,132204,12.08],[132205,132205,9.35],[132206,132206,5.01],[132207,132207,3.95],[132208,132208,7.38],[132209,132209,6.26],[132210,132210,7.22],[132211,132211,5],[132212,132212,8.13],[132213,132213,5.89],[132214,132214,8.13],[132215,132215,5.89],[132216,132216,11.88],[132217,132217,10.4],[132218,132218,7.63],[132219,132219,5.66],[132220,132220,9.83],[132221,132221,8.13],[132222,132222,11.72],[132223,132223,6.33],[132224,132224,6.67],[132225,132225,4.44],[132226,132226,3.34],[132227,132230,0],[132231,132231,6.36],[132232,132233,0],[132234,132234,7.22],[132235,132235,5.35],[132236,132236,5.74],[132237,132237,4.7],[132238,132238,5.56],[132239,132239,5],[132240,132240,5.66],[132241,132241,4.71],[132242,132242,5.66],[132243,132243,4.71],[132244,132244,6.31],[132245,132245,5.15],[132246,132246,9.73],[132247,132247,7.98],[132248,132248,5.01],[132249,132249,3.95],[132250,132250,6.93],[132251,132251,5.92],[132252,132252,6.93],[132253,132253,5.92],[132254,132254,6.67],[132255,132255,4.86],[132256,132256,7.86],[132257,132257,5.73],[132258,132258,7.51],[132259,132259,6.37],[132260,132260,8.51],[132261,132261,6.23],[132262,132262,10.32],[132263,132263,7.89],[132264,132264,7.87],[132265,132265,6.17],[132266,132266,6.67],[132267,132267,4.44],[132268,132268,6.11],[132269,132269,4.37],[132270,132270,6.15],[132271,132271,5.92],[132272,132272,6.15],[132273,132273,5.92],[132274,132274,6.85],[132275,132275,5.92],[132276,132276,7.97],[132277,132277,6.03],[132278,132278,6.5],[132279,132279,5.03],[132280,132280,7.12],[132281,132281,6.05],[132282,132282,7.12],[132283,132283,6.33],[132284,132284,8.78],[132285,132285,6.89],[132286,132286,8.78],[132287,132287,6.89],[132288,132288,3.33],[132289,132289,8.96],[132290,132290,6.91],[132291,132291,6.67],[132292,132292,5.15],[132293,132293,6.78],[132294,132294,4.99],[132295,132295,7.22],[132296,132296,5.35],[132297,132297,7.22],[132298,132298,5.35],[132299,132299,6.5],[132300,132300,5.03],[132301,132301,8.89],[132302,132302,6.33],[132303,132303,2.78],[132304,132304,7.22],[132305,132305,4.44],[132306,132306,7.22],[132307,132307,4.44],[132308,132308,8.89],[132309,132309,6.67],[132310,132310,6.11],[132311,132311,4.44],[132312,132312,7.55],[132313,132313,5.96],[132314,132314,7.22],[132315,132315,4.44],[132316,132316,8.96],[132317,132317,6.91],[132318,132318,5.01],[132319,132319,3.95],[132320,132320,5.01],[132321,132321,4.44],[132322,132322,7.22],[132323,132323,5.35],[132324,132324,7.22],[132325,132325,5.35],[132326,132326,7.22],[132327,132327,5],[132328,132328,7.87],[132329,132329,6.07],[132330,132330,7.22],[132331,132331,5],[132332,132332,6.6],[132333,132333,4.29],[132334,132334,7.08],[132335,132335,5],[132336,132336,7.08],[132337,132337,5],[132338,132338,7.08],[132339,132339,5],[132340,132340,6.5],[132341,132341,5.03],[132342,132342,5.78],[132343,132343,4.1],[132344,132344,8.72],[132345,132345,6.72],[132346,132346,5.78],[132347,132347,4.1],[132348,132348,7.22],[132349,132349,5],[132350,132350,7.22],[132351,132351,5],[132352,132352,5.74],[132353,132353,5],[132354,132354,8.04],[132355,132355,7.71],[132356,132356,8.02],[132357,132357,7.06],[132358,132358,5.74],[132359,132359,4.53],[132360,132360,9.07],[132361,132361,7.52],[132362,132362,9.5],[132363,132363,7.88],[132364,132364,7.22],[132365,132365,4.53],[132366,132366,6.96],[132367,132367,6.02],[132368,132368,5.01],[132369,132369,3.95],[132370,132370,6.78],[132371,132371,4.99],[132372,132372,7.62],[132373,132373,6.93],[132374,132374,8.3],[132375,132375,6.81],[132376,132376,10.31],[132377,132377,7.37],[132378,132378,7.87],[132379,132379,6.23],[132380,132380,9.89],[132381,132381,8.18],[132382,132382,6.85],[132383,132383,6.31],[132384,132384,9.81],[132385,132385,7.96],[132386,132386,11.11],[132387,132387,9.08],[132388,132388,7.08],[132389,132389,6.18],[132390,132390,6.89],[132391,132391,6.31],[132392,132392,4.44],[132393,132393,4.03],[132394,132394,8.91],[132395,132395,8.13],[132396,132396,5.62],[132397,132397,5.24],[132398,132398,6.83],[132399,132399,6.07],[132400,132400,10],[132401,132401,8.31],[132402,132402,6.96],[132403,132403,7.58],[132404,132404,7.64],[132405,132405,6.96],[132406,132406,6.7],[132407,132407,6.29],[132408,132408,6.96],[132409,132409,8.11],[132410,132410,7.65],[132411,132411,7.02],[132412,132412,4.12],[132413,132413,8.19],[132414,132414,7.11],[132415,132415,7.09],[132416,132416,5.75],[132417,132417,6.49],[132418,132418,7.64],[132419,132419,6.88],[132420,132420,8.04],[132421,132421,6.27],[132422,132422,6.28],[132423,132423,6.54],[132424,132424,7.25],[132425,132425,6.34],[132426,132426,7.93],[132427,132427,6.42],[132428,132428,8.05],[132429,132429,7.25],[132430,132430,7.87],[132431,132431,5.71],[132432,132432,6.73],[132433,132433,6.68],[132434,132434,5.98],[132435,132435,8],[132436,132436,6.17],[132437,132437,7.76],[132438,132438,6.99],[132439,132440,10],[132441,132443,2.11],[132444,132444,2.91],[132445,132445,2.11],[132446,132446,4.42],[132447,132447,4.15],[132448,132448,10],[132449,132449,9.2],[132450,132450,5.97],[132451,132451,6.39],[132452,132452,6.33],[132453,132453,5.97],[132454,132454,6],[132455,132455,4.74],[132456,132456,5.97],[132457,132457,6.68],[132458,132458,6.09],[132459,132459,5.97],[132460,132460,2.65],[132461,132461,9.2],[132462,132462,5.89],[132463,132463,5.97],[132464,132464,5.62],[132465,132466,5.99],[132467,132467,5.76],[132468,132468,6.02],[132469,132469,2.65],[132470,132470,5.99],[132471,132471,4.14],[132472,132472,5.97],[132473,132473,3.44],[132474,132474,9.2],[132475,132475,5.17],[132476,132476,6.19],[132477,132477,5.97],[132478,132478,5.98],[132479,132479,9.31],[132480,132480,6.33],[132481,132481,5.99],[132482,132482,3.21],[132483,132483,9.31],[132484,132484,5.97],[132485,132485,5.84],[132486,132486,6.4],[132487,132487,6.3],[132488,132488,10],[132489,132489,2.54],[132490,132490,4.41],[132491,132492,10],[132493,132494,8.17],[132495,132495,7.32],[132496,132496,10],[132497,132541,0],[132542,132542,3.56],[132543,132543,0],[132544,132544,2.91],[132545,132546,0],[132547,132547,2.78],[132548,132549,0],[132550,132550,3.05],[132551,132551,0],[132552,132559,10],[132560,132560,4.81],[132561,132561,4.55],[132562,132562,3.35],[132563,132563,4.19],[132564,132564,4.71],[132565,132565,2.79],[132566,132566,2.86],[132567,132567,4.77],[132568,132568,4.76],[132569,132569,2.67],[132570,132570,4.52],[132571,132571,4.33],[132572,132572,4.32],[132573,132573,5.07],[132574,132574,4.85],[132575,132575,2.74],[132576,132576,3.05],[132577,132577,4.75],[132578,132579,4.54],[132580,132580,4.4],[132581,132581,4.82],[132582,132582,4.6],[132583,132583,4.74],[132584,132584,4.69],[132585,132585,6.1],[132586,132586,5],[132587,132591,10],[132592,132592,5.57],[132593,132593,5.45],[132594,132594,5.33],[132595,132595,2.09],[132596,132596,3.72],[132597,132607,10],[132608,132608,7.41],[132609,132609,13],[132610,132610,7.59],[132611,132611,9.19],[132612,132612,26.55],[132613,132613,10.94],[132614,132615,6.44],[132616,132616,7.78],[132617,132618,5.25],[132619,132619,2.63],[132620,132620,3.19],[132621,132621,2.39],[132622,132622,6.57],[132623,132623,5.44],[132624,132628,0],[132629,132629,2.69],[132630,132634,0],[132635,132635,3.19],[132636,132636,0],[132637,132637,10],[132638,132638,2.89],[132639,132639,3.56],[132640,132640,8.06],[132641,132641,4.13],[132642,132643,2.07],[132644,132644,4.32],[132645,132645,2.07],[132646,132646,6.38],[132647,132647,2.07],[132648,132648,7.13],[132649,132649,2.82],[132650,132651,7.13],[132652,132654,5.63],[132655,132656,3.37],[132657,132658,4.89],[132659,132660,8.21],[132661,132662,10.98],[132663,132664,5.82],[132665,132666,5.44],[132667,132668,7.04],[132669,132671,6.41],[132672,132672,2.07],[132673,132673,7.89],[132674,132674,5.82],[132675,132675,6.01],[132676,132676,5.06],[132677,132677,3.38],[132678,132678,5.26],[132679,132679,2.82],[132680,132680,4.32],[132681,132682,6.38],[132683,132703,0],[132704,132714,5.26],[132715,132716,3.19],[132717,132717,5.26],[132718,132718,7.13],[132719,132719,5.82],[132720,132720,0],[132721,132723,2.07],[132724,132724,0],[132725,132725,2.07],[132726,132727,4.32],[132728,132728,6.38],[132729,132736,7.13],[132737,132743,5.63],[132744,132752,3.37],[132753,132761,4.89],[132762,132764,8.21],[132765,132766,10.98],[132767,132767,5.82],[132768,132768,5.44],[132769,132774,7.89],[132775,132776,5.82],[132777,132777,8.12],[132778,132778,11.55],[132779,132779,8.12],[132780,132782,6.01],[132783,132788,8.12],[132789,132792,5.06],[132793,132797,5.26],[132798,132798,4.5],[132799,132799,5.63],[132800,132803,2.82],[132804,132811,4.32],[132812,132814,6.38],[132815,132815,4.32],[132816,132817,6.38],[132818,132819,8.12],[132820,132820,2.07],[132821,132821,2.82],[132822,132828,0],[132829,132829,11.23],[132830,132830,10.84],[132831,132840,0],[132841,132841,6],[132842,132845,0],[132846,132846,3.37],[132847,132847,4.89],[132848,132857,5.26],[132858,132858,8.21],[132859,132859,10.98],[132860,132860,5.44],[132861,132861,4.13],[132862,132862,3.38],[132863,132863,4.5],[132864,132864,5.91],[132865,132865,2.97],[132866,132868,2.57],[132869,132869,5.35],[132870,132871,3.86],[132872,132873,3.76],[132874,132874,5.79],[132875,132875,9.23],[132876,132876,6.94],[132877,132877,7.58],[132878,132878,10],[132879,132879,0],[132880,132880,9.3],[132881,132881,0],[132882,132882,9.58],[132883,132884,10.91],[132885,132886,5.39],[132887,132887,9.3],[132888,132888,6.1],[132889,132889,2.75],[132890,132890,7.01],[132891,132892,9.99],[132893,132893,2.43],[132894,132894,12.2],[132895,132895,8.89],[132896,132896,6.56],[132897,132897,8.85],[132898,132898,6.78],[132899,132900,8.86],[132901,132901,9.53],[132902,132902,8.43],[132903,132903,7.97],[132904,132904,6.26],[132905,132905,8.34],[132906,132906,5.39],[132907,132907,9.45],[132908,132908,7.43],[132909,132909,9.58],[132910,132910,10.91],[132911,132911,5.95],[132912,132938,0],[132939,132940,10],[132941,132941,5.83],[132942,132942,8.43],[132943,132943,6.56],[132944,132950,7.13],[132951,132952,5.63],[132953,132954,3.37],[132955,132955,4.89],[132956,132956,8.21],[132957,132959,5.44],[132960,132961,7.89],[132962,132964,8.12],[132965,132966,3.38],[132967,132969,5.26],[132970,132970,5.06],[132971,132972,4.89],[132973,132973,8.21],[132974,132975,5.84],[132976,132976,9.13],[132977,132977,4.08],[132978,132978,5.84],[132979,132980,2.92],[132981,132983,6.41],[132984,132985,3.92],[132986,132988,5.84],[132989,132990,9.13],[132991,132991,5.45],[132992,132992,5.29],[132993,132993,6.78],[132994,132994,8.09],[132995,132995,6.49],[132996,132996,7.12],[132997,132997,5.45],[132998,132998,5.5],[132999,132999,5.33],[133000,133000,5.38],[133001,133001,5.18],[133002,133002,4.49],[133003,133003,6.34],[133004,133004,6.49],[133005,133005,5.76],[133006,133006,5],[133007,133007,7.22],[133008,133008,10.19],[133009,133009,3.9],[133010,133010,5.7],[133011,133011,6.71],[133012,133012,7.28],[133013,133013,4.49],[133014,133014,5.83],[133015,133015,6.46],[133016,133016,6.18],[133017,133018,5.29],[133019,133019,6.34],[133020,133020,6.49],[133021,133023,10.19],[133024,133025,6.49],[133026,133027,5.38],[133028,133028,5],[133029,133029,5.06],[133030,133040,0],[133041,133041,4.73],[133042,133055,10],[133056,133056,5.4],[133057,133057,5.42],[133058,133058,5.45],[133059,133059,5.14],[133060,133061,5.39],[133062,133062,5.25],[133063,133064,5.42],[133065,133065,5.54],[133066,133066,2.65],[133067,133067,6.6],[133068,133068,4.37],[133069,133069,6.19],[133070,133070,5.93],[133071,133071,5.51],[133072,133072,6.45],[133073,133073,5.22],[133074,133074,6.85],[133075,133076,4.19],[133077,133077,5.64],[133078,133078,4.87],[133079,133079,3.77],[133080,133080,7.92],[133081,133081,3.91],[133082,133082,6.5],[133083,133083,7.08],[133084,133084,5.76],[133085,133085,7.33],[133086,133086,5.44],[133087,133087,5.78],[133088,133088,5.21],[133089,133089,5.76],[133090,133090,5.41],[133091,133092,5.44],[133093,133093,5.25],[133094,133094,5.21],[133095,133095,5.29],[133096,133097,4.53],[133098,133098,3.91],[133099,133107,0],[133108,133109,3.38],[133110,133110,5.54],[133111,133111,9.5],[133112,133113,4.81],[133114,133114,4.17],[133115,133119,10],[133120,133120,9.27],[133121,133121,7.76],[133122,133122,7.91],[133123,133123,6.58],[133124,133124,8.58],[133125,133125,9.26],[133126,133126,8.78],[133127,133127,9.45],[133128,133128,9.53],[133129,133129,10.94],[133130,133130,7.36],[133131,133131,6.07],[133132,133132,9.12],[133133,133133,7.27],[133134,133134,7.71],[133135,133135,8.98],[133136,133136,7.54],[133137,133137,10.72],[133138,133138,7.28],[133139,133139,7.13],[133140,133140,8.41],[133141,133141,9.37],[133142,133145,0],[133146,133146,4.05],[133147,133155,0],[133156,133156,2.29],[133157,133159,0],[133160,133160,2.47],[133161,133165,0],[133166,133167,10],[133168,133169,3.59],[133170,133170,5.91],[133171,133172,8.75],[133173,133173,5.79],[133174,133174,6.7],[133175,133175,13.09],[133176,133176,10.75],[133177,133178,10.64],[133179,133179,5.02],[133180,133180,6.16],[133181,133181,8.06],[133182,133182,4.25],[133183,133183,10],[133184,133184,5.34],[133185,133185,8.94],[133186,133186,4.77],[133187,133187,6.62],[133188,133188,9.01],[133189,133189,4.12],[133190,133190,2.49],[133191,133191,7.8],[133192,133192,6.76],[133193,133193,4.42],[133194,133194,6.71],[133195,133195,4.6],[133196,133196,9.91],[133197,133197,5.87],[133198,133198,9.93],[133199,133199,8.54],[133200,133200,7.2],[133201,133201,10.23],[133202,133202,8.62],[133203,133203,8.31],[133204,133204,9.13],[133205,133205,6.42],[133206,133206,7.63],[133207,133207,11.33],[133208,133208,4.76],[133209,133211,0],[133212,133213,10],[133214,133214,5.57],[133215,133279,10],[133280,133281,8.75],[133282,133282,6.76],[133283,133283,7.65],[133284,133284,9.22],[133285,133285,6.76],[133286,133286,6.33],[133287,133287,4.85],[133288,133289,7.58],[133290,133290,5.48],[133291,133291,4.29],[133292,133292,5.81],[133293,133293,2.39],[133294,133294,4.77],[133295,133295,11.27],[133296,133296,8.39],[133297,133297,4.69],[133298,133298,3.37],[133299,133299,6.16],[133300,133300,7.96],[133301,133301,10],[133302,133304,8.75],[133305,133305,3.42],[133306,133306,7.58],[133307,133307,9.26],[133308,133308,6.76],[133309,133309,5.99],[133310,133332,10],[133333,133333,5.25],[133334,133334,3.6],[133335,133335,3.7],[133336,133336,3.1],[133337,133337,2.97],[133338,133343,10],[133344,133344,5.13],[133345,133345,5.63],[133346,133346,10],[133347,133369,0],[133370,133370,10],[133371,133375,0],[133376,133378,6.6],[133379,133379,9.28],[133380,133381,7.25],[133382,133382,9.97],[133383,133384,5.31],[133385,133385,4.75],[133386,133386,6.75],[133387,133387,8.24],[133388,133388,7.16],[133389,133392,5.48],[133393,133396,9.97],[133397,133397,7.7],[133398,133398,7.92],[133399,133399,5.57],[133400,133400,6.35],[133401,133401,6.22],[133402,133402,6.44],[133403,133403,6.78],[133404,133404,7.41],[133405,133405,7.73],[133406,133406,7.01],[133407,133407,5.03],[133408,133408,5.74],[133409,133409,5.44],[133410,133410,5.26],[133411,133411,7.56],[133412,133412,5.56],[133413,133413,6.45],[133414,133414,5.23],[133415,133415,6.32],[133416,133417,5.13],[133418,133418,5.62],[133419,133419,7.94],[133420,133420,5.67],[133421,133421,5.83],[133422,133422,5.79],[133423,133423,6.09],[133424,133424,4.02],[133425,133425,4.08],[133426,133426,7.13],[133427,133428,7.33],[133429,133429,5.48],[133430,133430,7.18],[133431,133431,5.72],[133432,133432,6.8],[133433,133433,5.07],[133434,133434,6.6],[133435,133435,9.33],[133436,133436,6.6],[133437,133437,4.9],[133438,133440,9.33],[133441,133448,6.6],[133449,133452,9.33],[133453,133453,6.6],[133454,133455,9.33],[133456,133456,12.23],[133457,133460,0],[133461,133463,6.6],[133464,133464,7.7],[133465,133465,7.92],[133466,133466,5.57],[133467,133467,7.41],[133468,133468,5.44],[133469,133469,5.26],[133470,133470,7.94],[133471,133471,6.09],[133472,133472,8.24],[133473,133473,7.16],[133474,133475,6.6],[133476,133476,4.77],[133477,133477,7.43],[133478,133478,4.66],[133479,133479,4.83],[133480,133480,4.93],[133481,133481,4.87],[133482,133482,5.06],[133483,133483,5.4],[133484,133484,5.28],[133485,133485,6.51],[133486,133486,4.8],[133487,133487,4.77],[133488,133488,4.99],[133489,133489,3.13],[133490,133491,7.25],[133492,133493,9.97],[133494,133495,7.25],[133496,133496,5.15],[133497,133497,7.41],[133498,133498,6.09],[133499,133499,5.57],[133500,133500,7.24],[133501,133501,4.55],[133502,133502,5.54],[133503,133503,5.67],[133504,133504,5.65],[133505,133505,6.6],[133506,133506,10.97],[133507,133507,10.88],[133508,133508,10],[133509,133509,8.93],[133510,133510,11.67],[133511,133511,4.94],[133512,133512,6.58],[133513,133513,6.68],[133514,133514,6.83],[133515,133515,7.52],[133516,133516,6.14],[133517,133518,10],[133519,133519,7.07],[133520,133520,7.58],[133521,133522,10],[133523,133523,6.01],[133524,133524,7.11],[133525,133525,6.91],[133526,133526,6.57],[133527,133527,6.32],[133528,133528,6.24],[133529,133529,6.87],[133530,133530,5.25],[133531,133531,5.95],[133532,133532,7.96],[133533,133533,7.69],[133534,133534,9.48],[133535,133535,5.46],[133536,133536,5.43],[133537,133537,6.68],[133538,133538,5.47],[133539,133539,6.08],[133540,133540,6.81],[133541,133541,6.76],[133542,133542,5.47],[133543,133543,6.07],[133544,133544,6.29],[133545,133545,10],[133546,133546,6.54],[133547,133547,7.51],[133548,133548,5.49],[133549,133549,7.2],[133550,133550,5.85],[133551,133551,5.63],[133552,133552,5.49],[133553,133553,10],[133554,133554,7.38],[133555,133557,10],[133558,133558,6.97],[133559,133559,5.65],[133560,133560,6.59],[133561,133561,4.94],[133562,133563,10],[133564,133564,6.6],[133565,133565,4.62],[133566,133568,9.33],[133569,133572,6.6],[133573,133574,10],[133575,133576,9.31],[133577,133578,10],[133579,133580,12.04],[133581,133581,6.6],[133582,133582,5.22],[133583,133590,10],[133591,133591,9.33],[133592,133595,10],[133596,133596,6.68],[133597,133597,5.47],[133598,133598,10],[133599,133599,5.63],[133600,133600,7.52],[133601,133601,6.14],[133602,133603,6.6],[133604,133605,10],[133606,133606,5.94],[133607,133607,5.26],[133608,133608,4.78],[133609,133609,7.25],[133610,133610,5.01],[133611,133611,6.09],[133612,133612,6.36],[133613,133613,5.65],[133614,133614,6.93],[133615,133615,6.31],[133616,133616,5.53],[133617,133617,5.49],[133618,133618,4.14],[133619,133619,5.96],[133620,133620,3.98],[133621,133621,6.82],[133622,133622,6.32],[133623,133623,2.73],[133624,133624,5.66],[133625,133625,5.3],[133626,133626,6.33],[133627,133627,2.7],[133628,133632,10],[133633,133634,6.77],[133635,133635,8.87],[133636,133636,10],[133637,133637,7.06],[133638,133638,9.42],[133639,133640,8.02],[133641,133642,5.89],[133643,133646,10],[133647,133647,5.56],[133648,133648,7.06],[133649,133650,10],[133651,133651,5.87],[133652,133652,7.06],[133653,133653,5.67],[133654,133654,5.71],[133655,133655,7.26],[133656,133656,7.09],[133657,133657,5.32],[133658,133658,5.95],[133659,133659,5.76],[133660,133660,5.85],[133661,133661,5.35],[133662,133662,5.66],[133663,133663,5.29],[133664,133664,5.74],[133665,133665,5.36],[133666,133666,5.9],[133667,133667,5.6],[133668,133668,5.08],[133669,133669,5.78],[133670,133670,5.69],[133671,133671,5.57],[133672,133672,5.73],[133673,133673,10],[133674,133674,5.55],[133675,133675,5.53],[133676,133676,5.73],[133677,133677,5.36],[133678,133678,5.59],[133679,133679,6.84],[133680,133680,5.35],[133681,133681,10],[133682,133682,6.52],[133683,133683,6.54],[133684,133684,10],[133685,133685,5.49],[133686,133686,5.59],[133687,133687,10],[133688,133688,5.59],[133689,133689,5.35],[133690,133691,10],[133692,133692,6.77],[133693,133693,10],[133694,133694,9.13],[133695,133696,9.23],[133697,133698,6.77],[133699,133702,10],[133703,133704,6.77],[133705,133706,10],[133707,133709,6.77],[133710,133712,10],[133713,133713,6.77],[133714,133720,10],[133721,133721,5.71],[133722,133722,7.26],[133723,133723,5.85],[133724,133724,5.18],[133725,133725,10],[133726,133726,5.53],[133727,133733,10],[133734,133734,5.08],[133735,133735,4.64],[133736,133736,4.95],[133737,133737,4.91],[133738,133738,5.51],[133739,133739,5.65],[133740,133740,5.02],[133741,133741,5.22],[133742,133743,5.65],[133744,133745,6.77],[133746,133746,5.56],[133747,133747,5.89],[133748,133748,10.49],[133749,133749,6.77],[133750,133760,10],[133761,133762,6.51],[133763,133763,8.9],[133764,133764,10],[133765,133765,9.02],[133766,133766,11.73],[133767,133767,6.27],[133768,133768,6.28],[133769,133769,6.45],[133770,133770,8.97],[133771,133771,8.55],[133772,133772,6.8],[133773,133773,9.02],[133774,133774,10],[133775,133776,9.02],[133777,133777,11.73],[133778,133778,10],[133779,133780,11.73],[133781,133781,5.62],[133782,133782,7.69],[133783,133783,7.16],[133784,133784,6.66],[133785,133785,5.54],[133786,133786,7.02],[133787,133787,7.31],[133788,133788,6.34],[133789,133789,7.59],[133790,133790,7.15],[133791,133791,4.94],[133792,133792,6.03],[133793,133793,5.04],[133794,133794,5.72],[133795,133795,8.31],[133796,133796,5.85],[133797,133797,6.7],[133798,133798,4.88],[133799,133799,6.55],[133800,133800,5.38],[133801,133801,10],[133802,133802,5.72],[133803,133803,5.73],[133804,133804,7.74],[133805,133805,8.07],[133806,133806,5.76],[133807,133807,6.48],[133808,133808,4.74],[133809,133809,10],[133810,133810,6.69],[133811,133811,7.78],[133812,133812,10],[133813,133813,6.05],[133814,133814,7.37],[133815,133815,5.81],[133816,133816,7.33],[133817,133817,5.89],[133818,133819,10],[133820,133820,6.51],[133821,133821,5.19],[133822,133824,9.22],[133825,133829,6.51],[133830,133830,10],[133831,133832,6.51],[133833,133833,9.22],[133834,133834,10],[133835,133836,9.22],[133837,133837,6.51],[133838,133839,10],[133840,133840,11.12],[133841,133855,10],[133856,133856,8.86],[133857,133857,6.8],[133858,133859,6.51],[133860,133861,10],[133862,133862,4.87],[133863,133863,5.06],[133864,133864,4.79],[133865,133865,4.8],[133866,133866,5.29],[133867,133867,5.45],[133868,133868,4.84],[133869,133869,6.34],[133870,133870,4.72],[133871,133871,5.12],[133872,133872,4.1],[133873,133873,9.29],[133874,133880,10],[133881,133881,7.16],[133882,133888,10],[133889,133889,5.1],[133890,133890,8.12],[133891,133891,9.17],[133892,133892,10],[133893,133893,6.27],[133894,133894,8.21],[133895,133895,6.66],[133896,133896,6.73],[133897,133897,6.63],[133898,133898,6.85],[133899,133899,6.81],[133900,133900,5.08],[133901,133902,10],[133903,133903,6.42],[133904,133904,8.21],[133905,133906,10],[133907,133907,6.39],[133908,133908,8.2],[133909,133909,6.61],[133910,133910,6.58],[133911,133911,6.55],[133912,133912,6.48],[133913,133913,7.1],[133914,133914,6.35],[133915,133915,6.43],[133916,133916,6.61],[133917,133917,6.41],[133918,133918,6.51],[133919,133919,6.38],[133920,133920,7.16],[133921,133922,6.43],[133923,133923,6.45],[133924,133924,6.43],[133925,133925,6.27],[133926,133926,6.34],[133927,133927,5.81],[133928,133928,6.34],[133929,133929,10],[133930,133930,6.48],[133931,133931,7.89],[133932,133932,6.35],[133933,133933,6.75],[133934,133934,6.48],[133935,133935,6.83],[133936,133936,6.54],[133937,133937,10],[133938,133938,7.01],[133939,133939,6.61],[133940,133940,10],[133941,133941,6.35],[133942,133942,6.58],[133943,133943,6.6],[133944,133944,6.43],[133945,133945,6.2],[133946,133947,10],[133948,133948,5.1],[133949,133949,3.46],[133950,133950,6.99],[133951,133951,5.1],[133952,133952,8.06],[133953,133956,5.1],[133957,133958,10],[133959,133960,9.61],[133961,133962,10],[133963,133964,11.5],[133965,133965,5.1],[133966,133973,10],[133974,133974,5.1],[133975,133975,6.99],[133976,133979,10],[133980,133981,6.43],[133982,133982,10],[133983,133983,7.32],[133984,133984,6.86],[133985,133985,5.08],[133986,133987,5.1],[133988,133989,10],[133990,133999,5.72],[134000,134000,5.58],[134001,134001,5.73],[134002,134002,2.21],[134003,134003,3.79],[134004,134004,5.28],[134005,134005,4.74],[134006,134006,5.47],[134007,134007,6.15],[134008,134017,10],[134018,134018,5.62],[134019,134019,6.92],[134020,134020,10],[134021,134021,8.87],[134022,134022,10.63],[134023,134023,9.35],[134024,134024,6.26],[134025,134025,9.48],[134026,134026,11.23],[134027,134029,10],[134030,134031,7.1],[134032,134032,7.83],[134033,134033,10],[134034,134035,7.51],[134036,134036,15.39],[134037,134037,7.1],[134038,134040,10],[134041,134041,8.28],[134042,134042,6.48],[134043,134043,10],[134044,134044,7.53],[134045,134045,10],[134046,134046,9.5],[134047,134047,7.73],[134048,134050,10],[134051,134051,12.36],[134052,134052,6.79],[134053,134055,10],[134056,134056,6.69],[134057,134057,9.21],[134058,134058,5.85],[134059,134061,10],[134062,134062,6.68],[134063,134063,6.89],[134064,134064,5.34],[134065,134065,6.35],[134066,134066,7.96],[134067,134067,8.49],[134068,134068,6.68],[134069,134069,7.3],[134070,134070,9.06],[134071,134071,9.26],[134072,134072,10.02],[134073,134073,11.96],[134074,134077,10],[134078,134078,10.62],[134079,134079,7.27],[134080,134080,5.83],[134081,134081,9.55],[134082,134082,11.09],[134083,134085,10],[134086,134086,13],[134087,134087,11.69],[134088,134088,14.64],[134089,134089,10],[134090,134090,17.28],[134091,134091,16.2],[134092,134092,20.53],[134093,134093,5.62],[134094,134095,10],[134096,134096,8.37],[134097,134102,10],[134103,134103,13.66],[134104,134115,10],[134116,134116,3.28],[134117,134117,4.99],[134118,134118,5.33],[134119,134119,6.27],[134120,134120,6.28],[134121,134121,5.94],[134122,134122,6],[134123,134123,7.39],[134124,134124,8.29],[134125,134125,6.36],[134126,134126,8.61],[134127,134127,8.2],[134128,134128,7.07],[134129,134129,6.9],[134130,134130,7.77],[134131,134131,8.25],[134132,134132,7.23],[134133,134133,14.56],[134134,134134,7.38],[134135,134135,11.57],[134136,134136,12.46],[134137,134137,7.34],[134138,134138,10.21],[134139,134143,10],[134144,134144,6.6],[134145,134145,10.07],[134146,134146,12.81],[134147,134147,10.37],[134148,134148,10],[134149,134149,8.79],[134150,134150,8.56],[134151,134151,7.75],[134152,134152,10.1],[134153,134153,8.97],[134154,134154,12.25],[134155,134155,14.97],[134156,134156,9.98],[134157,134157,10],[134158,134159,7.65],[134160,134160,8.06],[134161,134161,10],[134162,134163,7.51],[134164,134164,7.73],[134165,134165,5.16],[134166,134166,9],[134167,134167,5.99],[134168,134168,11.05],[134169,134169,7.69],[134170,134171,8.04],[134172,134172,7.65],[134173,134173,13.13],[134174,134174,10.26],[134175,134175,8.49],[134176,134176,6.21],[134177,134178,8.2],[134179,134179,8.33],[134180,134180,8.18],[134181,134183,8.16],[134184,134184,7.6],[134185,134185,10],[134186,134187,7.64],[134188,134189,8.14],[134190,134190,11.07],[134191,134191,13.13],[134192,134192,6.21],[134193,134193,8.83],[134194,134194,7.73],[134195,134195,6.48],[134196,134196,8.83],[134197,134197,7.61],[134198,134198,5.57],[134199,134199,7.61],[134200,134200,7.63],[134201,134201,10.82],[134202,134204,10],[134205,134205,6.34],[134206,134206,9.86],[134207,134208,6.6],[134209,134209,10.08],[134210,134210,12.6],[134211,134211,10.85],[134212,134212,13.87],[134213,134213,10],[134214,134216,6.6],[134217,134217,10],[134218,134219,6.6],[134220,134220,9.93],[134221,134221,6.6],[134222,134228,10],[134229,134230,6.6],[134231,134231,10],[134232,134232,8.04],[134233,134233,7.65],[134234,134234,8.16],[134235,134239,10],[134240,134240,18.31],[134241,134241,13.46],[134242,134243,6.6],[134244,134245,10],[134246,134246,5.8],[134247,134247,5.68],[134248,134248,7],[134249,134249,5],[134250,134250,5.87],[134251,134251,6.47],[134252,134252,4.57],[134253,134253,5.16],[134254,134254,5.9],[134255,134255,4.57],[134256,134263,10],[134264,134264,5.25],[134265,134265,2.51],[134266,134266,4.76],[134267,134267,7.46],[134268,134268,6.76],[134269,134269,6.69],[134270,134270,6.64],[134271,134271,7.86],[134272,134272,5.56],[134273,134273,5.61],[134274,134274,11.11],[134275,134275,8.66],[134276,134276,10],[134277,134277,8.63],[134278,134278,8.41],[134279,134279,7.11],[134280,134280,10.1],[134281,134281,12.22],[134282,134282,15.97],[134283,134283,11.91],[134284,134284,8.46],[134285,134285,10],[134286,134287,7.87],[134288,134288,8.07],[134289,134289,10],[134290,134291,7.75],[134292,134292,7.78],[134293,134293,5.74],[134294,134294,8.49],[134295,134295,6.48],[134296,134296,9.96],[134297,134297,7.75],[134298,134298,7.97],[134299,134299,8.43],[134300,134300,7.75],[134301,134301,13.79],[134302,134302,9.66],[134303,134303,8.15],[134304,134304,6.51],[134305,134306,7.68],[134307,134307,8.64],[134308,134308,6.22],[134309,134311,7.65],[134312,134312,7.11],[134313,134313,10],[134314,134315,7.92],[134316,134316,8],[134317,134317,8.05],[134318,134318,11.56],[134319,134319,13.36],[134320,134320,6.51],[134321,134321,8.93],[134322,134322,7.59],[134323,134323,7.1],[134324,134324,10],[134325,134325,7.94],[134326,134326,6.3],[134327,134327,8.01],[134328,134328,7.09],[134329,134329,8.01],[134330,134331,10],[134332,134332,5.61],[134333,134333,4.46],[134334,134334,10.1],[134335,134335,8.88],[134336,134336,12.96],[134337,134337,9.25],[134338,134338,13.07],[134339,134339,6.84],[134340,134340,10.55],[134341,134341,10],[134342,134342,5.61],[134343,134343,9.69],[134344,134344,7.44],[134345,134345,10],[134346,134346,13.07],[134347,134347,17.15],[134348,134348,9.91],[134349,134349,8.74],[134350,134356,10],[134357,134357,9.69],[134358,134358,7.44],[134359,134365,10],[134366,134366,8.69],[134367,134367,10],[134368,134368,15.7],[134369,134369,12.86],[134370,134371,6.34],[134372,134373,10],[134374,134383,6.88],[134384,134384,10],[134385,134385,5.31],[134386,134386,7.52],[134387,134400,10],[134401,134401,0],[134402,134402,3.85],[134403,134403,2.83],[134404,134404,10],[134405,134405,12.39],[134406,134406,13.72],[134407,134407,8.99],[134408,134408,16.3],[134409,134409,6.36],[134410,134410,13.61],[134411,134411,8.03],[134412,134412,9.98],[134413,134413,10],[134414,134415,11.13],[134416,134416,16.33],[134417,134417,10],[134418,134418,6.36],[134419,134419,10.49],[134420,134420,13.52],[134421,134421,8.85],[134422,134422,7.99],[134423,134423,7.52],[134424,134424,12.05],[134425,134425,9.69],[134426,134426,8.3],[134427,134427,11.58],[134428,134428,7.97],[134429,134429,14.45],[134430,134430,12.57],[134431,134431,5.18],[134432,134432,5.8],[134433,134433,10.94],[134434,134434,11.26],[134435,134435,12.42],[134436,134436,8.72],[134437,134437,7.36],[134438,134438,5.56],[134439,134440,8.4],[134441,134441,9.08],[134442,134442,7.13],[134443,134443,10.26],[134444,134444,11.44],[134445,134445,5.79],[134446,134446,5.8],[134447,134447,8.82],[134448,134448,6.11],[134449,134449,5.71],[134450,134450,7.68],[134451,134451,6.5],[134452,134452,5.75],[134453,134453,7.99],[134454,134454,8.59],[134455,134455,10.11],[134456,134456,10.94],[134457,134457,11.02],[134458,134458,7.36],[134459,134460,10],[134461,134461,3.81],[134462,134462,9.81],[134463,134463,8.1],[134464,134464,8.02],[134465,134465,8.69],[134466,134466,8.75],[134467,134467,9.25],[134468,134468,9.29],[134469,134469,10],[134470,134470,11.43],[134471,134471,10.57],[134472,134472,16.67],[134473,134473,10],[134474,134474,15.55],[134475,134475,14.94],[134476,134476,13.3],[134477,134477,5.99],[134478,134478,1.73],[134479,134486,10],[134487,134487,13.3],[134488,134494,10],[134495,134495,11.89],[134496,134496,7.99],[134497,134497,11.01],[134498,134498,6.91],[134499,134499,7.51],[134500,134501,10],[134502,134502,5.8],[134503,134503,7.82],[134504,134504,7.99],[134505,134505,9.86],[134506,134506,6.18],[134507,134507,8.82],[134508,134508,12.05],[134509,134509,4.4],[134510,134510,7.99],[134511,134511,9.22],[134512,134512,8.4],[134513,134513,8.76],[134514,134514,11.95],[134515,134515,6.87],[134516,134516,7.49],[134517,134517,10.09],[134518,134520,10],[134521,134521,10.55],[134522,134522,13.41],[134523,134523,9.22],[134524,134524,6.18],[134525,134525,9.68],[134526,134526,8.51],[134527,134527,9.65],[134528,134529,10],[134530,134530,4.16],[134531,134531,2.78],[134532,134532,10],[134533,134533,5.69],[134534,134534,8.34],[134535,134535,8.23],[134536,134536,8.24],[134537,134537,5.74],[134538,134538,5.61],[134539,134539,5.95],[134540,134540,9.85],[134541,134541,9.69],[134542,134542,13.11],[134543,134543,7.21],[134544,134544,11.22],[134545,134545,6.44],[134546,134546,6.48],[134547,134547,10.52],[134548,134548,6.55],[134549,134549,6.53],[134550,134550,10.73],[134551,134553,10],[134554,134554,7.43],[134555,134555,7.03],[134556,134556,6.57],[134557,134557,5.88],[134558,134558,6.66],[134559,134559,7.92],[134560,134560,6.26],[134561,134561,5.61],[134562,134562,5.49],[134563,134563,11.84],[134564,134564,10.73],[134565,134565,9.83],[134566,134566,6.5],[134567,134567,5.95],[134568,134568,6.26],[134569,134569,6.77],[134570,134570,6.46],[134571,134571,8.9],[134572,134572,8.11],[134573,134573,6.93],[134574,134574,5.99],[134575,134575,5.12],[134576,134576,6.57],[134577,134577,6.81],[134578,134578,10],[134579,134579,6.53],[134580,134580,5.49],[134581,134581,6.43],[134582,134582,6.75],[134583,134583,7.74],[134584,134584,6.72],[134585,134585,6.57],[134586,134586,6.18],[134587,134587,5.46],[134588,134588,10],[134589,134589,6.18],[134590,134591,10],[134592,134592,6.13],[134593,134593,6.88],[134594,134594,5.45],[134595,134595,6.45],[134596,134596,7.42],[134597,134597,6.72],[134598,134598,6.26],[134599,134601,10],[134602,134602,6.05],[134603,134606,10],[134607,134607,8.56],[134608,134608,8.2],[134609,134609,8.29],[134610,134612,5.8],[134613,134613,10],[134614,134614,5.8],[134615,134615,10],[134616,134616,9.4],[134617,134617,10.53],[134618,134618,10.96],[134619,134619,15.66],[134620,134620,13.34],[134621,134621,13.04],[134622,134622,14.52],[134623,134623,10.03],[134624,134641,10],[134642,134642,12.92],[134643,134643,4.14],[134644,134644,10.97],[134645,134655,10],[134656,134656,1.95],[134657,134657,6],[134658,134658,5.72],[134659,134659,5.69],[134660,134660,6.39],[134661,134661,6.29],[134662,134662,6.35],[134663,134663,4.77],[134664,134664,5.28],[134665,134665,6.1],[134666,134666,5.86],[134667,134667,5.91],[134668,134668,8.18],[134669,134669,8.15],[134670,134671,6.61],[134672,134672,5.32],[134673,134673,6.92],[134674,134674,8.52],[134675,134675,8.18],[134676,134676,6.3],[134677,134677,6.29],[134678,134678,6],[134679,134679,6.3],[134680,134680,5.52],[134681,134681,6.19],[134682,134683,6.51],[134684,134685,5.95],[134686,134686,6.71],[134687,134687,6.76],[134688,134688,6.64],[134689,134689,6.3],[134690,134690,6.11],[134691,134691,4.78],[134692,134692,5.98],[134693,134693,5.82],[134694,134694,6.64],[134695,134695,5.11],[134696,134696,6.25],[134697,134697,6.48],[134698,134698,5.96],[134699,134699,6.32],[134700,134700,6.71],[134701,134701,5.78],[134702,134702,5.76],[134703,134703,6.14],[134704,134704,4.36],[134705,134705,5.08],[134706,134706,5.06],[134707,134707,10.23],[134708,134714,5.08],[134715,134718,10],[134719,134719,6.86],[134720,134720,3.16],[134721,134721,5.8],[134722,134722,5.11],[134723,134723,5.55],[134724,134724,4.22],[134725,134725,5.16],[134726,134726,6.05],[134727,134734,5.08],[134735,134735,7.32],[134736,134736,5.85],[134737,134737,6.14],[134738,134738,6.55],[134739,134739,6.78],[134740,134740,6.15],[134741,134741,6.03],[134742,134742,5.79],[134743,134743,7.63],[134744,134744,6.2],[134745,134745,6.68],[134746,134746,7.75],[134747,134747,12.73],[134748,134784,10],[134785,134785,6.18],[134786,134786,5.41],[134787,134787,10],[134788,134788,5.67],[134789,134790,10],[134791,134791,5.11],[134792,134792,5.56],[134793,134793,10],[134794,134794,5.49],[134795,134796,10],[134797,134797,5.67],[134798,134803,10],[134804,134804,5.83],[134805,134805,6.02],[134806,134806,6.23],[134807,134807,6.41],[134808,134808,10],[134809,134809,6.14],[134810,134810,5.27],[134811,134811,5.31],[134812,134812,6.75],[134813,134813,6.67],[134814,134814,6.65],[134815,134815,6.69],[134816,134816,10],[134817,134817,6.18],[134818,134818,5.59],[134819,134819,5.41],[134820,134820,10],[134821,134821,5.55],[134822,134822,10],[134823,134823,5.35],[134824,134825,10],[134826,134826,5.55],[134827,134827,7.68],[134828,134828,10],[134829,134829,5.55],[134830,134830,5.51],[134831,134831,5.28],[134832,134832,5.13],[134833,134833,0],[134834,134834,4.3],[134835,134841,0],[134842,134842,10],[134843,134844,0],[134845,134845,4.54],[134846,134847,10],[134848,134848,3.41],[134849,134849,5.91],[134850,134850,3.37],[134851,134851,3.4],[134852,134852,3.33],[134853,134853,10],[134854,134854,5.87],[134855,134855,10],[134856,134859,0],[134860,134860,3.25],[134861,134861,0],[134862,134863,10],[134864,134864,5.58],[134865,134865,5.08],[134866,134866,4.98],[134867,134867,5.75],[134868,134868,5.11],[134869,134869,5.27],[134870,134870,6.23],[134871,134871,6.28],[134872,134872,6.65],[134873,134873,6.27],[134874,134875,10],[134876,134877,10.01],[134878,134911,10],[134912,134912,6.23],[134913,134913,4.94],[134914,134915,7.69],[134916,134916,11.57],[134917,134917,5.97],[134918,134918,11.57],[134919,134919,14.87],[134920,134920,3.85],[134921,134921,5.77],[134922,134922,6.44],[134923,134924,1.6],[134925,134925,2.45],[134926,134926,4.58],[134927,134928,2.45],[134929,134929,3.13],[134930,134930,10.52],[134931,134931,5.95],[134932,134932,3.59],[134933,134933,6.48],[134934,134934,4.72],[134935,134935,7.52],[134936,134937,0],[134938,134938,2.93],[134939,134940,5.03],[134941,134941,3.05],[134942,134942,4.98],[134943,134943,5.31],[134944,134945,3.41],[134946,134946,5.43],[134947,134947,5.17],[134948,134948,6.92],[134949,134949,4.98],[134950,134951,5.69],[134952,134952,4.73],[134953,134953,5.07],[134954,134954,5.09],[134955,134955,5.43],[134956,134956,5.17],[134957,134957,6.92],[134958,134958,4.98],[134959,134960,5.69],[134961,134961,5.05],[134962,134962,5.07],[134963,134963,4.97],[134964,134964,5.25],[134965,134965,0],[134966,134966,4.97],[134967,134967,0],[134968,134968,5.47],[134969,134969,0],[134970,134970,13.58],[134971,134971,13.3],[134972,134972,4.88],[134973,134973,4.92],[134974,134974,2.86],[134975,134975,4.28],[134976,134978,5.17],[134979,134979,5.07],[134980,134980,4.73],[134981,134981,5.34],[134982,134982,5.17],[134983,134983,4.73],[134984,134984,10],[134985,134985,4.64],[134986,134988,4.73],[134989,134989,5.07],[134990,134993,4.73],[134994,134994,5.07],[134995,134995,4.73],[134996,134998,5.17],[134999,134999,5.07],[135000,135000,5.17],[135001,135001,5.34],[135002,135002,5.17],[135003,135003,4.73],[135004,135004,5.07],[135005,135006,4.73],[135007,135007,4.9],[135008,135008,4.73],[135009,135009,5.6],[135010,135010,4.9],[135011,135011,5.34],[135012,135014,5.17],[135015,135015,4.73],[135016,135016,6.04],[135017,135017,5.07],[135018,135018,4.9],[135019,135019,5.24],[135020,135020,5.3],[135021,135024,10],[135025,135025,5.44],[135026,135026,0],[135027,135027,5.44],[135028,135028,5.52],[135029,135029,10.96],[135030,135030,5.07],[135031,135031,10.51],[135032,135032,5.07],[135033,135033,10.51],[135034,135038,0],[135039,135039,4.62],[135040,135040,0],[135041,135041,5.44],[135042,135044,0],[135045,135045,5.16],[135046,135048,0],[135049,135049,5.25],[135050,135050,4.77],[135051,135051,5.23],[135052,135055,10],[135056,135063,5.07],[135064,135064,10],[135065,135100,5.07],[135101,135101,10],[135102,135102,5.11],[135103,135103,5.13],[135104,135104,5.8],[135105,135105,3.92],[135106,135106,4.9],[135107,135107,5.87],[135108,135108,4.13],[135109,135109,3.26],[135110,135110,0],[135111,135111,6.47],[135112,135112,3.55],[135113,135113,5.55],[135114,135114,5.98],[135115,135115,5.81],[135116,135116,6.16],[135117,135117,10],[135118,135118,6.32],[135119,135119,4.98],[135120,135120,20.12],[135121,135121,4.75],[135122,135122,2.1],[135123,135123,11.52],[135124,135124,4.86],[135125,135125,6.38],[135126,135126,6.57],[135127,135127,6.09],[135128,135128,6.35],[135129,135167,10],[135168,135168,11.24],[135169,135169,6.76],[135170,135170,6.68],[135171,135171,11.25],[135172,135172,6.5],[135173,135173,6.74],[135174,135174,11.27],[135175,135175,6.84],[135176,135176,8.69],[135177,135177,6.61],[135178,135178,11.09],[135179,135179,6.66],[135180,135180,6.59],[135181,135181,6.66],[135182,135182,6.77],[135183,135183,12.55],[135184,135184,11.24],[135185,135185,11.25],[135186,135186,6.4],[135187,135187,6.74],[135188,135188,5.7],[135189,135189,6.76],[135190,135190,6.75],[135191,135191,6.76],[135192,135192,11.24],[135193,135193,6.76],[135194,135194,11.26],[135195,135195,6.89],[135196,135196,11.26],[135197,135197,6.74],[135198,135198,11.27],[135199,135199,11.24],[135200,135200,6.66],[135201,135201,10.68],[135202,135202,11.23],[135203,135203,11],[135204,135204,13.43],[135205,135206,6.61],[135207,135207,6.31],[135208,135208,6.87],[135209,135209,13.69],[135210,135210,24.52],[135211,135211,8.61],[135212,135212,10.49],[135213,135216,5.94],[135217,135217,12.12],[135218,135223,5.94],[135224,135224,9.4],[135225,135226,5.94],[135227,135227,8.51],[135228,135228,8.23],[135229,135230,5.94],[135231,135231,15.84],[135232,135232,6.52],[135233,135233,6.23],[135234,135234,6.75],[135235,135236,6.18],[135237,135237,6.75],[135238,135238,7.2],[135239,135239,6.46],[135240,135240,6.52],[135241,135241,7.2],[135242,135242,2.7],[135243,135243,4.62],[135244,135244,6.66],[135245,135245,8.92],[135246,135246,6.59],[135247,135247,11.37],[135248,135248,6.68],[135249,135249,6.76],[135250,135251,6.61],[135252,135252,6.6],[135253,135253,6.51],[135254,135254,9.63],[135255,135255,9.67],[135256,135257,5.94],[135258,135258,6.18],[135259,135259,8.69],[135260,135260,6.69],[135261,135261,6.59],[135262,135264,5.94],[135265,135265,6.89],[135266,135266,9.3],[135267,135267,12.55],[135268,135268,9.95],[135269,135269,6.67],[135270,135270,6.53],[135271,135271,10.28],[135272,135272,9.3],[135273,135273,10.17],[135274,135276,10.28],[135277,135277,10.17],[135278,135278,12.53],[135279,135279,11.02],[135280,135280,11.04],[135281,135284,5.94],[135285,135285,6.67],[135286,135286,6.72],[135287,135287,6.74],[135288,135288,11.25],[135289,135289,11.26],[135290,135290,11.04],[135291,135291,11.26],[135292,135292,11.29],[135293,135293,11.28],[135294,135294,10.99],[135295,135295,6.77],[135296,135296,11.24],[135297,135297,6.53],[135298,135298,5.94],[135299,135299,9.3],[135300,135300,11.86],[135301,135302,5.94],[135303,135303,9.41],[135304,135305,9.4],[135306,135306,10.28],[135307,135307,9.4],[135308,135308,12.48],[135309,135309,5.94],[135310,135310,6.73],[135311,135311,9.4],[135312,135312,7.61],[135313,135313,6.46],[135314,135314,6.78],[135315,135315,7.2],[135316,135316,7.34],[135317,135318,7.18],[135319,135319,5.55],[135320,135321,6.53],[135322,135322,9.4],[135323,135323,9.41],[135324,135324,10.28],[135325,135325,5.94],[135326,135326,3.36],[135327,135327,9.54],[135328,135328,6.62],[135329,135329,6.77],[135330,135330,7.08],[135331,135331,6.96],[135332,135332,6.09],[135333,135333,7.9],[135334,135334,6.64],[135335,135335,7.85],[135336,135336,5.6],[135337,135337,6.34],[135338,135338,7.82],[135339,135339,7.01],[135340,135340,6.29],[135341,135341,6.82],[135342,135342,7.05],[135343,135343,6.92],[135344,135344,7.34],[135345,135345,6.15],[135346,135346,5.92],[135347,135347,6.8],[135348,135348,6.79],[135349,135349,7.05],[135350,135350,6.43],[135351,135352,6.23],[135353,135353,6.29],[135354,135354,6.33],[135355,135355,7.7],[135356,135356,5.92],[135357,135357,6.62],[135358,135358,6.29],[135359,135359,6.72],[135360,135360,7.35],[135361,135361,5.76],[135362,135362,6.06],[135363,135363,6.05],[135364,135364,6.76],[135365,135365,7.92],[135366,135375,10],[135376,135376,5.18],[135377,135377,5.69],[135378,135378,5.27],[135379,135379,8.31],[135380,135380,5.39],[135381,135381,5.34],[135382,135382,6.21],[135383,135383,8.47],[135384,135384,5.38],[135385,135385,5.22],[135386,135386,9.72],[135387,135387,5.76],[135388,135388,5.77],[135389,135389,7.36],[135390,135390,5.34],[135391,135391,5.57],[135392,135392,7.39],[135393,135393,5.52],[135394,135394,6.63],[135395,135395,5.57],[135396,135396,8],[135397,135397,5.35],[135398,135398,7.36],[135399,135399,5.51],[135400,135400,5.8],[135401,135401,5.66],[135402,135402,5.88],[135403,135403,5.75],[135404,135404,5.8],[135405,135405,6.02],[135406,135406,5.75],[135407,135407,5.18],[135408,135408,5.3],[135409,135409,5.93],[135410,135410,5.3],[135411,135412,5.43],[135413,135413,5.91],[135414,135414,7.34],[135415,135415,5.18],[135416,135416,5.56],[135417,135417,5.27],[135418,135418,5.18],[135419,135419,5.37],[135420,135420,3.7],[135421,135421,5.77],[135422,135422,5.38],[135423,135423,5.69],[135424,135442,8.65],[135443,135518,10],[135519,135520,0],[135521,135541,8.65],[135542,135581,10],[135582,135582,8.65],[135583,135585,10],[135586,135586,8.65],[135587,135591,10],[135592,135618,8.65],[135619,135679,10],[135680,135680,6.94],[135681,135681,9.01],[135682,135682,6.45],[135683,135683,6.65],[135684,135684,6.54],[135685,135685,7.29],[135686,135686,8.97],[135687,135687,10.89],[135688,135688,6.47],[135689,135689,8.31],[135690,135690,8.3],[135691,135691,6.47],[135692,135692,8.56],[135693,135693,7.33],[135694,135694,10.53],[135695,135695,8.61],[135696,135696,10.21],[135697,135697,12.18],[135698,135698,12.17],[135699,135699,10.21],[135700,135700,12.12],[135701,135701,10.21],[135702,135702,10.26],[135703,135703,12.25],[135704,135704,10.87],[135705,135705,13.48],[135706,135706,11.48],[135707,135707,10.87],[135708,135708,11.45],[135709,135710,10.87],[135711,135711,11.47],[135712,135712,9.88],[135713,135713,12.24],[135714,135714,10.09],[135715,135715,9.87],[135716,135716,10.11],[135717,135717,11.07],[135718,135718,9.74],[135719,135719,10.08],[135720,135720,6.13],[135721,135721,7.1],[135722,135722,6.91],[135723,135723,9.02],[135724,135724,8.33],[135725,135725,6.23],[135726,135726,8.18],[135727,135727,9.02],[135728,135728,6.76],[135729,135729,8.8],[135730,135730,8.77],[135731,135731,6.76],[135732,135732,8.72],[135733,135734,6.76],[135735,135735,8.85],[135736,135736,7.61],[135737,135737,9.19],[135738,135738,9.16],[135739,135739,7.61],[135740,135740,9.1],[135741,135741,8],[135742,135742,7.61],[135743,135743,9.23],[135744,135751,8.51],[135752,135752,9.7],[135753,135753,10],[135754,135754,12.24],[135755,135756,8.51],[135757,135757,12.27],[135758,135759,10],[135760,135764,8.8],[135765,135765,9.69],[135766,135766,8.8],[135767,135767,10],[135768,135768,9.87],[135769,135769,10],[135770,135770,12.41],[135771,135772,8.8],[135773,135773,10.66],[135774,135775,10],[135776,135776,7.12],[135777,135777,9],[135778,135778,8.97],[135779,135779,7.13],[135780,135780,8.92],[135781,135781,9.26],[135782,135782,7.12],[135783,135783,9.04],[135784,135784,7.61],[135785,135785,9.19],[135786,135786,9.16],[135787,135787,7.61],[135788,135788,9.1],[135789,135789,9.46],[135790,135790,7.61],[135791,135791,9.23],[135792,135794,7.76],[135795,135795,7.82],[135796,135796,7.86],[135797,135800,7.76],[135801,135801,7.77],[135802,135802,7.76],[135803,135803,7.82],[135804,135804,7.76],[135805,135805,9.13],[135806,135806,7.91],[135807,135807,7.76],[135808,135808,6.93],[135809,135809,8.66],[135810,135810,8.17],[135811,135811,6.94],[135812,135812,8.06],[135813,135813,6.69],[135814,135815,10.22],[135816,135816,10.35],[135817,135817,10],[135818,135818,9.81],[135819,135819,7.58],[135820,135820,8.06],[135821,135821,9.81],[135822,135823,10],[135824,135824,5.31],[135825,135825,7.03],[135826,135826,6.54],[135827,135827,6.33],[135828,135828,6.44],[135829,135829,6.84],[135830,135830,7.91],[135831,135831,7.37],[135832,135832,7.56],[135833,135833,8.73],[135834,135834,8.24],[135835,135835,7.56],[135836,135836,8.13],[135837,135837,7.56],[135838,135838,9.23],[135839,135839,7.82],[135840,135840,6.39],[135841,135842,8.63],[135843,135843,6.39],[135844,135844,8.57],[135845,135845,6.56],[135846,135846,6.42],[135847,135847,7.94],[135848,135848,7.2],[135849,135849,9.25],[135850,135850,9.21],[135851,135851,7.2],[135852,135852,9.16],[135853,135854,7.2],[135855,135855,8.97],[135856,135856,11.18],[135857,135857,10],[135858,135858,10.4],[135859,135859,8.68],[135860,135860,9.16],[135861,135861,10.4],[135862,135863,10],[135864,135864,8.95],[135865,135865,10.99],[135866,135866,10.96],[135867,135867,8.95],[135868,135868,10.9],[135869,135870,8.95],[135871,135871,10],[135872,135872,12.92],[135873,135873,10],[135874,135874,12.15],[135875,135875,11.04],[135876,135876,10.9],[135877,135877,12.14],[135878,135879,10],[135880,135880,9.33],[135881,135881,11.05],[135882,135884,9.33],[135885,135885,11.73],[135886,135886,9.33],[135887,135887,11.69],[135888,135888,6.74],[135889,135889,8.95],[135890,135890,8.67],[135891,135891,6.51],[135892,135892,8.66],[135893,135893,6.54],[135894,135894,7.07],[135895,135895,10],[135896,135896,7.41],[135897,135897,9.14],[135898,135898,9.15],[135899,135899,7.41],[135900,135900,9.12],[135901,135901,8.99],[135902,135902,7.41],[135903,135903,9.26],[135904,135908,11.18],[135909,135909,12.42],[135910,135911,11.18],[135912,135912,5.81],[135913,135913,7.26],[135914,135914,8.32],[135915,135915,5.95],[135916,135916,9.43],[135917,135917,7],[135918,135918,8.17],[135919,135919,10.05],[135920,135920,7.66],[135921,135921,10.24],[135922,135922,9.65],[135923,135923,7.49],[135924,135924,9.14],[135925,135925,8.41],[135926,135926,8.3],[135927,135927,9.67],[135928,135928,7.61],[135929,135929,9.87],[135930,135930,9.29],[135931,135931,7.12],[135932,135932,9.09],[135933,135933,9],[135934,135934,8.3],[135935,135935,9.31],[135936,135936,7.76],[135937,135937,10.34],[135938,135938,9.76],[135939,135939,7.59],[135940,135940,9.56],[135941,135941,9.16],[135942,135942,8.34],[135943,135943,9.78],[135944,135944,5.83],[135945,135945,8.33],[135946,135946,6.06],[135947,135947,6.37],[135948,135948,6.01],[135949,135949,8.03],[135950,135950,5.83],[135951,135951,7.18],[135952,135952,10.27],[135953,135953,10],[135954,135954,9.5],[135955,135955,6.25],[135956,135956,7.35],[135957,135957,9.5],[135958,135959,10],[135960,135960,7.37],[135961,135961,9.05],[135962,135964,7.37],[135965,135965,8.8],[135966,135966,7.91],[135967,135967,7.37],[135968,135968,11.04],[135969,135969,12.96],[135970,135970,12.95],[135971,135971,10.99],[135972,135972,12.91],[135973,135973,10.7],[135974,135974,11.04],[135975,135975,12.98],[135976,135976,13.61],[135977,135977,13.82],[135978,135978,13.76],[135979,135979,13.61],[135980,135980,16.6],[135981,135981,13.2],[135982,135982,13.39],[135983,135983,13.84],[135984,135984,6.67],[135985,135985,8.78],[135986,135986,8.68],[135987,135987,6.53],[135988,135988,8.62],[135989,135989,8.49],[135990,135990,6.71],[135991,135991,8.62],[135992,135992,6.91],[135993,135993,8.93],[135994,135994,8.82],[135995,135995,6.68],[135996,135996,8.77],[135997,135997,8.66],[135998,135998,6.96],[135999,135999,8.67],[136000,136000,6.74],[136001,136001,8.95],[136002,136002,6.91],[136003,136003,6.13],[136004,136004,6.93],[136005,136005,6.54],[136006,136006,7.02],[136007,136007,8.31],[136008,136008,8.55],[136009,136009,8.65],[136010,136010,9.27],[136011,136011,8.65],[136012,136012,10.2],[136013,136013,8.41],[136014,136014,8.57],[136015,136015,8.41],[136016,136016,7.76],[136017,136017,7.77],[136018,136018,7.76],[136019,136019,7.82],[136020,136023,7.76],[136024,136024,8.05],[136025,136025,11.46],[136026,136026,9.4],[136027,136030,10],[136031,136031,7.12],[136032,136032,9.1],[136033,136033,3],[136034,136034,6.17],[136035,136037,3.58],[136038,136038,4.98],[136039,136039,3],[136040,136040,9.35],[136041,136041,5.55],[136042,136042,5.05],[136043,136043,5.36],[136044,136044,5.5],[136045,136045,6.54],[136046,136046,6.03],[136047,136047,6.12],[136048,136048,6.49],[136049,136049,5.63],[136050,136050,4.17],[136051,136051,7.47],[136052,136052,7.41],[136053,136053,8.73],[136054,136054,5.5],[136055,136055,6.49],[136056,136056,7.88],[136057,136057,8.2],[136058,136058,5.25],[136059,136059,5.64],[136060,136060,10.38],[136061,136063,10],[136064,136064,15.46],[136065,136065,14.14],[136066,136066,11.45],[136067,136067,15.24],[136068,136068,10.99],[136069,136069,10.23],[136070,136070,8.92],[136071,136071,13.13],[136072,136073,9.86],[136074,136074,10.77],[136075,136075,12.35],[136076,136076,9.76],[136077,136077,8.81],[136078,136078,7.86],[136079,136079,10.74],[136080,136080,2.9],[136081,136081,5.5],[136082,136083,2.9],[136084,136084,5.5],[136085,136085,6.87],[136086,136086,4.59],[136087,136087,8.96],[136088,136088,10.4],[136089,136089,5.05],[136090,136095,10],[136096,136096,7.26],[136097,136097,6.87],[136098,136098,5.86],[136099,136099,7.55],[136100,136100,8.97],[136101,136101,3.14],[136102,136102,7],[136103,136103,8.33],[136104,136104,5.12],[136105,136105,6.36],[136106,136106,6.72],[136107,136107,5.29],[136108,136108,5.91],[136109,136109,7.76],[136110,136110,5.34],[136111,136111,7.52],[136112,136112,5.34],[136113,136113,5.38],[136114,136114,8.27],[136115,136115,9.12],[136116,136116,7.04],[136117,136117,5.46],[136118,136118,7.15],[136119,136119,8.61],[136120,136120,5.3],[136121,136121,8.53],[136122,136122,9.58],[136123,136123,7.5],[136124,136124,5.12],[136125,136125,7.01],[136126,136126,7.29],[136127,136127,6.34],[136128,136128,7.07],[136129,136129,7.58],[136130,136130,6.3],[136131,136131,6.05],[136132,136132,5.55],[136133,136133,9.61],[136134,136134,5.92],[136135,136135,8.18],[136136,136136,7.14],[136137,136137,10.88],[136138,136138,8.18],[136139,136139,6.28],[136140,136140,7.33],[136141,136141,9.08],[136142,136143,6.55],[136144,136144,5.13],[136145,136145,6.89],[136146,136146,6.87],[136147,136147,5.58],[136148,136148,9.43],[136149,136149,7.1],[136150,136150,6.97],[136151,136151,5.93],[136152,136152,5.88],[136153,136153,6.9],[136154,136154,6.55],[136155,136155,8.78],[136156,136156,8.1],[136157,136157,5.7],[136158,136158,5.38],[136159,136159,6.82],[136160,136160,7.02],[136161,136161,8.51],[136162,136162,6.45],[136163,136163,6.95],[136164,136164,6.9],[136165,136165,7.92],[136166,136166,6.99],[136167,136167,5.07],[136168,136168,8.82],[136169,136169,7.74],[136170,136170,9.17],[136171,136171,7.29],[136172,136172,8.52],[136173,136173,6.64],[136174,136174,6.46],[136175,136175,8.18],[136176,136176,6.51],[136177,136177,7.53],[136178,136178,6.46],[136179,136179,8.66],[136180,136180,7.02],[136181,136181,6.95],[136182,136183,9.22],[136184,136184,5.41],[136185,136185,6.25],[136186,136186,5.37],[136187,136187,7.18],[136188,136188,5.83],[136189,136189,5.77],[136190,136190,8.21],[136191,136191,9.22],[136192,136192,10],[136193,136196,7.93],[136197,136201,7.46],[136202,136203,7.48],[136204,136204,8.03],[136205,136206,8.02],[136207,136208,8.03],[136209,136209,8.02],[136210,136210,8.84],[136211,136211,9.35],[136212,136212,8.84],[136213,136213,9.35],[136214,136214,7.46],[136215,136215,9.34],[136216,136216,8.83],[136217,136217,9.35],[136218,136218,8.83],[136219,136219,7.46],[136220,136220,6.65],[136221,136221,5.91],[136222,136222,4.95],[136223,136224,3.19],[136225,136226,4.59],[136227,136227,3.41],[136228,136228,4.81],[136229,136229,5],[136230,136230,3.18],[136231,136231,2.08],[136232,136232,4],[136233,136233,4.13],[136234,136234,3.99],[136235,136235,11.1],[136236,136236,8.9],[136237,136237,9.58],[136238,136238,10.48],[136239,136239,8.31],[136240,136242,8.29],[136243,136247,7.59],[136248,136249,7.6],[136250,136252,8.39],[136253,136253,8.53],[136254,136254,8.39],[136255,136255,8.31],[136256,136256,8.61],[136257,136257,9.24],[136258,136258,8.61],[136259,136259,9.24],[136260,136260,9.3],[136261,136261,8.61],[136262,136262,9.36],[136263,136263,8.61],[136264,136264,7.6],[136265,136265,4.19],[136266,136266,1.39],[136267,136267,3.68],[136268,136271,8.16],[136272,136278,7.02],[136279,136279,9.68],[136280,136280,9.39],[136281,136281,9.38],[136282,136282,9.69],[136283,136283,9.38],[136284,136284,9.69],[136285,136285,8.23],[136286,136286,8.4],[136287,136287,8.23],[136288,136288,8.4],[136289,136289,8.41],[136290,136290,8.23],[136291,136291,8.4],[136292,136292,8.23],[136293,136293,8.41],[136294,136294,3.41],[136295,136296,9.58],[136297,136298,8.73],[136299,136307,6.25],[136308,136309,7.65],[136310,136310,7.37],[136311,136311,7.92],[136312,136312,7.36],[136313,136313,7.92],[136314,136322,7.65],[136323,136324,3.87],[136325,136325,7.75],[136326,136326,8.03],[136327,136328,7.87],[136329,136337,6.51],[136338,136352,7.9],[136353,136354,3.74],[136355,136355,6.43],[136356,136363,6.22],[136364,136364,7.24],[136365,136365,7.82],[136366,136366,7.61],[136367,136367,7.03],[136368,136368,7.61],[136369,136370,7.03],[136371,136371,7.61],[136372,136372,7.03],[136373,136374,7.61],[136375,136375,7.03],[136376,136376,7.61],[136377,136377,7.03],[136378,136378,7.5],[136379,136379,3.48],[136380,136380,3.41],[136381,136381,3.48],[136382,136382,4.31],[136383,136383,6.05],[136384,136392,9.17],[136393,136395,10.57],[136396,136396,9.17],[136397,136397,10.57],[136398,136399,9.17],[136400,136400,5.41],[136401,136401,4.59],[136402,136402,5.41],[136403,136411,8.73],[136412,136413,10.12],[136414,136414,9.9],[136415,136415,10.35],[136416,136416,9.9],[136417,136417,10.34],[136418,136418,8.73],[136419,136419,10.13],[136420,136420,8.73],[136421,136422,10.12],[136423,136423,8.84],[136424,136424,9.9],[136425,136425,8.84],[136426,136426,4.98],[136427,136427,4.46],[136428,136428,6.68],[136429,136437,5.87],[136438,136438,7.02],[136439,136439,7.27],[136440,136440,7.25],[136441,136441,7.01],[136442,136442,7.4],[136443,136443,7.01],[136444,136444,6.34],[136445,136445,7.73],[136446,136446,6.34],[136447,136447,7.73],[136448,136448,7.39],[136449,136449,7.53],[136450,136450,7.85],[136451,136451,7.11],[136452,136452,7.27],[136453,136453,3.57],[136454,136454,4.09],[136455,136455,3.57],[136456,136456,4.98],[136457,136458,3.56],[136459,136459,3.57],[136460,136460,11.17],[136461,136461,10.72],[136462,136462,9.82],[136463,136463,10.08],[136464,136466,8.61],[136467,136470,6.78],[136471,136476,10],[136477,136484,8.17],[136485,136485,5.2],[136486,136494,5.78],[136495,136500,7.17],[136501,136501,7.47],[136502,136502,7.17],[136503,136503,7.47],[136504,136509,7.17],[136510,136510,3.47],[136511,136511,4.63],[136512,136513,3.38],[136514,136519,9.41],[136520,136525,6.16],[136526,136527,7.55],[136528,136528,3.63],[136529,136529,4.46],[136530,136530,6.68],[136531,136534,8.08],[136535,136538,8.59],[136539,136539,9.98],[136540,136540,9.88],[136541,136541,4.88],[136542,136547,8.37],[136548,136551,7.5],[136552,136553,8.89],[136554,136554,4.58],[136555,136556,8.16],[136557,136558,7.02],[136559,136559,6.01],[136560,136561,8.16],[136562,136563,7.02],[136564,136566,7.81],[136567,136570,7.68],[136571,136571,4.93],[136572,136572,7.13],[136573,136573,3.33],[136574,136580,9.88],[136581,136581,7.5],[136582,136585,6.25],[136586,136589,8.07],[136590,136592,11.97],[136593,136594,9.58],[136595,136596,11.97],[136597,136597,5.46],[136598,136598,8.44],[136599,136602,6.25],[136603,136606,9.17],[136607,136607,5.41],[136608,136613,8.73],[136614,136614,4.98],[136615,136621,5.78],[136622,136622,3.47],[136623,136623,5.69],[136624,136627,5.07],[136628,136631,5.76],[136632,136643,7.24],[136644,136645,8.31],[136646,136649,7.59],[136650,136651,8.31],[136652,136655,7.59],[136656,136657,8.31],[136658,136661,7.59],[136662,136663,8.31],[136664,136667,7.59],[136668,136669,8.02],[136670,136673,6.79],[136674,136675,8.02],[136676,136679,6.49],[136680,136681,8.22],[136682,136685,6.9],[136686,136686,3.99],[136687,136688,9.9],[136689,136692,5.67],[136693,136694,9.9],[136695,136698,6.64],[136699,136700,9.9],[136701,136704,6.64],[136705,136705,4.76],[136706,136707,6.51],[136708,136711,8.9],[136712,136713,9.9],[136714,136717,5.67],[136718,136719,8.22],[136720,136723,6.84],[136724,136726,6.38],[136727,136731,9.07],[136732,136733,6.75],[136734,136737,9.08],[136738,136739,9.33],[136740,136743,6.25],[136744,136745,9.41],[136746,136749,6.46],[136750,136751,8.69],[136752,136752,6.25],[136753,136754,6.22],[136755,136755,6.25],[136756,136757,9.79],[136758,136761,6.35],[136762,136763,11.37],[136764,136767,5.79],[136768,136769,7.62],[136770,136773,6.88],[136774,136775,4.07],[136776,136777,7.62],[136778,136781,6.88],[136782,136783,10.19],[136784,136787,5.67],[136788,136789,10.19],[136790,136793,6.16],[136794,136794,3.76],[136795,136796,10.19],[136797,136798,6.37],[136799,136799,6.38],[136800,136800,6.37],[136801,136802,10.19],[136803,136806,5.67],[136807,136808,10.19],[136809,136810,6.37],[136811,136811,6.38],[136812,136812,6.37],[136813,136813,6.25],[136814,136814,4.79],[136815,136815,9.88],[136816,136817,14.94],[136818,136818,15.28],[136819,136820,12.61],[136821,136822,14.94],[136823,136831,10],[136832,136832,4.45],[136833,136833,3.01],[136834,136834,4.45],[136835,136835,5.89],[136836,136836,7.33],[136837,136837,8.77],[136838,136838,3.01],[136839,136839,4.45],[136840,136840,5.89],[136841,136841,7.33],[136842,136842,8.77],[136843,136843,3.01],[136844,136844,4.45],[136845,136845,5.89],[136846,136846,7.33],[136847,136847,8.77],[136848,136848,3.01],[136849,136849,4.45],[136850,136850,5.89],[136851,136851,7.33],[136852,136852,8.77],[136853,136853,3.01],[136854,136854,4.45],[136855,136856,5.89],[136857,136857,7.33],[136858,136858,5.89],[136859,136860,4.55],[136861,136863,10],[136864,136864,6.81],[136865,136865,7.06],[136866,136866,6.84],[136867,136867,5.99],[136868,136869,6.84],[136870,136871,5.25],[136872,136872,3.96],[136873,136874,5.89],[136875,136875,5.56],[136876,136876,5.05],[136877,136877,3.96],[136878,136878,4.02],[136879,136879,5.17],[136880,136880,5.19],[136881,136881,5.01],[136882,136882,3.34],[136883,136883,4.45],[136884,136885,5.69],[136886,136886,5.89],[136887,136887,5.86],[136888,136888,6.44],[136889,136889,4.39],[136890,136891,7.31],[136892,136892,5.13],[136893,136893,3.27],[136894,136894,5.08],[136895,136895,3.96],[136896,136896,5.08],[136897,136897,2.85],[136898,136898,3.27],[136899,136899,5.12],[136900,136900,4.87],[136901,136901,5.19],[136902,136902,4.02],[136903,136903,5.08],[136904,136904,4.59],[136905,136905,6.07],[136906,136906,3.81],[136907,136907,6.53],[136908,136908,2.85],[136909,136909,3.27],[136910,136910,5.19],[136911,136911,5.13],[136912,136912,4.03],[136913,136913,4.24],[136914,136914,5.09],[136915,136915,4.02],[136916,136916,5.5],[136917,136917,5.17],[136918,136918,7.36],[136919,136919,7.54],[136920,136920,6.62],[136921,136921,3.52],[136922,136922,3.97],[136923,136923,4.29],[136924,136924,5.31],[136925,136925,5.88],[136926,136926,7.31],[136927,136927,5.82],[136928,136928,6.33],[136929,136929,5.13],[136930,136930,6.33],[136931,136931,6.07],[136932,136932,6.86],[136933,136933,7.31],[136934,136934,6.62],[136935,136935,2.85],[136936,136936,5.19],[136937,136937,4.39],[136938,136938,7.65],[136939,136939,3.66],[136940,136940,2.77],[136941,136941,4.63],[136942,136942,5.13],[136943,136943,6.62],[136944,136944,6.02],[136945,136945,5.16],[136946,136946,5.52],[136947,136947,4.56],[136948,136948,5.53],[136949,136949,3.72],[136950,136950,4.74],[136951,136951,5.04],[136952,136952,5.66],[136953,136959,10],[136960,136960,10.14],[136961,136961,10.11],[136962,136962,5.35],[136963,136963,9.84],[136964,136964,8.37],[136965,136965,10.11],[136966,136966,9.75],[136967,136967,10.48],[136968,136968,8.5],[136969,136969,10.7],[136970,136970,8.51],[136971,136971,10.3],[136972,136972,10.29],[136973,136973,10],[136974,136974,9.13],[136975,136975,7.61],[136976,136976,9.22],[136977,136977,10.49],[136978,136980,5.94],[136981,136991,10],[136992,136992,8.8],[136993,136993,8.76],[136994,136994,5.21],[136995,136995,6.27],[136996,136996,7.84],[136997,136997,8.05],[136998,136998,9.6],[136999,136999,8.7],[137000,137000,9.66],[137001,137001,8.73],[137002,137002,5.19],[137003,137003,8.72],[137004,137004,8.75],[137005,137005,6.13],[137006,137006,8.92],[137007,137007,10.17],[137008,137008,9.58],[137009,137009,8.05],[137010,137012,5.94],[137013,137013,3.29],[137014,137014,4.88],[137015,137023,10],[137024,137025,8.28],[137026,137026,6.25],[137027,137027,6.19],[137028,137028,5.99],[137029,137029,8.05],[137030,137030,10.25],[137031,137031,8.17],[137032,137032,4.38],[137033,137033,8.28],[137034,137034,6.19],[137035,137035,7.34],[137036,137036,8.81],[137037,137037,6.13],[137038,137038,8.67],[137039,137039,8.17],[137040,137040,7.58],[137041,137041,5.74],[137042,137043,5.94],[137044,137055,10],[137056,137056,8.05],[137057,137057,9.18],[137058,137058,3.92],[137059,137059,6.29],[137060,137060,7.97],[137061,137061,9.45],[137062,137062,10.15],[137063,137063,8.05],[137064,137064,7.97],[137065,137065,9.18],[137066,137066,8.53],[137067,137067,9.18],[137068,137068,9.41],[137069,137069,10],[137070,137070,9.38],[137071,137071,8.34],[137072,137072,10.53],[137073,137073,10],[137074,137075,5.94],[137076,137087,10],[137088,137090,6],[137091,137091,9.5],[137092,137095,6],[137096,137096,13],[137097,137097,9.5],[137098,137100,6],[137101,137101,9.5],[137102,137102,13],[137103,137104,6],[137105,137105,6.22],[137106,137112,6],[137113,137113,9.5],[137114,137114,3.5],[137115,137115,9.5],[137116,137116,3.5],[137117,137118,6],[137119,137120,9.5],[137121,137121,9.72],[137122,137122,5.8],[137123,137123,6],[137124,137124,9.5],[137125,137125,6],[137126,137126,9.5],[137127,137128,6],[137129,137129,7.1],[137130,137130,6.2],[137131,137139,6],[137140,137141,0],[137142,137142,8.58],[137143,137143,5.57],[137144,137146,5.56],[137147,137149,4.77],[137150,137150,9.01],[137151,137152,10.21],[137153,137154,8.31],[137155,137155,8.51],[137156,137156,12.09],[137157,137157,12.44],[137158,137158,4.77],[137159,137159,7.95],[137160,137160,7.14],[137161,137161,4.77],[137162,137162,5.97],[137163,137164,4.77],[137165,137165,4.81],[137166,137171,4.77],[137172,137172,4.65],[137173,137173,6.2],[137174,137174,3.43],[137175,137175,5.3],[137176,137176,18.25],[137177,137177,6.47],[137178,137178,11.76],[137179,137179,3.8],[137180,137180,5.3],[137181,137181,4.77],[137182,137183,10],[137184,137185,5.3],[137186,137186,6.61],[137187,137187,8.8],[137188,137190,5.94],[137191,137191,6.97],[137192,137192,5.94],[137193,137193,5.65],[137194,137199,10],[137200,137200,3.76],[137201,137201,4.12],[137202,137202,1.6],[137203,137203,6.59],[137204,137204,4.12],[137205,137205,3.98],[137206,137206,2.84],[137207,137207,5.34],[137208,137208,2.84],[137209,137209,4.44],[137210,137215,10],[137216,137216,5.34],[137217,137217,10.3],[137218,137218,3.84],[137219,137219,6.38],[137220,137220,3.84],[137221,137221,5.82],[137222,137222,4],[137223,137223,5.34],[137224,137224,4.22],[137225,137225,6.42],[137226,137226,1.68],[137227,137230,0],[137231,137231,10],[137232,137233,5.72],[137234,137234,6.05],[137235,137235,8.75],[137236,137236,5.34],[137237,137237,7.12],[137238,137239,6.3],[137240,137240,5.64],[137241,137241,5.34],[137242,137247,10],[137248,137248,9.29],[137249,137249,8.24],[137250,137250,9.93],[137251,137252,9.32],[137253,137254,12.35],[137255,137255,12],[137256,137256,5.67],[137257,137257,7.38],[137258,137258,6.8],[137259,137259,6.75],[137260,137261,8.63],[137262,137263,5.67],[137264,137265,7.56],[137266,137266,7.45],[137267,137267,7.48],[137268,137268,7.67],[137269,137270,4.96],[137271,137271,6.93],[137272,137272,5.95],[137273,137273,6.8],[137274,137274,5.51],[137275,137275,5.5],[137276,137276,8.92],[137277,137277,8.15],[137278,137278,10.88],[137279,137279,9.08],[137280,137280,10.88],[137281,137281,6.41],[137282,137282,11.77],[137283,137283,2.01],[137284,137284,8.99],[137285,137285,9.06],[137286,137286,9.15],[137287,137287,11.26],[137288,137288,9.15],[137289,137289,11.26],[137290,137290,10.69],[137291,137291,9.25],[137292,137292,7.16],[137293,137294,8.61],[137295,137295,5.26],[137296,137296,7.23],[137297,137297,5.51],[137298,137298,7.85],[137299,137299,7.67],[137300,137300,6.5],[137301,137301,4.51],[137302,137302,7.49],[137303,137303,5.68],[137304,137304,5.48],[137305,137305,11],[137306,137306,7.39],[137307,137307,5.18],[137308,137308,7.27],[137309,137309,8.24],[137310,137310,9.93],[137311,137311,2.84],[137312,137312,9.32],[137313,137313,12.35],[137314,137314,9.2],[137315,137315,4.28],[137316,137316,6.93],[137317,137317,7.92],[137318,137318,7.18],[137319,137319,6.81],[137320,137320,8.32],[137321,137321,7.45],[137322,137322,5.12],[137323,137323,5.95],[137324,137325,5.51],[137326,137327,7.56],[137328,137328,3.73],[137329,137329,7.67],[137330,137330,5.12],[137331,137331,9.93],[137332,137332,5.47],[137333,137333,8.68],[137334,137334,5.6],[137335,137335,4.96],[137336,137343,10],[137344,137344,5.83],[137345,137345,7.9],[137346,137346,6.73],[137347,137348,4.83],[137349,137349,10.57],[137350,137350,9.87],[137351,137351,10.21],[137352,137352,9.93],[137353,137353,7.06],[137354,137354,9.1],[137355,137355,6.27],[137356,137356,5.1],[137357,137357,7.92],[137358,137358,6.15],[137359,137359,5.25],[137360,137360,5.44],[137361,137361,5.51],[137362,137362,6.8],[137363,137363,6.75],[137364,137364,6.55],[137365,137365,8.33],[137366,137366,7.27],[137367,137367,5.5],[137368,137368,6.25],[137369,137369,8.6],[137370,137370,11.68],[137371,137371,8.49],[137372,137372,7.56],[137373,137373,9.23],[137374,137374,5.2],[137375,137375,6.97],[137376,137376,5.51],[137377,137377,10.48],[137378,137378,7.56],[137379,137379,5.2],[137380,137381,7.56],[137382,137382,5.05],[137383,137383,5.57],[137384,137384,9.98],[137385,137385,0],[137386,137386,7.18],[137387,137471,10],[137472,137472,6.74],[137473,137473,6.05],[137474,137474,7.01],[137475,137475,5.95],[137476,137476,6.02],[137477,137477,9.27],[137478,137478,6.27],[137479,137479,6.32],[137480,137480,6.75],[137481,137481,5.83],[137482,137482,7.77],[137483,137483,5.53],[137484,137484,6.91],[137485,137485,6.25],[137486,137486,6.8],[137487,137487,6.05],[137488,137488,7.47],[137489,137489,8.11],[137490,137490,6.15],[137491,137491,7],[137492,137492,6.47],[137493,137493,6.04],[137494,137494,6.25],[137495,137495,6.56],[137496,137496,6.61],[137497,137497,6.36],[137498,137498,5.21],[137499,137499,6.31],[137500,137500,6.59],[137501,137501,6.15],[137502,137502,6.01],[137503,137503,10],[137504,137506,7.21],[137507,137507,10.07],[137508,137508,12.82],[137509,137509,10.07],[137510,137510,12.82],[137511,137512,7.21],[137513,137513,10.79],[137514,137514,7.21],[137515,137515,11.31],[137516,137519,10],[137520,137520,12.68],[137521,137521,9.85],[137522,137522,7.21],[137523,137523,9.91],[137524,137524,11.98],[137525,137525,12.35],[137526,137526,12.24],[137527,137527,8.32],[137528,137528,10.45],[137529,137531,7.21],[137532,137535,10],[137536,137536,5.5],[137537,137539,10],[137540,137540,4.4],[137541,137541,4.8],[137542,137542,5.49],[137543,137543,4.99],[137544,137544,4.97],[137545,137545,4.61],[137546,137546,5],[137547,137547,4.87],[137548,137549,4.92],[137550,137550,4.97],[137551,137551,4.92],[137552,137552,5.13],[137553,137553,6.64],[137554,137554,5.36],[137555,137555,7.27],[137556,137556,6.58],[137557,137557,6.08],[137558,137558,9.02],[137559,137559,9.67],[137560,137560,5.69],[137561,137561,5.2],[137562,137562,8.31],[137563,137563,5.09],[137564,137564,8.31],[137565,137565,5.77],[137566,137566,8.49],[137567,137567,6.8],[137568,137568,5.08],[137569,137569,6.55],[137570,137570,5.36],[137571,137571,2.39],[137572,137572,5.49],[137573,137573,5.14],[137574,137574,5.49],[137575,137575,2.9],[137576,137576,2.47],[137577,137577,5.02],[137578,137578,5.49],[137579,137579,5.14],[137580,137580,2.09],[137581,137581,6.29],[137582,137583,10],[137584,137584,5.54],[137585,137585,5.23],[137586,137586,6.03],[137587,137587,5.46],[137588,137588,5.23],[137589,137599,10],[137600,137601,9.29],[137602,137602,9.08],[137603,137603,5.3],[137604,137604,9.14],[137605,137605,6.11],[137606,137606,5.98],[137607,137607,6.46],[137608,137608,5.78],[137609,137609,9.29],[137610,137610,6.21],[137611,137611,6.11],[137612,137612,5.98],[137613,137614,9.08],[137615,137615,6.29],[137616,137616,9.14],[137617,137617,6.42],[137618,137618,7.49],[137619,137619,5.76],[137620,137620,6.35],[137621,137621,8.33],[137622,137622,9.14],[137623,137623,9.08],[137624,137624,9.29],[137625,137625,6.11],[137626,137626,6.42],[137627,137628,9.14],[137629,137629,9.08],[137630,137630,5.54],[137631,137632,9.14],[137633,137633,5.43],[137634,137634,6.11],[137635,137635,6.78],[137636,137636,5.43],[137637,137637,6.11],[137638,137638,9.08],[137639,137639,5.41],[137640,137640,6.11],[137641,137641,5.98],[137642,137642,9.29],[137643,137643,5.98],[137644,137647,10],[137648,137648,6.66],[137649,137649,5.43],[137650,137650,6.04],[137651,137651,5.43],[137652,137652,5.97],[137653,137653,7.03],[137654,137654,13],[137655,137655,5.28],[137656,137656,5.19],[137657,137657,6.04],[137658,137658,5.63],[137659,137659,8.07],[137660,137660,8.2],[137661,137661,8.18],[137662,137662,7.24],[137663,137664,8.68],[137665,137665,5.54],[137666,137666,6.47],[137667,137667,5.84],[137668,137668,6.11],[137669,137669,9.08],[137670,137670,5.43],[137671,137671,6.11],[137672,137672,5.12],[137673,137673,5.22],[137674,137679,10],[137680,137680,5.54],[137681,137681,5.43],[137682,137682,3.59],[137683,137684,5.38],[137685,137685,7.76],[137686,137686,6.28],[137687,137687,7.76],[137688,137688,5.61],[137689,137689,5.98],[137690,137690,6.17],[137691,137693,10],[137694,137695,8.36],[137696,137696,6.44],[137697,137697,5.3],[137698,137698,6.61],[137699,137699,8.8],[137700,137702,5.94],[137703,137703,6.97],[137704,137704,5.94],[137705,137705,5.65],[137706,137707,12.7],[137708,137708,13.18],[137709,137709,14.4],[137710,137711,12.7],[137712,137712,6.35],[137713,137713,5.3],[137714,137714,6.61],[137715,137715,8.8],[137716,137718,5.94],[137719,137719,6.97],[137720,137720,5.94],[137721,137721,5.65],[137722,137723,12.7],[137724,137724,13.18],[137725,137725,14.4],[137726,137727,12.7],[137728,137728,6.77],[137729,137729,10.46],[137730,137730,6.05],[137731,137731,7.55],[137732,137732,10.46],[137733,137733,6.77],[137734,137734,9.45],[137735,137735,8.78],[137736,137738,9.45],[137739,137740,10.46],[137741,137741,7.84],[137742,137742,12.21],[137743,137743,13.25],[137744,137744,12.19],[137745,137745,6.89],[137746,137746,12.48],[137747,137747,12.19],[137748,137748,5.76],[137749,137749,12.16],[137750,137750,10.34],[137751,137752,5.94],[137753,137753,9.51],[137754,137754,11.34],[137755,137755,5.94],[137756,137757,10],[137758,137758,5.04],[137759,137759,5.38],[137760,137760,9.26],[137761,137761,5.28],[137762,137762,5.23],[137763,137763,5.94],[137764,137764,5.84],[137765,137765,10.42],[137766,137766,6.31],[137767,137767,5.96],[137768,137768,9.09],[137769,137770,5.56],[137771,137771,9.8],[137772,137772,9.1],[137773,137774,6.76],[137775,137775,5.24],[137776,137776,6.54],[137777,137777,10.92],[137778,137778,8.93],[137779,137779,7.02],[137780,137780,6.47],[137781,137781,6.37],[137782,137782,5.52],[137783,137783,5.94],[137784,137784,6.27],[137785,137785,7],[137786,137786,6.88],[137787,137788,6.58],[137789,137789,8.78],[137790,137790,5.94],[137791,137791,9.76],[137792,137792,6.12],[137793,137793,6.46],[137794,137794,6.59],[137795,137795,8.98],[137796,137796,5.24],[137797,137797,5.39],[137798,137798,5.94],[137799,137800,9.1],[137801,137801,8.98],[137802,137802,6.31],[137803,137803,8.85],[137804,137804,8.98],[137805,137805,6.58],[137806,137806,8.11],[137807,137808,5.24],[137809,137809,5.96],[137810,137810,10.8],[137811,137811,9.18],[137812,137812,12.96],[137813,137814,0],[137815,137815,2.83],[137816,137822,0],[137823,137823,10],[137824,137824,0],[137825,137825,4.48],[137826,137826,0],[137827,137827,4.91],[137828,137828,2.47],[137829,137836,0],[137837,137837,2.12],[137838,137838,5.39],[137839,137839,10.1],[137840,137841,5.39],[137842,137842,5.47],[137843,137852,0],[137853,137854,10],[137855,137855,0],[137856,137856,5.39],[137857,137857,5.35],[137858,137858,3.39],[137859,137860,5.3],[137861,137861,5.29],[137862,137862,5.34],[137863,137863,5.29],[137864,137864,5.58],[137865,137865,5.34],[137866,137871,10],[137872,137872,5.39],[137873,137873,6.62],[137874,137874,4.06],[137875,137875,9],[137876,137876,6.57],[137877,137877,6.47],[137878,137878,6.77],[137879,137879,6.76],[137880,137880,6.58],[137881,137881,8.98],[137882,137887,10],[137888,137888,7.14],[137889,137889,7.17],[137890,137890,9.8],[137891,137891,8.24],[137892,137892,7.14],[137893,137893,7.32],[137894,137894,6.53],[137895,137895,6.67],[137896,137896,2.98],[137897,137897,4.59],[137898,137898,5.99],[137899,137899,7.46],[137900,137900,12.32],[137901,137901,5.52],[137902,137983,10],[137984,137987,5.94],[137988,137988,10.06],[137989,137989,11.03],[137990,137990,15.5],[137991,137991,9.33],[137992,137992,13.8],[137993,137993,7.49],[137994,137994,11.96],[137995,137995,8.07],[137996,137996,12.54],[137997,137997,9.47],[137998,137998,13.94],[137999,137999,7.18],[138000,138000,11.44],[138001,138001,9.83],[138002,138002,14.3],[138003,138003,11.11],[138004,138004,11.31],[138005,138005,10.92],[138006,138006,11.68],[138007,138007,9.33],[138008,138008,7.94],[138009,138009,10.52],[138010,138010,8.79],[138011,138011,12.08],[138012,138012,15.09],[138013,138013,10.5],[138014,138014,10.11],[138015,138015,9.34],[138016,138016,8.1],[138017,138017,12.21],[138018,138018,12.04],[138019,138019,7.93],[138020,138020,10.72],[138021,138021,9.2],[138022,138022,8.54],[138023,138023,8.07],[138024,138024,7.65],[138025,138025,11.8],[138026,138026,9.25],[138027,138027,8.54],[138028,138028,9.59],[138029,138029,8.45],[138030,138030,12.23],[138031,138031,7.93],[138032,138032,10.92],[138033,138033,8.07],[138034,138034,8.08],[138035,138035,12.23],[138036,138036,5.94],[138037,138037,10.41],[138038,138042,5.94],[138043,138043,10.41],[138044,138044,5.94],[138045,138045,10.41],[138046,138047,10.77],[138048,138049,15.24],[138050,138050,5.94],[138051,138051,10.41],[138052,138052,3.48],[138053,138053,12.13],[138054,138054,18.09],[138055,138055,12.04],[138056,138056,8.07],[138057,138057,7.93],[138058,138058,8.08],[138059,138059,14.62],[138060,138063,10],[138064,138064,4.72],[138065,138065,11.82],[138066,138066,9.47],[138067,138067,9.83],[138068,138068,5.08],[138069,138069,6.54],[138070,138070,7.18],[138071,138071,10.93],[138072,138072,7.65],[138073,138073,9.02],[138074,138074,11.7],[138075,138075,12.92],[138076,138076,3.7],[138077,138077,4.58],[138078,138078,3.93],[138079,138079,6.42],[138080,138080,4.31],[138081,138081,5.56],[138082,138082,4.83],[138083,138083,4.2],[138084,138084,4.79],[138085,138085,6.08],[138086,138086,6.64],[138087,138087,9.4],[138088,138088,3.87],[138089,138089,13.03],[138090,138090,4.12],[138091,138099,5.94],[138100,138100,6.01],[138101,138101,5.71],[138102,138102,6.01],[138103,138103,5.71],[138104,138104,5.9],[138105,138105,6.24],[138106,138106,5.9],[138107,138107,6.33],[138108,138108,4.02],[138109,138111,10],[138112,138113,5.94],[138114,138114,9.81],[138115,138115,8.71],[138116,138116,5.61],[138117,138117,7.65],[138118,138118,9.11],[138119,138119,8.04],[138120,138120,7.95],[138121,138121,8.71],[138122,138122,7.93],[138123,138123,8],[138124,138124,8.01],[138125,138125,7.28],[138126,138126,7.5],[138127,138127,8.15],[138128,138128,8.29],[138129,138129,10.77],[138130,138130,8.61],[138131,138131,7.12],[138132,138132,7.21],[138133,138134,7.93],[138135,138135,6.76],[138136,138136,9.7],[138137,138137,6.91],[138138,138138,8.69],[138139,138139,5.35],[138140,138140,7.88],[138141,138141,6.84],[138142,138143,7.97],[138144,138144,7.7],[138145,138149,5.94],[138150,138151,9.69],[138152,138153,5.94],[138154,138154,8.58],[138155,138155,0],[138156,138157,5.94],[138158,138158,13.82],[138159,138159,16.47],[138160,138160,8.28],[138161,138161,7.99],[138162,138162,7.01],[138163,138163,7.65],[138164,138164,5.35],[138165,138165,8.66],[138166,138166,6.63],[138167,138167,7.42],[138168,138168,7.97],[138169,138169,7.45],[138170,138170,3.64],[138171,138171,7.12],[138172,138172,11.8],[138173,138173,13.36],[138174,138174,10.75],[138175,138175,7.27],[138176,138176,11.26],[138177,138177,11.44],[138178,138178,10.4],[138179,138179,10.56],[138180,138180,10.58],[138181,138181,10.7],[138182,138182,9.9],[138183,138183,8.4],[138184,138184,9.43],[138185,138185,9.9],[138186,138186,9.56],[138187,138187,10],[138188,138188,10.56],[138189,138189,7.88],[138190,138190,9.41],[138191,138191,10.56],[138192,138192,10.23],[138193,138193,8.11],[138194,138194,9.53],[138195,138195,9.86],[138196,138196,10.54],[138197,138197,10.88],[138198,138198,7.98],[138199,138199,10.73],[138200,138200,9.6],[138201,138202,10.56],[138203,138204,10.7],[138205,138205,7.56],[138206,138206,9.31],[138207,138207,10.56],[138208,138208,9.17],[138209,138209,10.17],[138210,138210,8.75],[138211,138211,9.9],[138212,138213,9.13],[138214,138214,5.94],[138215,138215,9.12],[138216,138217,5.94],[138218,138218,10.77],[138219,138219,9.41],[138220,138220,11.27],[138221,138225,5.94],[138226,138226,11.43],[138227,138227,10.38],[138228,138235,10],[138236,138236,10.7],[138237,138237,11.07],[138238,138238,8.51],[138239,138239,6.88],[138240,138240,6.02],[138241,138241,5.41],[138242,138242,6.48],[138243,138244,9.33],[138245,138245,4.29],[138246,138246,6.77],[138247,138247,6.95],[138248,138248,7.13],[138249,138249,6.1],[138250,138250,6.39],[138251,138251,6.66],[138252,138252,6.07],[138253,138253,7.3],[138254,138256,6.01],[138257,138257,6.3],[138258,138258,9.75],[138259,138259,6.54],[138260,138260,9.33],[138261,138262,7.41],[138263,138263,6.4],[138264,138264,10.3],[138265,138265,5.92],[138266,138266,5.26],[138267,138267,5.09],[138268,138268,9.75],[138269,138269,7.1],[138270,138270,5.9],[138271,138271,6.54],[138272,138272,10.1],[138273,138273,6.75],[138274,138274,10.71],[138275,138275,6.09],[138276,138276,8.56],[138277,138277,7.4],[138278,138278,8.64],[138279,138279,8.63],[138280,138280,7.61],[138281,138281,7.1],[138282,138282,7.89],[138283,138283,8.79],[138284,138291,5.1],[138292,138292,8.95],[138293,138293,6.9],[138294,138295,5.1],[138296,138298,10],[138299,138299,2.5],[138300,138300,4.3],[138301,138301,5.24],[138302,138302,5.64],[138303,138303,5.88],[138304,138305,4.9],[138306,138306,5.61],[138307,138307,5.76],[138308,138308,6.78],[138309,138309,6.75],[138310,138310,5.91],[138311,138311,4.71],[138312,138312,5.45],[138313,138313,5.04],[138314,138316,10],[138317,138318,5.64],[138319,138319,6.63],[138320,138320,5.72],[138321,138321,5.15],[138322,138322,5.13],[138323,138323,5.21],[138324,138324,4.83],[138325,138325,5.51],[138326,138326,5.06],[138327,138327,5.14],[138328,138328,6.68],[138329,138329,6.32],[138330,138330,6.49],[138331,138331,7.81],[138332,138332,6.76],[138333,138333,6.72],[138334,138334,5.84],[138335,138335,6.92],[138336,138336,5.79],[138337,138338,6.29],[138339,138339,6.55],[138340,138340,5.61],[138341,138341,5.87],[138342,138342,7.62],[138343,138343,5.84],[138344,138344,5.42],[138345,138345,5.45],[138346,138346,6.54],[138347,138347,6.78],[138348,138348,7.62],[138349,138349,6.55],[138350,138350,5.74],[138351,138351,7.28],[138352,138352,7.18],[138353,138354,5.68],[138355,138355,6.69],[138356,138356,6.29],[138357,138357,7.18],[138358,138358,6.55],[138359,138359,7.18],[138360,138362,2.68],[138363,138363,5],[138364,138364,3.26],[138365,138365,5.32],[138366,138366,2.68],[138367,138367,5.01],[138368,138383,10],[138384,138384,5.68],[138385,138386,5.9],[138387,138387,8.96],[138388,138388,5.79],[138389,138389,5.7],[138390,138390,6.07],[138391,138391,9.12],[138392,138392,5.94],[138393,138393,5.61],[138394,138394,10.45],[138395,138396,6.08],[138397,138397,8.29],[138398,138398,5.54],[138399,138399,5.88],[138400,138400,7.62],[138401,138401,5.91],[138402,138402,7.29],[138403,138403,6.16],[138404,138404,8.18],[138405,138405,5.82],[138406,138406,7.81],[138407,138407,6],[138408,138408,6.08],[138409,138409,5.95],[138410,138410,6.54],[138411,138412,6.13],[138413,138413,6.39],[138414,138414,6.13],[138415,138415,5.73],[138416,138416,5.72],[138417,138417,6.41],[138418,138418,5.96],[138419,138419,5.72],[138420,138420,5.71],[138421,138421,6.13],[138422,138422,7.53],[138423,138423,5.76],[138424,138424,5.95],[138425,138425,5.76],[138426,138426,5.85],[138427,138428,10],[138429,138429,6.44],[138430,138430,5.96],[138431,138431,7.1],[138432,138432,10.18],[138433,138435,6.74],[138436,138436,16.8],[138437,138437,7.44],[138438,138438,11.35],[138439,138439,16.45],[138440,138457,10],[138458,138458,0],[138459,138484,10],[138485,138485,5.27],[138486,138495,10],[138496,138496,5.02],[138497,138497,6.45],[138498,138498,6.67],[138499,138499,4.65],[138500,138500,4.78],[138501,138502,5.24],[138503,138503,4.44],[138504,138504,3.95],[138505,138505,2.78],[138506,138506,2.96],[138507,138507,5.4],[138508,138508,4.45],[138509,138509,6.33],[138510,138510,5.35],[138511,138511,5],[138512,138512,4.78],[138513,138513,5.42],[138514,138514,5.38],[138515,138515,5.42],[138516,138516,7.22],[138517,138517,4.37],[138518,138519,5],[138520,138520,4.56],[138521,138522,4.6],[138523,138523,4.37],[138524,138524,5.37],[138525,138525,5.05],[138526,138526,6.55],[138527,138527,5.04],[138528,138528,5],[138529,138529,7.22],[138530,138530,4.44],[138531,138531,3.95],[138532,138532,3.97],[138533,138533,5.39],[138534,138534,4.1],[138535,138535,5],[138536,138536,5.35],[138537,138537,4.56],[138538,138538,5.28],[138539,138539,4.99],[138540,138540,4.22],[138541,138541,5.38],[138542,138543,3.87],[138544,138544,4.3],[138545,138546,3.7],[138547,138547,4.33],[138548,138548,4.4],[138549,138549,2],[138550,138550,2.47],[138551,138551,4.58],[138552,138552,3.71],[138553,138553,5.4],[138554,138554,4.62],[138555,138555,4.41],[138556,138556,4.18],[138557,138557,3.36],[138558,138558,3.32],[138559,138559,4.1],[138560,138560,3.62],[138561,138561,4.53],[138562,138562,5.54],[138563,138564,2.73],[138565,138565,3.14],[138566,138566,3.9],[138567,138567,3.1],[138568,138568,3.11],[138569,138570,2.56],[138571,138572,2.42],[138573,138573,3.01],[138574,138574,1.64],[138575,138575,3.15],[138576,138576,4.89],[138577,138577,2.82],[138578,138578,2.88],[138579,138579,2.56],[138580,138581,2.88],[138582,138582,3.11],[138583,138583,1.91],[138584,138584,3.28],[138585,138585,3.06],[138586,138586,4.89],[138587,138587,2.94],[138588,138588,3.19],[138589,138589,2.82],[138590,138590,2.65],[138591,138591,2.71],[138592,138592,3.34],[138593,138593,2.82],[138594,138594,1.64],[138595,138595,2.29],[138596,138596,3.28],[138597,138597,2.94],[138598,138598,2.82],[138599,138599,2.65],[138600,138600,2.96],[138601,138601,3.34],[138602,138602,2.82],[138603,138603,7.61],[138604,138605,5],[138606,138606,3.33],[138607,138607,7.78],[138608,138609,5],[138610,138611,3.33],[138612,138612,3.89],[138613,138613,2.78],[138614,138614,4.44],[138615,138615,5],[138616,138616,3.23],[138617,138617,4.71],[138618,138618,7.66],[138619,138619,2.78],[138620,138620,2.69],[138621,138621,5],[138622,138622,5.37],[138623,138623,5.49],[138624,138625,5],[138626,138626,3.33],[138627,138627,5.97],[138628,138628,5],[138629,138629,2.78],[138630,138630,7.78],[138631,138632,5],[138633,138633,3.33],[138634,138634,3.89],[138635,138635,4.24],[138636,138637,5],[138638,138639,4.44],[138640,138640,5.23],[138641,138641,5],[138642,138642,4.44],[138643,138644,4.2],[138645,138645,4.44],[138646,138646,2.78],[138647,138647,4.44],[138648,138648,4.39],[138649,138649,5],[138650,138650,4.44],[138651,138651,3.14],[138652,138653,2.56],[138654,138654,2.88],[138655,138655,2.42],[138656,138657,2.08],[138658,138658,2.66],[138659,138659,3.21],[138660,138660,1.64],[138661,138661,1.82],[138662,138663,1.65],[138664,138664,1.93],[138665,138666,1.64],[138667,138667,2.71],[138668,138668,4.48],[138669,138669,4.89],[138670,138671,3.28],[138672,138672,3.22],[138673,138673,2.88],[138674,138674,3.21],[138675,138675,2.12],[138676,138676,2.15],[138677,138677,1.91],[138678,138678,3.28],[138679,138679,3.17],[138680,138680,3.25],[138681,138681,2.91],[138682,138682,2.94],[138683,138684,2.74],[138685,138685,3.04],[138686,138686,2.66],[138687,138687,2.7],[138688,138703,0],[138704,138706,10],[138707,138713,0],[138714,138714,10],[138715,138726,0],[138727,138749,10],[138750,138751,0],[138752,138752,7.22],[138753,138753,4.44],[138754,138754,6.67],[138755,138755,5],[138756,138756,6.86],[138757,138757,6.23],[138758,138758,6.67],[138759,138759,5],[138760,138760,6.98],[138761,138761,5.21],[138762,138762,7.22],[138763,138763,5],[138764,138764,7.71],[138765,138765,6.23],[138766,138766,7.22],[138767,138767,5],[138768,138768,7.22],[138769,138769,5],[138770,138770,7.22],[138771,138771,5],[138772,138772,6.32],[138773,138773,5.96],[138774,138774,6.32],[138775,138775,5.96],[138776,138776,6.11],[138777,138777,4.44],[138778,138778,6.11],[138779,138779,4.44],[138780,138780,6.11],[138781,138781,4.44],[138782,138782,5.56],[138783,138783,3.33],[138784,138784,7.22],[138785,138785,5],[138786,138786,7.22],[138787,138787,5],[138788,138788,7.51],[138789,138789,6.33],[138790,138790,7.22],[138791,138791,5],[138792,138792,7.22],[138793,138793,5],[138794,138794,7.22],[138795,138795,5],[138796,138796,3.33],[138797,138797,2.78],[138798,138798,4.21],[138799,138799,2.74],[138800,138800,6.93],[138801,138801,5.92],[138802,138802,6.93],[138803,138803,5.92],[138804,138804,7.22],[138805,138805,5],[138806,138806,5.57],[138807,138807,2.74],[138808,138808,6.11],[138809,138809,2.78],[138810,138810,6.11],[138811,138811,2.78],[138812,138812,6.11],[138813,138813,2.78],[138814,138814,8.43],[138815,138815,9.73],[138816,138816,8.89],[138817,138817,7.78],[138818,138818,8.43],[138819,138819,9.73],[138820,138820,7.22],[138821,138821,5],[138822,138822,7.48],[138823,138823,6.33],[138824,138824,7.22],[138825,138825,5],[138826,138826,7.22],[138827,138827,5],[138828,138828,7.87],[138829,138829,6.07],[138830,138830,7.22],[138831,138831,5],[138832,138832,7.87],[138833,138833,6.07],[138834,138834,7.87],[138835,138835,6.07],[138836,138836,6.03],[138837,138837,6.23],[138838,138838,5.56],[138839,138839,5],[138840,138840,6.67],[138841,138841,3.33],[138842,138842,6.95],[138843,138843,4.27],[138844,138844,6.67],[138845,138845,3.33],[138846,138846,6.67],[138847,138847,3.33],[138848,138848,5.56],[138849,138849,3.89],[138850,138850,6.84],[138851,138851,5.21],[138852,138852,5.56],[138853,138853,3.89],[138854,138854,5.56],[138855,138855,3.89],[138856,138856,5.56],[138857,138857,3.89],[138858,138858,6.11],[138859,138859,2.78],[138860,138860,6.16],[138861,138861,3.94],[138862,138862,6.11],[138863,138863,2.78],[138864,138864,6.11],[138865,138865,2.78],[138866,138866,7.22],[138867,138867,5],[138868,138868,7.22],[138869,138869,5],[138870,138870,7.22],[138871,138871,5],[138872,138872,7.32],[138873,138873,6.33],[138874,138874,7.22],[138875,138875,5],[138876,138876,6.84],[138877,138877,5.92],[138878,138878,6.84],[138879,138879,5.92],[138880,138880,9.89],[138881,138881,8.18],[138882,138882,9.89],[138883,138883,8.18],[138884,138884,9.89],[138885,138885,8.18],[138886,138886,9.44],[138887,138887,7.22],[138888,138888,9.89],[138889,138889,8.18],[138890,138890,7.22],[138891,138891,5],[138892,138892,7.22],[138893,138893,5],[138894,138894,7.22],[138895,138895,5],[138896,138896,6.11],[138897,138897,4.44],[138898,138898,6.85],[138899,138899,5.25],[138900,138900,6.11],[138901,138901,4.44],[138902,138902,5],[138903,138903,2.78],[138904,138904,7.22],[138905,138905,5],[138906,138906,4.44],[138907,138907,2.78],[138908,138908,4.23],[138909,138909,4.22],[138910,138910,6.78],[138911,138911,6.02],[138912,138912,6.84],[138913,138913,6.01],[138914,138914,6.84],[138915,138915,6.01],[138916,138916,6.84],[138917,138917,6.01],[138918,138918,6.84],[138919,138919,6.01],[138920,138920,6.84],[138921,138921,6.01],[138922,138922,6.84],[138923,138923,6.01],[138924,138924,6.84],[138925,138925,6.01],[138926,138926,6.84],[138927,138927,6.01],[138928,138928,6.84],[138929,138929,6.01],[138930,138930,6.84],[138931,138931,6.01],[138932,138932,6.84],[138933,138933,6.01],[138934,138934,6.84],[138935,138935,6.01],[138936,138936,6.32],[138937,138937,5.96],[138938,138938,6.32],[138939,138939,5.96],[138940,138940,6.32],[138941,138941,5.96],[138942,138942,6.32],[138943,138943,5.96],[138944,138944,6.32],[138945,138945,5.96],[138946,138946,6.32],[138947,138947,5.96],[138948,138948,6.32],[138949,138949,5.96],[138950,138950,6.32],[138951,138951,5.96],[138952,138952,4.21],[138953,138953,2.74],[138954,138954,4.21],[138955,138955,2.74],[138956,138956,7.87],[138957,138957,6.07],[138958,138958,7.87],[138959,138959,6.07],[138960,138960,7.87],[138961,138961,6.07],[138962,138962,7.87],[138963,138963,6.07],[138964,138964,7.87],[138965,138965,6.07],[138966,138966,7.87],[138967,138967,6.07],[138968,138968,7.87],[138969,138969,6.07],[138970,138970,8.07],[138971,138971,6.07],[138972,138972,8.07],[138973,138973,6.07],[138974,138974,8.07],[138975,138975,6.07],[138976,138976,8.07],[138977,138977,6.07],[138978,138978,8.07],[138979,138979,6.07],[138980,138980,7.32],[138981,138981,6.33],[138982,138982,7.32],[138983,138983,6.33],[138984,138984,7.56],[138985,138985,6.6],[138986,138986,7.56],[138987,138987,6.6],[138988,138988,7.56],[138989,138989,6.6],[138990,138990,7.56],[138991,138991,6.6],[138992,138992,7.56],[138993,138993,6.6],[138994,138994,6.15],[138995,138995,5.92],[138996,138996,6.15],[138997,138997,5.92],[138998,138998,6.15],[138999,138999,5.92],[139000,139000,6.15],[139001,139001,5.92],[139002,139002,9.36],[139003,139003,5.89],[139004,139004,5.06],[139005,139005,4.45],[139006,139007,4.58],[139008,139015,5.24],[139016,139017,7.22],[139018,139023,7.91],[139024,139029,4.2],[139030,139031,10],[139032,139033,7.48],[139034,139037,9.04],[139038,139039,10],[139040,139047,5.23],[139048,139049,8.59],[139050,139055,10.16],[139056,139063,2.69],[139064,139065,4.7],[139066,139071,6.26],[139072,139077,5],[139078,139079,10],[139080,139081,7.91],[139082,139083,9.96],[139084,139085,8.98],[139086,139087,10],[139088,139095,4.95],[139096,139096,10],[139097,139097,8.59],[139098,139098,10],[139099,139099,10.21],[139100,139100,10],[139101,139101,10.21],[139102,139102,10],[139103,139103,10.21],[139104,139111,6.58],[139112,139113,8.12],[139114,139115,9.98],[139116,139119,9.29],[139120,139121,6.23],[139122,139123,5.13],[139124,139125,6.33],[139126,139127,2.74],[139128,139129,6.07],[139130,139131,6.31],[139132,139133,8.13],[139134,139135,10],[139136,139143,5.24],[139144,139145,7.22],[139146,139151,7.91],[139152,139159,5.23],[139160,139161,8.59],[139162,139167,10.16],[139168,139175,6.58],[139176,139177,8.12],[139178,139179,9.98],[139180,139183,9.29],[139184,139188,5.24],[139189,139189,10],[139190,139191,5.24],[139192,139193,7.22],[139194,139195,6.84],[139196,139196,7.22],[139197,139197,3.33],[139198,139198,2.74],[139199,139201,3.33],[139202,139204,5.23],[139205,139205,10],[139206,139207,5.23],[139208,139208,6.32],[139209,139210,7.51],[139211,139211,8.7],[139212,139212,7.22],[139213,139215,3.33],[139216,139217,2.69],[139218,139219,2.74],[139220,139221,10],[139222,139223,2.69],[139224,139225,3.33],[139226,139226,4.21],[139227,139227,5.4],[139228,139228,10],[139229,139231,3.33],[139232,139233,4.95],[139234,139235,6.31],[139236,139237,4.99],[139238,139239,4.95],[139240,139241,7.22],[139242,139242,6.15],[139243,139243,7.53],[139244,139244,6.93],[139245,139247,6.36],[139248,139249,10],[139250,139252,6.58],[139253,139253,10],[139254,139255,6.58],[139256,139256,7.87],[139257,139257,8.81],[139258,139258,8.18],[139259,139259,9.08],[139260,139260,7.43],[139261,139261,6.36],[139262,139262,3.33],[139263,139263,10],[139264,139264,5],[139265,139265,10],[139266,139266,5],[139267,139267,10],[139268,139268,3.33],[139269,139269,2.5],[139270,139270,1.67],[139271,139271,6.36],[139272,139272,3.64],[139273,139273,2],[139274,139274,0.63],[139275,139279,0],[139280,139281,5.79],[139282,139283,6.36],[139284,139285,10],[139286,139286,2.81],[139287,139287,6.36],[139288,139291,2.69],[139292,139295,4.59],[139296,139297,6.36],[139298,139298,5.45],[139299,139299,4.7],[139300,139300,3.33],[139301,139301,6.67],[139302,139302,8.18],[139303,139303,3.16],[139304,139310,0],[139311,139311,1.76],[139312,139312,15.21],[139313,139313,13.55],[139314,139314,3.61],[139315,139316,5.57],[139317,139317,3.25],[139318,139318,5.42],[139319,139319,7.59],[139320,139320,3.53],[139321,139322,4.54],[139323,139323,7.23],[139324,139324,6.25],[139325,139325,4.22],[139326,139326,6.36],[139327,139328,5],[139329,139329,4.65],[139330,139330,9.11],[139331,139331,3.25],[139332,139332,3.61],[139333,139334,3.25],[139335,139335,8.07],[139336,139337,7.07],[139338,139339,6.32],[139340,139341,5.42],[139342,139342,4.82],[139343,139343,3.16],[139344,139344,5],[139345,139345,4.82],[139346,139346,5.51],[139347,139347,10],[139348,139348,5],[139349,139349,6.97],[139350,139350,5.93],[139351,139351,9.74],[139352,139353,5.93],[139354,139354,10],[139355,139355,5.93],[139356,139356,6.98],[139357,139357,10],[139358,139358,2.78],[139359,139359,2.22],[139360,139375,0],[139376,139376,4.22],[139377,139377,2.17],[139378,139379,10],[139380,139381,5.42],[139382,139382,4.22],[139383,139384,5.42],[139385,139388,4.22],[139389,139390,2.26],[139391,139391,5.45],[139392,139404,4.22],[139405,139406,2.26],[139407,139407,10],[139408,139408,2.73],[139409,139409,2.56],[139410,139410,2.88],[139411,139411,2.9],[139412,139412,2.56],[139413,139423,10],[139424,139424,6.36],[139425,139426,6.98],[139427,139428,6.36],[139429,139429,9.73],[139430,139430,7.48],[139431,139431,11.64],[139432,139432,11.67],[139433,139433,9.89],[139434,139434,8.35],[139435,139435,6.23],[139436,139436,6.36],[139437,139437,6.93],[139438,139438,6.16],[139439,139439,10],[139440,139440,5.21],[139441,139441,6.03],[139442,139442,7.75],[139443,139444,6.84],[139445,139445,6.98],[139446,139446,6.77],[139447,139447,7.3],[139448,139448,5.65],[139449,139449,6],[139450,139450,5.56],[139451,139451,8.31],[139452,139453,5.65],[139454,139454,7.53],[139455,139455,6.59],[139456,139471,10],[139472,139474,0],[139475,139475,6],[139476,139477,7],[139478,139480,0],[139481,139482,6],[139483,139485,0],[139486,139486,10],[139487,139487,8.65],[139488,139488,9],[139489,139489,0],[139490,139490,10],[139491,139504,0],[139505,139519,10],[139520,139521,7.5],[139522,139522,6.02],[139523,139523,9.89],[139524,139524,6.4],[139525,139525,10.76],[139526,139526,7.5],[139527,139527,5.98],[139528,139528,6.03],[139529,139529,8.47],[139530,139530,10],[139531,139531,9.97],[139532,139532,8.24],[139533,139533,6.02],[139534,139534,5.77],[139535,139535,6.15],[139536,139536,8.97],[139537,139537,7.62],[139538,139538,9.46],[139539,139539,3.23],[139540,139540,7.78],[139541,139541,6.02],[139542,139542,11.72],[139543,139543,8.55],[139544,139544,8.26],[139545,139546,6.02],[139547,139547,9.44],[139548,139548,8.74],[139549,139549,6.02],[139550,139550,6.32],[139551,139551,6.67],[139552,139552,11.28],[139553,139553,15.03],[139554,139554,9.77],[139555,139555,7.22],[139556,139556,6.02],[139557,139557,5.12],[139558,139558,8.18],[139559,139559,7.95],[139560,139560,7.26],[139561,139561,4],[139562,139562,6.93],[139563,139563,6.84],[139564,139564,9.5],[139565,139565,7.17],[139566,139566,7.18],[139567,139567,6.27],[139568,139568,7.5],[139569,139569,9.19],[139570,139570,6.64],[139571,139571,10.72],[139572,139572,6.97],[139573,139573,6.45],[139574,139574,5.63],[139575,139575,4.27],[139576,139576,5.01],[139577,139577,6.6],[139578,139578,9.34],[139579,139579,16.4],[139580,139580,6.73],[139581,139581,5.4],[139582,139582,4.69],[139583,139583,7.18],[139584,139584,9.23],[139585,139585,7.23],[139586,139587,5.33],[139588,139588,6.23],[139589,139589,7.13],[139590,139590,5.81],[139591,139591,5.15],[139592,139592,2.93],[139593,139593,3.41],[139594,139594,6.64],[139595,139595,6.97],[139596,139596,8.1],[139597,139597,8.82],[139598,139598,4.17],[139599,139602,10],[139603,139604,7.5],[139605,139610,8.01],[139611,139614,10],[139615,139615,3.8],[139616,139616,2.88],[139617,139617,5.9],[139618,139618,8.37],[139619,139619,9.05],[139620,139620,6.53],[139621,139621,9.18],[139622,139622,12.13],[139623,139623,14.6],[139624,139624,8.72],[139625,139625,6.26],[139626,139626,8.53],[139627,139627,11.47],[139628,139628,5.33],[139629,139629,6.92],[139630,139630,7.49],[139631,139631,8.61],[139632,139632,2.89],[139633,139633,5.78],[139634,139634,8.19],[139635,139635,7.79],[139636,139636,5.18],[139637,139637,7.82],[139638,139638,10.71],[139639,139639,13.12],[139640,139640,8.35],[139641,139641,6.13],[139642,139642,8.33],[139643,139643,11.22],[139644,139644,2.89],[139645,139645,5.12],[139646,139646,6.29],[139647,139647,9.34],[139648,139648,10.41],[139649,139649,7.49],[139650,139650,10.41],[139651,139651,6.92],[139652,139652,4.44],[139653,139653,6.51],[139654,139654,5.64],[139655,139664,10],[139665,139665,5],[139666,139666,10],[139667,139667,5],[139668,139668,10],[139669,139669,5],[139670,139675,10],[139676,139687,6.02],[139688,139688,5],[139689,139689,10],[139690,139690,9.88],[139691,139693,6.02],[139694,139694,10],[139695,139695,6.02],[139696,139698,8.65],[139699,139699,10],[139700,139700,8.65],[139701,139701,10],[139702,139703,8.65],[139704,139705,10],[139706,139707,6.02],[139708,139708,8.65],[139709,139711,6.02],[139712,139712,8.65],[139713,139715,6.02],[139716,139718,10],[139719,139722,6.02],[139723,139724,10],[139725,139725,8.8],[139726,139726,6.02],[139727,139727,8.69],[139728,139728,10],[139729,139729,8.65],[139730,139730,9.31],[139731,139731,8.65],[139732,139732,9.31],[139733,139741,6.02],[139742,139743,6.45],[139744,139744,10],[139745,139745,6.45],[139746,139746,10],[139747,139747,6.45],[139748,139754,10],[139755,139759,6.02],[139760,139760,8.65],[139761,139764,6.02],[139765,139765,10],[139766,139775,6.02],[139776,139776,6.3],[139777,139777,4.69],[139778,139778,6.36],[139779,139779,5.26],[139780,139780,5.35],[139781,139781,7.17],[139782,139782,7.27],[139783,139783,7],[139784,139784,5.76],[139785,139785,6.12],[139786,139786,5.09],[139787,139787,5.76],[139788,139788,5.89],[139789,139789,5.09],[139790,139790,5.22],[139791,139791,8.18],[139792,139792,7.95],[139793,139793,7.27],[139794,139794,8.18],[139795,139795,7.95],[139796,139796,5.99],[139797,139797,3.61],[139798,139798,7.95],[139799,139799,5.23],[139800,139800,3.55],[139801,139801,3.64],[139802,139802,8.18],[139803,139803,7.49],[139804,139804,7.24],[139805,139805,5.19],[139806,139806,10],[139807,139807,9.79],[139808,139808,5.98],[139809,139809,6.01],[139810,139810,6.05],[139811,139811,2.5],[139812,139812,4.73],[139813,139813,3.46],[139814,139814,5.25],[139815,139816,5.94],[139817,139817,7.22],[139818,139818,5.31],[139819,139819,6.36],[139820,139820,9.15],[139821,139821,11.24],[139822,139822,6.78],[139823,139823,9.24],[139824,139824,11.66],[139825,139825,5.98],[139826,139826,6.28],[139827,139827,5.97],[139828,139828,6.04],[139829,139829,5.97],[139830,139830,3.36],[139831,139831,5.76],[139832,139832,5.63],[139833,139833,5.76],[139834,139834,5.8],[139835,139835,5.6],[139836,139837,5.5],[139838,139838,5.43],[139839,139839,5.83],[139840,139840,3.9],[139841,139841,5.74],[139842,139842,5.8],[139843,139843,5.84],[139844,139844,6.71],[139845,139845,6.96],[139846,139846,6.29],[139847,139847,6.11],[139848,139848,8.18],[139849,139849,5.49],[139850,139850,6.04],[139851,139851,6.71],[139852,139852,5.43],[139853,139853,6.03],[139854,139854,5.97],[139855,139855,5.93],[139856,139856,5.6],[139857,139857,6.38],[139858,139859,6.32],[139860,139861,7.64],[139862,139862,5.79],[139863,139863,5.96],[139864,139864,5.89],[139865,139865,6.08],[139866,139866,6.19],[139867,139867,6.46],[139868,139868,6.36],[139869,139869,5.63],[139870,139870,5.75],[139871,139871,5.9],[139872,139873,8.18],[139874,139874,5.64],[139875,139875,5.93],[139876,139877,8.18],[139878,139878,5.75],[139879,139879,5.64],[139880,139880,6.22],[139881,139881,5.89],[139882,139882,7.33],[139883,139883,7.01],[139884,139884,3.58],[139885,139885,5.53],[139886,139887,5.64],[139888,139889,5.49],[139890,139890,5.64],[139891,139891,5.67],[139892,139892,5.83],[139893,139893,5.81],[139894,139895,6.05],[139896,139896,5.61],[139897,139897,5.77],[139898,139898,5.67],[139899,139899,5.78],[139900,139900,5.96],[139901,139901,5.78],[139902,139902,5.85],[139903,139903,5.82],[139904,139904,6.07],[139905,139905,5.79],[139906,139907,6.32],[139908,139908,6.44],[139909,139909,6.31],[139910,139911,6.63],[139912,139912,6.67],[139913,139913,6.49],[139914,139915,5.62],[139916,139917,5.82],[139918,139918,6.09],[139919,139920,6.54],[139921,139922,6.51],[139923,139924,6.11],[139925,139925,7.24],[139926,139926,7.45],[139927,139927,7.11],[139928,139928,7.22],[139929,139929,7.56],[139930,139930,7.35],[139931,139931,7.18],[139932,139932,7.61],[139933,139933,7.56],[139934,139934,7.84],[139935,139935,7.6],[139936,139936,7.33],[139937,139937,7.16],[139938,139941,7.5],[139942,139942,3.3],[139943,139943,3.33],[139944,139944,6.24],[139945,139945,7.29],[139946,139946,6.23],[139947,139947,7.55],[139948,139948,7.76],[139949,139949,7.78],[139950,139950,8.74],[139951,139951,8.36],[139952,139953,6.32],[139954,139955,7.41],[139956,139957,7.03],[139958,139959,7.35],[139960,139960,5.96],[139961,139961,6.83],[139962,139962,4.8],[139963,139964,6.96],[139965,139965,6.74],[139966,139966,7.42],[139967,139967,6.31],[139968,139969,6.71],[139970,139971,6.41],[139972,139972,3.81],[139973,139973,4.41],[139974,139974,4.48],[139975,139975,6.31],[139976,139976,7.72],[139977,139978,7.4],[139979,139980,7.24],[139981,139981,5.84],[139982,139983,6.35],[139984,139985,6.48],[139986,139987,5.69],[139988,139988,5.49],[139989,139989,6.14],[139990,139991,6.03],[139992,139993,9.68],[139994,139995,6.51],[139996,139997,6.46],[139998,139999,6.69],[140000,140000,6.66],[140001,140001,6.56],[140002,140002,6.86],[140003,140003,6.64],[140004,140004,6.71],[140005,140005,6.73],[140006,140006,6.76],[140007,140007,6.86],[140008,140008,7.19],[140009,140009,6.88],[140010,140010,7.49],[140011,140011,7.66],[140012,140012,7.71],[140013,140013,7.76],[140014,140014,4.11],[140015,140015,10],[140016,140016,9.2],[140017,140017,9.39],[140018,140018,6.5],[140019,140019,5.76],[140020,140020,5.09],[140021,140022,5.76],[140023,140023,5.09],[140024,140024,5.76],[140025,140025,6.32],[140026,140026,6.5],[140027,140027,5.76],[140028,140028,5.09],[140029,140029,5.76],[140030,140030,5.09],[140031,140031,5.26],[140032,140033,6.02],[140034,140034,6],[140035,140035,7.95],[140036,140036,6.02],[140037,140037,7.95],[140038,140038,6.64],[140039,140039,10],[140040,140047,6.02],[140048,140048,5.64],[140049,140049,6.02],[140050,140050,10],[140051,140051,6.02],[140052,140052,8.65],[140053,140053,6.02],[140054,140055,11],[140056,140056,10],[140057,140057,6.02],[140058,140059,10],[140060,140063,6.02],[140064,140065,6.04],[140066,140067,8.65],[140068,140068,7.95],[140069,140069,10],[140070,140070,12.14],[140071,140071,10],[140072,140072,6.02],[140073,140074,10],[140075,140075,12.14],[140076,140076,9.26],[140077,140077,9.86],[140078,140078,6.24],[140079,140081,5.49],[140082,140082,8.89],[140083,140084,5.49],[140085,140085,6.02],[140086,140086,9.26],[140087,140092,6.02],[140093,140093,10],[140094,140094,6.02],[140095,140096,6.83],[140097,140100,6.02],[140101,140102,6],[140103,140105,6.02],[140106,140106,6],[140107,140109,6.02],[140110,140111,6],[140112,140112,6.02],[140113,140113,6],[140114,140116,6.02],[140117,140118,6],[140119,140124,6.02],[140125,140125,6],[140126,140128,6.02],[140129,140130,6],[140131,140133,6.02],[140134,140135,6],[140136,140137,6.02],[140138,140138,6],[140139,140144,6.02],[140145,140146,6],[140147,140154,6.02],[140155,140155,6.69],[140156,140156,8.71],[140157,140157,3.16],[140158,140158,9.39],[140159,140159,3.71],[140160,140163,6.02],[140164,140164,7.85],[140165,140165,6.84],[140166,140166,6.75],[140167,140168,10],[140169,140170,6.02],[140171,140171,10],[140172,140172,8.08],[140173,140173,7.86],[140174,140174,7.47],[140175,140178,6.58],[140179,140179,9.13],[140180,140180,9.26],[140181,140181,6.02],[140182,140182,4.72],[140183,140184,7.89],[140185,140186,8.15],[140187,140205,10],[140206,140206,6.02],[140207,140207,3.15],[140208,140209,10],[140210,140211,14.88],[140212,140214,9.26],[140215,140215,6.43],[140216,140221,5.03],[140222,140236,10],[140237,140237,9.98],[140238,140238,10],[140239,140239,8.57],[140240,140240,5.11],[140241,140243,5.42],[140244,140245,10.31],[140246,140246,9.58],[140247,140249,9.76],[140250,140257,10],[140258,140258,11.44],[140259,140259,9.1],[140260,140260,10.94],[140261,140261,10.18],[140262,140262,9.26],[140263,140263,7.98],[140264,140319,10],[140320,140320,6],[140321,140321,10],[140322,140322,6],[140323,140323,3.16],[140324,140324,6],[140325,140325,7.92],[140326,140326,4.03],[140327,140351,10],[140352,140357,6.04],[140358,140361,7.5],[140362,140362,6.04],[140363,140484,10],[140485,140485,8.55],[140486,140543,10],[140544,140544,7.08],[140545,140545,10],[140546,140546,7.08],[140547,140555,10],[140556,140556,7.08],[140557,140559,10],[140560,140560,7.08],[140561,140563,10],[140564,140564,7.08],[140565,140567,10],[140568,140568,7.08],[140569,140571,10],[140572,140572,7.08],[140573,140579,10],[140580,140580,7.08],[140581,140587,10],[140588,140588,7.08],[140589,140595,10],[140596,140596,7.08],[140597,140603,10],[140604,140604,7.08],[140605,140619,10],[140620,140623,6.02],[140624,140652,7.08],[140653,140660,10],[140661,140671,6.02],[140672,140672,7.08],[140673,140675,10],[140676,140676,7.08],[140677,140679,10],[140680,140680,7.08],[140681,140683,10],[140684,140684,7.08],[140685,140687,10],[140688,140690,7.08],[140691,140691,7.29],[140692,140693,10],[140694,140703,6.02],[140704,140705,6.04],[140706,140706,10],[140707,140713,8.65],[140714,140715,3.54],[140716,140716,10],[140717,140717,8.65],[140718,140720,6.02],[140721,140721,10],[140722,140722,9.9],[140723,140723,10],[140724,140724,5.51],[140725,140725,8.65],[140726,140726,8.8],[140727,140727,10],[140728,140729,5.3],[140730,140730,9.9],[140731,140731,6.02],[140732,140732,9.9],[140733,140733,10],[140734,140735,6.39],[140736,140736,10],[140737,140737,7.95],[140738,140738,6.02],[140739,140739,8.65],[140740,140740,9.9],[140741,140741,6.02],[140742,140742,7.23],[140743,140743,6.15],[140744,140744,8.65],[140745,140745,10],[140746,140746,8.18],[140747,140747,6.04],[140748,140748,5.94],[140749,140749,6.02],[140750,140750,10],[140751,140751,6.04],[140752,140755,10],[140756,140759,6.02],[140760,140761,6.04],[140762,140769,6.02],[140770,140773,10],[140774,140774,3.54],[140775,140782,6.02],[140783,140783,10],[140784,140794,6.02],[140795,140798,10],[140799,140799,6.02],[140800,140803,10],[140804,140804,6.02],[140805,140806,10],[140807,140808,6.02],[140809,140809,10],[140810,140813,6.02],[140814,140814,10],[140815,140815,8.65],[140816,140818,8.3],[140819,140819,6.02],[140820,140823,10],[140824,140827,6.02],[140828,140831,10],[140832,140846,6.02],[140847,140847,8.65],[140848,140855,9],[140856,140857,6.02],[140858,140858,10.21],[140859,140859,10.52],[140860,140860,9.17],[140861,140863,6.02],[140864,140864,7.5],[140865,140865,6.02],[140866,140866,7.5],[140867,140871,6.02],[140872,140883,10],[140884,140895,6.02],[140896,140896,5.31],[140897,140898,10],[140899,140899,6.56],[140900,140900,10],[140901,140901,5.94],[140902,140902,5.1],[140903,140905,10],[140906,140906,5],[140907,140907,7.5],[140908,140910,10],[140911,140911,5],[140912,140913,6.02],[140914,140925,10],[140926,140926,6.02],[140927,140927,10],[140928,140939,6.02],[140940,140940,8.79],[140941,140941,8.63],[140942,140942,8.59],[140943,140943,8.96],[140944,140946,6.02],[140947,140947,10],[140948,140956,6.02],[140957,140961,10],[140962,140962,8.92],[140963,140963,8.97],[140964,140964,8.83],[140965,140965,6.6],[140966,140966,7.41],[140967,140967,9.23],[140968,140968,5.33],[140969,140969,9.2],[140970,140971,10],[140972,140972,5.65],[140973,140973,7.76],[140974,140974,10.55],[140975,140975,11.18],[140976,140977,6.02],[140978,140978,6.03],[140979,141025,10],[141026,141026,7],[141027,141056,10],[141057,141057,9.74],[141058,141058,9.61],[141059,141059,9.74],[141060,141060,9.8],[141061,141061,10],[141062,141062,7.89],[141063,141063,7.9],[141064,141064,7.91],[141065,141065,6.9],[141066,141069,10],[141070,141070,7.88],[141071,141071,9.33],[141072,141072,9.11],[141073,141073,9.45],[141074,141074,9.74],[141075,141075,7.64],[141076,141076,8.46],[141077,141077,7.62],[141078,141078,7.61],[141079,141079,5.71],[141080,141080,6.77],[141081,141081,7.63],[141082,141082,7.6],[141083,141083,7.59],[141084,141084,7.54],[141085,141085,4.94],[141086,141086,5.52],[141087,141087,5.37],[141088,141088,5.77],[141089,141089,6.92],[141090,141090,7.86],[141091,141092,7.88],[141093,141093,7.9],[141094,141094,7.93],[141095,141095,7.94],[141096,141096,10],[141097,141097,8.23],[141098,141098,7.89],[141099,141099,8.41],[141100,141100,8.23],[141101,141101,8.33],[141102,141102,8.16],[141103,141103,8.31],[141104,141104,9.23],[141105,141105,7.44],[141106,141106,7.23],[141107,141107,7.49],[141108,141108,7.9],[141109,141109,7.92],[141110,141110,6.95],[141111,141111,7.76],[141112,141112,7.68],[141113,141113,7.92],[141114,141114,7.59],[141115,141115,7.07],[141116,141116,7.08],[141117,141117,6.82],[141118,141118,7.01],[141119,141119,8.26],[141120,141120,8.15],[141121,141122,7.89],[141123,141123,7.07],[141124,141124,6.87],[141125,141125,6.96],[141126,141126,6.89],[141127,141127,7.86],[141128,141128,7.87],[141129,141129,7.13],[141130,141130,7.91],[141131,141131,7.85],[141132,141132,10],[141133,141133,8.73],[141134,141134,10],[141135,141136,7.62],[141137,141138,7.59],[141139,141141,10],[141142,141142,7.84],[141143,141143,10],[141144,141144,2.89],[141145,141145,2.77],[141146,141146,4.15],[141147,141148,3.92],[141149,141150,6.68],[141151,141152,10],[141153,141153,7.32],[141154,141155,5.44],[141156,141156,9.1],[141157,141157,6.67],[141158,141159,7.6],[141160,141161,3.9],[141162,141163,3.17],[141164,141165,2.76],[141166,141167,5.09],[141168,141169,4.1],[141170,141171,2.34],[141172,141173,3.34],[141174,141203,7.88],[141204,141204,8.94],[141205,141207,10],[141208,141208,7.48],[141209,141209,9.24],[141210,141210,7.48],[141211,141211,9.18],[141212,141212,9.27],[141213,141214,9.28],[141215,141215,8.34],[141216,141216,8.73],[141217,141217,8.28],[141218,141219,9.24],[141220,141220,9.17],[141221,141221,9.3],[141222,141222,9.31],[141223,141223,4.63],[141224,141224,8.83],[141225,141226,8.36],[141227,141228,8.67],[141229,141230,6.96],[141231,141231,8.74],[141232,141232,10],[141233,141233,8.74],[141234,141234,7.6],[141235,141235,9.46],[141236,141236,7.71],[141237,141237,8.65],[141238,141238,7.71],[141239,141239,8.88],[141240,141240,9.67],[141241,141241,8.88],[141242,141242,8.31],[141243,141243,8.73],[141244,141244,9.27],[141245,141245,9.7],[141246,141246,9.18],[141247,141247,10],[141248,141248,5.48],[141249,141249,9.48],[141250,141250,6.89],[141251,141252,5.64],[141253,141254,6.02],[141255,141255,6.2],[141256,141257,9.18],[141258,141258,3.4],[141259,141259,8.38],[141260,141260,3.25],[141261,141261,8.38],[141262,141263,10],[141264,141264,7.46],[141265,141265,6.2],[141266,141266,5.97],[141267,141268,5.42],[141269,141270,9.02],[141271,141271,11.15],[141272,141273,6.89],[141274,141274,8.7],[141275,141275,8.56],[141276,141276,10.55],[141277,141278,8.49],[141279,141279,3.96],[141280,141280,5.51],[141281,141281,7],[141282,141283,8.76],[141284,141285,9.46],[141286,141287,4.22],[141288,141289,3.66],[141290,141291,4.63],[141292,141293,4.88],[141294,141295,2.33],[141296,141297,10.33],[141298,141299,9.74],[141300,141300,12],[141301,141311,15.74],[141312,141567,6.84],[141568,141575,9.26],[141576,141577,5.11],[141578,141583,9.26],[141584,141584,14.12],[141585,141585,9.26],[141586,141587,5.11],[141588,141619,9.26],[141620,141621,10],[141622,141623,8.65],[141624,141624,5.11],[141625,141625,8.65],[141626,141640,9.26],[141641,141641,5.11],[141642,141643,9.26],[141644,141645,5.11],[141646,141646,9.26],[141647,141647,5.11],[141648,141648,9.26],[141649,141649,5.11],[141650,141651,9.26],[141652,141653,5.11],[141654,141655,9.26],[141656,141657,5.11],[141658,141659,9.26],[141660,141661,5.11],[141662,141663,9.26],[141664,141665,5.11],[141666,141669,8.65],[141670,141677,9.26],[141678,141679,6.85],[141680,141685,9.26],[141686,141686,6.85],[141687,141687,9.26],[141688,141689,6.85],[141690,141690,9.26],[141691,141691,6.85],[141692,141693,9.26],[141694,141695,6.85],[141696,141696,3.65],[141697,141697,3.8],[141698,141698,3.13],[141699,141700,3.74],[141701,141702,4.47],[141703,141704,3.35],[141705,141706,3.95],[141707,141708,3.01],[141709,141712,3],[141713,141713,3.66],[141714,141714,3.68],[141715,141716,6.59],[141717,141718,6.95],[141719,141720,6.48],[141721,141721,2.26],[141722,141722,2.77],[141723,141723,5.94],[141724,141725,5.92],[141726,141726,6.61],[141727,141727,5.48],[141728,141729,5.94],[141730,141733,5.48],[141734,141735,7.53],[141736,141743,5.94],[141744,141748,7.03],[141749,141749,8.69],[141750,141750,7],[141751,141751,7.02],[141752,141752,7.22],[141753,141753,7.02],[141754,141754,7.03],[141755,141755,7.04],[141756,141761,7.02],[141762,141762,8.55],[141763,141763,8.74],[141764,141768,7.47],[141769,141769,7.96],[141770,141772,7.49],[141773,141773,9.44],[141774,141774,6.5],[141775,141776,7.58],[141777,141779,6.87],[141780,141781,6.51],[141782,141783,7.67],[141784,141785,2.77],[141786,141787,4.23],[141788,141788,6.37],[141789,141789,6.47],[141790,141790,6.37],[141791,141791,6.74],[141792,141792,7.47],[141793,141793,6.53],[141794,141794,6.83],[141795,141797,6.64],[141798,141798,7.1],[141799,141799,6.35],[141800,141801,7.49],[141802,141802,7.17],[141803,141803,4.73],[141804,141805,8.99],[141806,141807,5.98],[141808,141809,7.08],[141810,141811,7.02],[141812,141812,8.18],[141813,141813,5.99],[141814,141814,5.76],[141815,141817,5.08],[141818,141819,6.76],[141820,141821,5.37],[141822,141823,4.73],[141824,141825,8.99],[141826,141826,9.01],[141827,141828,5.44],[141829,141830,5.95],[141831,141832,7.66],[141833,141833,6.66],[141834,141834,8.55],[141835,141835,6.52],[141836,141836,15.05],[141837,141839,6.11],[141840,141840,4.99],[141841,141841,7.28],[141842,141842,5.19],[141843,141843,4.99],[141844,141844,6.28],[141845,141845,4.99],[141846,141846,6.11],[141847,141847,6.76],[141848,141850,6.11],[141851,141851,6.38],[141852,141852,6.17],[141853,141853,6.87],[141854,141854,3.95],[141855,141855,3.34],[141856,141856,8.11],[141857,141857,3.26],[141858,141859,5.41],[141860,141860,5.44],[141861,141861,5.41],[141862,141862,5.44],[141863,141863,6.47],[141864,141864,6.38],[141865,141866,5.45],[141867,141868,5.43],[141869,141870,7.61],[141871,141871,4.58],[141872,141872,5.29],[141873,141873,5.42],[141874,141874,5.21],[141875,141875,8.05],[141876,141877,7.14],[141878,141880,8.99],[141881,141883,7.49],[141884,141885,5.12],[141886,141886,3.34],[141887,141887,6.15],[141888,141893,5.44],[141894,141895,3.88],[141896,141897,5.42],[141898,141899,5.11],[141900,141901,7.39],[141902,141903,5.95],[141904,141904,7.39],[141905,141906,6.1],[141907,141908,6.52],[141909,141910,7.53],[141911,141912,6.52],[141913,141913,6.06],[141914,141915,6.52],[141916,141917,7.38],[141918,141920,6.1],[141921,141921,5.43],[141922,141923,6.1],[141924,141925,6.67],[141926,141929,5.42],[141930,141933,5.43],[141934,141934,4.85],[141935,141938,5.43],[141939,141939,5.44],[141940,141940,8.48],[141941,141941,9.84],[141942,141942,14.57],[141943,141943,5.45],[141944,141944,5.95],[141945,141946,6.59],[141947,141948,5.12],[141949,141951,5.43],[141952,141952,5.44],[141953,141958,5.43],[141959,141959,5.51],[141960,141960,5.7],[141961,141964,5.43],[141965,141965,5.51],[141966,141966,5.48],[141967,141968,5.45],[141969,141975,5.43],[141976,141978,5.44],[141979,141982,5.43],[141983,141983,5.52],[141984,141984,5.46],[141985,141986,6.83],[141987,141987,8.07],[141988,141988,5.44],[141989,141989,9.35],[141990,141993,6.13],[141994,141994,5.12],[141995,141995,5.24],[141996,141996,5.51],[141997,141997,5.56],[141998,141998,5.42],[141999,142001,5.53],[142002,142002,5.51],[142003,142006,5.53],[142007,142007,5.47],[142008,142008,5.48],[142009,142009,5.47],[142010,142010,5.48],[142011,142012,8.88],[142013,142014,5.64],[142015,142022,4.59],[142023,142026,5.46],[142027,142028,4.59],[142029,142030,9.53],[142031,142032,5.64],[142033,142034,5.63],[142035,142038,4.59],[142039,142040,8.5],[142041,142043,5.97],[142044,142044,6.1],[142045,142045,5.97],[142046,142046,3.93],[142047,142049,6.89],[142050,142050,6.86],[142051,142051,6.84],[142052,142052,6.86],[142053,142053,8.37],[142054,142054,6.86],[142055,142057,6.89],[142058,142059,6.93],[142060,142061,5.12],[142062,142062,3.13],[142063,142064,2.84],[142065,142065,2.99],[142066,142066,3.9],[142067,142067,5.43],[142068,142068,3.49],[142069,142069,4.78],[142070,142070,2.26],[142071,142072,9.71],[142073,142074,5.43],[142075,142075,4.99],[142076,142076,3.55],[142077,142077,4.11],[142078,142079,2.94],[142080,142083,6.02],[142084,142084,10.98],[142085,142087,10],[142088,142091,6.02],[142092,142092,10.98],[142093,142093,5.86],[142094,142097,6],[142098,142105,6.02],[142106,142108,10],[142109,142110,2.4],[142111,142114,9.1],[142115,142115,9.26],[142116,142116,12.07],[142117,142118,10],[142119,142120,5.44],[142121,142121,10],[142122,142123,3.57],[142124,142125,8.42],[142126,142127,5.96],[142128,142129,9.26],[142130,142130,12],[142131,142131,15.74],[142132,142134,9.26],[142135,142135,14.12],[142136,142148,9.26],[142149,142150,9.28],[142151,142156,9.26],[142157,142160,10],[142161,142161,7.94],[142162,142162,7],[142163,142164,8.65],[142165,142223,10],[142224,142225,12.34],[142226,142335,10],[142336,142336,8.17],[142337,142337,8.47],[142338,142338,10.63],[142339,142339,9.58],[142340,142340,10.71],[142341,142341,6.58],[142342,142342,10.63],[142343,142343,8.54],[142344,142344,10.19],[142345,142346,10.72],[142347,142347,5.21],[142348,142348,10.96],[142349,142349,4.45],[142350,142350,10.38],[142351,142351,8.36],[142352,142353,5.69],[142354,142354,7.69],[142355,142355,5.69],[142356,142356,8.04],[142357,142357,10.63],[142358,142358,8.54],[142359,142359,7.96],[142360,142360,8.55],[142361,142361,7.96],[142362,142362,8.65],[142363,142363,8.18],[142364,142364,8.4],[142365,142365,9.09],[142366,142366,8.57],[142367,142367,7.42],[142368,142368,6.99],[142369,142369,9.36],[142370,142370,7.78],[142371,142371,8.57],[142372,142372,7.27],[142373,142373,8.5],[142374,142374,8.6],[142375,142375,10.3],[142376,142376,10.4],[142377,142377,13.04],[142378,142378,9.27],[142379,142379,6.01],[142380,142380,3.88],[142381,142381,7.92],[142382,142382,9.89],[142383,142383,10],[142384,142384,7.07],[142385,142385,7.27],[142386,142386,9.2],[142387,142387,7.98],[142388,142388,8.96],[142389,142389,5.08],[142390,142390,9.2],[142391,142391,6.88],[142392,142392,8.34],[142393,142394,9.14],[142395,142395,4.73],[142396,142396,9.19],[142397,142397,3.97],[142398,142398,8.71],[142399,142399,7.23],[142400,142400,4.93],[142401,142401,5.06],[142402,142402,6.63],[142403,142403,4.86],[142404,142404,6.42],[142405,142405,9.2],[142406,142406,7.38],[142407,142407,7.43],[142408,142408,6.99],[142409,142409,6.23],[142410,142410,7.02],[142411,142411,7.07],[142412,142412,6.69],[142413,142413,6.98],[142414,142414,7.46],[142415,142415,6.39],[142416,142416,6.13],[142417,142417,7.22],[142418,142418,6.04],[142419,142419,7.46],[142420,142420,5.64],[142421,142421,6.64],[142422,142422,7.22],[142423,142423,7.84],[142424,142424,8.53],[142425,142425,10.38],[142426,142426,7.97],[142427,142427,4.83],[142428,142428,3.12],[142429,142429,6.44],[142430,142430,7.71],[142431,142431,10],[142432,142432,6.11],[142433,142433,2.78],[142434,142434,6.11],[142435,142435,5.56],[142436,142436,6.67],[142437,142437,4.44],[142438,142438,2.78],[142439,142439,7.22],[142440,142440,5],[142441,142441,7.22],[142442,142442,5],[142443,142443,6.11],[142444,142444,4.44],[142445,142445,7.68],[142446,142447,6.02],[142448,142448,8.98],[142449,142449,6.46],[142450,142450,10.56],[142451,142451,8.75],[142452,142452,4.72],[142453,142453,6.59],[142454,142454,5.04],[142455,142455,5.77],[142456,142456,6.89],[142457,142458,6.02],[142459,142459,4.07],[142460,142461,6.02],[142462,142462,5.86],[142463,142463,6],[142464,142464,6.33],[142465,142465,5.74],[142466,142466,6.5],[142467,142467,5.76],[142468,142468,5.24],[142469,142469,4.33],[142470,142470,8.14],[142471,142471,6.58],[142472,142472,6.43],[142473,142473,4.95],[142474,142474,5.56],[142475,142475,4.79],[142476,142476,5.72],[142477,142477,4.54],[142478,142478,7.41],[142479,142479,6.37],[142480,142480,7.82],[142481,142481,6.05],[142482,142482,2.84],[142483,142483,2.58],[142484,142484,6.19],[142485,142485,5.34],[142486,142486,5.81],[142487,142487,4.67],[142488,142488,8],[142489,142489,7.46],[142490,142490,7.6],[142491,142491,6.32],[142492,142492,5.72],[142493,142493,4.7],[142494,142494,7.81],[142495,142495,6.05],[142496,142496,7.31],[142497,142497,6.24],[142498,142498,6.05],[142499,142499,5.3],[142500,142500,6.32],[142501,142501,4.8],[142502,142502,6.1],[142503,142503,5.67],[142504,142504,5.66],[142505,142505,5.08],[142506,142506,8.04],[142507,142507,7.25],[142508,142508,5.86],[142509,142509,5.29],[142510,142510,8.34],[142511,142511,7],[142512,142512,10.32],[142513,142513,8.16],[142514,142514,6.47],[142515,142515,5.06],[142516,142516,5.54],[142517,142517,5.72],[142518,142518,6.3],[142519,142519,5.52],[142520,142520,5.72],[142521,142521,4.7],[142522,142522,6.47],[142523,142523,5.06],[142524,142524,7.88],[142525,142525,7.06],[142526,142526,8.16],[142527,142527,7.45],[142528,142528,6.49],[142529,142529,5.38],[142530,142530,10.32],[142531,142531,8.16],[142532,142532,5.84],[142533,142533,4.98],[142534,142534,4.41],[142535,142535,3.8],[142536,142536,5.49],[142537,142537,5.25],[142538,142539,5.72],[142540,142540,5.88],[142541,142541,5.1],[142542,142542,6.17],[142543,142543,5.5],[142544,142544,5.24],[142545,142545,4.35],[142546,142547,5.72],[142548,142548,3.57],[142549,142549,3.69],[142550,142550,5.99],[142551,142551,5.17],[142552,142552,7.31],[142553,142553,6.24],[142554,142554,8.14],[142555,142555,6.58],[142556,142557,6.04],[142558,142558,5.56],[142559,142559,4.7],[142560,142560,8.24],[142561,142561,7.28],[142562,142562,6.58],[142563,142563,5.85],[142564,142564,5.34],[142565,142565,7.49],[142566,142566,7.28],[142567,142567,8.71],[142568,142569,6.93],[142570,142570,10.45],[142571,142571,8.18],[142572,142572,5.92],[142573,142573,7.6],[142574,142574,6.61],[142575,142577,0],[142578,142578,7.3],[142579,142579,6.15],[142580,142584,10],[142585,142585,8.36],[142586,142587,5.54],[142588,142588,8.36],[142589,142589,3.46],[142590,142590,4.26],[142591,142591,3],[142592,142639,10],[142640,142640,4.14],[142641,142641,8.56],[142642,142642,8.57],[142643,142644,6.79],[142645,142645,6.39],[142646,142646,6.05],[142647,142648,6.31],[142649,142650,6.47],[142651,142651,7],[142652,142652,7.94],[142653,142653,7.24],[142654,142654,4.98],[142655,142655,7.24],[142656,142657,8.57],[142658,142658,2.85],[142659,142659,6.39],[142660,142660,7.25],[142661,142661,6.39],[142662,142662,6.99],[142663,142663,7.28],[142664,142664,7.42],[142665,142665,4.77],[142666,142666,5.11],[142667,142667,6.27],[142668,142668,7.84],[142669,142669,5.36],[142670,142670,6.47],[142671,142671,2.83],[142672,142672,7.65],[142673,142673,2.73],[142674,142674,5.51],[142675,142675,4.14],[142676,142677,8.57],[142678,142678,7.25],[142679,142679,2.92],[142680,142680,7.1],[142681,142682,8.57],[142683,142683,7.56],[142684,142684,5.19],[142685,142685,6.39],[142686,142686,7.56],[142687,142687,6.47],[142688,142688,6.71],[142689,142689,7.05],[142690,142690,4.77],[142691,142691,8.36],[142692,142692,4.54],[142693,142693,8.36],[142694,142694,6.51],[142695,142695,7.71],[142696,142702,10],[142703,142703,3.08],[142704,142704,7.69],[142705,142718,10],[142719,142719,0],[142720,142720,12.46],[142721,142721,10.87],[142722,142722,10.62],[142723,142723,8.84],[142724,142724,9.3],[142725,142725,9.11],[142726,142726,7.76],[142727,142728,7.91],[142729,142729,9.23],[142730,142730,8.1],[142731,142731,9.19],[142732,142732,10.03],[142733,142733,9.89],[142734,142734,9.9],[142735,142735,13.63],[142736,142736,15.99],[142737,142737,8.18],[142738,142738,8.71],[142739,142739,10.7],[142740,142740,10.16],[142741,142741,7.37],[142742,142742,10.16],[142743,142751,10],[142752,142752,9.3],[142753,142753,10.92],[142754,142754,10.84],[142755,142755,9.3],[142756,142756,10.79],[142757,142758,9.3],[142759,142759,10],[142760,142762,7.76],[142763,142763,7.82],[142764,142764,7.76],[142765,142765,9.13],[142766,142766,7.91],[142767,142767,10],[142768,142772,11.27],[142773,142773,12.42],[142774,142774,11.27],[142775,142775,10],[142776,142776,15.52],[142777,142777,15.72],[142778,142778,15.68],[142779,142779,15.57],[142780,142780,18.51],[142781,142781,15.15],[142782,142782,15.35],[142783,142783,10],[142784,142790,8.51],[142791,142791,10],[142792,142792,7.2],[142793,142793,9.25],[142794,142794,9.21],[142795,142795,7.2],[142796,142796,9.16],[142797,142798,7.2],[142799,142799,10],[142800,142800,8.95],[142801,142801,10.99],[142802,142802,10.96],[142803,142803,8.95],[142804,142804,10.9],[142805,142806,8.95],[142807,142807,10],[142808,142808,5.83],[142809,142809,8.33],[142810,142810,6.06],[142811,142811,6.37],[142812,142812,6.01],[142813,142813,8.03],[142814,142814,5.83],[142815,142815,10],[142816,142847,0],[142848,142848,2.38],[142849,142849,2.43],[142850,142851,1.73],[142852,142852,2.03],[142853,142853,2.02],[142854,142854,3.79],[142855,142855,3.83],[142856,142856,3.05],[142857,142858,2.97],[142859,142859,3.54],[142860,142861,2.34],[142862,142862,10.05],[142863,142863,12.05],[142864,142865,11.68],[142866,142866,1.57],[142867,142867,5.51],[142868,142869,7.03],[142870,142870,6.03],[142871,142871,3.33],[142872,142872,6.02],[142873,142873,10],[142874,142874,3.79],[142875,142875,6.67],[142876,142877,2.34],[142878,142879,6.67],[142880,142881,4.28],[142882,142885,4.47],[142886,142887,6.73],[142888,142889,6.31],[142890,142892,6.91],[142893,142893,6.67],[142894,142894,6.02],[142895,142895,2.35],[142896,142896,3.41],[142897,142897,2.82],[142898,142911,10],[142912,142912,5],[142913,143405,10],[143406,143407,16],[143408,143422,10],[143423,143423,5],[143424,143512,10],[143513,143514,0],[143515,143664,10],[143665,143715,8.65],[143716,143716,8.46],[143717,143758,8.65],[143759,143871,10],[143872,143899,8.65],[143900,143900,8.51],[143901,143967,10],[143968,143995,8.65],[143996,143998,10],[143999,143999,8.46],[144000,144255,10],[144256,144260,8.65],[144261,144265,10],[144266,144268,8.65],[144269,144272,10],[144273,144277,8.65],[144278,144280,10],[144281,144282,8.65],[144283,144294,10],[144295,144303,8.65],[144304,144307,10],[144308,144321,8.65],[144322,144322,10],[144323,144323,8.65],[144324,144324,10],[144325,144326,8.65],[144327,144327,8.46],[144328,144328,10],[144329,144330,8.65],[144331,144334,10],[144335,144336,8.65],[144337,144338,10],[144339,144339,8.65],[144340,144341,10],[144342,144342,8.65],[144343,144346,10],[144347,144349,8.65],[144350,150975,10],[150976,151039,8.79],[151040,172031,10],[172032,172034,6.17],[172035,172035,6.41],[172036,172036,6.15],[172037,172038,5.68],[172039,172039,6.3],[172040,172040,5.25],[172041,172042,5.43],[172043,172043,5.62],[172044,172045,5.93],[172046,172046,5.73],[172047,172047,5.82],[172048,172050,6.85],[172051,172051,5.89],[172052,172052,5.78],[172053,172053,6.37],[172054,172054,6.26],[172055,172057,5.32],[172058,172058,6.75],[172059,172060,5.84],[172061,172061,6.27],[172062,172062,5.14],[172063,172064,6.37],[172065,172065,6.05],[172066,172067,5.83],[172068,172068,4.49],[172069,172069,6.01],[172070,172071,5.2],[172072,172072,5.18],[172073,172074,6.12],[172075,172075,4.49],[172076,172076,5.72],[172077,172078,5.24],[172079,172079,4.95],[172080,172081,6.06],[172082,172082,5.47],[172083,172084,5.39],[172085,172085,6.02],[172086,172087,7.05],[172088,172088,6.07],[172089,172090,6.22],[172091,172091,5.72],[172092,172093,6.67],[172094,172094,6.12],[172095,172095,5.93],[172096,172097,6.13],[172098,172098,6.23],[172099,172100,5.73],[172101,172101,5.89],[172102,172102,6.2],[172103,172104,6.39],[172105,172105,5.63],[172106,172106,5.01],[172107,172108,5.8],[172109,172109,5.97],[172110,172111,6.23],[172112,172112,6.07],[172113,172114,6.43],[172115,172115,6.11],[172116,172117,6.17],[172118,172118,6.12],[172119,172120,5.82],[172121,172121,5.92],[172122,172122,6.27],[172123,172124,5.71],[172125,172125,6.14],[172126,172126,6.29],[172127,172128,8.01],[172129,172129,6.37],[172130,172131,5.74],[172132,172132,6.07],[172133,172133,6.09],[172134,172135,5.03],[172136,172136,6.12],[172137,172138,5.76],[172139,172139,6.08],[172140,172140,6.16],[172141,172142,5.91],[172143,172143,5.54],[172144,172145,5.76],[172146,172146,5.58],[172147,172148,5.3],[172149,172149,5.1],[172150,172150,5.85],[172151,172152,5.68],[172153,172153,5.53],[172154,172155,5.89],[172156,172156,5.27],[172157,172157,6.63],[172158,172159,5.45],[172160,172160,6.71],[172161,172161,6.03],[172162,172164,6.37],[172165,172165,5.61],[172166,172167,6.07],[172168,172168,5.63],[172169,172170,7.09],[172171,172171,5.86],[172172,172173,6.13],[172174,172174,5.7],[172175,172176,5.64],[172177,172177,5.1],[172178,172179,5.6],[172180,172180,5.92],[172181,172181,6.39],[172182,172182,6.19],[172183,172183,5.06],[172184,172184,6.03],[172185,172186,5.95],[172187,172187,5.76],[172188,172189,5.87],[172190,172190,5.34],[172191,172191,6.07],[172192,172193,5.84],[172194,172194,5.56],[172195,172195,5.49],[172196,172197,5.42],[172198,172198,5.92],[172199,172200,6.39],[172201,172202,5.2],[172203,172203,5.34],[172204,172205,6.12],[172206,172206,5.92],[172207,172208,5.41],[172209,172209,5.18],[172210,172211,5.92],[172212,172212,5.45],[172213,172213,6.33],[172214,172215,5.98],[172216,172216,6.37],[172217,172217,5.59],[172218,172219,5.69],[172220,172220,6.85],[172221,172221,6.07],[172222,172223,5.6],[172224,172224,5.83],[172225,172226,6],[172227,172227,5.77],[172228,172229,6.54],[172230,172230,5.82],[172231,172232,5.27],[172233,172233,5.32],[172234,172235,6.39],[172236,172236,5.27],[172237,172237,5.54],[172238,172239,5.56],[172240,172240,5.24],[172241,172241,6.58],[172242,172244,5.61],[172245,172246,5.28],[172247,172247,5.36],[172248,172248,4.82],[172249,172250,6.22],[172251,172251,6.08],[172252,172253,5.47],[172254,172254,5.6],[172255,172258,6.08],[172259,172260,5.4],[172261,172261,5.47],[172262,172262,5.39],[172263,172264,5.03],[172265,172265,5.15],[172266,172268,5.92],[172269,172269,5.15],[172270,172270,5.66],[172271,172272,5.57],[172273,172273,6.35],[172274,172275,5.42],[172276,172276,5.77],[172277,172278,5.18],[172279,172279,5.4],[172280,172281,5.56],[172282,172282,5.6],[172283,172284,6.39],[172285,172285,5.6],[172286,172287,6.24],[172288,172288,6.74],[172289,172290,5.54],[172291,172291,6.17],[172292,172293,5.71],[172294,172294,5.66],[172295,172295,6.26],[172296,172297,5.21],[172298,172298,6.12],[172299,172300,5.36],[172301,172301,5.68],[172302,172303,5.65],[172304,172304,5.1],[172305,172306,4.98],[172307,172307,5.37],[172308,172308,4.9],[172309,172310,5.08],[172311,172311,5.53],[172312,172313,5.03],[172314,172314,5.1],[172315,172316,4.93],[172317,172317,5.08],[172318,172319,5.72],[172320,172320,5.69],[172321,172321,4.98],[172322,172323,5.37],[172324,172324,4.98],[172325,172325,5.59],[172326,172327,4.82],[172328,172328,5.95],[172329,172329,5.1],[172330,172331,5.34],[172332,172332,5.38],[172333,172334,5.63],[172335,172335,5.37],[172336,172336,5.9],[172337,172338,5.92],[172339,172339,5.87],[172340,172341,6.15],[172342,172342,5.37],[172343,172344,5.21],[172345,172348,5.37],[172349,172349,5.63],[172350,172352,5.37],[172353,172354,5.59],[172355,172355,5.51],[172356,172356,5.2],[172357,172358,5.07],[172359,172359,5.3],[172360,172361,5.18],[172362,172362,6.07],[172363,172363,5.75],[172364,172365,6.39],[172366,172366,5.87],[172367,172368,6.13],[172369,172369,5.37],[172370,172371,4.86],[172372,172372,5.54],[172373,172374,5.73],[172375,172375,5.63],[172376,172377,5.6],[172378,172378,6.46],[172379,172379,5.53],[172380,172382,5.6],[172383,172384,6.07],[172385,172385,5.97],[172386,172386,5.1],[172387,172388,5.31],[172389,172389,5.82],[172390,172391,5.53],[172392,172392,4.94],[172393,172394,4.84],[172395,172395,5.6],[172396,172396,5.41],[172397,172398,6.08],[172399,172399,5.64],[172400,172400,5.02],[172401,172402,5.86],[172403,172403,5.34],[172404,172405,6.66],[172406,172406,5.76],[172407,172408,5.22],[172409,172410,5.37],[172411,172411,5.71],[172412,172412,5.81],[172413,172413,5.92],[172414,172415,6.13],[172416,172416,6.07],[172417,172418,5.94],[172419,172419,5.5],[172420,172421,5.59],[172422,172422,5.49],[172423,172424,5.38],[172425,172425,5.73],[172426,172426,5.64],[172427,172428,5.69],[172429,172429,5.64],[172430,172431,5.24],[172432,172432,5.2],[172433,172433,5.47],[172434,172436,5.76],[172437,172438,5.42],[172439,172441,5.6],[172442,172442,5.39],[172443,172444,5.6],[172445,172445,5.82],[172446,172446,6.22],[172447,172448,6.09],[172449,172449,5.72],[172450,172451,5.55],[172452,172452,5.71],[172453,172454,5.36],[172455,172455,5.71],[172456,172458,5.2],[172459,172459,5.65],[172460,172461,5],[172462,172462,5.42],[172463,172464,5.47],[172465,172465,5.94],[172466,172467,6],[172468,172468,5.8],[172469,172470,5.76],[172471,172471,5.37],[172472,172473,4.63],[172474,172474,5.92],[172475,172475,4.9],[172476,172477,4.88],[172478,172478,4.87],[172479,172479,6.25],[172480,172481,5.13],[172482,172482,5.59],[172483,172485,5.31],[172486,172486,6],[172487,172487,5.99],[172488,172489,5.68],[172490,172490,5.54],[172491,172492,5.01],[172493,172493,6.37],[172494,172494,5.92],[172495,172496,6.37],[172497,172497,5.6],[172498,172499,5.11],[172500,172500,6],[172501,172502,5.61],[172503,172503,5.37],[172504,172505,4.99],[172506,172506,5.96],[172507,172508,5.83],[172509,172510,5.2],[172511,172512,5.99],[172513,172513,5.2],[172514,172514,5.62],[172515,172516,5.46],[172517,172517,5.92],[172518,172518,6.25],[172519,172520,6.43],[172521,172521,5.92],[172522,172522,6.54],[172523,172524,5.57],[172525,172525,5.27],[172526,172526,5.32],[172527,172528,5.1],[172529,172529,4.94],[172530,172530,6.26],[172531,172532,6.13],[172533,172533,5.92],[172534,172535,5.59],[172536,172536,5.7],[172537,172538,5.54],[172539,172539,4.96],[172540,172541,5.37],[172542,172542,5.64],[172543,172543,5.81],[172544,172545,5.31],[172546,172546,5.32],[172547,172548,5.42],[172549,172549,5.78],[172550,172550,5.27],[172551,172552,5.03],[172553,172553,5.46],[172554,172554,6.16],[172555,172556,4.54],[172557,172557,6.39],[172558,172558,6],[172559,172560,5.74],[172561,172561,5.38],[172562,172563,5.07],[172564,172564,5.92],[172565,172566,5.37],[172567,172568,5.97],[172569,172569,5.66],[172570,172570,5.71],[172571,172572,5.52],[172573,172573,5.25],[172574,172574,5.47],[172575,172576,6.26],[172577,172577,5.82],[172578,172578,5.29],[172579,172580,4.67],[172581,172581,4.58],[172582,172582,5.42],[172583,172584,5.93],[172585,172585,6.73],[172586,172586,6.03],[172587,172589,5.29],[172590,172591,5.53],[172592,172593,5.98],[172594,172594,5.39],[172595,172596,6.09],[172597,172597,5.39],[172598,172599,5.53],[172600,172601,5.41],[172602,172603,5.85],[172604,172604,5.76],[172605,172606,5.16],[172607,172607,5.47],[172608,172608,6.29],[172609,172610,4.77],[172611,172611,5.73],[172612,172613,6.13],[172614,172614,5.59],[172615,172616,5.64],[172617,172617,5.49],[172618,172618,5.07],[172619,172620,5.58],[172621,172621,6.08],[172622,172622,5.87],[172623,172624,5.33],[172625,172625,5.62],[172626,172626,6.05],[172627,172628,5.7],[172629,172629,6.05],[172630,172630,4.98],[172631,172632,5.24],[172633,172633,5.64],[172634,172635,5.53],[172636,172636,5.54],[172637,172638,5.59],[172639,172639,5.24],[172640,172640,6.09],[172641,172642,5.37],[172643,172643,5.88],[172644,172644,5.92],[172645,172646,5.22],[172647,172647,4.78],[172648,172649,5.63],[172650,172650,6.46],[172651,172652,5.18],[172653,172653,6.11],[172654,172656,5.25],[172657,172657,6.04],[172658,172660,6.16],[172661,172661,5.43],[172662,172663,5.53],[172664,172664,5.8],[172665,172665,5.26],[172666,172667,5.92],[172668,172668,5.67],[172669,172670,5.89],[172671,172671,6.12],[172672,172672,6.2],[172673,172675,5.57],[172676,172677,5.5],[172678,172678,5.8],[172679,172680,5.17],[172681,172681,4.88],[172682,172683,5.48],[172684,172684,5.76],[172685,172685,5.7],[172686,172687,6.17],[172688,172688,5.61],[172689,172690,5.69],[172691,172691,5.55],[172692,172694,5.46],[172695,172695,6.17],[172696,172697,5.63],[172698,172698,6.04],[172699,172699,5.78],[172700,172701,5.98],[172702,172702,5.63],[172703,172704,5.71],[172705,172705,5.25],[172706,172706,5.53],[172707,172708,4.78],[172709,172709,5.46],[172710,172711,6.5],[172712,172712,5.17],[172713,172714,5.41],[172715,172715,4.79],[172716,172717,5.49],[172718,172718,5.18],[172719,172720,4.84],[172721,172721,4.96],[172722,172722,5.95],[172723,172724,5.53],[172725,172725,5.54],[172726,172728,5.92],[172729,172729,6.75],[172730,172731,5.1],[172732,172732,5.69],[172733,172733,6.35],[172734,172735,6.3],[172736,172736,5.67],[172737,172738,5.92],[172739,172739,6.37],[172740,172740,5.96],[172741,172742,6.33],[172743,172743,5.65],[172744,172745,5.88],[172746,172746,4.89],[172747,172748,5.83],[172749,172749,5.1],[172750,172751,5.13],[172752,172752,5.71],[172753,172754,6.07],[172755,172755,5.32],[172756,172756,5.18],[172757,172758,5.53],[172759,172759,5.57],[172760,172760,5.88],[172761,172762,5.77],[172763,172763,5.88],[172764,172765,5.82],[172766,172766,5.41],[172767,172768,5.83],[172769,172769,5.75],[172770,172771,5.53],[172772,172772,5.49],[172773,172774,5.09],[172775,172775,6.04],[172776,172777,5.15],[172778,172778,5.37],[172779,172780,5.99],[172781,172781,5.66],[172782,172783,5.42],[172784,172784,5.29],[172785,172787,6.45],[172788,172790,5.42],[172791,172791,5.31],[172792,172793,5.97],[172794,172795,5.63],[172796,172797,4.59],[172798,172799,5.97],[172800,172800,5.74],[172801,172802,6.13],[172803,172803,5.66],[172804,172805,4.77],[172806,172806,5.92],[172807,172808,6.13],[172809,172809,5.99],[172810,172811,5.97],[172812,172812,5.25],[172813,172814,6.33],[172815,172815,6.08],[172816,172816,5.2],[172817,172818,5.06],[172819,172819,5.51],[172820,172822,4.77],[172823,172823,5.46],[172824,172825,5.13],[172826,172826,5.46],[172827,172828,5.71],[172829,172829,5.22],[172830,172830,5.98],[172831,172832,5.14],[172833,172833,5.63],[172834,172835,5.52],[172836,172838,5.73],[172839,172839,5.42],[172840,172841,5.73],[172842,172842,4.99],[172843,172844,5.01],[172845,172845,5.23],[172846,172847,5.6],[172848,172848,5.37],[172849,172849,6.37],[172850,172852,5.53],[172853,172853,5.44],[172854,172855,5.92],[172856,172856,6.55],[172857,172858,5.1],[172859,172859,5.92],[172860,172860,5.42],[172861,172862,5.49],[172863,172863,6.28],[172864,172864,6.49],[172865,172866,5.5],[172867,172867,5.58],[172868,172869,6.12],[172870,172870,5.83],[172871,172872,5.76],[172873,172873,5.08],[172874,172875,5.42],[172876,172876,5.32],[172877,172877,6.67],[172878,172879,6.33],[172880,172880,5.71],[172881,172883,5.2],[172884,172884,6.13],[172885,172885,6.61],[172886,172887,6.41],[172888,172888,6.06],[172889,172890,5.77],[172891,172891,5.52],[172892,172893,5.6],[172894,172894,5.18],[172895,172896,5.59],[172897,172897,5.34],[172898,172899,5.96],[172900,172900,5.6],[172901,172901,5.76],[172902,172903,5.38],[172904,172904,5.94],[172905,172905,5.64],[172906,172907,5.03],[172908,172908,5.25],[172909,172911,5.68],[172912,172912,5.37],[172913,172914,7.05],[172915,172915,5.83],[172916,172917,5.74],[172918,172918,5.58],[172919,172920,5.72],[172921,172921,5.34],[172922,172923,5.58],[172924,172925,5.63],[172926,172927,5.32],[172928,172928,5.87],[172929,172930,5.54],[172931,172931,5.83],[172932,172932,5.22],[172933,172934,5.08],[172935,172935,5.6],[172936,172936,5.31],[172937,172938,5.83],[172939,172939,6.33],[172940,172941,5.3],[172942,172942,5.66],[172943,172944,5.3],[172945,172945,5.14],[172946,172947,5.53],[172948,172948,5.92],[172949,172950,5.84],[172951,172951,5.18],[172952,172954,5.83],[172955,172955,5.08],[172956,172957,5.68],[172958,172958,6.07],[172959,172959,5.6],[172960,172961,5.63],[172962,172962,6.08],[172963,172964,5.72],[172965,172965,5.35],[172966,172967,5.66],[172968,172968,5.37],[172969,172970,5.97],[172971,172971,5.31],[172972,172973,5.68],[172974,172974,6.23],[172975,172976,5.03],[172977,172977,5],[172978,172978,5.81],[172979,172980,5.97],[172981,172981,6.1],[172982,172982,6],[172983,172985,5.22],[172986,172986,5.19],[172987,172988,5.78],[172989,172989,5.53],[172990,172991,5.42],[172992,172992,5.37],[172993,172994,4.79],[172995,172995,6.08],[172996,172997,5.03],[172998,172998,5.92],[172999,173000,6.51],[173001,173001,5.47],[173002,173003,5.84],[173004,173004,5.05],[173005,173005,5.75],[173006,173006,5.63],[173007,173007,5.75],[173008,173008,6.09],[173009,173010,5.58],[173011,173011,6.14],[173012,173012,5.03],[173013,173014,5.37],[173015,173015,5.34],[173016,173017,5.03],[173018,173018,7.01],[173019,173020,5.32],[173021,173021,5.77],[173022,173023,5.08],[173024,173024,5.61],[173025,173026,5.37],[173027,173027,5.66],[173028,173028,5.49],[173029,173030,6.07],[173031,173031,5.55],[173032,173032,5.41],[173033,173035,5.97],[173036,173038,6.37],[173039,173039,5.97],[173040,173040,5.92],[173041,173042,4.92],[173043,173043,5.61],[173044,173045,6.13],[173046,173046,5.77],[173047,173048,5.71],[173049,173049,4.98],[173050,173051,5.64],[173052,173052,5.98],[173053,173054,5.7],[173055,173055,5.92],[173056,173056,7.74],[173057,173058,6.07],[173059,173059,6.32],[173060,173060,5.32],[173061,173063,5.59],[173064,173064,5.27],[173065,173066,6.75],[173067,173067,5.92],[173068,173068,5.66],[173069,173070,5.92],[173071,173071,5.18],[173072,173073,5.92],[173074,173074,5.48],[173075,173077,6.08],[173078,173079,5.54],[173080,173080,5.6],[173081,173082,5.13],[173083,173083,5.59],[173084,173084,5.73],[173085,173086,5.64],[173087,173087,6.17],[173088,173089,5.46],[173090,173090,6.54],[173091,173091,5.86],[173092,173093,5.6],[173094,173094,5.46],[173095,173095,5.82],[173096,173097,6.6],[173098,173098,5.72],[173099,173100,5.61],[173101,173101,5.37],[173102,173103,6.19],[173104,173104,5.41],[173105,173105,5.3],[173106,173107,5.73],[173108,173108,6],[173109,173109,6.37],[173110,173111,6.2],[173112,173112,5.53],[173113,173114,6.37],[173115,173115,6.01],[173116,173117,6.59],[173118,173118,5.63],[173119,173120,5.04],[173121,173121,5],[173122,173123,5.77],[173124,173124,5.41],[173125,173126,5.17],[173127,173127,5.1],[173128,173129,5.58],[173130,173130,5.71],[173131,173132,4.84],[173133,173133,4.77],[173134,173134,5.84],[173135,173136,6.04],[173137,173137,5],[173138,173139,5.53],[173140,173140,5.89],[173141,173141,5.58],[173142,173143,5.76],[173144,173144,5.68],[173145,173145,5.92],[173146,173147,5.31],[173148,173148,5.42],[173149,173149,6.37],[173150,173151,6.14],[173152,173152,5.41],[173153,173155,6.37],[173156,173156,6.73],[173157,173158,5.6],[173159,173159,6.37],[173160,173161,5.81],[173162,173162,5.96],[173163,173163,5.41],[173164,173168,5.37],[173169,173169,6.17],[173170,173171,5.81],[173172,173172,5.1],[173173,173173,6.17],[173174,173175,5.41],[173176,173176,5.72],[173177,173177,5.61],[173178,173179,5.32],[173180,173180,5.42],[173181,173181,5.59],[173182,173183,5.61],[173184,173184,5.73],[173185,173185,5.34],[173186,173187,6.17],[173188,173188,5.31],[173189,173190,5.42],[173191,173191,5.41],[173192,173193,5.33],[173194,173194,5.49],[173195,173196,5.56],[173197,173199,10],[173200,173200,2.64],[173201,173202,4.08],[173203,173203,3.75],[173204,173204,5.1],[173205,173206,5.36],[173207,173207,4.79],[173208,173208,5],[173209,173209,5.59],[173210,173210,5.46],[173211,173211,3.39],[173212,173212,5.83],[173213,173213,5.61],[173214,173214,4.82],[173215,173215,4.51],[173216,173216,4.98],[173217,173218,6.39],[173219,173219,4.89],[173220,173220,6.13],[173221,173221,5.39],[173222,173222,5.67],[173223,173223,5.68],[173224,173224,5.92],[173225,173225,5],[173226,173226,5.72],[173227,173227,5.39],[173228,173228,6.07],[173229,173229,5.84],[173230,173230,6.17],[173231,173231,5.03],[173232,173233,3.87],[173234,173234,3.52],[173235,173235,6.37],[173236,173236,8.14],[173237,173237,6.19],[173238,173238,7.35],[173239,173239,5.64],[173240,173240,4.71],[173241,173241,5.08],[173242,173242,5.42],[173243,173243,4.88],[173244,173244,5.11],[173245,173245,5.69],[173246,173246,4.96],[173247,173247,5.89],[173248,173248,5.31],[173249,173249,5.51],[173250,173250,6.1],[173251,173251,4.97],[173252,173252,4.88],[173253,173253,5.53],[173254,173254,4.2],[173255,173263,10],[173264,173264,6.5],[173265,173266,6.05],[173267,173267,7.3],[173268,173269,5.56],[173270,173270,7.28],[173271,173272,6.19],[173273,173273,3.71],[173274,173275,6.32],[173276,173276,5.72],[173277,173278,5.19],[173279,173279,9.07],[173280,173280,7.6],[173281,173281,5.24],[173282,173282,5.49],[173283,173284,6.22],[173285,173286,6],[173287,173287,7.41],[173288,173288,7.28],[173289,173289,3.71],[173290,173290,9.3],[173291,173291,5.86],[173292,173292,5.66],[173293,173293,6.5],[173294,173295,6.39],[173296,173297,5.56],[173298,173298,2.85],[173299,173299,7.81],[173300,173301,7.31],[173302,173302,5.24],[173303,173303,7.3],[173304,173304,3],[173305,173305,3.03],[173306,173306,4.9],[173307,173307,4.93],[173308,173308,3.03],[173309,173309,3],[173310,173310,6.33],[173311,173311,5.46],[173312,173312,6.5],[173313,173313,6.94],[173314,173314,7.79],[173315,173316,8.57],[173317,173317,8.82],[173318,173318,10.82],[173319,173320,7.35],[173321,173323,6.68],[173324,173325,5.44],[173326,173326,9.13],[173327,173327,9.24],[173328,173329,11.96],[173330,173331,8.51],[173332,173332,7.09],[173333,173333,6.95],[173334,173334,7],[173335,173335,7.01],[173336,173337,7],[173338,173339,10.66],[173340,173341,7.79],[173342,173342,13.9],[173343,173343,10.4],[173344,173344,7.9],[173345,173345,7.24],[173346,173346,7.72],[173347,173347,10.66],[173348,173348,8.51],[173349,173349,9.41],[173350,173350,9.31],[173351,173351,4.5],[173352,173352,8.42],[173353,173353,8.92],[173354,173354,6.07],[173355,173355,8.72],[173356,173356,6.64],[173357,173357,7.04],[173358,173358,6.17],[173359,173359,6.46],[173360,173360,7.7],[173361,173361,7.95],[173362,173362,7.28],[173363,173363,8.01],[173364,173364,8.44],[173365,173366,6.61],[173367,173368,4.34],[173369,173369,6.16],[173370,173370,9.05],[173371,173371,7.63],[173372,173372,8.33],[173373,173373,6.82],[173374,173374,7.73],[173375,173375,6.06],[173376,173378,9.06],[173379,173380,5.28],[173381,173381,9.5],[173382,173382,7.78],[173383,173383,6.26],[173384,173384,6.95],[173385,173385,5.46],[173386,173386,7.18],[173387,173387,7.4],[173388,173389,9.28],[173390,173390,8.01],[173391,173391,9.32],[173392,173392,8.69],[173393,173393,8.35],[173394,173394,9.46],[173395,173395,8.94],[173396,173396,6.82],[173397,173397,6.47],[173398,173398,7.48],[173399,173399,6.07],[173400,173400,5.48],[173401,173401,7.34],[173402,173403,7.06],[173404,173404,7.63],[173405,173405,9.62],[173406,173407,7.02],[173408,173409,8.78],[173410,173411,9.17],[173412,173412,8.74],[173413,173413,9.06],[173414,173414,7.23],[173415,173415,7.68],[173416,173416,6.79],[173417,173417,8.1],[173418,173418,6.72],[173419,173419,8.17],[173420,173420,7.43],[173421,173421,9.48],[173422,173422,7.32],[173423,173423,6.14],[173424,173424,9.14],[173425,173425,6.79],[173426,173426,7.09],[173427,173427,6.79],[173428,173428,7.11],[173429,173429,7.41],[173430,173431,5.66],[173432,173432,7.36],[173433,173433,8.87],[173434,173434,5.99],[173435,173435,7.93],[173436,173436,5.93],[173437,173438,7.26],[173439,173440,6.88],[173441,173442,9.28],[173443,173444,8.57],[173445,173445,8.68],[173446,173446,9.38],[173447,173447,7.8],[173448,173448,8.01],[173449,173449,4.99],[173450,173450,7.14],[173451,173452,6.4],[173453,173453,8.21],[173454,173454,5.02],[173455,173455,7.32],[173456,173456,8.19],[173457,173457,6.72],[173458,173458,8.87],[173459,173459,9.92],[173460,173460,7],[173461,173461,7.82],[173462,173462,8.04],[173463,173463,7.68],[173464,173464,7.16],[173465,173465,7.06],[173466,173466,7.79],[173467,173467,7.9],[173468,173468,8.82],[173469,173469,7.5],[173470,173470,7.8],[173471,173473,7.26],[173474,173474,8.53],[173475,173475,9.72],[173476,173476,5.31],[173477,173477,5.95],[173478,173478,8.1],[173479,173479,9.72],[173480,173483,6.71],[173484,173487,7.09],[173488,173491,7.71],[173492,173492,6.17],[173493,173494,5.44],[173495,173495,6.72],[173496,173496,7.6],[173497,173497,6.12],[173498,173498,7.95],[173499,173500,8.38],[173501,173501,8.47],[173502,173502,8.37],[173503,173503,7.72],[173504,173504,8.47],[173505,173506,9.72],[173507,173508,7.02],[173509,173510,8.25],[173511,173512,8.16],[173513,173514,5.88],[173515,173515,6.75],[173516,173516,8.21],[173517,173517,6.75],[173518,173518,8.39],[173519,173520,5.37],[173521,173522,7.38],[173523,173523,7.27],[173524,173524,8.12],[173525,173525,7.27],[173526,173526,8.12],[173527,173527,5.45],[173528,173529,6.84],[173530,173530,5.59],[173531,173531,7.36],[173532,173532,10.49],[173533,173533,7.86],[173534,173534,6.13],[173535,173535,5.66],[173536,173536,9.56],[173537,173537,7.07],[173538,173538,12.56],[173539,173539,7.53],[173540,173540,7.61],[173541,173541,9.68],[173542,173542,7.38],[173543,173543,7.58],[173544,173544,5.73],[173545,173545,6.65],[173546,173546,6.37],[173547,173547,7.37],[173548,173550,8.87],[173551,173552,8.73],[173553,173554,7.36],[173555,173555,8.2],[173556,173556,9],[173557,173558,8.1],[173559,173562,6.1],[173563,173566,9.05],[173567,173567,6.96],[173568,173568,8.26],[173569,173569,8.16],[173570,173570,7.96],[173571,173575,7.06],[173576,173576,9],[173577,173577,5.68],[173578,173578,7.57],[173579,173579,8.23],[173580,173580,6.35],[173581,173581,4.71],[173582,173582,5.69],[173583,173583,7.42],[173584,173584,13.46],[173585,173585,7.72],[173586,173586,9.81],[173587,173587,4.91],[173588,173588,8.61],[173589,173589,9.28],[173590,173590,6.9],[173591,173591,7.09],[173592,173592,7.27],[173593,173593,7.42],[173594,173594,10.78],[173595,173595,9.14],[173596,173596,7.22],[173597,173597,8.26],[173598,173598,9.19],[173599,173599,6.22],[173600,173600,5.95],[173601,173601,3],[173602,173602,6.62],[173603,173603,6.66],[173604,173604,6.54],[173605,173605,6.49],[173606,173606,5.46],[173607,173607,6.55],[173608,173608,5.88],[173609,173609,6.22],[173610,173610,8.97],[173611,173611,5.43],[173612,173631,10],[173632,173632,7.48],[173633,173633,5.56],[173634,173634,7.48],[173635,173635,5.56],[173636,173636,7.43],[173637,173637,4.54],[173638,173638,3.11],[173639,173639,2.6],[173640,173640,7.1],[173641,173641,5.72],[173642,173643,5.78],[173644,173644,9.03],[173645,173645,7.09],[173646,173646,7.06],[173647,173647,5.94],[173648,173648,9.43],[173649,173649,8.18],[173650,173650,8.09],[173651,173651,6.98],[173652,173652,10.22],[173653,173653,8.06],[173654,173654,9.36],[173655,173655,7.45],[173656,173656,7.27],[173657,173657,5.62],[173658,173658,7.1],[173659,173659,6.02],[173660,173660,9.26],[173661,173661,7.92],[173662,173662,7.25],[173663,173663,6.38],[173664,173664,7.21],[173665,173665,5.92],[173666,173666,7.69],[173667,173667,6.91],[173668,173668,7.16],[173669,173669,6.45],[173670,173670,10.44],[173671,173671,9.36],[173672,173672,7.2],[173673,173673,5.73],[173674,173674,7.2],[173675,173675,5.73],[173676,173676,9.5],[173677,173677,7.07],[173678,173678,6.82],[173679,173682,0],[173683,173683,5.04],[173684,173693,0],[173694,173695,5],[173696,173696,7.69],[173697,173697,6.63],[173698,173698,4.34],[173699,173699,3.46],[173700,173700,12.6],[173701,173701,11.08],[173702,173702,9.14],[173703,173704,7.69],[173705,173705,6.63],[173706,173706,7.89],[173707,173707,6.76],[173708,173708,5.67],[173709,173709,5.37],[173710,173710,7.27],[173711,173711,6.3],[173712,173712,6.12],[173713,173713,5.37],[173714,173714,8.43],[173715,173715,7.28],[173716,173716,6.95],[173717,173717,5.83],[173718,173718,9.07],[173719,173719,7.91],[173720,173720,7.86],[173721,173721,6.68],[173722,173722,5.26],[173723,173723,4.5],[173724,173724,1.96],[173725,173725,1.69],[173726,173727,0],[173728,173728,6.6],[173729,173729,7.68],[173730,173730,5.46],[173731,173731,6.56],[173732,173732,7.07],[173733,173733,6.17],[173734,173734,5.78],[173735,173735,6.06],[173736,173736,5.5],[173737,173737,7.25],[173738,173738,6.59],[173739,173739,6],[173740,173740,6.61],[173741,173741,5.72],[173742,173742,5.49],[173743,173743,6],[173744,173744,6.37],[173745,173745,5.5],[173746,173746,5.66],[173747,173747,5.24],[173748,173748,6.91],[173749,173749,5.88],[173750,173750,7.41],[173751,173751,7.16],[173752,173752,7.82],[173753,173753,4.8],[173754,173754,6.21],[173755,173755,6.18],[173756,173756,6.39],[173757,173757,6],[173758,173758,7.41],[173759,173761,6.19],[173762,173762,5.33],[173763,173763,7.7],[173764,173764,6.97],[173765,173765,6.02],[173766,173766,5.69],[173767,173767,6.21],[173768,173768,6.7],[173769,173769,5.72],[173770,173770,7.48],[173771,173771,5.63],[173772,173772,4.83],[173773,173773,5.46],[173774,173774,6],[173775,173775,7.1],[173776,173776,4.65],[173777,173777,6.21],[173778,173778,5.2],[173779,173779,6.79],[173780,173780,7.13],[173781,173781,5.2],[173782,173782,5.79],[173783,173783,7.19],[173784,173784,7.18],[173785,173785,6],[173786,173786,5.24],[173787,173787,6.51],[173788,173788,6.19],[173789,173789,6.68],[173790,173790,5.79],[194560,194814,10],[194815,194815,7.9],[194816,195102,10],[917504,917504,0],[917505,917511,3.33],[917512,917512,0],[917513,917517,3.52],[917518,917532,3.33],[917533,917533,0],[917534,917535,3.33],[917536,917536,3.52],[917537,917537,3.94],[917538,917538,4.59],[917539,917539,8.18],[917540,917540,6.36],[917541,917541,10.76],[917542,917542,7.27],[917543,917543,2.69],[917544,917545,4.54],[917546,917546,6.36],[917547,917547,8.18],[917548,917548,3.64],[917549,917549,4.54],[917550,917550,3.64],[917551,917551,4.54],[917552,917561,6.36],[917562,917563,4.54],[917564,917566,8.18],[917567,917567,5.45],[917568,917568,10],[917569,917569,6.84],[917570,917570,6.86],[917571,917571,6.98],[917572,917572,7.71],[917573,917573,6.32],[917574,917574,5.75],[917575,917575,7.75],[917576,917576,7.51],[917577,917577,4.21],[917578,917578,4.55],[917579,917579,6.93],[917580,917580,5.57],[917581,917581,8.43],[917582,917582,7.48],[917583,917583,7.87],[917584,917584,6.03],[917585,917585,7.87],[917586,917586,6.95],[917587,917587,6.84],[917588,917588,6.16],[917589,917589,7.32],[917590,917590,6.84],[917591,917591,9.89],[917592,917592,6.85],[917593,917593,6.15],[917594,917594,6.85],[917595,917597,4.54],[917598,917598,8.18],[917599,917600,6.36],[917601,917601,6.01],[917602,917602,6.23],[917603,917603,5.21],[917604,917604,6.23],[917605,917605,5.96],[917606,917606,3.52],[917607,917607,6.23],[917608,917608,6.33],[917609,917609,2.74],[917610,917610,3.44],[917611,917611,5.92],[917612,917612,2.74],[917613,917613,9.73],[917614,917614,6.33],[917615,917615,6.07],[917616,917617,6.23],[917618,917618,4.27],[917619,917619,5.21],[917620,917620,3.94],[917621,917621,6.33],[917622,917622,5.92],[917623,917623,8.18],[917624,917625,5.92],[917626,917626,5.25],[917627,917627,6.35],[917628,917628,4.54],[917629,917629,6.35],[917630,917630,8.18]] \ No newline at end of file diff --git a/node_modules/anafanafo/data/verdana-11px-normal.json b/node_modules/anafanafo/data/verdana-11px-normal.json new file mode 100644 index 0000000..e10646e --- /dev/null +++ b/node_modules/anafanafo/data/verdana-11px-normal.json @@ -0,0 +1 @@ +[[32,32,3.87],[33,33,4.33],[34,34,5.05],[35,35,9],[36,36,6.99],[37,37,11.84],[38,38,7.99],[39,39,2.95],[40,41,5],[42,42,6.99],[43,43,9],[44,44,4],[45,45,5],[46,46,4],[47,47,5],[48,57,6.99],[58,59,5],[60,62,9],[63,63,6],[64,64,11],[65,65,7.52],[66,66,7.54],[67,67,7.68],[68,68,8.48],[69,69,6.96],[70,70,6.32],[71,71,8.53],[72,72,8.27],[73,73,4.63],[74,74,5],[75,75,7.62],[76,76,6.12],[77,77,9.27],[78,78,8.23],[79,79,8.66],[80,80,6.63],[81,81,8.66],[82,82,7.65],[83,83,7.52],[84,84,6.78],[85,85,8.05],[86,86,7.52],[87,87,10.88],[88,88,7.54],[89,89,6.77],[90,90,7.54],[91,93,5],[94,94,9],[95,96,6.99],[97,97,6.61],[98,98,6.85],[99,99,5.73],[100,100,6.85],[101,101,6.55],[102,102,3.87],[103,103,6.85],[104,104,6.96],[105,105,3.02],[106,106,3.79],[107,107,6.51],[108,108,3.02],[109,109,10.7],[110,110,6.96],[111,111,6.68],[112,113,6.85],[114,114,4.69],[115,115,5.73],[116,116,4.33],[117,117,6.96],[118,118,6.51],[119,119,9],[120,121,6.51],[122,122,5.78],[123,123,6.98],[124,124,5],[125,125,6.98],[126,126,9],[160,160,3.87],[161,161,4.33],[162,165,6.99],[166,166,5],[167,168,6.99],[169,169,11],[170,170,6],[171,171,7.09],[172,172,9],[173,173,0],[174,174,11],[175,175,6.99],[176,176,5.96],[177,177,9],[178,179,5.96],[180,180,6.99],[181,181,7.06],[182,182,6.99],[183,183,4],[184,184,6.99],[185,185,5.96],[186,186,6],[187,187,7.09],[188,190,11],[191,191,6],[192,197,7.52],[198,198,10.83],[199,199,7.68],[200,203,6.96],[204,207,4.63],[208,208,8.53],[209,209,8.23],[210,214,8.66],[215,215,9],[216,216,8.66],[217,220,8.05],[221,221,6.77],[222,222,6.66],[223,223,6.82],[224,229,6.61],[230,230,10.51],[231,231,5.73],[232,235,6.55],[236,239,3.02],[240,240,6.73],[241,241,6.96],[242,246,6.68],[247,247,9],[248,248,6.68],[249,252,6.96],[253,253,6.51],[254,254,6.85],[256,256,7.52],[257,257,6.61],[258,258,7.52],[259,259,6.61],[260,260,7.52],[261,261,6.61],[262,262,7.68],[263,263,5.73],[264,264,7.68],[265,265,5.73],[266,266,7.68],[267,267,5.73],[268,268,7.68],[269,269,5.73],[270,270,8.48],[271,271,7.12],[272,272,8.53],[273,273,6.85],[274,274,6.96],[275,275,6.55],[276,276,6.96],[277,277,6.55],[278,278,6.96],[279,279,6.55],[280,280,6.96],[281,281,6.55],[282,282,6.96],[283,283,6.55],[284,284,8.53],[285,285,6.85],[286,286,8.53],[287,287,6.85],[288,288,8.53],[289,289,6.85],[290,290,8.53],[291,291,6.85],[292,292,8.27],[293,293,6.96],[294,294,8.27],[295,295,6.96],[296,296,4.63],[297,297,3.02],[298,298,4.63],[299,299,3.02],[300,300,4.63],[301,301,3.02],[302,302,4.63],[303,303,3.02],[304,304,4.63],[305,305,3.02],[306,306,9.58],[307,307,6.75],[308,308,5],[309,309,3.79],[310,310,7.62],[311,312,6.51],[313,313,6.12],[314,314,3.02],[315,315,6.12],[316,316,3.02],[317,317,6.12],[318,318,3.25],[319,319,6.12],[320,320,5.04],[321,321,6.18],[322,322,3.13],[323,323,8.23],[324,324,6.96],[325,325,8.23],[326,326,6.96],[327,327,8.23],[328,328,6.96],[329,329,8.04],[330,330,8.23],[331,331,6.96],[332,332,8.66],[333,333,6.68],[334,334,8.66],[335,335,6.68],[336,336,8.66],[337,337,6.68],[338,338,11.77],[339,339,10.8],[340,340,7.65],[341,341,4.69],[342,342,7.65],[343,343,4.69],[344,344,7.65],[345,345,4.69],[346,346,7.52],[347,347,5.73],[348,348,7.52],[349,349,5.73],[350,350,7.52],[351,351,5.73],[352,352,7.52],[353,353,5.73],[354,354,6.78],[355,355,4.33],[356,356,6.78],[357,357,4.33],[358,358,6.78],[359,359,4.33],[360,360,8.05],[361,361,6.96],[362,362,8.05],[363,363,6.96],[364,364,8.05],[365,365,6.93],[366,366,8.05],[367,367,6.96],[368,368,8.05],[369,369,6.96],[370,370,8.05],[371,371,6.93],[372,372,10.88],[373,373,9],[374,374,6.77],[375,375,6.51],[376,376,6.77],[377,377,7.54],[378,378,5.78],[379,379,7.54],[380,380,5.78],[381,381,7.54],[382,382,5.78],[384,384,5.5],[385,385,8.36],[386,386,6.32],[387,387,5.5],[388,388,6.32],[389,389,5.5],[390,391,7.34],[392,392,4.88],[393,393,7.94],[394,394,8.96],[395,395,6.32],[396,396,5.5],[397,397,5.18],[398,398,6.72],[399,399,8.3],[400,400,5.51],[401,401,6.12],[402,402,6.99],[403,404,7.94],[405,405,8.47],[406,406,2.79],[407,407,3.66],[408,408,7.94],[409,409,5.5],[410,410,3.06],[411,411,5.33],[412,412,8.98],[413,413,7.94],[414,414,5.5],[415,415,7.94],[416,416,8.87],[417,417,6.68],[418,418,10.17],[419,419,7.61],[420,420,7.15],[421,421,5.5],[422,423,6.12],[424,424,4.28],[425,425,6.4],[426,426,3.78],[427,427,3.06],[428,428,6.72],[429,429,3.06],[430,430,6.72],[431,431,8.32],[432,432,7.26],[433,433,8.17],[434,434,7.94],[435,435,8.59],[436,436,5.5],[437,437,6.72],[438,438,4.88],[439,440,5.93],[441,442,4.88],[443,444,5.5],[445,445,4.88],[446,446,4.64],[447,447,5.5],[448,448,2.2],[449,449,3.09],[450,450,2.74],[451,451,3.66],[452,452,14.66],[453,453,12.83],[454,454,10.38],[455,455,11],[456,456,9.78],[457,457,6.11],[458,458,12.22],[459,459,11],[460,460,8.56],[461,461,7.94],[462,462,4.88],[463,463,3.66],[464,464,3.06],[465,465,7.94],[466,466,5.5],[467,467,7.94],[468,468,5.5],[469,469,7.94],[470,470,5.5],[471,471,8.05],[472,472,6.96],[473,473,7.94],[474,474,5.5],[475,475,8.05],[476,476,6.96],[477,477,4.88],[478,478,7.94],[479,479,4.88],[480,480,7.94],[481,481,4.88],[482,482,9.78],[483,483,7.34],[484,484,7.94],[485,485,5.5],[486,486,7.94],[487,487,5.5],[488,488,7.94],[489,489,5.5],[490,490,7.94],[491,491,5.5],[492,492,7.94],[493,493,5.5],[494,494,5.93],[495,495,4.88],[496,496,3.06],[497,497,14.66],[498,498,12.83],[499,499,10.38],[500,500,8.53],[501,501,6.85],[502,502,10.45],[503,503,6.16],[504,504,8.23],[505,505,6.96],[506,506,7.52],[507,507,6.61],[508,508,10.83],[509,509,10.51],[510,510,8.66],[511,511,6.68],[512,512,7.94],[513,513,4.88],[514,514,7.94],[515,515,4.88],[516,516,6.72],[517,517,4.88],[518,518,6.72],[519,519,4.88],[520,520,3.66],[521,521,3.06],[522,522,3.66],[523,523,3.06],[524,524,7.94],[525,525,5.5],[526,526,7.94],[527,527,5.5],[528,528,7.34],[529,529,3.66],[530,530,7.34],[531,531,3.66],[532,532,7.94],[533,533,5.5],[534,534,7.94],[535,535,5.5],[536,536,7.52],[537,537,5.73],[538,538,6.78],[539,539,4.33],[540,540,6.19],[541,541,4.35],[542,542,7.94],[543,543,5.5],[544,544,7.15],[545,545,5.5],[546,546,6.64],[547,547,5.5],[548,548,6.72],[549,549,4.88],[550,550,7.94],[551,551,4.88],[552,552,6.72],[553,553,4.88],[554,554,7.94],[555,555,5.5],[556,556,7.94],[557,557,5.5],[558,558,7.94],[559,559,5.5],[560,560,7.94],[561,561,5.5],[562,562,7.94],[563,563,5.5],[564,564,3.06],[565,565,5.5],[566,566,3.49],[567,567,3.06],[568,568,8.51],[569,569,8.5],[570,570,7.94],[571,571,7.34],[572,572,5.5],[573,574,6.72],[575,575,4.28],[576,576,4.88],[577,577,5.87],[578,578,4.37],[579,579,7.34],[580,580,7.94],[581,581,7.98],[582,582,6.72],[583,583,4.88],[584,584,4.28],[585,585,3.06],[586,586,7.72],[587,587,5.5],[588,588,7.34],[589,589,3.66],[590,590,7.94],[880,880,4.61],[881,881,3.65],[882,882,6.46],[883,883,5.14],[884,885,3.66],[886,886,7.93],[887,887,6.38],[888,889,11],[890,890,3.66],[891,893,4.88],[894,894,5],[895,895,3.66],[896,899,11],[900,901,6.99],[902,902,7.52],[903,903,5],[904,904,8.26],[905,905,9.57],[906,906,5.94],[907,907,11],[908,908,9.69],[909,909,11],[910,910,8.29],[911,911,9.98],[912,912,3.02],[913,913,7.52],[914,914,7.54],[915,915,6.23],[916,916,7.73],[917,917,6.96],[918,918,7.54],[919,919,8.27],[920,920,8.66],[921,921,4.63],[922,922,7.62],[923,923,7.54],[924,924,9.27],[925,925,8.23],[926,926,7.14],[927,927,8.66],[928,928,8.27],[929,929,6.63],[930,930,11],[931,931,7.4],[932,932,6.78],[933,933,6.77],[934,934,9.01],[935,935,7.54],[936,936,9.58],[937,937,9],[938,938,4.63],[939,939,6.77],[940,940,6.85],[941,941,5.64],[942,942,6.96],[943,943,3.02],[944,944,6.94],[945,945,6.85],[946,946,6.82],[947,947,6.51],[948,948,6.69],[949,949,5.64],[950,950,5.03],[951,951,6.96],[952,952,6.86],[953,953,3.02],[954,955,6.51],[956,956,7.04],[957,957,6.51],[958,958,5.53],[959,959,6.68],[960,960,7.01],[961,961,6.88],[962,962,5.59],[963,963,6.93],[964,964,5.46],[965,965,6.94],[966,966,8.69],[967,967,6.49],[968,968,9.04],[969,969,8.95],[970,970,3.02],[971,971,6.94],[972,972,6.68],[973,973,6.94],[974,974,8.95],[975,975,6.23],[976,976,5.6],[977,977,5.45],[978,978,7.94],[979,979,9.79],[980,980,7.94],[981,981,5.79],[982,982,7.24],[983,983,6.16],[984,984,7.94],[985,985,5.5],[986,986,7.34],[987,987,4.62],[988,988,6.12],[989,989,4.91],[990,990,6.33],[991,991,4.96],[992,992,8.05],[993,993,6.09],[994,994,9.11],[995,995,8.56],[996,996,6.77],[997,997,5.73],[998,998,7.27],[999,999,4.88],[1000,1001,5.96],[1002,1002,7.22],[1003,1003,6.39],[1004,1004,7.69],[1005,1005,5.6],[1006,1006,5.23],[1007,1007,4.24],[1008,1008,6.16],[1009,1009,5.6],[1010,1010,4.88],[1011,1011,3.06],[1012,1012,7.94],[1013,1014,4.45],[1015,1015,6.12],[1016,1016,5.5],[1017,1017,7.34],[1018,1018,9.78],[1019,1019,6.96],[1020,1020,5.49],[1021,1022,7.34],[1024,1025,6.96],[1026,1026,8.72],[1027,1027,6.23],[1028,1028,7.71],[1029,1029,7.52],[1030,1031,4.63],[1032,1032,5],[1033,1033,12.3],[1034,1034,12.13],[1035,1035,9],[1036,1036,7.62],[1037,1037,8.26],[1038,1038,6.77],[1039,1039,8.27],[1040,1040,7.52],[1041,1042,7.54],[1043,1043,6.23],[1044,1044,8.2],[1045,1045,6.96],[1046,1046,10.7],[1047,1047,6.77],[1048,1049,8.26],[1050,1050,7.62],[1051,1051,8.08],[1052,1052,9.27],[1053,1053,8.27],[1054,1054,8.66],[1055,1055,8.27],[1056,1056,6.63],[1057,1057,7.68],[1058,1058,6.78],[1059,1059,6.77],[1060,1060,9.01],[1061,1061,7.54],[1062,1062,8.37],[1063,1063,7.83],[1064,1064,11.33],[1065,1065,11.49],[1066,1066,8.62],[1067,1067,10.12],[1068,1068,7.49],[1069,1069,7.71],[1070,1070,11.38],[1071,1071,7.77],[1072,1072,6.61],[1073,1073,6.76],[1074,1074,6.54],[1075,1075,5.18],[1076,1076,6.84],[1077,1077,6.55],[1078,1078,8.78],[1079,1079,5.77],[1080,1081,7.04],[1082,1082,6.51],[1083,1083,6.83],[1084,1084,7.66],[1085,1085,7.01],[1086,1086,6.68],[1087,1087,7.01],[1088,1088,6.85],[1089,1089,5.88],[1090,1090,5.46],[1091,1091,6.51],[1092,1092,9.25],[1093,1093,6.51],[1094,1094,7.09],[1095,1095,6.66],[1096,1096,9.64],[1097,1097,9.76],[1098,1098,7.05],[1099,1099,8.74],[1100,1100,6.28],[1101,1101,6.02],[1102,1102,9.23],[1103,1103,6.6],[1104,1105,6.55],[1106,1106,6.96],[1107,1107,5.18],[1108,1108,6.02],[1109,1109,5.73],[1110,1111,3.02],[1112,1112,3.79],[1113,1114,10.05],[1115,1115,6.96],[1116,1116,6.51],[1117,1117,7.04],[1118,1118,6.51],[1119,1119,7.01],[1120,1120,12.9],[1121,1121,6.97],[1122,1122,7.38],[1123,1123,5.97],[1124,1124,10.65],[1125,1125,7.45],[1126,1126,7.94],[1127,1127,6.49],[1128,1128,11.36],[1129,1129,9.17],[1130,1130,9.86],[1131,1131,7.6],[1132,1132,13.29],[1133,1133,10.29],[1134,1134,5.51],[1135,1135,4.35],[1136,1136,8.12],[1137,1137,6.89],[1138,1138,7.94],[1139,1139,5.5],[1140,1140,8.95],[1141,1141,6.48],[1142,1142,8.95],[1143,1143,6.48],[1144,1144,13.06],[1145,1145,11.44],[1146,1146,8.39],[1147,1147,6.23],[1148,1148,10.82],[1149,1149,8.95],[1150,1150,12.9],[1151,1151,6.97],[1152,1152,7.34],[1153,1153,4.88],[1154,1154,3.67],[1155,1158,0],[1159,1159,6.99],[1160,1161,0],[1162,1162,7.94],[1163,1163,5.89],[1164,1164,6.32],[1165,1165,5.17],[1166,1166,6.12],[1167,1167,5.5],[1168,1168,6.23],[1169,1169,5.18],[1170,1170,6.23],[1171,1171,5.18],[1172,1172,6.94],[1173,1173,5.67],[1174,1174,10.7],[1175,1175,8.78],[1176,1176,5.51],[1177,1177,4.35],[1178,1178,7.62],[1179,1179,6.51],[1180,1180,7.62],[1181,1181,6.51],[1182,1182,7.34],[1183,1183,5.34],[1184,1184,8.64],[1185,1185,6.31],[1186,1186,8.27],[1187,1187,7.01],[1188,1188,9.36],[1189,1189,6.85],[1190,1190,11.35],[1191,1191,8.68],[1192,1192,8.66],[1193,1193,6.78],[1194,1194,7.34],[1195,1195,4.88],[1196,1196,6.72],[1197,1197,4.81],[1198,1198,6.77],[1199,1199,6.51],[1200,1200,6.77],[1201,1201,6.51],[1202,1202,7.54],[1203,1203,6.51],[1204,1204,8.77],[1205,1205,6.63],[1206,1206,7.15],[1207,1207,5.53],[1208,1208,7.83],[1209,1209,6.66],[1210,1210,7.83],[1211,1211,6.96],[1212,1212,9.66],[1213,1213,7.58],[1214,1214,9.66],[1215,1215,7.58],[1216,1216,3.66],[1217,1217,9.86],[1218,1218,7.6],[1219,1219,7.34],[1220,1220,5.67],[1221,1221,7.46],[1222,1222,5.49],[1223,1223,7.94],[1224,1224,5.89],[1225,1225,7.94],[1226,1226,5.89],[1227,1227,7.15],[1228,1228,5.53],[1229,1229,9.78],[1230,1230,6.96],[1231,1231,3.06],[1232,1232,7.94],[1233,1233,4.88],[1234,1234,7.94],[1235,1235,4.88],[1236,1236,9.78],[1237,1237,7.34],[1238,1238,6.72],[1239,1239,4.88],[1240,1240,8.3],[1241,1241,6.55],[1242,1242,7.94],[1243,1243,4.88],[1244,1244,9.86],[1245,1245,7.6],[1246,1246,5.51],[1247,1247,4.35],[1248,1248,5.51],[1249,1249,4.88],[1250,1250,7.94],[1251,1251,5.89],[1252,1252,7.94],[1253,1253,5.89],[1254,1254,7.94],[1255,1255,5.5],[1256,1256,8.66],[1257,1257,6.68],[1258,1258,7.94],[1259,1259,5.5],[1260,1260,7.26],[1261,1261,4.72],[1262,1262,7.79],[1263,1263,5.5],[1264,1264,7.79],[1265,1265,5.5],[1266,1266,7.79],[1267,1267,5.5],[1268,1268,7.15],[1269,1269,5.53],[1270,1270,6.36],[1271,1271,4.51],[1272,1272,9.59],[1273,1273,7.39],[1274,1274,6.36],[1275,1275,4.51],[1276,1276,7.94],[1277,1277,5.5],[1278,1278,7.94],[1280,1280,6.32],[1281,1281,5.5],[1282,1282,8.84],[1283,1283,8.48],[1284,1284,8.82],[1285,1285,7.76],[1286,1286,6.31],[1287,1287,4.98],[1288,1288,9.97],[1289,1289,8.27],[1290,1290,10.45],[1291,1291,8.66],[1292,1292,7.94],[1293,1293,4.98],[1294,1294,7.65],[1295,1295,6.62],[1296,1296,5.51],[1297,1297,4.35],[1298,1298,7.46],[1299,1299,5.49],[1300,1300,8.38],[1301,1301,7.62],[1302,1302,9.13],[1303,1303,7.49],[1304,1304,11.34],[1305,1305,8.11],[1306,1306,8.66],[1307,1307,6.85],[1308,1308,10.88],[1309,1309,9],[1310,1310,7.53],[1311,1311,6.94],[1312,1312,10.79],[1313,1313,8.76],[1314,1314,12.22],[1315,1315,9.99],[1316,1316,7.77],[1317,1317,6.78],[1318,1318,7.56],[1319,1319,6.92],[1320,1320,4.88],[1321,1321,4.43],[1322,1322,9.8],[1323,1323,8.94],[1324,1324,6.18],[1325,1325,5.76],[1326,1326,7.49],[7424,7424,5.53],[7425,7425,7.1],[7426,7426,7.34],[7427,7427,5.11],[7428,7428,5.26],[7429,7430,5.77],[7431,7431,4.89],[7432,7432,4.35],[7433,7433,3.06],[7434,7434,3.26],[7435,7435,5.94],[7436,7436,4.89],[7437,7437,6.96],[7438,7438,5.89],[7439,7439,5.5],[7440,7440,5.26],[7441,7441,5.96],[7442,7442,5.91],[7443,7443,5.96],[7444,7444,7.94],[7445,7445,4.8],[7446,7447,5.5],[7448,7448,5.02],[7449,7450,5.06],[7451,7451,4.81],[7452,7452,5.91],[7453,7453,5.55],[7454,7454,7.2],[7455,7455,5.55],[7456,7456,5.5],[7457,7457,7.94],[7458,7458,4.88],[7459,7459,4.35],[7460,7460,4.37],[7461,7461,5.92],[7462,7462,4.51],[7463,7463,5.5],[7464,7464,5.89],[7465,7465,5.02],[7466,7466,5.81],[7467,7467,5.49],[7468,7468,4.64],[7469,7469,5.92],[7470,7471,4.25],[7472,7472,4.73],[7473,7474,4.07],[7475,7475,4.76],[7476,7476,4.84],[7477,7477,2.2],[7478,7478,2.71],[7479,7479,5.04],[7480,7480,4.08],[7481,7481,5.94],[7482,7482,5.09],[7483,7483,4.85],[7484,7484,4.6],[7485,7485,3.7],[7486,7486,3.65],[7487,7487,4.51],[7488,7488,3.99],[7489,7489,4.98],[7490,7490,6.09],[7491,7492,3.01],[7493,7493,3.45],[7494,7494,4.29],[7495,7495,3.41],[7496,7496,3.42],[7497,7498,2.82],[7499,7500,2.66],[7501,7501,3.31],[7502,7502,1.8],[7503,7503,3.47],[7504,7504,5.38],[7505,7505,3.1],[7506,7506,3.17],[7507,7507,2.81],[7508,7509,3.17],[7510,7510,3.42],[7511,7511,2.11],[7512,7512,3.6],[7513,7513,3.36],[7514,7514,5.38],[7515,7515,3.23],[7516,7516,3.51],[7517,7517,3.1],[7518,7518,2.92],[7519,7519,2.98],[7520,7520,3.68],[7521,7521,3.1],[7522,7522,1.8],[7523,7523,2.52],[7524,7524,3.6],[7525,7525,3.23],[7526,7526,3.1],[7527,7527,2.92],[7528,7528,3.25],[7529,7529,3.68],[7530,7530,3.1],[7531,7531,8.37],[7532,7533,5.5],[7534,7534,3.66],[7535,7535,8.56],[7536,7537,5.5],[7538,7539,3.66],[7540,7540,4.28],[7541,7541,3.06],[7542,7542,4.88],[7543,7543,5.5],[7544,7544,3.56],[7545,7545,5.18],[7546,7546,8.43],[7547,7547,3.06],[7548,7548,2.96],[7549,7549,5.5],[7550,7550,5.91],[7680,7680,7.94],[7681,7681,4.88],[7682,7682,7.34],[7683,7683,5.5],[7684,7684,7.54],[7685,7685,6.85],[7686,7686,7.34],[7687,7687,5.5],[7688,7688,7.68],[7689,7689,5.73],[7690,7690,7.94],[7691,7691,5.5],[7692,7692,8.48],[7693,7693,6.85],[7694,7694,7.94],[7695,7695,5.5],[7696,7696,7.94],[7697,7697,5.5],[7698,7698,7.94],[7699,7699,5.5],[7700,7700,6.96],[7701,7701,6.55],[7702,7702,6.96],[7703,7703,6.55],[7704,7704,6.72],[7705,7705,4.88],[7706,7706,6.72],[7707,7707,4.88],[7708,7708,6.72],[7709,7709,4.88],[7710,7710,6.12],[7711,7711,3.66],[7712,7712,7.94],[7713,7713,5.5],[7714,7714,7.94],[7715,7715,5.5],[7716,7716,8.27],[7717,7717,6.96],[7718,7718,7.94],[7719,7719,5.5],[7720,7720,7.94],[7721,7721,5.5],[7722,7722,7.94],[7723,7723,5.5],[7724,7724,3.66],[7725,7725,3.06],[7726,7726,4.63],[7727,7727,3.02],[7728,7728,7.62],[7729,7729,6.51],[7730,7730,7.62],[7731,7731,6.51],[7732,7732,7.94],[7733,7733,5.5],[7734,7734,6.12],[7735,7735,3.02],[7736,7736,6.72],[7737,7737,3.06],[7738,7738,6.72],[7739,7739,3.06],[7740,7740,6.72],[7741,7741,3.06],[7742,7742,9.27],[7743,7743,10.7],[7744,7744,9.78],[7745,7745,8.56],[7746,7746,9.27],[7747,7747,10.7],[7748,7748,7.94],[7749,7749,5.5],[7750,7750,8.23],[7751,7751,6.96],[7752,7752,7.94],[7753,7753,5.5],[7754,7754,7.94],[7755,7755,5.5],[7756,7756,8.66],[7757,7757,6.68],[7758,7758,7.94],[7759,7759,5.5],[7760,7760,8.66],[7761,7761,6.68],[7762,7762,8.66],[7763,7763,6.68],[7764,7764,6.63],[7765,7765,6.85],[7766,7766,6.12],[7767,7767,5.5],[7768,7768,7.34],[7769,7769,3.66],[7770,7770,7.65],[7771,7771,4.69],[7772,7772,7.34],[7773,7773,3.66],[7774,7774,7.34],[7775,7775,3.66],[7776,7776,6.12],[7777,7777,4.28],[7778,7778,7.52],[7779,7779,5.73],[7780,7780,6.12],[7781,7781,4.28],[7782,7782,6.12],[7783,7783,4.28],[7784,7784,6.12],[7785,7785,4.28],[7786,7786,6.72],[7787,7787,3.06],[7788,7788,6.78],[7789,7789,4.33],[7790,7790,6.72],[7791,7791,3.06],[7792,7792,6.72],[7793,7793,3.06],[7794,7794,7.94],[7795,7795,5.5],[7796,7796,7.94],[7797,7797,5.5],[7798,7798,7.94],[7799,7799,5.5],[7800,7800,8.05],[7801,7801,6.96],[7802,7802,7.94],[7803,7803,5.5],[7804,7804,7.52],[7805,7805,6.51],[7806,7806,7.52],[7807,7807,6.51],[7808,7808,10.88],[7809,7809,9],[7810,7810,10.88],[7811,7811,9],[7812,7812,10.88],[7813,7813,9],[7814,7814,10.38],[7815,7815,7.94],[7816,7816,10.88],[7817,7817,9],[7818,7818,7.94],[7819,7819,5.5],[7820,7820,7.94],[7821,7821,5.5],[7822,7822,7.94],[7823,7823,5.5],[7824,7824,6.72],[7825,7825,4.88],[7826,7826,7.54],[7827,7827,5.78],[7828,7828,6.72],[7829,7829,4.88],[7830,7830,5.5],[7831,7831,3.06],[7832,7832,7.94],[7833,7833,5.5],[7834,7834,4.88],[7835,7835,3.06],[7836,7836,4.66],[7837,7837,4.65],[7838,7838,7.46],[7839,7839,6.62],[7840,7840,7.52],[7841,7841,6.61],[7842,7842,7.52],[7843,7843,6.61],[7844,7844,7.52],[7845,7845,6.61],[7846,7846,7.52],[7847,7847,6.61],[7848,7848,7.52],[7849,7849,6.61],[7850,7850,7.52],[7851,7851,6.61],[7852,7852,7.52],[7853,7853,6.61],[7854,7854,7.52],[7855,7855,6.61],[7856,7856,7.52],[7857,7857,6.61],[7858,7858,7.52],[7859,7859,6.61],[7860,7860,7.52],[7861,7861,6.61],[7862,7862,7.52],[7863,7863,6.61],[7864,7864,6.96],[7865,7865,6.55],[7866,7866,6.96],[7867,7867,6.55],[7868,7868,6.96],[7869,7869,6.55],[7870,7870,6.96],[7871,7871,6.55],[7872,7872,6.96],[7873,7873,6.55],[7874,7874,6.96],[7875,7875,6.55],[7876,7876,6.96],[7877,7877,6.55],[7878,7878,6.96],[7879,7879,6.55],[7880,7880,4.63],[7881,7881,3.02],[7882,7882,4.63],[7883,7883,3.02],[7884,7884,8.66],[7885,7885,6.68],[7886,7886,8.66],[7887,7887,6.68],[7888,7888,8.66],[7889,7889,6.68],[7890,7890,8.66],[7891,7891,6.68],[7892,7892,8.66],[7893,7893,6.68],[7894,7894,8.66],[7895,7895,6.68],[7896,7896,8.66],[7897,7897,6.68],[7898,7898,8.87],[7899,7899,6.68],[7900,7900,8.87],[7901,7901,6.68],[7902,7902,8.87],[7903,7903,6.68],[7904,7904,8.87],[7905,7905,6.68],[7906,7906,8.87],[7907,7907,6.68],[7908,7908,8.05],[7909,7909,6.96],[7910,7910,8.05],[7911,7911,6.96],[7912,7912,8.32],[7913,7913,7.26],[7914,7914,8.32],[7915,7915,7.26],[7916,7916,8.32],[7917,7917,7.26],[7918,7918,8.32],[7919,7919,7.26],[7920,7920,8.32],[7921,7921,7.26],[7922,7922,6.77],[7923,7923,6.51],[7924,7924,6.77],[7925,7925,6.51],[7926,7926,6.77],[7927,7927,6.51],[7928,7928,6.77],[7929,7929,6.51],[7930,7930,10.3],[7931,7931,6.48],[7932,7932,5.57],[7933,7933,4.89],[7934,7934,5.04],[7936,7943,5.76],[7944,7945,7.94],[7946,7951,8.7],[7952,7957,4.62],[7958,7959,11],[7960,7961,8.23],[7962,7965,9.95],[7966,7967,11],[7968,7975,5.75],[7976,7977,9.45],[7978,7983,11.17],[7984,7991,2.96],[7992,7993,5.17],[7994,7999,6.89],[8000,8005,5.5],[8006,8007,11],[8008,8009,8.7],[8010,8011,10.96],[8012,8013,9.88],[8014,8015,11],[8016,8023,5.45],[8024,8024,11],[8025,8025,9.45],[8026,8026,11],[8027,8027,11.23],[8028,8028,11],[8029,8029,11.23],[8030,8030,11],[8031,8031,11.23],[8032,8039,7.24],[8040,8041,8.93],[8042,8043,10.97],[8044,8047,10.22],[8048,8049,6.85],[8050,8051,5.64],[8052,8053,6.96],[8054,8055,3.02],[8056,8057,6.68],[8058,8059,6.94],[8060,8061,8.95],[8062,8063,11],[8064,8071,5.76],[8072,8073,7.94],[8074,8079,8.7],[8080,8087,5.75],[8088,8089,9.45],[8090,8095,11.17],[8096,8103,7.24],[8104,8105,8.93],[8106,8107,10.97],[8108,8111,10.22],[8112,8116,5.76],[8117,8117,11],[8118,8119,5.76],[8120,8121,7.94],[8122,8123,7.52],[8124,8124,7.94],[8125,8125,3.66],[8126,8126,3.02],[8127,8129,3.66],[8130,8132,5.75],[8133,8133,11],[8134,8135,5.75],[8136,8136,6.96],[8137,8137,8.26],[8138,8138,8.27],[8139,8139,9.57],[8140,8140,7.94],[8141,8143,3.66],[8144,8145,2.96],[8146,8147,3.02],[8148,8149,11],[8150,8151,2.96],[8152,8153,3.66],[8154,8154,4.63],[8155,8155,5.94],[8156,8156,11],[8157,8159,3.66],[8160,8161,5.45],[8162,8163,6.94],[8164,8165,5.49],[8166,8167,5.45],[8168,8169,7.94],[8170,8170,6.77],[8171,8171,8.29],[8172,8172,7.63],[8173,8175,6.99],[8176,8177,11],[8178,8180,7.24],[8181,8181,11],[8182,8183,7.24],[8184,8184,8.66],[8185,8185,9.69],[8186,8186,9],[8187,8187,9.98],[8188,8188,8.17],[8189,8189,6.99],[8190,8190,3.66],[8192,8192,5.5],[8193,8193,11],[8194,8194,5.5],[8195,8195,11],[8196,8196,3.67],[8197,8197,2.75],[8198,8198,1.83],[8199,8199,6.99],[8200,8200,4],[8201,8201,2.2],[8202,8202,0.69],[8203,8207,0],[8208,8209,6.36],[8210,8211,6.99],[8212,8213,11],[8214,8214,3.09],[8215,8215,6.99],[8216,8219,2.95],[8220,8223,5.05],[8224,8225,6.99],[8226,8226,6],[8227,8227,5.17],[8228,8228,3.67],[8229,8229,7.33],[8230,8230,9],[8231,8231,3.48],[8232,8238,0],[8239,8239,1.93],[8240,8240,16.74],[8241,8241,14.91],[8242,8242,3.97],[8243,8244,6.13],[8245,8245,3.58],[8246,8246,5.96],[8247,8247,8.35],[8248,8248,3.88],[8249,8250,5],[8251,8251,7.95],[8252,8252,6.87],[8253,8253,4.64],[8254,8254,6.99],[8255,8256,5.5],[8257,8257,5.11],[8258,8258,10.02],[8259,8259,3.58],[8260,8260,3.97],[8261,8262,3.58],[8263,8263,8.88],[8264,8265,7.77],[8266,8267,6.96],[8268,8268,5.96],[8269,8269,5.97],[8270,8270,5.3],[8271,8271,3.48],[8272,8272,5.5],[8273,8273,5.3],[8274,8274,6.06],[8275,8275,11],[8276,8276,5.5],[8277,8277,7.67],[8278,8278,6.53],[8279,8279,10.72],[8280,8281,6.53],[8282,8282,11],[8283,8283,6.53],[8284,8284,7.68],[8285,8285,11],[8286,8286,3.06],[8287,8287,2.44],[8288,8302,0],[8304,8304,4.64],[8305,8305,2.38],[8306,8307,11],[8308,8309,5.96],[8310,8310,4.64],[8311,8312,5.96],[8313,8316,4.64],[8317,8318,2.48],[8319,8319,6],[8320,8332,4.64],[8333,8334,2.48],[8335,8335,11],[8336,8336,3.01],[8337,8337,2.82],[8338,8338,3.17],[8339,8339,3.19],[8340,8340,2.82],[8341,8350,11],[8352,8352,6.99],[8353,8354,7.68],[8355,8356,6.99],[8357,8357,10.7],[8358,8358,8.23],[8359,8359,12.8],[8360,8360,12.83],[8361,8361,10.88],[8362,8362,9.18],[8363,8363,6.85],[8364,8364,6.99],[8365,8365,7.62],[8366,8366,6.78],[8367,8367,11],[8368,8368,5.73],[8369,8369,6.63],[8370,8370,8.53],[8371,8372,7.52],[8373,8373,7.68],[8374,8374,7.44],[8375,8375,8.03],[8376,8376,6.22],[8377,8377,6.6],[8378,8378,6.12],[8379,8379,9.14],[8380,8381,6.22],[8382,8382,8.28],[8383,8383,7.22],[8384,8398,11],[8400,8402,0],[8403,8403,6.6],[8404,8405,7.7],[8406,8408,0],[8409,8410,6.6],[8411,8413,0],[8414,8414,11],[8415,8415,9.51],[8416,8416,9.9],[8417,8417,0],[8418,8418,11],[8419,8432,0],[8433,8446,11],[8448,8449,8.25],[8450,8450,6.62],[8451,8451,10.88],[8452,8452,7.04],[8453,8453,11.84],[8454,8454,8.25],[8455,8455,6.58],[8456,8456,6.63],[8457,8457,9.31],[8458,8458,11],[8459,8459,10.97],[8460,8460,9.06],[8461,8461,6.62],[8462,8462,6.35],[8463,8463,6.76],[8464,8464,9.87],[8465,8465,8.38],[8466,8466,10.41],[8467,8467,3.56],[8468,8468,8.56],[8469,8469,6.62],[8470,8470,12.89],[8471,8471,9.41],[8472,8472,9.09],[8473,8474,6.62],[8475,8475,10.38],[8476,8476,9.61],[8477,8477,6.62],[8478,8478,6.96],[8479,8479,7.34],[8480,8480,12.41],[8481,8481,16.53],[8482,8482,10.74],[8483,8483,7.94],[8484,8484,6.62],[8485,8485,5.63],[8486,8486,9],[8487,8487,8.75],[8488,8488,7.99],[8489,8489,4.4],[8490,8490,7.62],[8491,8491,7.52],[8492,8492,10.45],[8493,8493,7.89],[8494,8494,7.9],[8495,8495,6.9],[8496,8496,8.25],[8497,8497,10.11],[8498,8498,7.3],[8499,8499,11.79],[8500,8500,7.67],[8501,8501,7.1],[8502,8502,6.19],[8503,8503,4.7],[8504,8504,5.51],[8505,8505,7.26],[8506,8506,10.27],[8507,8507,18.04],[8508,8508,7.4],[8509,8509,5.94],[8510,8510,5.16],[8511,8511,7.9],[8512,8512,10.15],[8513,8513,7.95],[8514,8515,5.87],[8516,8516,6.85],[8517,8517,7.84],[8518,8518,6.39],[8519,8519,5.66],[8520,8520,3.22],[8521,8521,3.75],[8522,8522,7.3],[8523,8523,7.67],[8524,8524,8.91],[8525,8525,9.7],[8526,8526,4.58],[8528,8530,11],[8531,8532,8.25],[8533,8538,8.81],[8539,8542,11],[8543,8543,4.18],[8544,8544,3.17],[8545,8545,6.49],[8546,8546,9.21],[8547,8547,9.95],[8548,8548,7.19],[8549,8549,10.1],[8550,8550,13.34],[8551,8551,16.06],[8552,8552,9.59],[8553,8553,6.89],[8554,8554,9.38],[8555,8555,12.62],[8556,8556,5.87],[8557,8557,7.61],[8558,8558,8.24],[8559,8559,9.47],[8560,8560,3.18],[8561,8561,6.36],[8562,8562,9.01],[8563,8563,8.57],[8564,8564,5.69],[8565,8565,8.6],[8566,8566,11.78],[8567,8567,14.43],[8568,8568,9.18],[8569,8569,6.75],[8570,8570,9.16],[8571,8571,12.34],[8572,8572,3.18],[8573,8573,5.63],[8574,8574,6.92],[8575,8575,10.27],[8576,8576,11.45],[8577,8577,8.24],[8578,8578,11.45],[8579,8579,7.61],[8580,8580,4.88],[8581,8581,7.17],[8582,8582,6.21],[8583,8590,11],[8592,8592,11],[8593,8593,5.5],[8594,8594,11],[8595,8595,5.5],[8596,8596,11],[8597,8597,5.5],[8598,8603,11],[8604,8615,6.62],[8616,8616,5.5],[8617,8617,11],[8618,8618,10.87],[8619,8621,6.62],[8622,8622,11],[8623,8623,6.62],[8624,8626,9.51],[8627,8627,11],[8628,8628,9.51],[8629,8629,11],[8630,8631,9.51],[8632,8633,11],[8634,8635,6.62],[8636,8636,9.51],[8637,8639,6.62],[8640,8640,9.51],[8641,8643,6.62],[8644,8646,11],[8647,8650,6.62],[8651,8652,11],[8653,8653,9.68],[8654,8654,6.62],[8655,8655,9.56],[8656,8656,11],[8657,8657,9.51],[8658,8658,10.24],[8659,8659,9.51],[8660,8660,10.24],[8661,8669,6.62],[8670,8671,7.1],[8672,8672,11],[8673,8673,7.1],[8674,8674,11],[8675,8675,7.1],[8676,8682,11],[8683,8687,6.62],[8688,8688,9.51],[8689,8692,6.62],[8693,8693,11],[8694,8702,6.62],[8704,8704,6.93],[8705,8705,5.16],[8706,8706,6.99],[8707,8707,5.78],[8708,8708,5.88],[8709,8709,7.89],[8710,8710,8],[8711,8711,7.7],[8712,8712,6.34],[8713,8713,6.73],[8714,8714,5.6],[8715,8715,6.34],[8716,8716,6.48],[8717,8717,5.6],[8718,8718,5.74],[8719,8719,9],[8720,8720,8.75],[8721,8721,8],[8722,8722,9],[8723,8723,8.75],[8724,8724,6.58],[8725,8725,3.97],[8726,8726,8.75],[8727,8727,5.76],[8728,8728,3.9],[8729,8729,4],[8730,8730,9],[8731,8731,8.23],[8732,8732,7.97],[8733,8733,5.7],[8734,8734,11],[8735,8735,10.77],[8736,8736,6.57],[8737,8737,6.61],[8738,8738,6.66],[8739,8739,2.74],[8740,8740,5.2],[8741,8741,3.8],[8742,8742,5.78],[8743,8744,6.53],[8745,8745,7.94],[8746,8746,5.84],[8747,8747,6.99],[8748,8748,10.06],[8749,8749,12.36],[8750,8750,7.46],[8751,8751,10.16],[8752,8752,12.83],[8753,8753,6.58],[8754,8754,6.91],[8755,8755,6.57],[8756,8756,6.64],[8757,8757,6.57],[8758,8758,3.7],[8759,8759,6.33],[8760,8760,6.19],[8761,8761,6.33],[8762,8762,6.38],[8763,8763,6.16],[8764,8765,6.05],[8766,8766,5.97],[8767,8767,6.42],[8768,8768,4.29],[8769,8769,6.32],[8770,8770,6.38],[8771,8771,6.43],[8772,8772,7.38],[8773,8773,7.66],[8774,8774,6.92],[8775,8775,6.72],[8776,8776,9],[8777,8777,6.04],[8778,8778,6.64],[8779,8779,7.38],[8780,8780,5.97],[8781,8781,6.63],[8782,8782,6.57],[8783,8783,6.52],[8784,8784,6.16],[8785,8785,7.02],[8786,8787,6.96],[8788,8789,8.4],[8790,8790,6.36],[8791,8791,6.55],[8792,8792,6.48],[8793,8793,6.69],[8794,8794,6.81],[8795,8795,7.11],[8796,8796,7],[8797,8797,6.19],[8798,8798,6.32],[8799,8799,6.49],[8800,8801,9],[8802,8802,6.2],[8803,8803,6.52],[8804,8805,9],[8806,8806,6.32],[8807,8807,6.2],[8808,8808,6.84],[8809,8809,6.48],[8810,8810,8.07],[8811,8811,7.71],[8812,8812,3.94],[8813,8813,6.09],[8814,8815,6.2],[8816,8817,6.04],[8818,8818,6.2],[8819,8819,6.24],[8820,8820,6.41],[8821,8821,6.39],[8822,8823,6.66],[8824,8824,6.17],[8825,8825,6.34],[8826,8826,6.24],[8827,8827,6.36],[8828,8828,6.56],[8829,8829,6.36],[8830,8830,6.44],[8831,8831,6.4],[8832,8832,6.68],[8833,8833,6.36],[8834,8835,6.95],[8836,8836,7.08],[8837,8837,6.94],[8838,8839,7.29],[8840,8840,7.34],[8841,8841,7.14],[8842,8843,6.18],[8844,8845,6.4],[8846,8846,6.7],[8847,8848,7.19],[8849,8850,7.17],[8851,8852,6.72],[8853,8853,7.96],[8854,8854,8.2],[8855,8855,7.83],[8856,8856,7.94],[8857,8857,8.32],[8858,8858,8.09],[8859,8859,7.9],[8860,8860,8.37],[8861,8861,8.31],[8862,8862,8.62],[8863,8863,8.36],[8864,8864,8.06],[8865,8865,7.87],[8866,8869,8.26],[8870,8870,3.63],[8871,8871,3.67],[8872,8872,6.86],[8873,8873,8.02],[8874,8874,6.85],[8875,8875,8.31],[8876,8876,8.53],[8877,8877,8.56],[8878,8878,9.61],[8879,8879,9.2],[8880,8881,6.96],[8882,8883,8.15],[8884,8885,7.73],[8886,8887,8.08],[8888,8888,6.55],[8889,8889,7.51],[8890,8890,5.28],[8891,8892,7.66],[8893,8893,7.42],[8894,8894,8.16],[8895,8895,6.94],[8896,8897,7.38],[8898,8899,7.05],[8900,8900,4.19],[8901,8901,4.85],[8902,8902,4.93],[8903,8903,6.94],[8904,8904,8.5],[8905,8906,8.14],[8907,8908,7.96],[8909,8909,6.43],[8910,8911,6.98],[8912,8913,7.13],[8914,8915,6.26],[8916,8916,6.04],[8917,8917,6.75],[8918,8919,6.63],[8920,8921,10.65],[8922,8923,7.16],[8924,8925,7.11],[8926,8927,7.36],[8928,8928,7.33],[8929,8929,7.21],[8930,8930,7.55],[8931,8931,7.3],[8932,8932,7.38],[8933,8933,7.41],[8934,8934,7.44],[8935,8935,7.55],[8936,8936,7.91],[8937,8937,7.57],[8938,8938,8.23],[8939,8939,8.42],[8940,8940,8.49],[8941,8941,8.54],[8942,8942,4.52],[8943,8943,11],[8944,8944,10.12],[8945,8945,10.33],[8946,8946,7.15],[8947,8947,6.34],[8948,8948,5.6],[8949,8950,6.34],[8951,8951,5.6],[8952,8952,6.34],[8953,8953,6.95],[8954,8954,7.15],[8955,8955,6.34],[8956,8956,5.6],[8957,8957,6.34],[8958,8958,5.6],[8960,8961,6.62],[8962,8962,6.6],[8963,8963,8.74],[8964,8964,6.62],[8965,8965,8.74],[8966,8966,7.3],[8967,8967,11],[8968,8975,6.62],[8976,8976,6.2],[8977,8977,6.62],[8978,8978,11],[8979,8979,6.62],[8980,8980,9.51],[8981,8981,6.62],[8982,8983,12.1],[8984,8984,11],[8985,8985,6.62],[8986,8987,11],[8988,8991,6.62],[8992,8993,6.64],[8994,8995,9.51],[8996,8996,8.74],[8997,8997,11],[8998,8998,13.35],[8999,8999,11],[9000,9000,6.62],[9001,9002,11],[9003,9003,13.35],[9004,9004,10.19],[9005,9005,10.85],[9006,9006,6.86],[9007,9009,6.04],[9010,9010,9.78],[9011,9012,6.04],[9013,9013,6.62],[9014,9014,10.19],[9015,9020,6.62],[9021,9021,11],[9022,9022,6.62],[9023,9024,7.51],[9025,9028,6.62],[9029,9030,6.6],[9031,9033,6.62],[9034,9034,6.6],[9035,9037,6.62],[9038,9039,6.6],[9040,9040,6.62],[9041,9041,6.6],[9042,9044,6.62],[9045,9046,6.6],[9047,9052,6.62],[9053,9053,6.6],[9054,9056,6.62],[9057,9058,6.6],[9059,9061,6.62],[9062,9063,6.6],[9064,9065,6.62],[9066,9066,6.6],[9067,9072,6.62],[9073,9074,6.6],[9075,9082,6.62],[9083,9083,7.36],[9084,9084,9.58],[9085,9085,3.48],[9086,9086,10.33],[9087,9087,4.08],[9088,9091,6.62],[9092,9092,8.63],[9093,9093,7.52],[9094,9094,7.42],[9095,9096,11],[9097,9098,6.62],[9099,9099,11],[9100,9100,8.88],[9101,9101,8.65],[9102,9102,8.22],[9103,9106,7.24],[9107,9107,10.04],[9108,9108,10.19],[9109,9109,6.62],[9110,9110,5.19],[9111,9112,8.67],[9113,9114,8.97],[9115,9133,11],[9134,9134,6.62],[9135,9135,3.46],[9136,9137,11],[9138,9139,16.37],[9140,9142,10.19],[9143,9143,7.07],[9144,9149,5.54],[9150,9164,11],[9165,9165,10.97],[9166,9166,11],[9167,9167,9.43],[9168,9168,5.62],[9169,9169,5.96],[9170,9171,5.97],[9172,9173,11.34],[9174,9174,10.54],[9175,9177,10.73],[9178,9185,11],[9186,9186,12.58],[9187,9187,10.01],[9188,9188,12.03],[9189,9189,11.2],[9190,9190,10.19],[9191,9191,8.78],[9192,9214,11],[9216,9247,11],[9248,9248,6.6],[9249,9249,11],[9250,9250,6.6],[9251,9251,3.48],[9252,9252,6.6],[9253,9253,8.71],[9254,9254,4.44],[9255,9278,11],[9280,9285,6.64],[9286,9289,8.25],[9290,9290,6.64],[9291,9310,11],[9312,9412,11],[9413,9413,9.41],[9414,9470,11],[9472,9472,7.79],[9473,9473,11],[9474,9474,7.79],[9475,9483,11],[9484,9484,7.79],[9485,9487,11],[9488,9488,7.79],[9489,9491,11],[9492,9492,7.79],[9493,9495,11],[9496,9496,7.79],[9497,9499,11],[9500,9500,7.79],[9501,9507,11],[9508,9508,7.79],[9509,9515,11],[9516,9516,7.79],[9517,9523,11],[9524,9524,7.79],[9525,9531,11],[9532,9532,7.79],[9533,9547,11],[9548,9551,6.62],[9552,9580,7.79],[9581,9588,11],[9589,9598,6.62],[9600,9600,7.79],[9601,9603,11],[9604,9604,7.79],[9605,9607,11],[9608,9608,7.79],[9609,9611,11],[9612,9612,7.79],[9613,9615,11],[9616,9618,7.79],[9619,9619,8.02],[9620,9621,11],[9622,9630,6.62],[9632,9633,6.64],[9634,9634,11],[9635,9641,9.51],[9642,9643,3.9],[9644,9644,11],[9645,9645,9.51],[9646,9648,6.62],[9649,9649,11],[9650,9650,10.89],[9651,9651,11],[9652,9652,6.06],[9653,9653,9.51],[9654,9654,9.68],[9655,9655,11],[9656,9657,5.83],[9658,9658,10.89],[9659,9659,6.62],[9660,9660,10.89],[9661,9661,11],[9662,9663,7.03],[9664,9664,11],[9665,9665,8.74],[9666,9666,6.62],[9667,9667,9.51],[9668,9668,10.89],[9669,9669,6.62],[9670,9670,7.95],[9671,9671,6.76],[9672,9672,9.51],[9673,9673,11],[9674,9674,9],[9675,9675,6.64],[9676,9676,6.54],[9677,9677,6.62],[9678,9678,11],[9679,9679,6.64],[9680,9683,11],[9684,9687,6.62],[9688,9689,6.64],[9690,9697,6.62],[9698,9701,11],[9702,9702,3.9],[9703,9710,6.62],[9711,9711,11],[9712,9722,6.62],[9723,9726,11],[9728,9731,11],[9732,9732,6.62],[9733,9734,11],[9735,9736,6.62],[9737,9737,11],[9738,9741,6.62],[9742,9742,11],[9743,9743,9.51],[9744,9746,9.13],[9747,9747,6.62],[9748,9751,11],[9752,9755,6.62],[9756,9759,11],[9760,9774,6.62],[9775,9775,9.51],[9776,9783,9.9],[9784,9785,6.62],[9786,9786,11.23],[9787,9787,11.57],[9788,9788,10.08],[9789,9791,6.62],[9792,9792,8.25],[9793,9793,6.62],[9794,9794,8.25],[9795,9799,6.62],[9800,9811,11],[9812,9823,6.62],[9824,9824,5.84],[9825,9826,11],[9827,9827,7.22],[9828,9828,11],[9829,9829,6.53],[9830,9830,5.61],[9831,9833,11],[9834,9834,5.5],[9835,9835,8.25],[9836,9838,11],[9839,9839,5.5],[9840,9841,6.62],[9842,9853,11],[9854,9854,6.62],[9855,9855,11],[9856,9867,6.62],[9868,9868,9.67],[9869,9869,9.49],[9870,9870,9.45],[9871,9871,9.86],[9872,9874,6.62],[9875,9875,11],[9876,9884,6.62],[9885,9889,11],[9890,9890,9.81],[9891,9891,9.87],[9892,9892,9.71],[9893,9893,7.26],[9894,9894,8.15],[9895,9895,10.16],[9896,9896,5.86],[9897,9897,10.12],[9898,9899,11],[9900,9900,6.21],[9901,9901,8.54],[9902,9902,11.61],[9903,9903,12.3],[9904,9905,6.62],[9906,9906,6.63],[9907,9953,11],[9954,9954,7.7],[9955,9982,11],[9984,9984,11],[9985,9985,10.72],[9986,9986,10.57],[9987,9987,10.72],[9988,9988,10.78],[9989,9989,11],[9990,9990,8.68],[9991,9991,8.69],[9992,9992,8.7],[9993,9993,7.59],[9994,9997,11],[9998,9998,8.66],[9999,9999,10.26],[10000,10000,10.02],[10001,10001,10.39],[10002,10002,10.72],[10003,10003,8.41],[10004,10004,9.31],[10005,10005,8.38],[10006,10006,8.37],[10007,10007,6.28],[10008,10008,7.44],[10009,10009,8.4],[10010,10010,8.36],[10011,10011,8.35],[10012,10012,8.29],[10013,10013,5.44],[10014,10014,6.07],[10015,10015,5.91],[10016,10016,6.35],[10017,10017,7.61],[10018,10018,8.65],[10019,10020,8.67],[10021,10021,8.69],[10022,10022,8.72],[10023,10023,8.73],[10024,10024,11],[10025,10025,9.06],[10026,10026,8.68],[10027,10027,9.25],[10028,10028,9.06],[10029,10029,9.16],[10030,10030,8.98],[10031,10031,9.14],[10032,10032,10.15],[10033,10033,8.19],[10034,10034,7.95],[10035,10035,8.24],[10036,10036,8.69],[10037,10037,8.71],[10038,10038,7.64],[10039,10039,8.53],[10040,10040,8.45],[10041,10041,8.71],[10042,10042,8.35],[10043,10043,7.78],[10044,10044,7.79],[10045,10045,7.5],[10046,10046,7.71],[10047,10047,9.09],[10048,10048,8.96],[10049,10050,8.68],[10051,10051,7.78],[10052,10052,7.56],[10053,10053,7.65],[10054,10054,7.58],[10055,10055,8.65],[10056,10056,8.66],[10057,10057,7.84],[10058,10058,8.7],[10059,10059,8.64],[10060,10060,11],[10061,10061,9.6],[10062,10062,11],[10063,10064,8.38],[10065,10066,8.35],[10067,10069,11],[10070,10070,8.63],[10071,10071,11],[10072,10072,3.18],[10073,10073,3.05],[10074,10074,4.57],[10075,10076,4.31],[10077,10078,7.35],[10079,10080,11],[10081,10081,8.05],[10082,10083,5.98],[10084,10084,10.01],[10085,10085,7.34],[10086,10087,8.36],[10088,10089,4.29],[10090,10091,3.49],[10092,10093,3.03],[10094,10095,5.6],[10096,10097,4.51],[10098,10099,2.57],[10100,10101,3.67],[10102,10131,8.67],[10132,10132,9.83],[10133,10135,11],[10136,10136,8.23],[10137,10137,10.16],[10138,10138,8.23],[10139,10139,10.1],[10140,10140,10.19],[10141,10142,10.21],[10143,10143,9.17],[10144,10144,9.6],[10145,10145,9.11],[10146,10147,10.16],[10148,10148,10.09],[10149,10149,10.23],[10150,10150,10.24],[10151,10151,5.09],[10152,10152,9.71],[10153,10154,9.2],[10155,10156,9.54],[10157,10158,7.65],[10159,10159,9.61],[10160,10160,11],[10161,10161,9.61],[10162,10162,8.36],[10163,10163,10.4],[10164,10164,8.48],[10165,10165,9.52],[10166,10166,8.48],[10167,10167,9.77],[10168,10168,10.63],[10169,10169,9.77],[10170,10170,9.14],[10171,10171,9.6],[10172,10172,10.19],[10173,10173,10.67],[10174,10174,10.1],[10176,10176,6.03],[10177,10177,10.43],[10178,10178,7.58],[10179,10180,6.21],[10181,10182,6.62],[10183,10183,6.82],[10184,10185,10.1],[10186,10186,3.74],[10187,10187,9.22],[10188,10188,3.57],[10189,10189,9.22],[10190,10191,11],[10192,10192,8.21],[10193,10193,6.82],[10194,10194,6.57],[10195,10196,5.97],[10197,10198,9.93],[10199,10199,12.26],[10200,10201,7.58],[10202,10202,9.57],[10203,10203,9.42],[10204,10204,11.6],[10205,10206,9.33],[10207,10207,4.36],[10208,10208,6.06],[10209,10209,7.7],[10210,10211,9.64],[10212,10213,10.41],[10214,10215,4.64],[10216,10217,4.02],[10218,10219,5.1],[10220,10221,5.37],[10222,10222,2.56],[10224,10225,11.36],[10226,10227,10.71],[10228,10228,13.2],[10229,10238,17.31],[10240,10494,7.52],[10496,10503,10.19],[10504,10505,5.62],[10506,10511,10.19],[10512,10512,15.53],[10513,10513,10.19],[10514,10515,5.62],[10516,10547,10.19],[10548,10549,11],[10550,10551,9.51],[10552,10552,5.62],[10553,10553,9.51],[10554,10568,10.19],[10569,10569,5.62],[10570,10571,10.19],[10572,10573,5.62],[10574,10574,10.19],[10575,10575,5.62],[10576,10576,10.19],[10577,10577,5.62],[10578,10579,10.19],[10580,10581,5.62],[10582,10583,10.19],[10584,10585,5.62],[10586,10587,10.19],[10588,10589,5.62],[10590,10591,10.19],[10592,10593,5.62],[10594,10597,9.51],[10598,10605,10.19],[10606,10607,7.53],[10608,10613,10.19],[10614,10614,7.53],[10615,10615,10.19],[10616,10617,7.53],[10618,10618,10.19],[10619,10619,7.53],[10620,10621,10.19],[10622,10622,7.53],[10624,10624,4.01],[10625,10625,4.18],[10626,10626,3.45],[10627,10628,4.11],[10629,10630,4.92],[10631,10632,3.68],[10633,10634,4.35],[10635,10636,3.31],[10637,10640,3.3],[10641,10641,4.02],[10642,10642,4.04],[10643,10644,7.25],[10645,10646,7.65],[10647,10648,7.13],[10649,10649,2.48],[10650,10650,3.05],[10651,10651,6.53],[10652,10653,6.51],[10654,10654,7.27],[10655,10655,6.03],[10656,10657,6.53],[10658,10661,6.03],[10662,10663,8.28],[10664,10671,6.53],[10672,10676,7.73],[10677,10677,9.56],[10678,10678,7.7],[10679,10679,7.72],[10680,10680,7.94],[10681,10681,7.72],[10682,10682,7.73],[10683,10683,7.74],[10684,10689,7.72],[10690,10690,9.41],[10691,10691,9.61],[10692,10696,8.22],[10697,10697,8.75],[10698,10700,8.23],[10701,10701,10.38],[10702,10702,7.15],[10703,10704,8.34],[10705,10707,7.56],[10708,10709,7.17],[10710,10711,8.44],[10712,10713,3.05],[10714,10715,4.66],[10716,10716,7.01],[10717,10717,7.12],[10718,10718,7.01],[10719,10719,7.41],[10720,10720,8.22],[10721,10721,7.19],[10722,10722,7.51],[10723,10725,7.3],[10726,10726,7.81],[10727,10727,6.99],[10728,10729,8.23],[10730,10730,7.89],[10731,10731,5.2],[10732,10733,9.89],[10734,10735,6.57],[10736,10737,7.79],[10738,10739,7.72],[10740,10740,9],[10741,10741,6.58],[10742,10742,6.34],[10743,10745,5.59],[10746,10747,7.43],[10748,10749,5.91],[10750,10750,5.2],[10752,10753,9.89],[10754,10754,9.92],[10755,10756,5.99],[10757,10758,6.55],[10759,10760,8.43],[10761,10761,7.33],[10762,10762,9.41],[10763,10763,7.18],[10764,10764,16.56],[10765,10767,6.72],[10768,10768,5.49],[10769,10769,8.01],[10770,10770,5.71],[10771,10771,5.49],[10772,10772,6.91],[10773,10773,5.49],[10774,10774,6.72],[10775,10775,7.43],[10776,10778,6.72],[10779,10779,7.02],[10780,10780,6.79],[10781,10781,7.56],[10782,10782,4.35],[10783,10783,3.67],[10784,10784,8.92],[10785,10785,3.59],[10786,10787,5.95],[10788,10788,5.99],[10789,10789,5.95],[10790,10790,5.99],[10791,10791,7.12],[10792,10792,7.02],[10793,10794,5.99],[10795,10796,5.97],[10797,10798,8.37],[10799,10799,5.04],[10800,10800,5.82],[10801,10801,5.96],[10802,10802,5.74],[10803,10803,8.85],[10804,10805,7.86],[10806,10808,9.89],[10809,10811,8.23],[10812,10813,5.63],[10814,10814,3.67],[10815,10815,6.77],[10816,10821,5.99],[10822,10823,4.27],[10824,10825,5.96],[10826,10827,5.62],[10828,10829,8.13],[10830,10831,6.55],[10832,10832,8.13],[10833,10834,6.71],[10835,10836,7.17],[10837,10838,8.28],[10839,10840,7.17],[10841,10841,6.67],[10842,10843,7.17],[10844,10845,8.12],[10846,10848,6.71],[10849,10849,5.97],[10850,10851,6.71],[10852,10853,7.34],[10854,10857,5.96],[10858,10861,5.98],[10862,10862,5.33],[10863,10864,5.98],[10865,10866,5.97],[10867,10867,5.99],[10868,10868,9.33],[10869,10869,10.82],[10870,10870,16.03],[10871,10871,6],[10872,10872,6.55],[10873,10874,7.25],[10875,10876,5.63],[10877,10879,5.97],[10880,10880,5.98],[10881,10884,5.97],[10885,10886,5.98],[10887,10887,6.06],[10888,10888,6.27],[10889,10890,5.98],[10891,10892,5.97],[10893,10893,6.06],[10894,10894,6.03],[10895,10896,5.99],[10897,10903,5.97],[10904,10906,5.98],[10907,10908,5.97],[10909,10910,5.98],[10911,10911,6.07],[10912,10912,6],[10913,10914,7.51],[10915,10915,8.87],[10916,10916,5.99],[10917,10917,10.29],[10918,10921,6.75],[10922,10922,5.63],[10923,10923,5.76],[10924,10924,6.06],[10925,10925,6.11],[10926,10926,5.97],[10927,10929,6.08],[10930,10930,6.06],[10931,10934,6.08],[10935,10935,6.02],[10936,10936,6.03],[10937,10937,6.02],[10938,10938,6.03],[10939,10940,9.76],[10941,10942,6.21],[10943,10950,5.05],[10951,10954,6],[10955,10956,5.05],[10957,10958,10.48],[10959,10960,6.21],[10961,10962,6.2],[10963,10966,5.05],[10967,10968,9.35],[10969,10971,6.57],[10972,10972,6.71],[10973,10973,6.57],[10974,10974,4.32],[10975,10977,7.58],[10978,10978,7.55],[10979,10979,7.52],[10980,10980,7.55],[10981,10981,9.21],[10982,10982,7.54],[10983,10985,7.58],[10986,10987,7.62],[10988,10989,5.63],[10990,10990,3.44],[10991,10992,3.13],[10993,10993,3.29],[10994,10994,4.29],[10995,10995,5.98],[10996,10996,3.84],[10997,10997,5.26],[10998,10998,2.48],[10999,11000,10.68],[11001,11002,5.97],[11003,11003,5.48],[11004,11004,3.9],[11005,11005,4.52],[11006,11006,3.23],[11904,12030,11],[12272,12286,11],[12288,12333,11],[12334,12335,17.6],[12336,12350,11],[12800,12827,9.51],[12828,12828,9.36],[12829,12895,11],[12896,12923,9.51],[12924,12926,11],[12927,12927,9.31],[12928,13054,11],[13056,13183,11],[13184,13188,9.51],[13189,13193,11],[13194,13196,9.51],[13197,13200,11],[13201,13205,9.51],[13206,13208,11],[13209,13210,9.51],[13211,13222,11],[13223,13231,9.51],[13232,13235,11],[13236,13249,9.51],[13250,13250,11],[13251,13251,9.51],[13252,13252,11],[13253,13254,9.51],[13255,13255,9.31],[13256,13256,11],[13257,13258,9.51],[13259,13262,11],[13263,13264,9.51],[13265,13266,11],[13267,13267,9.51],[13268,13269,11],[13270,13270,9.51],[13271,13274,11],[13275,13277,9.51],[13278,13310,11],[13312,19902,11],[19968,40958,11],[63744,64254,11],[65072,65102,11],[65136,65136,3.43],[65137,65137,2.23],[65138,65138,3.43],[65139,65139,3.3],[65140,65140,3.43],[65141,65141,11],[65142,65142,3.43],[65143,65143,2.23],[65144,65144,3.43],[65145,65145,2.23],[65146,65146,3.43],[65147,65147,2.23],[65148,65148,3.43],[65149,65149,2.23],[65150,65150,3.43],[65151,65151,2.23],[65152,65152,4.54],[65153,65153,2.28],[65154,65154,2.52],[65155,65155,2.28],[65156,65156,2.52],[65157,65158,4.75],[65159,65159,2.28],[65160,65160,2.52],[65161,65161,7.02],[65162,65162,6.47],[65163,65164,2.69],[65165,65165,2.28],[65166,65166,2.52],[65167,65168,7.85],[65169,65170,2.69],[65171,65171,3.1],[65172,65172,4.13],[65173,65174,7.85],[65175,65176,2.69],[65177,65178,7.85],[65179,65180,2.69],[65181,65181,6.19],[65182,65182,5.78],[65183,65184,5.83],[65185,65185,6.19],[65186,65186,5.78],[65187,65188,5.83],[65189,65189,6.19],[65190,65190,5.78],[65191,65192,5.83],[65193,65196,3.71],[65197,65200,5.38],[65201,65202,9.03],[65203,65204,5.84],[65205,65206,9.03],[65207,65208,5.84],[65209,65210,12.08],[65211,65212,9.31],[65213,65214,12.08],[65215,65216,9.31],[65217,65224,6.4],[65225,65225,5.98],[65226,65226,4.95],[65227,65227,5.78],[65228,65228,4.33],[65229,65229,5.98],[65230,65230,4.95],[65231,65231,5.78],[65232,65232,4.33],[65233,65234,8.67],[65235,65235,2.94],[65236,65236,2.89],[65237,65238,6.4],[65239,65239,2.94],[65240,65240,2.89],[65241,65242,6.61],[65243,65244,4.33],[65245,65246,5.57],[65247,65248,2.28],[65249,65250,3.72],[65251,65252,4.33],[65253,65254,5.78],[65255,65256,2.69],[65257,65257,3.1],[65258,65258,4.13],[65259,65259,4.95],[65260,65260,4.33],[65261,65262,4.75],[65263,65263,7.02],[65264,65264,6.47],[65265,65265,7.02],[65266,65266,6.47],[65267,65268,2.69],[65269,65269,5.98],[65270,65270,6.61],[65271,65271,5.98],[65272,65272,6.61],[65273,65273,5.98],[65274,65274,6.61],[65275,65275,5.98],[65276,65276,6.61],[65277,65278,11],[65280,65376,11],[65377,65440,5.5],[65441,65441,5.31],[65442,65443,5.5],[65444,65444,5.31],[65445,65446,5.5],[65447,65447,5.31],[65448,65470,5.5],[65471,65473,11],[65474,65479,5.5],[65480,65481,11],[65482,65487,5.5],[65488,65489,11],[65490,65495,5.5],[65496,65497,11],[65498,65500,5.5],[65501,65508,11],[65509,65509,6.99],[65510,65510,10.88],[65511,65512,11],[65513,65518,5.5],[65792,65792,7.52],[65793,65793,6.61],[65794,65794,7.52],[65795,65795,6.61],[65796,65796,7.52],[65797,65797,6.61],[65798,65798,7.68],[65799,65799,5.73],[65800,65800,7.68],[65801,65801,5.73],[65802,65802,7.68],[65803,65803,5.73],[65804,65804,7.68],[65805,65805,5.73],[65806,65806,8.48],[65807,65807,7.12],[65808,65808,8.53],[65809,65809,6.85],[65810,65810,6.96],[65811,65811,6.55],[65812,65812,6.96],[65813,65813,6.55],[65814,65814,6.96],[65815,65815,6.55],[65816,65816,6.96],[65817,65817,6.55],[65818,65818,6.96],[65819,65819,6.55],[65820,65820,8.53],[65821,65821,6.85],[65822,65822,8.53],[65823,65823,6.85],[65824,65824,8.53],[65825,65825,6.85],[65826,65826,8.53],[65827,65827,6.85],[65828,65828,8.27],[65829,65829,6.96],[65830,65830,8.27],[65831,65831,6.96],[65832,65832,4.63],[65833,65833,3.02],[65834,65834,4.63],[65835,65835,3.02],[65836,65836,4.63],[65837,65837,3.02],[65838,65838,4.63],[65839,65839,3.02],[65840,65840,4.63],[65841,65841,3.02],[65842,65842,9.58],[65843,65843,6.75],[65844,65844,5],[65845,65845,3.79],[65846,65846,7.62],[65847,65848,6.51],[65849,65849,6.12],[65850,65850,3.02],[65851,65851,6.12],[65852,65852,3.02],[65853,65853,6.12],[65854,65854,3.25],[66304,66350,0],[66352,66382,0],[66560,66561,6.96],[66562,66562,8.72],[66563,66563,6.23],[66564,66564,7.71],[66565,66565,7.52],[66566,66567,4.63],[66568,66568,5],[66569,66569,12.3],[66570,66570,12.13],[66571,66571,9],[66572,66572,7.62],[66573,66573,8.26],[66574,66574,6.77],[66575,66575,8.27],[66576,66576,7.52],[66577,66578,7.54],[66579,66579,6.23],[66580,66580,8.2],[66581,66581,6.96],[66582,66582,10.7],[66583,66583,6.77],[66584,66585,8.26],[66586,66586,7.62],[66587,66587,8.08],[66588,66588,9.27],[66589,66589,8.27],[66590,66590,8.66],[66591,66591,8.27],[66592,66592,6.63],[66593,66593,7.68],[66594,66594,6.78],[66595,66595,6.77],[66596,66596,9.01],[66597,66597,7.54],[66598,66598,8.37],[66599,66599,7.83],[66600,66600,11.33],[66601,66601,11.49],[66602,66602,8.62],[66603,66603,10.12],[66604,66604,7.49],[66605,66605,7.71],[66606,66606,11.38],[66607,66607,7.77],[66608,66608,6.61],[66609,66609,6.76],[66610,66610,6.54],[66611,66611,5.18],[66612,66612,6.84],[66613,66613,6.55],[66614,66614,8.78],[66615,66615,5.77],[66616,66617,7.04],[66618,66618,6.51],[66619,66619,6.83],[66620,66620,7.66],[66621,66621,7.01],[66622,66622,6.68],[66623,66623,7.01],[66624,66624,6.85],[66625,66625,5.88],[66626,66626,5.46],[66627,66627,6.51],[66628,66628,9.25],[66629,66629,6.51],[66630,66630,7.09],[66631,66631,6.66],[66632,66632,9.64],[66633,66633,9.76],[66634,66634,7.05],[66635,66635,8.74],[66636,66636,6.28],[66637,66637,6.02],[66638,66638,9.23],[119040,119294,9.51],[119808,120739,9.51],[120740,120830,11],[131072,131072,0],[131073,131079,3.66],[131080,131080,0],[131081,131085,3.87],[131086,131100,3.66],[131101,131101,0],[131102,131103,3.66],[131104,131104,3.87],[131105,131105,4.33],[131106,131106,5.05],[131107,131107,9],[131108,131108,6.99],[131109,131109,11.84],[131110,131110,7.99],[131111,131111,2.95],[131112,131113,5],[131114,131114,6.99],[131115,131115,9],[131116,131116,4],[131117,131117,5],[131118,131118,4],[131119,131119,5],[131120,131129,6.99],[131130,131131,5],[131132,131134,9],[131135,131135,6],[131136,131136,11],[131137,131137,7.52],[131138,131138,7.54],[131139,131139,7.68],[131140,131140,8.48],[131141,131141,6.96],[131142,131142,6.32],[131143,131143,8.53],[131144,131144,8.27],[131145,131145,4.63],[131146,131146,5],[131147,131147,7.62],[131148,131148,6.12],[131149,131149,9.27],[131150,131150,8.23],[131151,131151,8.66],[131152,131152,6.63],[131153,131153,8.66],[131154,131154,7.65],[131155,131155,7.52],[131156,131156,6.78],[131157,131157,8.05],[131158,131158,7.52],[131159,131159,10.88],[131160,131160,7.54],[131161,131161,6.77],[131162,131162,7.54],[131163,131165,5],[131166,131166,9],[131167,131168,6.99],[131169,131169,6.61],[131170,131170,6.85],[131171,131171,5.73],[131172,131172,6.85],[131173,131173,6.55],[131174,131174,3.87],[131175,131175,6.85],[131176,131176,6.96],[131177,131177,3.02],[131178,131178,3.79],[131179,131179,6.51],[131180,131180,3.02],[131181,131181,10.7],[131182,131182,6.96],[131183,131183,6.68],[131184,131185,6.85],[131186,131186,4.69],[131187,131187,5.73],[131188,131188,4.33],[131189,131189,6.96],[131190,131190,6.51],[131191,131191,9],[131192,131193,6.51],[131194,131194,5.78],[131195,131195,6.98],[131196,131196,5],[131197,131197,6.98],[131198,131198,9],[131199,131199,0],[131200,131200,6.12],[131201,131231,5.5],[131232,131232,3.87],[131233,131233,4.33],[131234,131237,6.99],[131238,131238,5],[131239,131240,6.99],[131241,131241,11],[131242,131242,6],[131243,131243,7.09],[131244,131244,9],[131245,131245,0],[131246,131246,11],[131247,131247,6.99],[131248,131248,5.96],[131249,131249,9],[131250,131251,5.96],[131252,131252,6.99],[131253,131253,7.06],[131254,131254,6.99],[131255,131255,4],[131256,131256,6.99],[131257,131257,5.96],[131258,131258,6],[131259,131259,7.09],[131260,131262,11],[131263,131263,6],[131264,131269,7.52],[131270,131270,10.83],[131271,131271,7.68],[131272,131275,6.96],[131276,131279,4.63],[131280,131280,8.53],[131281,131281,8.23],[131282,131286,8.66],[131287,131287,9],[131288,131288,8.66],[131289,131292,8.05],[131293,131293,6.77],[131294,131294,6.66],[131295,131295,6.82],[131296,131301,6.61],[131302,131302,10.51],[131303,131303,5.73],[131304,131307,6.55],[131308,131311,3.02],[131312,131312,6.73],[131313,131313,6.96],[131314,131318,6.68],[131319,131319,9],[131320,131320,6.68],[131321,131324,6.96],[131325,131325,6.51],[131326,131326,6.85],[131327,131327,6.51],[131328,131328,7.52],[131329,131329,6.61],[131330,131330,7.52],[131331,131331,6.61],[131332,131332,7.52],[131333,131333,6.61],[131334,131334,7.68],[131335,131335,5.73],[131336,131336,7.68],[131337,131337,5.73],[131338,131338,7.68],[131339,131339,5.73],[131340,131340,7.68],[131341,131341,5.73],[131342,131342,8.48],[131343,131343,7.12],[131344,131344,8.53],[131345,131345,6.85],[131346,131346,6.96],[131347,131347,6.55],[131348,131348,6.96],[131349,131349,6.55],[131350,131350,6.96],[131351,131351,6.55],[131352,131352,6.96],[131353,131353,6.55],[131354,131354,6.96],[131355,131355,6.55],[131356,131356,8.53],[131357,131357,6.85],[131358,131358,8.53],[131359,131359,6.85],[131360,131360,8.53],[131361,131361,6.85],[131362,131362,8.53],[131363,131363,6.85],[131364,131364,8.27],[131365,131365,6.96],[131366,131366,8.27],[131367,131367,6.96],[131368,131368,4.63],[131369,131369,3.02],[131370,131370,4.63],[131371,131371,3.02],[131372,131372,4.63],[131373,131373,3.02],[131374,131374,4.63],[131375,131375,3.02],[131376,131376,4.63],[131377,131377,3.02],[131378,131378,9.58],[131379,131379,6.75],[131380,131380,5],[131381,131381,3.79],[131382,131382,7.62],[131383,131384,6.51],[131385,131385,6.12],[131386,131386,3.02],[131387,131387,6.12],[131388,131388,3.02],[131389,131389,6.12],[131390,131390,3.25],[131391,131391,6.12],[131392,131392,5.04],[131393,131393,6.18],[131394,131394,3.13],[131395,131395,8.23],[131396,131396,6.96],[131397,131397,8.23],[131398,131398,6.96],[131399,131399,8.23],[131400,131400,6.96],[131401,131401,8.04],[131402,131402,8.23],[131403,131403,6.96],[131404,131404,8.66],[131405,131405,6.68],[131406,131406,8.66],[131407,131407,6.68],[131408,131408,8.66],[131409,131409,6.68],[131410,131410,11.77],[131411,131411,10.8],[131412,131412,7.65],[131413,131413,4.69],[131414,131414,7.65],[131415,131415,4.69],[131416,131416,7.65],[131417,131417,4.69],[131418,131418,7.52],[131419,131419,5.73],[131420,131420,7.52],[131421,131421,5.73],[131422,131422,7.52],[131423,131423,5.73],[131424,131424,7.52],[131425,131425,5.73],[131426,131426,6.78],[131427,131427,4.33],[131428,131428,6.78],[131429,131429,4.33],[131430,131430,6.78],[131431,131431,4.33],[131432,131432,8.05],[131433,131433,6.96],[131434,131434,8.05],[131435,131435,6.96],[131436,131436,8.05],[131437,131437,6.93],[131438,131438,8.05],[131439,131439,6.96],[131440,131440,8.05],[131441,131441,6.96],[131442,131442,8.05],[131443,131443,6.93],[131444,131444,10.88],[131445,131445,9],[131446,131446,6.77],[131447,131447,6.51],[131448,131448,6.77],[131449,131449,7.54],[131450,131450,5.78],[131451,131451,7.54],[131452,131452,5.78],[131453,131453,7.54],[131454,131454,5.78],[131455,131455,3.3],[131456,131456,5.5],[131457,131457,8.36],[131458,131458,6.32],[131459,131459,5.5],[131460,131460,6.32],[131461,131461,5.5],[131462,131463,7.34],[131464,131464,4.88],[131465,131465,7.94],[131466,131466,8.96],[131467,131467,6.32],[131468,131468,5.5],[131469,131469,5.18],[131470,131470,6.72],[131471,131471,8.3],[131472,131472,5.51],[131473,131473,6.12],[131474,131474,6.99],[131475,131476,7.94],[131477,131477,8.47],[131478,131478,2.79],[131479,131479,3.66],[131480,131480,7.94],[131481,131481,5.5],[131482,131482,3.06],[131483,131483,5.33],[131484,131484,8.98],[131485,131485,7.94],[131486,131486,5.5],[131487,131487,7.94],[131488,131488,8.87],[131489,131489,6.68],[131490,131490,10.17],[131491,131491,7.61],[131492,131492,7.15],[131493,131493,5.5],[131494,131495,6.12],[131496,131496,4.28],[131497,131497,6.4],[131498,131498,3.78],[131499,131499,3.06],[131500,131500,6.72],[131501,131501,3.06],[131502,131502,6.72],[131503,131503,8.32],[131504,131504,7.26],[131505,131505,8.17],[131506,131506,7.94],[131507,131507,8.59],[131508,131508,5.5],[131509,131509,6.72],[131510,131510,4.88],[131511,131512,5.93],[131513,131514,4.88],[131515,131516,5.5],[131517,131517,4.88],[131518,131518,4.64],[131519,131519,5.5],[131520,131520,2.2],[131521,131521,3.09],[131522,131522,2.74],[131523,131523,3.66],[131524,131524,14.66],[131525,131525,12.83],[131526,131526,10.38],[131527,131527,11],[131528,131528,9.78],[131529,131529,6.11],[131530,131530,12.22],[131531,131531,11],[131532,131532,8.56],[131533,131533,7.94],[131534,131534,4.88],[131535,131535,3.66],[131536,131536,3.06],[131537,131537,7.94],[131538,131538,5.5],[131539,131539,7.94],[131540,131540,5.5],[131541,131541,7.94],[131542,131542,5.5],[131543,131543,8.05],[131544,131544,6.96],[131545,131545,7.94],[131546,131546,5.5],[131547,131547,8.05],[131548,131548,6.96],[131549,131549,4.88],[131550,131550,7.94],[131551,131551,4.88],[131552,131552,7.94],[131553,131553,4.88],[131554,131554,9.78],[131555,131555,7.34],[131556,131556,7.94],[131557,131557,5.5],[131558,131558,7.94],[131559,131559,5.5],[131560,131560,7.94],[131561,131561,5.5],[131562,131562,7.94],[131563,131563,5.5],[131564,131564,7.94],[131565,131565,5.5],[131566,131566,5.93],[131567,131567,4.88],[131568,131568,3.06],[131569,131569,14.66],[131570,131570,12.83],[131571,131571,10.38],[131572,131572,8.53],[131573,131573,6.85],[131574,131574,10.45],[131575,131575,6.16],[131576,131576,8.23],[131577,131577,6.96],[131578,131578,7.52],[131579,131579,6.61],[131580,131580,10.83],[131581,131581,10.51],[131582,131582,8.66],[131583,131583,6.68],[131584,131584,7.94],[131585,131585,4.88],[131586,131586,7.94],[131587,131587,4.88],[131588,131588,6.72],[131589,131589,4.88],[131590,131590,6.72],[131591,131591,4.88],[131592,131592,3.66],[131593,131593,3.06],[131594,131594,3.66],[131595,131595,3.06],[131596,131596,7.94],[131597,131597,5.5],[131598,131598,7.94],[131599,131599,5.5],[131600,131600,7.34],[131601,131601,3.66],[131602,131602,7.34],[131603,131603,3.66],[131604,131604,7.94],[131605,131605,5.5],[131606,131606,7.94],[131607,131607,5.5],[131608,131608,7.52],[131609,131609,5.73],[131610,131610,6.78],[131611,131611,4.33],[131612,131612,6.19],[131613,131613,4.35],[131614,131614,7.94],[131615,131615,5.5],[131616,131616,7.15],[131617,131617,5.5],[131618,131618,6.64],[131619,131619,5.5],[131620,131620,6.72],[131621,131621,4.88],[131622,131622,7.94],[131623,131623,4.88],[131624,131624,6.72],[131625,131625,4.88],[131626,131626,7.94],[131627,131627,5.5],[131628,131628,7.94],[131629,131629,5.5],[131630,131630,7.94],[131631,131631,5.5],[131632,131632,7.94],[131633,131633,5.5],[131634,131634,7.94],[131635,131635,5.5],[131636,131636,3.06],[131637,131637,5.5],[131638,131638,3.49],[131639,131639,3.06],[131640,131640,8.51],[131641,131641,8.5],[131642,131642,7.94],[131643,131643,7.34],[131644,131644,5.5],[131645,131646,6.72],[131647,131647,4.28],[131648,131648,4.88],[131649,131649,5.87],[131650,131650,4.37],[131651,131651,7.34],[131652,131652,7.94],[131653,131653,7.98],[131654,131654,6.72],[131655,131655,4.88],[131656,131656,4.28],[131657,131657,3.06],[131658,131658,7.72],[131659,131659,5.5],[131660,131660,7.34],[131661,131661,3.66],[131662,131662,7.94],[131663,131663,5.5],[131664,131664,4.88],[131665,131666,5.75],[131667,131667,5.5],[131668,131669,4.88],[131670,131671,5.5],[131672,131672,4.88],[131673,131673,6.55],[131674,131674,6.9],[131675,131676,4.62],[131677,131677,6.47],[131678,131678,4.87],[131679,131679,3.66],[131680,131681,5.5],[131682,131682,4.98],[131683,131683,5.5],[131684,131684,4.88],[131685,131687,5.5],[131688,131688,3.06],[131689,131689,2.96],[131690,131693,3.06],[131694,131694,6.35],[131695,131697,8.56],[131698,131699,5.5],[131700,131700,5.47],[131701,131701,5.5],[131702,131702,6.93],[131703,131703,7.24],[131704,131704,6.09],[131705,131711,3.66],[131712,131713,5.37],[131714,131714,4.28],[131715,131716,3.66],[131717,131717,4.8],[131718,131718,3.66],[131719,131720,3.06],[131721,131721,5.5],[131722,131722,6.04],[131723,131723,5.17],[131724,131724,5.5],[131725,131725,7.94],[131726,131726,5.5],[131727,131727,5.42],[131728,131728,4.88],[131729,131729,5.45],[131730,131735,4.88],[131736,131736,7.94],[131737,131737,5.19],[131738,131738,4.87],[131739,131739,4.98],[131740,131740,5.89],[131741,131741,3.06],[131742,131742,5.5],[131743,131743,4.73],[131744,131744,5.5],[131745,131746,4.88],[131747,131747,8.82],[131748,131748,9.29],[131749,131749,9.38],[131750,131750,6.21],[131751,131751,5.06],[131752,131752,7.14],[131753,131753,8.66],[131754,131754,6.23],[131755,131755,6.16],[131756,131756,5.66],[131757,131757,5.29],[131758,131758,6.87],[131759,131759,6.77],[131760,131761,3.53],[131762,131762,1.71],[131763,131765,2.39],[131766,131766,3.23],[131767,131767,4.71],[131768,131768,3.27],[131769,131769,2.41],[131770,131770,4.02],[131771,131775,3.66],[131776,131777,2.73],[131778,131781,6.2],[131782,131783,6.99],[131784,131784,3.66],[131785,131785,6.99],[131786,131791,3.66],[131792,131793,3.06],[131794,131799,3.66],[131800,131805,6.99],[131806,131806,0],[131807,131807,4.2],[131808,131808,3.22],[131809,131809,1.83],[131810,131810,2.34],[131811,131811,3.18],[131812,131812,2.73],[131813,131817,4.21],[131818,131821,3.66],[131822,131822,4.88],[131823,131831,3.66],[131832,131832,3.06],[131833,131836,3.66],[131837,131838,4.37],[131839,131839,3.66],[131840,131951,0],[131952,131952,4.61],[131953,131953,3.65],[131954,131954,6.46],[131955,131955,5.14],[131956,131957,3.66],[131958,131958,7.93],[131959,131959,6.38],[131960,131961,11],[131962,131962,3.66],[131963,131965,4.88],[131966,131966,5],[131967,131967,3.66],[131968,131971,11],[131972,131973,6.99],[131974,131974,7.52],[131975,131975,5],[131976,131976,8.26],[131977,131977,9.57],[131978,131978,5.94],[131979,131979,11],[131980,131980,9.69],[131981,131981,11],[131982,131982,8.29],[131983,131983,9.98],[131984,131984,3.02],[131985,131985,7.52],[131986,131986,7.54],[131987,131987,6.23],[131988,131988,7.73],[131989,131989,6.96],[131990,131990,7.54],[131991,131991,8.27],[131992,131992,8.66],[131993,131993,4.63],[131994,131994,7.62],[131995,131995,7.54],[131996,131996,9.27],[131997,131997,8.23],[131998,131998,7.14],[131999,131999,8.66],[132000,132000,8.27],[132001,132001,6.63],[132002,132002,11],[132003,132003,7.4],[132004,132004,6.78],[132005,132005,6.77],[132006,132006,9.01],[132007,132007,7.54],[132008,132008,9.58],[132009,132009,9],[132010,132010,4.63],[132011,132011,6.77],[132012,132012,6.85],[132013,132013,5.64],[132014,132014,6.96],[132015,132015,3.02],[132016,132016,6.94],[132017,132017,6.85],[132018,132018,6.82],[132019,132019,6.51],[132020,132020,6.69],[132021,132021,5.64],[132022,132022,5.03],[132023,132023,6.96],[132024,132024,6.86],[132025,132025,3.02],[132026,132027,6.51],[132028,132028,7.04],[132029,132029,6.51],[132030,132030,5.53],[132031,132031,6.68],[132032,132032,7.01],[132033,132033,6.88],[132034,132034,5.59],[132035,132035,6.93],[132036,132036,5.46],[132037,132037,6.94],[132038,132038,8.69],[132039,132039,6.49],[132040,132040,9.04],[132041,132041,8.95],[132042,132042,3.02],[132043,132043,6.94],[132044,132044,6.68],[132045,132045,6.94],[132046,132046,8.95],[132047,132047,6.23],[132048,132048,5.6],[132049,132049,5.45],[132050,132050,7.94],[132051,132051,9.79],[132052,132052,7.94],[132053,132053,5.79],[132054,132054,7.24],[132055,132055,6.16],[132056,132056,7.94],[132057,132057,5.5],[132058,132058,7.34],[132059,132059,4.62],[132060,132060,6.12],[132061,132061,4.91],[132062,132062,6.33],[132063,132063,4.96],[132064,132064,8.05],[132065,132065,6.09],[132066,132066,9.11],[132067,132067,8.56],[132068,132068,6.77],[132069,132069,5.73],[132070,132070,7.27],[132071,132071,4.88],[132072,132073,5.96],[132074,132074,7.22],[132075,132075,6.39],[132076,132076,7.69],[132077,132077,5.6],[132078,132078,5.23],[132079,132079,4.24],[132080,132080,6.16],[132081,132081,5.6],[132082,132082,4.88],[132083,132083,3.06],[132084,132084,7.94],[132085,132086,4.45],[132087,132087,6.12],[132088,132088,5.5],[132089,132089,7.34],[132090,132090,9.78],[132091,132091,6.96],[132092,132092,5.49],[132093,132095,7.34],[132096,132097,6.96],[132098,132098,8.72],[132099,132099,6.23],[132100,132100,7.71],[132101,132101,7.52],[132102,132103,4.63],[132104,132104,5],[132105,132105,12.3],[132106,132106,12.13],[132107,132107,9],[132108,132108,7.62],[132109,132109,8.26],[132110,132110,6.77],[132111,132111,8.27],[132112,132112,7.52],[132113,132114,7.54],[132115,132115,6.23],[132116,132116,8.2],[132117,132117,6.96],[132118,132118,10.7],[132119,132119,6.77],[132120,132121,8.26],[132122,132122,7.62],[132123,132123,8.08],[132124,132124,9.27],[132125,132125,8.27],[132126,132126,8.66],[132127,132127,8.27],[132128,132128,6.63],[132129,132129,7.68],[132130,132130,6.78],[132131,132131,6.77],[132132,132132,9.01],[132133,132133,7.54],[132134,132134,8.37],[132135,132135,7.83],[132136,132136,11.33],[132137,132137,11.49],[132138,132138,8.62],[132139,132139,10.12],[132140,132140,7.49],[132141,132141,7.71],[132142,132142,11.38],[132143,132143,7.77],[132144,132144,6.61],[132145,132145,6.76],[132146,132146,6.54],[132147,132147,5.18],[132148,132148,6.84],[132149,132149,6.55],[132150,132150,8.78],[132151,132151,5.77],[132152,132153,7.04],[132154,132154,6.51],[132155,132155,6.83],[132156,132156,7.66],[132157,132157,7.01],[132158,132158,6.68],[132159,132159,7.01],[132160,132160,6.85],[132161,132161,5.88],[132162,132162,5.46],[132163,132163,6.51],[132164,132164,9.25],[132165,132165,6.51],[132166,132166,7.09],[132167,132167,6.66],[132168,132168,9.64],[132169,132169,9.76],[132170,132170,7.05],[132171,132171,8.74],[132172,132172,6.28],[132173,132173,6.02],[132174,132174,9.23],[132175,132175,6.6],[132176,132177,6.55],[132178,132178,6.96],[132179,132179,5.18],[132180,132180,6.02],[132181,132181,5.73],[132182,132183,3.02],[132184,132184,3.79],[132185,132186,10.05],[132187,132187,6.96],[132188,132188,6.51],[132189,132189,7.04],[132190,132190,6.51],[132191,132191,7.01],[132192,132192,12.9],[132193,132193,6.97],[132194,132194,7.38],[132195,132195,5.97],[132196,132196,10.65],[132197,132197,7.45],[132198,132198,7.94],[132199,132199,6.49],[132200,132200,11.36],[132201,132201,9.17],[132202,132202,9.86],[132203,132203,7.6],[132204,132204,13.29],[132205,132205,10.29],[132206,132206,5.51],[132207,132207,4.35],[132208,132208,8.12],[132209,132209,6.89],[132210,132210,7.94],[132211,132211,5.5],[132212,132212,8.95],[132213,132213,6.48],[132214,132214,8.95],[132215,132215,6.48],[132216,132216,13.06],[132217,132217,11.44],[132218,132218,8.39],[132219,132219,6.23],[132220,132220,10.82],[132221,132221,8.95],[132222,132222,12.9],[132223,132223,6.97],[132224,132224,7.34],[132225,132225,4.88],[132226,132226,3.67],[132227,132230,0],[132231,132231,6.99],[132232,132233,0],[132234,132234,7.94],[132235,132235,5.89],[132236,132236,6.32],[132237,132237,5.17],[132238,132238,6.12],[132239,132239,5.5],[132240,132240,6.23],[132241,132241,5.18],[132242,132242,6.23],[132243,132243,5.18],[132244,132244,6.94],[132245,132245,5.67],[132246,132246,10.7],[132247,132247,8.78],[132248,132248,5.51],[132249,132249,4.35],[132250,132250,7.62],[132251,132251,6.51],[132252,132252,7.62],[132253,132253,6.51],[132254,132254,7.34],[132255,132255,5.34],[132256,132256,8.64],[132257,132257,6.31],[132258,132258,8.27],[132259,132259,7.01],[132260,132260,9.36],[132261,132261,6.85],[132262,132262,11.35],[132263,132263,8.68],[132264,132264,8.66],[132265,132265,6.78],[132266,132266,7.34],[132267,132267,4.88],[132268,132268,6.72],[132269,132269,4.81],[132270,132270,6.77],[132271,132271,6.51],[132272,132272,6.77],[132273,132273,6.51],[132274,132274,7.54],[132275,132275,6.51],[132276,132276,8.77],[132277,132277,6.63],[132278,132278,7.15],[132279,132279,5.53],[132280,132280,7.83],[132281,132281,6.66],[132282,132282,7.83],[132283,132283,6.96],[132284,132284,9.66],[132285,132285,7.58],[132286,132286,9.66],[132287,132287,7.58],[132288,132288,3.66],[132289,132289,9.86],[132290,132290,7.6],[132291,132291,7.34],[132292,132292,5.67],[132293,132293,7.46],[132294,132294,5.49],[132295,132295,7.94],[132296,132296,5.89],[132297,132297,7.94],[132298,132298,5.89],[132299,132299,7.15],[132300,132300,5.53],[132301,132301,9.78],[132302,132302,6.96],[132303,132303,3.06],[132304,132304,7.94],[132305,132305,4.88],[132306,132306,7.94],[132307,132307,4.88],[132308,132308,9.78],[132309,132309,7.34],[132310,132310,6.72],[132311,132311,4.88],[132312,132312,8.3],[132313,132313,6.55],[132314,132314,7.94],[132315,132315,4.88],[132316,132316,9.86],[132317,132317,7.6],[132318,132318,5.51],[132319,132319,4.35],[132320,132320,5.51],[132321,132321,4.88],[132322,132322,7.94],[132323,132323,5.89],[132324,132324,7.94],[132325,132325,5.89],[132326,132326,7.94],[132327,132327,5.5],[132328,132328,8.66],[132329,132329,6.68],[132330,132330,7.94],[132331,132331,5.5],[132332,132332,7.26],[132333,132333,4.72],[132334,132334,7.79],[132335,132335,5.5],[132336,132336,7.79],[132337,132337,5.5],[132338,132338,7.79],[132339,132339,5.5],[132340,132340,7.15],[132341,132341,5.53],[132342,132342,6.36],[132343,132343,4.51],[132344,132344,9.59],[132345,132345,7.39],[132346,132346,6.36],[132347,132347,4.51],[132348,132348,7.94],[132349,132349,5.5],[132350,132350,7.94],[132351,132351,5.5],[132352,132352,6.32],[132353,132353,5.5],[132354,132354,8.84],[132355,132355,8.48],[132356,132356,8.82],[132357,132357,7.76],[132358,132358,6.31],[132359,132359,4.98],[132360,132360,9.97],[132361,132361,8.27],[132362,132362,10.45],[132363,132363,8.66],[132364,132364,7.94],[132365,132365,4.98],[132366,132366,7.65],[132367,132367,6.62],[132368,132368,5.51],[132369,132369,4.35],[132370,132370,7.46],[132371,132371,5.49],[132372,132372,8.38],[132373,132373,7.62],[132374,132374,9.13],[132375,132375,7.49],[132376,132376,11.34],[132377,132377,8.11],[132378,132378,8.66],[132379,132379,6.85],[132380,132380,10.88],[132381,132381,9],[132382,132382,7.53],[132383,132383,6.94],[132384,132384,10.79],[132385,132385,8.76],[132386,132386,12.22],[132387,132387,9.99],[132388,132388,7.77],[132389,132389,6.78],[132390,132390,7.56],[132391,132391,6.92],[132392,132392,4.88],[132393,132393,4.43],[132394,132394,9.8],[132395,132395,8.94],[132396,132396,6.18],[132397,132397,5.76],[132398,132398,7.49],[132399,132399,6.65],[132400,132400,11],[132401,132401,9.14],[132402,132402,7.66],[132403,132403,8.34],[132404,132404,8.4],[132405,132405,7.66],[132406,132406,7.37],[132407,132407,6.92],[132408,132408,7.66],[132409,132409,8.92],[132410,132410,8.41],[132411,132411,7.72],[132412,132412,4.53],[132413,132413,9.01],[132414,132414,7.82],[132415,132415,7.8],[132416,132416,6.32],[132417,132417,7.14],[132418,132418,8.4],[132419,132419,7.57],[132420,132420,8.84],[132421,132421,6.9],[132422,132422,6.91],[132423,132423,7.19],[132424,132424,7.97],[132425,132425,6.97],[132426,132426,8.72],[132427,132427,7.06],[132428,132428,8.85],[132429,132429,7.97],[132430,132430,8.66],[132431,132431,6.28],[132432,132432,7.4],[132433,132433,7.35],[132434,132434,6.58],[132435,132435,8.8],[132436,132436,6.79],[132437,132437,8.54],[132438,132438,7.69],[132439,132440,11],[132441,132443,2.32],[132444,132444,3.2],[132445,132445,2.32],[132446,132446,4.86],[132447,132447,4.56],[132448,132448,11],[132449,132449,10.12],[132450,132450,6.57],[132451,132451,7.03],[132452,132452,6.96],[132453,132453,6.57],[132454,132454,6.6],[132455,132455,5.21],[132456,132456,6.57],[132457,132457,7.35],[132458,132458,6.7],[132459,132459,6.57],[132460,132460,2.91],[132461,132461,10.12],[132462,132462,6.48],[132463,132463,6.57],[132464,132464,6.18],[132465,132466,6.59],[132467,132467,6.34],[132468,132468,6.62],[132469,132469,2.91],[132470,132470,6.59],[132471,132471,4.55],[132472,132472,6.57],[132473,132473,3.78],[132474,132474,10.12],[132475,132475,5.69],[132476,132476,6.81],[132477,132477,6.57],[132478,132478,6.58],[132479,132479,10.24],[132480,132480,6.96],[132481,132481,6.59],[132482,132482,3.53],[132483,132483,10.24],[132484,132484,6.57],[132485,132485,6.42],[132486,132486,7.04],[132487,132487,6.93],[132488,132488,11],[132489,132489,2.79],[132490,132490,4.85],[132491,132492,11],[132493,132494,8.99],[132495,132495,8.05],[132496,132496,11],[132497,132541,0],[132542,132542,3.92],[132543,132543,0],[132544,132544,3.2],[132545,132546,0],[132547,132547,3.06],[132548,132549,0],[132550,132550,3.35],[132551,132551,0],[132552,132559,11],[132560,132560,5.3],[132561,132561,5.01],[132562,132562,3.69],[132563,132563,4.61],[132564,132564,5.18],[132565,132565,3.07],[132566,132566,3.15],[132567,132567,5.24],[132568,132568,5.23],[132569,132569,2.93],[132570,132570,4.97],[132571,132571,4.76],[132572,132572,4.75],[132573,132573,5.58],[132574,132574,5.34],[132575,132575,3.02],[132576,132576,3.35],[132577,132577,5.23],[132578,132579,5],[132580,132580,4.84],[132581,132581,5.31],[132582,132582,5.06],[132583,132583,5.21],[132584,132584,5.16],[132585,132585,6.71],[132586,132586,5.5],[132587,132591,11],[132592,132592,6.13],[132593,132593,6],[132594,132594,5.87],[132595,132595,2.3],[132596,132596,4.09],[132597,132607,11],[132608,132608,8.15],[132609,132609,14.3],[132610,132610,8.35],[132611,132611,10.11],[132612,132612,29.2],[132613,132613,12.03],[132614,132615,7.09],[132616,132616,8.56],[132617,132618,5.78],[132619,132619,2.89],[132620,132620,3.51],[132621,132621,2.63],[132622,132622,7.22],[132623,132623,5.98],[132624,132628,0],[132629,132629,2.96],[132630,132634,0],[132635,132635,3.51],[132636,132636,0],[132637,132637,11],[132638,132638,3.18],[132639,132639,3.92],[132640,132640,8.87],[132641,132641,4.54],[132642,132643,2.28],[132644,132644,4.75],[132645,132645,2.28],[132646,132646,7.02],[132647,132647,2.28],[132648,132648,7.85],[132649,132649,3.1],[132650,132651,7.85],[132652,132654,6.19],[132655,132656,3.71],[132657,132658,5.38],[132659,132660,9.03],[132661,132662,12.08],[132663,132664,6.4],[132665,132666,5.98],[132667,132668,7.74],[132669,132671,7.05],[132672,132672,2.28],[132673,132673,8.67],[132674,132674,6.4],[132675,132675,6.61],[132676,132676,5.57],[132677,132677,3.72],[132678,132678,5.78],[132679,132679,3.1],[132680,132680,4.75],[132681,132682,7.02],[132683,132703,0],[132704,132714,5.78],[132715,132716,3.51],[132717,132717,5.78],[132718,132718,7.85],[132719,132719,6.4],[132720,132720,0],[132721,132723,2.28],[132724,132724,0],[132725,132725,2.28],[132726,132727,4.75],[132728,132728,7.02],[132729,132736,7.85],[132737,132743,6.19],[132744,132752,3.71],[132753,132761,5.38],[132762,132764,9.03],[132765,132766,12.08],[132767,132767,6.4],[132768,132768,5.98],[132769,132774,8.67],[132775,132776,6.4],[132777,132777,8.93],[132778,132778,12.71],[132779,132779,8.93],[132780,132782,6.61],[132783,132788,8.93],[132789,132792,5.57],[132793,132797,5.78],[132798,132798,4.95],[132799,132799,6.19],[132800,132803,3.1],[132804,132811,4.75],[132812,132814,7.02],[132815,132815,4.75],[132816,132817,7.02],[132818,132819,8.93],[132820,132820,2.28],[132821,132821,3.1],[132822,132828,0],[132829,132829,12.35],[132830,132830,11.93],[132831,132840,0],[132841,132841,6.6],[132842,132845,0],[132846,132846,3.71],[132847,132847,5.38],[132848,132857,5.78],[132858,132858,9.03],[132859,132859,12.08],[132860,132860,5.98],[132861,132861,4.54],[132862,132862,3.72],[132863,132863,4.95],[132864,132864,6.5],[132865,132865,3.27],[132866,132868,2.83],[132869,132869,5.88],[132870,132871,4.25],[132872,132873,4.14],[132874,132874,6.37],[132875,132875,10.15],[132876,132876,7.63],[132877,132877,8.34],[132878,132878,11],[132879,132879,0],[132880,132880,10.23],[132881,132881,0],[132882,132882,10.54],[132883,132884,12],[132885,132886,5.93],[132887,132887,10.23],[132888,132888,6.71],[132889,132889,3.02],[132890,132890,7.71],[132891,132892,10.99],[132893,132893,2.67],[132894,132894,13.42],[132895,132895,9.78],[132896,132896,7.22],[132897,132897,9.73],[132898,132898,7.46],[132899,132900,9.75],[132901,132901,10.48],[132902,132902,9.27],[132903,132903,8.77],[132904,132904,6.89],[132905,132905,9.17],[132906,132906,5.93],[132907,132907,10.39],[132908,132908,8.17],[132909,132909,10.54],[132910,132910,12],[132911,132911,6.54],[132912,132938,0],[132939,132940,11],[132941,132941,6.41],[132942,132942,9.27],[132943,132943,7.22],[132944,132950,7.85],[132951,132952,6.19],[132953,132954,3.71],[132955,132955,5.38],[132956,132956,9.03],[132957,132959,5.98],[132960,132961,8.67],[132962,132964,8.93],[132965,132966,3.72],[132967,132969,5.78],[132970,132970,5.57],[132971,132972,5.38],[132973,132973,9.03],[132974,132975,6.42],[132976,132976,10.04],[132977,132977,4.49],[132978,132978,6.42],[132979,132980,3.22],[132981,132983,7.05],[132984,132985,4.32],[132986,132988,6.42],[132989,132990,10.04],[132991,132991,5.99],[132992,132992,5.82],[132993,132993,7.46],[132994,132994,8.9],[132995,132995,7.14],[132996,132996,7.83],[132997,132997,5.99],[132998,132998,6.05],[132999,132999,5.86],[133000,133000,5.92],[133001,133001,5.7],[133002,133002,4.94],[133003,133003,6.97],[133004,133004,7.14],[133005,133005,6.34],[133006,133006,5.5],[133007,133007,7.94],[133008,133008,11.21],[133009,133009,4.29],[133010,133010,6.27],[133011,133011,7.38],[133012,133012,8.01],[133013,133013,4.94],[133014,133014,6.41],[133015,133015,7.11],[133016,133016,6.8],[133017,133018,5.82],[133019,133019,6.97],[133020,133020,7.14],[133021,133023,11.21],[133024,133025,7.14],[133026,133027,5.92],[133028,133028,5.5],[133029,133029,5.57],[133030,133040,0],[133041,133041,5.2],[133042,133055,11],[133056,133056,5.94],[133057,133057,5.96],[133058,133058,5.99],[133059,133059,5.65],[133060,133061,5.93],[133062,133062,5.77],[133063,133064,5.96],[133065,133065,6.09],[133066,133066,2.91],[133067,133067,7.26],[133068,133068,4.81],[133069,133069,6.81],[133070,133070,6.52],[133071,133071,6.06],[133072,133072,7.09],[133073,133073,5.74],[133074,133074,7.53],[133075,133076,4.61],[133077,133077,6.2],[133078,133078,5.36],[133079,133079,4.15],[133080,133080,8.71],[133081,133081,4.3],[133082,133082,7.15],[133083,133083,7.79],[133084,133084,6.34],[133085,133085,8.06],[133086,133086,5.98],[133087,133087,6.36],[133088,133088,5.73],[133089,133089,6.34],[133090,133090,5.95],[133091,133092,5.98],[133093,133093,5.77],[133094,133094,5.73],[133095,133095,5.82],[133096,133097,4.98],[133098,133098,4.3],[133099,133107,0],[133108,133109,3.72],[133110,133110,6.09],[133111,133111,10.45],[133112,133113,5.29],[133114,133114,4.59],[133115,133119,11],[133120,133120,10.2],[133121,133121,8.54],[133122,133122,8.7],[133123,133123,7.24],[133124,133124,9.44],[133125,133125,10.19],[133126,133126,9.66],[133127,133127,10.39],[133128,133128,10.48],[133129,133129,12.03],[133130,133130,8.1],[133131,133131,6.68],[133132,133132,10.03],[133133,133133,8],[133134,133134,8.48],[133135,133135,9.88],[133136,133136,8.29],[133137,133137,11.79],[133138,133138,8.01],[133139,133139,7.84],[133140,133140,9.25],[133141,133141,10.31],[133142,133145,0],[133146,133146,4.45],[133147,133155,0],[133156,133156,2.52],[133157,133159,0],[133160,133160,2.72],[133161,133165,0],[133166,133167,11],[133168,133169,3.95],[133170,133170,6.5],[133171,133172,9.63],[133173,133173,6.37],[133174,133174,7.37],[133175,133175,14.4],[133176,133176,11.82],[133177,133178,11.7],[133179,133179,5.52],[133180,133180,6.78],[133181,133181,8.87],[133182,133182,4.67],[133183,133183,11],[133184,133184,5.87],[133185,133185,9.83],[133186,133186,5.25],[133187,133187,7.28],[133188,133188,9.91],[133189,133189,4.53],[133190,133190,2.74],[133191,133191,8.58],[133192,133192,7.44],[133193,133193,4.86],[133194,133194,7.38],[133195,133195,5.06],[133196,133196,10.9],[133197,133197,6.46],[133198,133198,10.92],[133199,133199,9.39],[133200,133200,7.92],[133201,133201,11.25],[133202,133202,9.48],[133203,133203,9.14],[133204,133204,10.04],[133205,133205,7.06],[133206,133206,8.39],[133207,133207,12.46],[133208,133208,5.24],[133209,133211,0],[133212,133213,11],[133214,133214,6.13],[133215,133279,11],[133280,133281,9.62],[133282,133282,7.43],[133283,133283,8.42],[133284,133284,10.14],[133285,133285,7.43],[133286,133286,6.97],[133287,133287,5.34],[133288,133289,8.34],[133290,133290,6.03],[133291,133291,4.72],[133292,133292,6.39],[133293,133293,2.63],[133294,133294,5.25],[133295,133295,12.4],[133296,133296,9.23],[133297,133297,5.16],[133298,133298,3.71],[133299,133299,6.77],[133300,133300,8.75],[133301,133301,11],[133302,133304,9.62],[133305,133305,3.76],[133306,133306,8.34],[133307,133307,10.18],[133308,133308,7.43],[133309,133309,6.58],[133310,133332,11],[133333,133333,5.78],[133334,133334,3.96],[133335,133335,4.07],[133336,133336,3.41],[133337,133337,3.27],[133338,133343,11],[133344,133344,5.65],[133345,133345,6.19],[133346,133346,11],[133347,133369,0],[133370,133370,11],[133371,133375,0],[133376,133378,7.26],[133379,133379,10.21],[133380,133381,7.97],[133382,133382,10.97],[133383,133384,5.84],[133385,133385,5.22],[133386,133386,7.42],[133387,133387,9.06],[133388,133388,7.88],[133389,133392,6.03],[133393,133396,10.97],[133397,133397,8.47],[133398,133398,8.71],[133399,133399,6.13],[133400,133400,6.98],[133401,133401,6.84],[133402,133402,7.08],[133403,133403,7.46],[133404,133404,8.15],[133405,133405,8.5],[133406,133406,7.71],[133407,133407,5.53],[133408,133408,6.31],[133409,133409,5.98],[133410,133410,5.79],[133411,133411,8.32],[133412,133412,6.12],[133413,133413,7.09],[133414,133414,5.75],[133415,133415,6.95],[133416,133417,5.64],[133418,133418,6.18],[133419,133419,8.73],[133420,133420,6.24],[133421,133421,6.41],[133422,133422,6.37],[133423,133423,6.7],[133424,133424,4.42],[133425,133425,4.49],[133426,133426,7.84],[133427,133428,8.06],[133429,133429,6.03],[133430,133430,7.9],[133431,133431,6.29],[133432,133432,7.48],[133433,133433,5.58],[133434,133434,7.26],[133435,133435,10.26],[133436,133436,7.26],[133437,133437,5.39],[133438,133440,10.26],[133441,133448,7.26],[133449,133452,10.26],[133453,133453,7.26],[133454,133455,10.26],[133456,133456,13.45],[133457,133460,0],[133461,133463,7.26],[133464,133464,8.47],[133465,133465,8.71],[133466,133466,6.13],[133467,133467,8.15],[133468,133468,5.98],[133469,133469,5.79],[133470,133470,8.73],[133471,133471,6.7],[133472,133472,9.06],[133473,133473,7.88],[133474,133475,7.26],[133476,133476,5.25],[133477,133477,8.17],[133478,133478,5.13],[133479,133479,5.31],[133480,133480,5.42],[133481,133481,5.36],[133482,133482,5.57],[133483,133483,5.94],[133484,133484,5.81],[133485,133485,7.16],[133486,133486,5.28],[133487,133487,5.25],[133488,133488,5.49],[133489,133489,3.44],[133490,133491,7.97],[133492,133493,10.97],[133494,133495,7.97],[133496,133496,5.66],[133497,133497,8.15],[133498,133498,6.7],[133499,133499,6.13],[133500,133500,7.96],[133501,133501,5],[133502,133502,6.09],[133503,133503,6.24],[133504,133504,6.21],[133505,133505,7.26],[133506,133506,12.07],[133507,133507,11.97],[133508,133508,11],[133509,133509,9.82],[133510,133510,12.84],[133511,133511,5.43],[133512,133512,7.24],[133513,133513,7.35],[133514,133514,7.51],[133515,133515,8.27],[133516,133516,6.75],[133517,133518,11],[133519,133519,7.78],[133520,133520,8.34],[133521,133522,11],[133523,133523,6.61],[133524,133524,7.82],[133525,133525,7.6],[133526,133526,7.23],[133527,133527,6.95],[133528,133528,6.86],[133529,133529,7.56],[133530,133530,5.77],[133531,133531,6.54],[133532,133532,8.76],[133533,133533,8.46],[133534,133534,10.43],[133535,133535,6.01],[133536,133536,5.97],[133537,133537,7.35],[133538,133538,6.02],[133539,133539,6.69],[133540,133540,7.49],[133541,133541,7.44],[133542,133542,6.02],[133543,133543,6.68],[133544,133544,6.92],[133545,133545,11],[133546,133546,7.19],[133547,133547,8.26],[133548,133548,6.04],[133549,133549,7.92],[133550,133550,6.43],[133551,133551,6.19],[133552,133552,6.04],[133553,133553,11],[133554,133554,8.12],[133555,133557,11],[133558,133558,7.67],[133559,133559,6.21],[133560,133560,7.25],[133561,133561,5.43],[133562,133563,11],[133564,133564,7.26],[133565,133565,5.08],[133566,133568,10.26],[133569,133572,7.26],[133573,133574,11],[133575,133576,10.24],[133577,133578,11],[133579,133580,13.24],[133581,133581,7.26],[133582,133582,5.74],[133583,133590,11],[133591,133591,10.26],[133592,133595,11],[133596,133596,7.35],[133597,133597,6.02],[133598,133598,11],[133599,133599,6.19],[133600,133600,8.27],[133601,133601,6.75],[133602,133603,7.26],[133604,133605,11],[133606,133606,6.53],[133607,133607,5.79],[133608,133608,5.26],[133609,133609,7.97],[133610,133610,5.51],[133611,133611,6.7],[133612,133612,7],[133613,133613,6.21],[133614,133614,7.62],[133615,133615,6.94],[133616,133616,6.08],[133617,133617,6.04],[133618,133618,4.55],[133619,133619,6.56],[133620,133620,4.38],[133621,133621,7.5],[133622,133622,6.95],[133623,133623,3],[133624,133624,6.23],[133625,133625,5.83],[133626,133626,6.96],[133627,133627,2.97],[133628,133632,11],[133633,133634,7.45],[133635,133635,9.76],[133636,133636,11],[133637,133637,7.77],[133638,133638,10.36],[133639,133640,8.82],[133641,133642,6.48],[133643,133646,11],[133647,133647,6.12],[133648,133648,7.77],[133649,133650,11],[133651,133651,6.46],[133652,133652,7.77],[133653,133653,6.24],[133654,133654,6.28],[133655,133655,7.99],[133656,133656,7.8],[133657,133657,5.85],[133658,133658,6.54],[133659,133659,6.34],[133660,133660,6.43],[133661,133661,5.88],[133662,133662,6.23],[133663,133663,5.82],[133664,133664,6.31],[133665,133665,5.9],[133666,133666,6.49],[133667,133667,6.16],[133668,133668,5.59],[133669,133669,6.36],[133670,133670,6.26],[133671,133671,6.13],[133672,133672,6.3],[133673,133673,11],[133674,133674,6.1],[133675,133675,6.08],[133676,133676,6.3],[133677,133677,5.9],[133678,133678,6.15],[133679,133679,7.52],[133680,133680,5.88],[133681,133681,11],[133682,133682,7.17],[133683,133683,7.19],[133684,133684,11],[133685,133685,6.04],[133686,133686,6.15],[133687,133687,11],[133688,133688,6.15],[133689,133689,5.88],[133690,133691,11],[133692,133692,7.45],[133693,133693,11],[133694,133694,10.04],[133695,133696,10.15],[133697,133698,7.45],[133699,133702,11],[133703,133704,7.45],[133705,133706,11],[133707,133709,7.45],[133710,133712,11],[133713,133713,7.45],[133714,133720,11],[133721,133721,6.28],[133722,133722,7.99],[133723,133723,6.43],[133724,133724,5.7],[133725,133725,11],[133726,133726,6.08],[133727,133733,11],[133734,133734,5.59],[133735,133735,5.1],[133736,133736,5.44],[133737,133737,5.4],[133738,133738,6.06],[133739,133739,6.21],[133740,133740,5.52],[133741,133741,5.74],[133742,133743,6.21],[133744,133745,7.45],[133746,133746,6.12],[133747,133747,6.48],[133748,133748,11.54],[133749,133749,7.45],[133750,133760,11],[133761,133762,7.16],[133763,133763,9.79],[133764,133764,11],[133765,133765,9.92],[133766,133766,12.9],[133767,133767,6.9],[133768,133768,6.91],[133769,133769,7.09],[133770,133770,9.87],[133771,133771,9.4],[133772,133772,7.48],[133773,133773,9.92],[133774,133774,11],[133775,133776,9.92],[133777,133777,12.9],[133778,133778,11],[133779,133780,12.9],[133781,133781,6.18],[133782,133782,8.46],[133783,133783,7.88],[133784,133784,7.33],[133785,133785,6.09],[133786,133786,7.72],[133787,133787,8.04],[133788,133788,6.97],[133789,133789,8.35],[133790,133790,7.86],[133791,133791,5.43],[133792,133792,6.63],[133793,133793,5.54],[133794,133794,6.29],[133795,133795,9.14],[133796,133796,6.43],[133797,133797,7.37],[133798,133798,5.37],[133799,133799,7.2],[133800,133800,5.92],[133801,133801,11],[133802,133802,6.29],[133803,133803,6.3],[133804,133804,8.51],[133805,133805,8.88],[133806,133806,6.34],[133807,133807,7.13],[133808,133808,5.21],[133809,133809,11],[133810,133810,7.36],[133811,133811,8.56],[133812,133812,11],[133813,133813,6.65],[133814,133814,8.11],[133815,133815,6.39],[133816,133816,8.06],[133817,133817,6.48],[133818,133819,11],[133820,133820,7.16],[133821,133821,5.71],[133822,133824,10.14],[133825,133829,7.16],[133830,133830,11],[133831,133832,7.16],[133833,133833,10.14],[133834,133834,11],[133835,133836,10.14],[133837,133837,7.16],[133838,133839,11],[133840,133840,12.23],[133841,133855,11],[133856,133856,9.75],[133857,133857,7.48],[133858,133859,7.16],[133860,133861,11],[133862,133862,5.36],[133863,133863,5.57],[133864,133864,5.27],[133865,133865,5.28],[133866,133866,5.82],[133867,133867,5.99],[133868,133868,5.32],[133869,133869,6.97],[133870,133870,5.19],[133871,133871,5.63],[133872,133872,4.51],[133873,133873,10.22],[133874,133880,11],[133881,133881,7.88],[133882,133888,11],[133889,133889,5.61],[133890,133890,8.93],[133891,133891,10.09],[133892,133892,11],[133893,133893,6.9],[133894,133894,9.03],[133895,133895,7.33],[133896,133896,7.4],[133897,133897,7.29],[133898,133898,7.54],[133899,133899,7.49],[133900,133900,5.59],[133901,133902,11],[133903,133903,7.06],[133904,133904,9.03],[133905,133906,11],[133907,133907,7.03],[133908,133908,9.02],[133909,133909,7.27],[133910,133910,7.24],[133911,133911,7.2],[133912,133912,7.13],[133913,133913,7.81],[133914,133914,6.98],[133915,133915,7.07],[133916,133916,7.27],[133917,133917,7.05],[133918,133918,7.16],[133919,133919,7.02],[133920,133920,7.87],[133921,133922,7.07],[133923,133923,7.1],[133924,133924,7.07],[133925,133925,6.9],[133926,133926,6.97],[133927,133927,6.39],[133928,133928,6.97],[133929,133929,11],[133930,133930,7.13],[133931,133931,8.68],[133932,133932,6.98],[133933,133933,7.42],[133934,133934,7.13],[133935,133935,7.51],[133936,133936,7.19],[133937,133937,11],[133938,133938,7.71],[133939,133939,7.27],[133940,133940,11],[133941,133941,6.98],[133942,133942,7.24],[133943,133943,7.26],[133944,133944,7.07],[133945,133945,6.82],[133946,133947,11],[133948,133948,5.61],[133949,133949,3.81],[133950,133950,7.69],[133951,133951,5.61],[133952,133952,8.86],[133953,133956,5.61],[133957,133958,11],[133959,133960,10.57],[133961,133962,11],[133963,133964,12.65],[133965,133965,5.61],[133966,133973,11],[133974,133974,5.61],[133975,133975,7.69],[133976,133979,11],[133980,133981,7.07],[133982,133982,11],[133983,133983,8.05],[133984,133984,7.55],[133985,133985,5.59],[133986,133987,5.61],[133988,133989,11],[133990,133999,6.29],[134000,134000,6.14],[134001,134001,6.31],[134002,134002,2.43],[134003,134003,4.17],[134004,134004,5.81],[134005,134005,5.22],[134006,134006,6.02],[134007,134007,6.77],[134008,134017,11],[134018,134018,6.18],[134019,134019,7.61],[134020,134020,11],[134021,134021,9.76],[134022,134022,11.69],[134023,134023,10.29],[134024,134024,6.89],[134025,134025,10.43],[134026,134026,12.35],[134027,134029,11],[134030,134031,7.81],[134032,134032,8.62],[134033,134033,11],[134034,134035,8.26],[134036,134036,16.93],[134037,134037,7.81],[134038,134040,11],[134041,134041,9.1],[134042,134042,7.13],[134043,134043,11],[134044,134044,8.28],[134045,134045,11],[134046,134046,10.45],[134047,134047,8.5],[134048,134050,11],[134051,134051,13.59],[134052,134052,7.47],[134053,134055,11],[134056,134056,7.36],[134057,134057,10.13],[134058,134058,6.43],[134059,134061,11],[134062,134062,7.35],[134063,134063,7.58],[134064,134064,5.88],[134065,134065,6.98],[134066,134066,8.75],[134067,134067,9.34],[134068,134068,7.35],[134069,134069,8.03],[134070,134070,9.96],[134071,134071,10.18],[134072,134072,11.02],[134073,134073,13.15],[134074,134077,11],[134078,134078,11.68],[134079,134079,8],[134080,134080,6.41],[134081,134081,10.51],[134082,134082,12.2],[134083,134085,11],[134086,134086,14.3],[134087,134087,12.86],[134088,134088,16.1],[134089,134089,11],[134090,134090,19.01],[134091,134091,17.82],[134092,134092,22.59],[134093,134093,6.18],[134094,134095,11],[134096,134096,9.21],[134097,134102,11],[134103,134103,15.03],[134104,134115,11],[134116,134116,3.6],[134117,134117,5.48],[134118,134118,5.87],[134119,134119,6.9],[134120,134120,6.91],[134121,134121,6.54],[134122,134122,6.6],[134123,134123,8.13],[134124,134124,9.12],[134125,134125,7],[134126,134126,9.47],[134127,134127,9.02],[134128,134128,7.78],[134129,134129,7.59],[134130,134130,8.55],[134131,134131,9.08],[134132,134132,7.95],[134133,134133,16.02],[134134,134134,8.12],[134135,134135,12.73],[134136,134136,13.71],[134137,134137,8.07],[134138,134138,11.23],[134139,134143,11],[134144,134144,7.26],[134145,134145,11.08],[134146,134146,14.09],[134147,134147,11.41],[134148,134148,11],[134149,134149,9.67],[134150,134150,9.42],[134151,134151,8.52],[134152,134152,11.11],[134153,134153,9.87],[134154,134154,13.47],[134155,134155,16.47],[134156,134156,10.98],[134157,134157,11],[134158,134159,8.41],[134160,134160,8.87],[134161,134161,11],[134162,134163,8.26],[134164,134164,8.5],[134165,134165,5.68],[134166,134166,9.9],[134167,134167,6.59],[134168,134168,12.15],[134169,134169,8.46],[134170,134171,8.84],[134172,134172,8.41],[134173,134173,14.44],[134174,134174,11.29],[134175,134175,9.34],[134176,134176,6.83],[134177,134178,9.02],[134179,134179,9.16],[134180,134180,9],[134181,134183,8.98],[134184,134184,8.36],[134185,134185,11],[134186,134187,8.4],[134188,134189,8.95],[134190,134190,12.18],[134191,134191,14.44],[134192,134192,6.83],[134193,134193,9.71],[134194,134194,8.5],[134195,134195,7.13],[134196,134196,9.71],[134197,134197,8.37],[134198,134198,6.13],[134199,134199,8.37],[134200,134200,8.39],[134201,134201,11.9],[134202,134204,11],[134205,134205,6.97],[134206,134206,10.85],[134207,134208,7.26],[134209,134209,11.09],[134210,134210,13.86],[134211,134211,11.93],[134212,134212,15.26],[134213,134213,11],[134214,134216,7.26],[134217,134217,11],[134218,134219,7.26],[134220,134220,10.92],[134221,134221,7.26],[134222,134228,11],[134229,134230,7.26],[134231,134231,11],[134232,134232,8.84],[134233,134233,8.41],[134234,134234,8.98],[134235,134239,11],[134240,134240,20.14],[134241,134241,14.81],[134242,134243,7.26],[134244,134245,11],[134246,134246,6.38],[134247,134247,6.25],[134248,134248,7.7],[134249,134249,5.5],[134250,134250,6.46],[134251,134251,7.12],[134252,134252,5.03],[134253,134253,5.68],[134254,134254,6.49],[134255,134255,5.03],[134256,134263,11],[134264,134264,5.77],[134265,134265,2.76],[134266,134266,5.24],[134267,134267,8.21],[134268,134268,7.44],[134269,134269,7.36],[134270,134270,7.3],[134271,134271,8.65],[134272,134272,6.12],[134273,134273,6.17],[134274,134274,12.22],[134275,134275,9.53],[134276,134276,11],[134277,134277,9.49],[134278,134278,9.25],[134279,134279,7.82],[134280,134280,11.11],[134281,134281,13.44],[134282,134282,17.57],[134283,134283,13.1],[134284,134284,9.31],[134285,134285,11],[134286,134287,8.66],[134288,134288,8.88],[134289,134289,11],[134290,134291,8.52],[134292,134292,8.56],[134293,134293,6.31],[134294,134294,9.34],[134295,134295,7.13],[134296,134296,10.96],[134297,134297,8.52],[134298,134298,8.77],[134299,134299,9.27],[134300,134300,8.52],[134301,134301,15.17],[134302,134302,10.63],[134303,134303,8.96],[134304,134304,7.16],[134305,134306,8.45],[134307,134307,9.5],[134308,134308,6.84],[134309,134311,8.41],[134312,134312,7.82],[134313,134313,11],[134314,134315,8.71],[134316,134316,8.8],[134317,134317,8.85],[134318,134318,12.72],[134319,134319,14.7],[134320,134320,7.16],[134321,134321,9.82],[134322,134322,8.35],[134323,134323,7.81],[134324,134324,11],[134325,134325,8.73],[134326,134326,6.93],[134327,134327,8.81],[134328,134328,7.8],[134329,134329,8.81],[134330,134331,11],[134332,134332,6.17],[134333,134333,4.91],[134334,134334,11.11],[134335,134335,9.77],[134336,134336,14.26],[134337,134337,10.17],[134338,134338,14.38],[134339,134339,7.52],[134340,134340,11.6],[134341,134341,11],[134342,134342,6.17],[134343,134343,10.66],[134344,134344,8.18],[134345,134345,11],[134346,134346,14.38],[134347,134347,18.86],[134348,134348,10.9],[134349,134349,9.61],[134350,134356,11],[134357,134357,10.66],[134358,134358,8.18],[134359,134365,11],[134366,134366,9.56],[134367,134367,11],[134368,134368,17.27],[134369,134369,14.15],[134370,134371,6.97],[134372,134373,11],[134374,134383,7.57],[134384,134384,11],[134385,134385,5.84],[134386,134386,8.27],[134387,134400,11],[134401,134401,0],[134402,134402,4.24],[134403,134403,3.11],[134404,134404,11],[134405,134405,13.63],[134406,134406,15.09],[134407,134407,9.89],[134408,134408,17.93],[134409,134409,6.99],[134410,134410,14.97],[134411,134411,8.84],[134412,134412,10.98],[134413,134413,11],[134414,134415,12.25],[134416,134416,17.96],[134417,134417,11],[134418,134418,6.99],[134419,134419,11.54],[134420,134420,14.87],[134421,134421,9.73],[134422,134422,8.79],[134423,134423,8.27],[134424,134424,13.26],[134425,134425,10.66],[134426,134426,9.13],[134427,134427,12.74],[134428,134428,8.77],[134429,134429,15.9],[134430,134430,13.83],[134431,134431,5.69],[134432,134432,6.38],[134433,134433,12.03],[134434,134434,12.39],[134435,134435,13.66],[134436,134436,9.59],[134437,134437,8.1],[134438,134438,6.11],[134439,134440,9.24],[134441,134441,9.98],[134442,134442,7.84],[134443,134443,11.29],[134444,134444,12.58],[134445,134445,6.37],[134446,134446,6.38],[134447,134447,9.7],[134448,134448,6.72],[134449,134449,6.28],[134450,134450,8.44],[134451,134451,7.15],[134452,134452,6.33],[134453,134453,8.79],[134454,134454,9.45],[134455,134455,11.12],[134456,134456,12.03],[134457,134457,12.12],[134458,134458,8.1],[134459,134460,11],[134461,134461,4.19],[134462,134462,10.79],[134463,134463,8.91],[134464,134464,8.82],[134465,134465,9.56],[134466,134466,9.62],[134467,134467,10.17],[134468,134468,10.22],[134469,134469,11],[134470,134470,12.57],[134471,134471,11.62],[134472,134472,18.33],[134473,134473,11],[134474,134474,17.1],[134475,134475,16.44],[134476,134476,14.63],[134477,134477,6.58],[134478,134478,1.9],[134479,134486,11],[134487,134487,14.63],[134488,134494,11],[134495,134495,13.08],[134496,134496,8.79],[134497,134497,12.11],[134498,134498,7.61],[134499,134499,8.27],[134500,134501,11],[134502,134502,6.38],[134503,134503,8.6],[134504,134504,8.79],[134505,134505,10.85],[134506,134506,6.8],[134507,134507,9.7],[134508,134508,13.26],[134509,134509,4.84],[134510,134510,8.79],[134511,134511,10.14],[134512,134512,9.24],[134513,134513,9.64],[134514,134514,13.14],[134515,134515,7.55],[134516,134516,8.24],[134517,134517,11.1],[134518,134520,11],[134521,134521,11.61],[134522,134522,14.75],[134523,134523,10.14],[134524,134524,6.8],[134525,134525,10.65],[134526,134526,9.36],[134527,134527,10.61],[134528,134529,11],[134530,134530,4.57],[134531,134531,3.06],[134532,134532,11],[134533,134533,6.26],[134534,134534,9.17],[134535,134535,9.05],[134536,134536,9.07],[134537,134537,6.31],[134538,134538,6.17],[134539,134539,6.54],[134540,134540,10.84],[134541,134541,10.66],[134542,134542,14.42],[134543,134543,7.93],[134544,134544,12.34],[134545,134545,7.08],[134546,134546,7.13],[134547,134547,11.57],[134548,134548,7.21],[134549,134549,7.18],[134550,134550,11.81],[134551,134553,11],[134554,134554,8.17],[134555,134555,7.73],[134556,134556,7.23],[134557,134557,6.47],[134558,134558,7.33],[134559,134559,8.71],[134560,134560,6.89],[134561,134561,6.17],[134562,134562,6.04],[134563,134563,13.02],[134564,134564,11.81],[134565,134565,10.82],[134566,134566,7.15],[134567,134567,6.54],[134568,134568,6.89],[134569,134569,7.44],[134570,134570,7.1],[134571,134571,9.79],[134572,134572,8.92],[134573,134573,7.62],[134574,134574,6.58],[134575,134575,5.63],[134576,134576,7.23],[134577,134577,7.49],[134578,134578,11],[134579,134579,7.19],[134580,134580,6.04],[134581,134581,7.07],[134582,134582,7.42],[134583,134583,8.52],[134584,134584,7.4],[134585,134585,7.23],[134586,134586,6.8],[134587,134587,6.01],[134588,134588,11],[134589,134589,6.79],[134590,134591,11],[134592,134592,6.75],[134593,134593,7.57],[134594,134594,6],[134595,134595,7.09],[134596,134596,8.16],[134597,134597,7.39],[134598,134598,6.89],[134599,134601,11],[134602,134602,6.65],[134603,134606,11],[134607,134607,9.42],[134608,134608,9.02],[134609,134609,9.11],[134610,134612,6.38],[134613,134613,11],[134614,134614,6.38],[134615,134615,11],[134616,134616,10.34],[134617,134617,11.58],[134618,134618,12.05],[134619,134619,17.23],[134620,134620,14.67],[134621,134621,14.34],[134622,134622,15.97],[134623,134623,11.03],[134624,134641,11],[134642,134642,14.21],[134643,134643,4.55],[134644,134644,12.07],[134645,134655,11],[134656,134656,2.14],[134657,134657,6.6],[134658,134658,6.29],[134659,134659,6.26],[134660,134660,7.03],[134661,134661,6.92],[134662,134662,6.99],[134663,134663,5.24],[134664,134664,5.81],[134665,134665,6.71],[134666,134666,6.45],[134667,134667,6.5],[134668,134668,9],[134669,134669,8.96],[134670,134671,7.27],[134672,134672,5.86],[134673,134673,7.61],[134674,134674,9.37],[134675,134675,9],[134676,134676,6.94],[134677,134677,6.92],[134678,134678,6.6],[134679,134679,6.94],[134680,134680,6.07],[134681,134681,6.81],[134682,134683,7.16],[134684,134685,6.54],[134686,134686,7.39],[134687,134687,7.44],[134688,134688,7.31],[134689,134689,6.94],[134690,134690,6.72],[134691,134691,5.26],[134692,134692,6.58],[134693,134693,6.41],[134694,134694,7.31],[134695,134695,5.62],[134696,134696,6.87],[134697,134697,7.12],[134698,134698,6.56],[134699,134699,6.95],[134700,134700,7.39],[134701,134701,6.36],[134702,134702,6.33],[134703,134703,6.76],[134704,134704,4.8],[134705,134705,5.59],[134706,134706,5.57],[134707,134707,11.26],[134708,134714,5.59],[134715,134718,11],[134719,134719,7.54],[134720,134720,3.47],[134721,134721,6.38],[134722,134722,5.62],[134723,134723,6.1],[134724,134724,4.64],[134725,134725,5.68],[134726,134726,6.66],[134727,134734,5.59],[134735,134735,8.05],[134736,134736,6.43],[134737,134737,6.76],[134738,134738,7.21],[134739,134739,7.46],[134740,134740,6.77],[134741,134741,6.63],[134742,134742,6.37],[134743,134743,8.39],[134744,134744,6.82],[134745,134745,7.35],[134746,134746,8.53],[134747,134747,14.01],[134748,134784,11],[134785,134785,6.8],[134786,134786,5.95],[134787,134787,11],[134788,134788,6.24],[134789,134790,11],[134791,134791,5.62],[134792,134792,6.12],[134793,134793,11],[134794,134794,6.04],[134795,134796,11],[134797,134797,6.24],[134798,134803,11],[134804,134804,6.41],[134805,134805,6.62],[134806,134806,6.85],[134807,134807,7.05],[134808,134808,11],[134809,134809,6.75],[134810,134810,5.8],[134811,134811,5.84],[134812,134812,7.42],[134813,134813,7.34],[134814,134814,7.32],[134815,134815,7.36],[134816,134816,11],[134817,134817,6.8],[134818,134818,6.15],[134819,134819,5.95],[134820,134820,11],[134821,134821,6.11],[134822,134822,11],[134823,134823,5.89],[134824,134825,11],[134826,134826,6.11],[134827,134827,8.45],[134828,134828,11],[134829,134829,6.11],[134830,134830,6.06],[134831,134831,5.81],[134832,134832,5.65],[134833,134833,0],[134834,134834,4.73],[134835,134841,0],[134842,134842,11],[134843,134844,0],[134845,134845,5],[134846,134847,11],[134848,134848,3.75],[134849,134849,6.5],[134850,134850,3.71],[134851,134851,3.74],[134852,134852,3.66],[134853,134853,11],[134854,134854,6.46],[134855,134855,11],[134856,134859,0],[134860,134860,3.58],[134861,134861,0],[134862,134863,11],[134864,134864,6.14],[134865,134865,5.59],[134866,134866,5.48],[134867,134867,6.33],[134868,134868,5.62],[134869,134869,5.8],[134870,134870,6.85],[134871,134871,6.91],[134872,134872,7.32],[134873,134873,6.9],[134874,134875,11],[134876,134877,11.01],[134878,134911,11],[134912,134912,6.85],[134913,134913,5.43],[134914,134915,8.46],[134916,134916,12.73],[134917,134917,6.57],[134918,134918,12.73],[134919,134919,16.36],[134920,134920,4.23],[134921,134921,6.35],[134922,134922,7.09],[134923,134924,1.76],[134925,134925,2.69],[134926,134926,5.04],[134927,134928,2.69],[134929,134929,3.45],[134930,134930,11.57],[134931,134931,6.55],[134932,134932,3.95],[134933,134933,7.13],[134934,134934,5.19],[134935,134935,8.28],[134936,134937,0],[134938,134938,3.22],[134939,134940,5.53],[134941,134941,3.35],[134942,134942,5.48],[134943,134943,5.84],[134944,134945,3.75],[134946,134946,5.97],[134947,134947,5.68],[134948,134948,7.61],[134949,134949,5.48],[134950,134951,6.26],[134952,134952,5.2],[134953,134953,5.58],[134954,134954,5.6],[134955,134955,5.97],[134956,134956,5.68],[134957,134957,7.61],[134958,134958,5.48],[134959,134960,6.26],[134961,134961,5.55],[134962,134962,5.58],[134963,134963,5.47],[134964,134964,5.78],[134965,134965,0],[134966,134966,5.47],[134967,134967,0],[134968,134968,6.02],[134969,134969,0],[134970,134970,14.93],[134971,134971,14.63],[134972,134972,5.37],[134973,134973,5.41],[134974,134974,3.14],[134975,134975,4.71],[134976,134978,5.68],[134979,134979,5.58],[134980,134980,5.2],[134981,134981,5.88],[134982,134982,5.68],[134983,134983,5.2],[134984,134984,11],[134985,134985,5.1],[134986,134988,5.2],[134989,134989,5.58],[134990,134993,5.2],[134994,134994,5.58],[134995,134995,5.2],[134996,134998,5.68],[134999,134999,5.58],[135000,135000,5.68],[135001,135001,5.88],[135002,135002,5.68],[135003,135003,5.2],[135004,135004,5.58],[135005,135006,5.2],[135007,135007,5.39],[135008,135008,5.2],[135009,135009,6.16],[135010,135010,5.39],[135011,135011,5.88],[135012,135014,5.68],[135015,135015,5.2],[135016,135016,6.65],[135017,135017,5.58],[135018,135018,5.39],[135019,135019,5.76],[135020,135020,5.83],[135021,135024,11],[135025,135025,5.98],[135026,135026,0],[135027,135027,5.98],[135028,135028,6.08],[135029,135029,12.06],[135030,135030,5.58],[135031,135031,11.56],[135032,135032,5.58],[135033,135033,11.56],[135034,135038,0],[135039,135039,5.08],[135040,135040,0],[135041,135041,5.98],[135042,135044,0],[135045,135045,5.67],[135046,135048,0],[135049,135049,5.78],[135050,135050,5.24],[135051,135051,5.75],[135052,135055,11],[135056,135063,5.58],[135064,135064,11],[135065,135100,5.58],[135101,135101,11],[135102,135102,5.62],[135103,135103,5.64],[135104,135104,6.38],[135105,135105,4.32],[135106,135106,5.39],[135107,135107,6.45],[135108,135108,4.55],[135109,135109,3.58],[135110,135110,0],[135111,135111,7.12],[135112,135112,3.91],[135113,135113,6.11],[135114,135114,6.58],[135115,135115,6.39],[135116,135116,6.78],[135117,135117,11],[135118,135118,6.95],[135119,135119,5.48],[135120,135120,22.13],[135121,135121,5.23],[135122,135122,2.31],[135123,135123,12.68],[135124,135124,5.35],[135125,135125,7.02],[135126,135126,7.22],[135127,135127,6.7],[135128,135128,6.98],[135129,135167,11],[135168,135168,12.36],[135169,135169,7.44],[135170,135170,7.35],[135171,135171,12.38],[135172,135172,7.15],[135173,135173,7.41],[135174,135174,12.4],[135175,135175,7.52],[135176,135176,9.56],[135177,135177,7.27],[135178,135178,12.2],[135179,135179,7.33],[135180,135180,7.25],[135181,135181,7.33],[135182,135182,7.45],[135183,135183,13.8],[135184,135184,12.36],[135185,135185,12.38],[135186,135186,7.04],[135187,135187,7.41],[135188,135188,6.27],[135189,135189,7.44],[135190,135190,7.42],[135191,135191,7.44],[135192,135192,12.36],[135193,135193,7.44],[135194,135194,12.39],[135195,135195,7.58],[135196,135196,12.39],[135197,135197,7.41],[135198,135198,12.4],[135199,135199,12.36],[135200,135200,7.33],[135201,135201,11.75],[135202,135202,12.35],[135203,135203,12.1],[135204,135204,14.77],[135205,135206,7.27],[135207,135207,6.94],[135208,135208,7.56],[135209,135209,15.06],[135210,135210,26.97],[135211,135211,9.47],[135212,135212,11.54],[135213,135216,6.53],[135217,135217,13.33],[135218,135223,6.53],[135224,135224,10.34],[135225,135226,6.53],[135227,135227,9.36],[135228,135228,9.05],[135229,135230,6.53],[135231,135231,17.42],[135232,135232,7.17],[135233,135233,6.85],[135234,135234,7.42],[135235,135236,6.8],[135237,135237,7.42],[135238,135238,7.92],[135239,135239,7.11],[135240,135240,7.17],[135241,135241,7.92],[135242,135242,2.97],[135243,135243,5.08],[135244,135244,7.33],[135245,135245,9.81],[135246,135246,7.25],[135247,135247,12.51],[135248,135248,7.35],[135249,135249,7.44],[135250,135251,7.27],[135252,135252,7.26],[135253,135253,7.16],[135254,135254,10.59],[135255,135255,10.64],[135256,135257,6.53],[135258,135258,6.8],[135259,135259,9.56],[135260,135260,7.36],[135261,135261,7.25],[135262,135264,6.53],[135265,135265,7.58],[135266,135266,10.23],[135267,135267,13.8],[135268,135268,10.94],[135269,135269,7.34],[135270,135270,7.18],[135271,135271,11.31],[135272,135272,10.23],[135273,135273,11.19],[135274,135276,11.31],[135277,135277,11.19],[135278,135278,13.78],[135279,135279,12.12],[135280,135280,12.14],[135281,135284,6.53],[135285,135285,7.34],[135286,135286,7.39],[135287,135287,7.41],[135288,135288,12.38],[135289,135289,12.39],[135290,135290,12.14],[135291,135291,12.39],[135292,135292,12.42],[135293,135293,12.41],[135294,135294,12.09],[135295,135295,7.45],[135296,135296,12.36],[135297,135297,7.18],[135298,135298,6.53],[135299,135299,10.23],[135300,135300,13.05],[135301,135302,6.53],[135303,135303,10.35],[135304,135305,10.34],[135306,135306,11.31],[135307,135307,10.34],[135308,135308,13.73],[135309,135309,6.53],[135310,135310,7.4],[135311,135311,10.34],[135312,135312,8.37],[135313,135313,7.11],[135314,135314,7.46],[135315,135315,7.92],[135316,135316,8.07],[135317,135318,7.9],[135319,135319,6.1],[135320,135321,7.18],[135322,135322,10.34],[135323,135323,10.35],[135324,135324,11.31],[135325,135325,6.53],[135326,135326,3.7],[135327,135327,10.49],[135328,135328,7.28],[135329,135329,7.44],[135330,135330,7.79],[135331,135331,7.65],[135332,135332,6.7],[135333,135333,8.69],[135334,135334,7.3],[135335,135335,8.64],[135336,135336,6.16],[135337,135337,6.97],[135338,135338,8.6],[135339,135339,7.71],[135340,135340,6.92],[135341,135341,7.5],[135342,135342,7.76],[135343,135343,7.61],[135344,135344,8.07],[135345,135345,6.77],[135346,135346,6.51],[135347,135347,7.48],[135348,135348,7.47],[135349,135349,7.76],[135350,135350,7.07],[135351,135352,6.85],[135353,135353,6.92],[135354,135354,6.96],[135355,135355,8.47],[135356,135356,6.51],[135357,135357,7.28],[135358,135358,6.92],[135359,135359,7.39],[135360,135360,8.08],[135361,135361,6.34],[135362,135362,6.67],[135363,135363,6.65],[135364,135364,7.43],[135365,135365,8.71],[135366,135375,11],[135376,135376,5.7],[135377,135377,6.26],[135378,135378,5.8],[135379,135379,9.14],[135380,135380,5.93],[135381,135381,5.88],[135382,135382,6.83],[135383,135383,9.32],[135384,135384,5.92],[135385,135385,5.74],[135386,135386,10.69],[135387,135387,6.34],[135388,135388,6.35],[135389,135389,8.09],[135390,135390,5.88],[135391,135391,6.13],[135392,135392,8.13],[135393,135393,6.07],[135394,135394,7.29],[135395,135395,6.13],[135396,135396,8.8],[135397,135397,5.89],[135398,135398,8.09],[135399,135399,6.06],[135400,135400,6.38],[135401,135401,6.23],[135402,135402,6.47],[135403,135403,6.33],[135404,135404,6.38],[135405,135405,6.62],[135406,135406,6.33],[135407,135407,5.7],[135408,135408,5.83],[135409,135409,6.52],[135410,135410,5.83],[135411,135412,5.97],[135413,135413,6.5],[135414,135414,8.07],[135415,135415,5.7],[135416,135416,6.12],[135417,135417,5.8],[135418,135418,5.7],[135419,135419,5.91],[135420,135420,4.07],[135421,135421,6.35],[135422,135422,5.92],[135423,135423,6.26],[135424,135442,9.51],[135443,135518,11],[135519,135520,0],[135521,135541,9.51],[135542,135581,11],[135582,135582,9.51],[135583,135585,11],[135586,135586,9.51],[135587,135591,11],[135592,135618,9.51],[135619,135679,11],[135680,135680,7.64],[135681,135681,9.91],[135682,135682,7.09],[135683,135683,7.31],[135684,135684,7.19],[135685,135685,8.01],[135686,135686,9.87],[135687,135687,11.98],[135688,135688,7.12],[135689,135689,9.14],[135690,135690,9.13],[135691,135691,7.12],[135692,135692,9.42],[135693,135693,8.06],[135694,135694,11.59],[135695,135695,9.47],[135696,135696,11.23],[135697,135697,13.4],[135698,135698,13.39],[135699,135699,11.23],[135700,135700,13.33],[135701,135701,11.23],[135702,135702,11.28],[135703,135703,13.47],[135704,135704,11.96],[135705,135705,14.82],[135706,135706,12.63],[135707,135707,11.96],[135708,135708,12.6],[135709,135710,11.96],[135711,135711,12.62],[135712,135712,10.87],[135713,135713,13.46],[135714,135714,11.1],[135715,135715,10.86],[135716,135716,11.12],[135717,135717,12.18],[135718,135718,10.71],[135719,135719,11.09],[135720,135720,6.74],[135721,135721,7.81],[135722,135722,7.61],[135723,135723,9.92],[135724,135724,9.16],[135725,135725,6.85],[135726,135726,9],[135727,135727,9.92],[135728,135728,7.43],[135729,135729,9.68],[135730,135730,9.65],[135731,135731,7.43],[135732,135732,9.59],[135733,135734,7.43],[135735,135735,9.73],[135736,135736,8.37],[135737,135737,10.11],[135738,135738,10.08],[135739,135739,8.37],[135740,135740,10.01],[135741,135741,8.8],[135742,135742,8.37],[135743,135743,10.16],[135744,135751,9.36],[135752,135752,10.67],[135753,135753,11],[135754,135754,13.47],[135755,135756,9.36],[135757,135757,13.49],[135758,135759,11],[135760,135764,9.68],[135765,135765,10.66],[135766,135766,9.68],[135767,135767,11],[135768,135768,10.85],[135769,135769,11],[135770,135770,13.65],[135771,135772,9.68],[135773,135773,11.73],[135774,135775,11],[135776,135776,7.84],[135777,135777,9.9],[135778,135778,9.87],[135779,135779,7.84],[135780,135780,9.81],[135781,135781,10.19],[135782,135782,7.84],[135783,135783,9.95],[135784,135784,8.37],[135785,135785,10.11],[135786,135786,10.08],[135787,135787,8.37],[135788,135788,10.01],[135789,135789,10.41],[135790,135790,8.37],[135791,135791,10.16],[135792,135794,8.53],[135795,135795,8.6],[135796,135796,8.64],[135797,135800,8.53],[135801,135801,8.55],[135802,135802,8.53],[135803,135803,8.6],[135804,135804,8.53],[135805,135805,10.04],[135806,135806,8.7],[135807,135807,8.53],[135808,135808,7.63],[135809,135809,9.52],[135810,135810,8.99],[135811,135811,7.63],[135812,135812,8.87],[135813,135813,7.36],[135814,135815,11.25],[135816,135816,11.39],[135817,135817,11],[135818,135818,10.8],[135819,135819,8.34],[135820,135820,8.87],[135821,135821,10.79],[135822,135823,11],[135824,135824,5.84],[135825,135825,7.73],[135826,135826,7.2],[135827,135827,6.96],[135828,135828,7.08],[135829,135829,7.52],[135830,135830,8.7],[135831,135831,8.1],[135832,135832,8.32],[135833,135833,9.6],[135834,135834,9.06],[135835,135835,8.32],[135836,135836,8.94],[135837,135837,8.32],[135838,135838,10.16],[135839,135839,8.6],[135840,135840,7.03],[135841,135841,9.5],[135842,135842,9.49],[135843,135843,7.03],[135844,135844,9.43],[135845,135845,7.21],[135846,135846,7.06],[135847,135847,8.74],[135848,135848,7.92],[135849,135849,10.17],[135850,135850,10.14],[135851,135851,7.92],[135852,135852,10.08],[135853,135854,7.92],[135855,135855,9.87],[135856,135856,12.3],[135857,135857,11],[135858,135858,11.44],[135859,135859,9.55],[135860,135860,10.08],[135861,135861,11.44],[135862,135863,11],[135864,135864,9.84],[135865,135865,12.09],[135866,135866,12.06],[135867,135867,9.84],[135868,135868,11.99],[135869,135870,9.84],[135871,135871,11],[135872,135872,14.22],[135873,135873,11],[135874,135874,13.36],[135875,135875,12.14],[135876,135876,11.99],[135877,135877,13.36],[135878,135879,11],[135880,135880,10.26],[135881,135881,12.15],[135882,135884,10.26],[135885,135885,12.91],[135886,135886,10.26],[135887,135887,12.86],[135888,135888,7.41],[135889,135889,9.85],[135890,135890,9.54],[135891,135891,7.16],[135892,135892,9.52],[135893,135893,7.2],[135894,135894,7.77],[135895,135895,11],[135896,135896,8.15],[135897,135897,10.05],[135898,135898,10.06],[135899,135899,8.15],[135900,135900,10.03],[135901,135901,9.89],[135902,135902,8.15],[135903,135903,10.18],[135904,135908,12.29],[135909,135909,13.66],[135910,135911,12.29],[135912,135912,6.39],[135913,135913,7.99],[135914,135914,9.15],[135915,135915,6.54],[135916,135916,10.37],[135917,135917,7.7],[135918,135918,8.99],[135919,135919,11.05],[135920,135920,8.43],[135921,135921,11.26],[135922,135922,10.62],[135923,135923,8.24],[135924,135924,10.05],[135925,135925,9.25],[135926,135926,9.13],[135927,135927,10.64],[135928,135928,8.37],[135929,135929,10.86],[135930,135930,10.22],[135931,135931,7.84],[135932,135932,10],[135933,135933,9.9],[135934,135934,9.13],[135935,135935,10.24],[135936,135936,8.54],[135937,135937,11.38],[135938,135938,10.73],[135939,135939,8.35],[135940,135940,10.51],[135941,135941,10.07],[135942,135942,9.17],[135943,135943,10.75],[135944,135944,6.42],[135945,135945,9.17],[135946,135946,6.67],[135947,135947,7.01],[135948,135948,6.61],[135949,135949,8.84],[135950,135950,6.42],[135951,135951,7.9],[135952,135952,11.3],[135953,135953,11],[135954,135954,10.45],[135955,135955,6.88],[135956,135956,8.08],[135957,135957,10.45],[135958,135959,11],[135960,135960,8.1],[135961,135961,9.96],[135962,135964,8.1],[135965,135965,9.68],[135966,135966,8.7],[135967,135967,8.1],[135968,135968,12.14],[135969,135969,14.26],[135970,135970,14.25],[135971,135971,12.09],[135972,135972,14.2],[135973,135973,11.77],[135974,135974,12.14],[135975,135975,14.28],[135976,135976,14.97],[135977,135977,15.2],[135978,135978,15.14],[135979,135979,14.97],[135980,135980,18.26],[135981,135981,14.52],[135982,135982,14.73],[135983,135983,15.22],[135984,135984,7.33],[135985,135985,9.66],[135986,135986,9.54],[135987,135987,7.19],[135988,135988,9.49],[135989,135989,9.34],[135990,135990,7.39],[135991,135991,9.48],[135992,135992,7.6],[135993,135993,9.82],[135994,135994,9.7],[135995,135995,7.35],[135996,135996,9.65],[135997,135997,9.52],[135998,135998,7.65],[135999,135999,9.53],[136000,136000,7.41],[136001,136001,9.85],[136002,136002,7.6],[136003,136003,6.75],[136004,136004,7.62],[136005,136005,7.2],[136006,136006,7.72],[136007,136007,9.14],[136008,136008,9.41],[136009,136009,9.52],[136010,136010,10.2],[136011,136011,9.52],[136012,136012,11.21],[136013,136013,9.25],[136014,136014,9.43],[136015,136015,9.25],[136016,136016,8.53],[136017,136017,8.55],[136018,136018,8.53],[136019,136019,8.6],[136020,136023,8.53],[136024,136024,8.86],[136025,136025,12.6],[136026,136026,10.34],[136027,136030,11],[136031,136031,7.84],[136032,136032,10.01],[136033,136033,3.3],[136034,136034,6.79],[136035,136037,3.94],[136038,136038,5.47],[136039,136039,3.3],[136040,136040,10.28],[136041,136041,6.11],[136042,136042,5.56],[136043,136043,5.9],[136044,136044,6.05],[136045,136045,7.2],[136046,136046,6.63],[136047,136047,6.73],[136048,136048,7.14],[136049,136049,6.19],[136050,136050,4.59],[136051,136051,8.21],[136052,136052,8.15],[136053,136053,9.6],[136054,136054,6.05],[136055,136055,7.14],[136056,136056,8.66],[136057,136057,9.02],[136058,136058,5.77],[136059,136059,6.2],[136060,136060,11.41],[136061,136063,11],[136064,136064,17],[136065,136065,15.55],[136066,136066,12.6],[136067,136067,16.76],[136068,136068,12.08],[136069,136069,11.25],[136070,136070,9.81],[136071,136071,14.44],[136072,136073,10.85],[136074,136074,11.84],[136075,136075,13.59],[136076,136076,10.74],[136077,136077,9.69],[136078,136078,8.64],[136079,136079,11.81],[136080,136080,3.19],[136081,136081,6.05],[136082,136083,3.19],[136084,136084,6.05],[136085,136085,7.55],[136086,136086,5.05],[136087,136087,9.85],[136088,136088,11.44],[136089,136089,5.56],[136090,136095,11],[136096,136096,7.98],[136097,136097,7.56],[136098,136098,6.45],[136099,136099,8.3],[136100,136100,9.87],[136101,136101,3.45],[136102,136102,7.7],[136103,136103,9.16],[136104,136104,5.63],[136105,136105,7],[136106,136106,7.39],[136107,136107,5.82],[136108,136108,6.5],[136109,136109,8.54],[136110,136110,5.87],[136111,136111,8.27],[136112,136112,5.87],[136113,136113,5.91],[136114,136114,9.1],[136115,136115,10.03],[136116,136116,7.75],[136117,136117,6],[136118,136118,7.87],[136119,136119,9.47],[136120,136120,5.83],[136121,136121,9.38],[136122,136122,10.53],[136123,136123,8.25],[136124,136124,5.63],[136125,136125,7.71],[136126,136126,8.02],[136127,136127,6.98],[136128,136128,7.77],[136129,136129,8.34],[136130,136130,6.93],[136131,136131,6.66],[136132,136132,6.1],[136133,136133,10.58],[136134,136134,6.52],[136135,136135,9],[136136,136136,7.86],[136137,136137,11.97],[136138,136138,9],[136139,136139,6.91],[136140,136140,8.06],[136141,136141,9.98],[136142,136143,7.21],[136144,136144,5.65],[136145,136145,7.58],[136146,136146,7.56],[136147,136147,6.14],[136148,136148,10.37],[136149,136149,7.81],[136150,136150,7.67],[136151,136151,6.53],[136152,136152,6.47],[136153,136153,7.59],[136154,136154,7.21],[136155,136155,9.66],[136156,136156,8.91],[136157,136157,6.27],[136158,136158,5.91],[136159,136159,7.5],[136160,136160,7.72],[136161,136161,9.36],[136162,136162,7.09],[136163,136163,7.65],[136164,136164,7.59],[136165,136165,8.72],[136166,136166,7.69],[136167,136167,5.58],[136168,136168,9.71],[136169,136169,8.52],[136170,136170,10.08],[136171,136171,8.02],[136172,136172,9.37],[136173,136173,7.3],[136174,136174,7.1],[136175,136175,9],[136176,136176,7.17],[136177,136177,8.28],[136178,136178,7.11],[136179,136179,9.52],[136180,136180,7.72],[136181,136181,7.65],[136182,136183,10.15],[136184,136184,5.95],[136185,136185,6.88],[136186,136186,5.9],[136187,136187,7.9],[136188,136188,6.41],[136189,136189,6.35],[136190,136190,9.03],[136191,136191,10.15],[136192,136192,11],[136193,136196,8.72],[136197,136201,8.2],[136202,136203,8.23],[136204,136204,8.83],[136205,136206,8.82],[136207,136208,8.83],[136209,136209,8.82],[136210,136210,9.72],[136211,136211,10.28],[136212,136212,9.72],[136213,136213,10.28],[136214,136214,8.2],[136215,136215,10.27],[136216,136216,9.72],[136217,136217,10.28],[136218,136218,9.72],[136219,136219,8.2],[136220,136220,7.32],[136221,136221,6.5],[136222,136222,5.45],[136223,136224,3.51],[136225,136226,5.05],[136227,136227,3.75],[136228,136228,5.3],[136229,136229,5.49],[136230,136230,3.5],[136231,136231,2.29],[136232,136232,4.4],[136233,136233,4.54],[136234,136234,4.39],[136235,136235,12.21],[136236,136236,9.79],[136237,136237,10.53],[136238,136238,11.53],[136239,136239,9.14],[136240,136242,9.12],[136243,136247,8.35],[136248,136249,8.36],[136250,136252,9.23],[136253,136253,9.38],[136254,136254,9.23],[136255,136255,9.14],[136256,136256,9.47],[136257,136257,10.16],[136258,136258,9.47],[136259,136259,10.16],[136260,136260,10.23],[136261,136261,9.47],[136262,136262,10.29],[136263,136263,9.47],[136264,136264,8.36],[136265,136265,4.61],[136266,136266,1.53],[136267,136267,4.05],[136268,136271,8.98],[136272,136278,7.72],[136279,136279,10.65],[136280,136280,10.33],[136281,136281,10.32],[136282,136282,10.66],[136283,136283,10.32],[136284,136284,10.66],[136285,136285,9.06],[136286,136286,9.24],[136287,136287,9.06],[136288,136288,9.24],[136289,136289,9.25],[136290,136290,9.06],[136291,136291,9.24],[136292,136292,9.06],[136293,136293,9.25],[136294,136294,3.75],[136295,136296,10.54],[136297,136298,9.6],[136299,136307,6.88],[136308,136309,8.41],[136310,136310,8.1],[136311,136311,8.72],[136312,136312,8.1],[136313,136313,8.72],[136314,136321,8.41],[136322,136322,8.42],[136323,136324,4.25],[136325,136325,8.52],[136326,136326,8.84],[136327,136328,8.65],[136329,136337,7.16],[136338,136352,8.69],[136353,136354,4.11],[136355,136355,7.07],[136356,136363,6.84],[136364,136364,7.96],[136365,136365,8.6],[136366,136366,8.37],[136367,136367,7.73],[136368,136368,8.37],[136369,136370,7.73],[136371,136371,8.37],[136372,136372,7.73],[136373,136374,8.37],[136375,136375,7.73],[136376,136376,8.37],[136377,136377,7.73],[136378,136378,8.24],[136379,136379,3.83],[136380,136380,3.75],[136381,136381,3.83],[136382,136382,4.74],[136383,136383,6.66],[136384,136392,10.09],[136393,136395,11.62],[136396,136396,10.09],[136397,136397,11.62],[136398,136399,10.09],[136400,136400,5.95],[136401,136401,5.05],[136402,136402,5.95],[136403,136411,9.6],[136412,136413,11.13],[136414,136414,10.89],[136415,136415,11.38],[136416,136416,10.89],[136417,136417,11.38],[136418,136418,9.6],[136419,136419,11.14],[136420,136420,9.6],[136421,136422,11.13],[136423,136423,9.72],[136424,136424,10.89],[136425,136425,9.72],[136426,136426,5.48],[136427,136427,4.9],[136428,136428,7.35],[136429,136437,6.46],[136438,136438,7.72],[136439,136439,7.99],[136440,136440,7.98],[136441,136441,7.71],[136442,136442,8.14],[136443,136443,7.71],[136444,136444,6.97],[136445,136445,8.5],[136446,136446,6.97],[136447,136447,8.5],[136448,136448,8.13],[136449,136449,8.28],[136450,136450,8.64],[136451,136451,7.82],[136452,136452,7.99],[136453,136453,3.93],[136454,136454,4.5],[136455,136455,3.93],[136456,136456,5.48],[136457,136458,3.92],[136459,136459,3.93],[136460,136460,12.29],[136461,136461,11.79],[136462,136462,10.81],[136463,136463,11.09],[136464,136466,9.47],[136467,136470,7.46],[136471,136476,11],[136477,136484,8.99],[136485,136485,5.71],[136486,136494,6.36],[136495,136500,7.89],[136501,136501,8.21],[136502,136502,7.89],[136503,136503,8.21],[136504,136509,7.89],[136510,136510,3.81],[136511,136511,5.1],[136512,136513,3.72],[136514,136519,10.36],[136520,136525,6.77],[136526,136527,8.3],[136528,136528,3.99],[136529,136529,4.9],[136530,136530,7.35],[136531,136534,8.89],[136535,136538,9.45],[136539,136539,10.98],[136540,136540,10.87],[136541,136541,5.37],[136542,136547,9.21],[136548,136551,8.24],[136552,136553,9.78],[136554,136554,5.03],[136555,136556,8.98],[136557,136558,7.72],[136559,136559,6.61],[136560,136561,8.98],[136562,136563,7.72],[136564,136566,8.59],[136567,136570,8.44],[136571,136571,5.42],[136572,136572,7.84],[136573,136573,3.66],[136574,136580,10.87],[136581,136581,8.24],[136582,136585,6.88],[136586,136589,8.87],[136590,136592,13.16],[136593,136594,10.54],[136595,136596,13.16],[136597,136597,6],[136598,136598,9.28],[136599,136602,6.88],[136603,136606,10.09],[136607,136607,5.95],[136608,136613,9.6],[136614,136614,5.48],[136615,136621,6.36],[136622,136622,3.81],[136623,136623,6.26],[136624,136627,5.58],[136628,136631,6.33],[136632,136643,7.96],[136644,136645,9.14],[136646,136649,8.35],[136650,136651,9.14],[136652,136655,8.35],[136656,136657,9.14],[136658,136661,8.35],[136662,136663,9.14],[136664,136667,8.35],[136668,136669,8.82],[136670,136673,7.47],[136674,136675,8.82],[136676,136679,7.14],[136680,136681,9.04],[136682,136685,7.59],[136686,136686,4.39],[136687,136688,10.89],[136689,136692,6.24],[136693,136694,10.89],[136695,136698,7.3],[136699,136700,10.89],[136701,136704,7.3],[136705,136705,5.23],[136706,136707,7.16],[136708,136711,9.79],[136712,136713,10.89],[136714,136717,6.24],[136718,136719,9.04],[136720,136723,7.52],[136724,136726,7.02],[136727,136731,9.97],[136732,136733,7.43],[136734,136737,9.98],[136738,136739,10.26],[136740,136743,6.88],[136744,136745,10.36],[136746,136749,7.1],[136750,136751,9.56],[136752,136752,6.88],[136753,136754,6.84],[136755,136755,6.88],[136756,136757,10.77],[136758,136761,6.98],[136762,136763,12.51],[136764,136767,6.37],[136768,136769,8.38],[136770,136773,7.57],[136774,136775,4.48],[136776,136777,8.38],[136778,136781,7.57],[136782,136783,11.21],[136784,136787,6.24],[136788,136789,11.21],[136790,136793,6.77],[136794,136794,4.14],[136795,136796,11.21],[136797,136800,7.01],[136801,136802,11.21],[136803,136806,6.24],[136807,136808,11.21],[136809,136812,7.01],[136813,136813,6.87],[136814,136814,5.26],[136815,136815,10.87],[136816,136817,16.44],[136818,136818,16.81],[136819,136820,13.87],[136821,136822,16.44],[136823,136831,11],[136832,136832,4.89],[136833,136833,3.31],[136834,136834,4.89],[136835,136835,6.48],[136836,136836,8.06],[136837,136837,9.65],[136838,136838,3.31],[136839,136839,4.89],[136840,136840,6.48],[136841,136841,8.06],[136842,136842,9.65],[136843,136843,3.31],[136844,136844,4.89],[136845,136845,6.48],[136846,136846,8.06],[136847,136847,9.65],[136848,136848,3.31],[136849,136849,4.89],[136850,136850,6.48],[136851,136851,8.06],[136852,136852,9.65],[136853,136853,3.31],[136854,136854,4.89],[136855,136856,6.48],[136857,136857,8.06],[136858,136858,6.48],[136859,136860,5],[136861,136863,11],[136864,136864,7.49],[136865,136865,7.77],[136866,136866,7.52],[136867,136867,6.59],[136868,136869,7.52],[136870,136871,5.77],[136872,136872,4.36],[136873,136874,6.48],[136875,136875,6.12],[136876,136876,5.55],[136877,136877,4.36],[136878,136878,4.42],[136879,136879,5.69],[136880,136880,5.71],[136881,136881,5.51],[136882,136882,3.67],[136883,136883,4.89],[136884,136885,6.26],[136886,136886,6.48],[136887,136887,6.45],[136888,136888,7.08],[136889,136889,4.83],[136890,136891,8.04],[136892,136892,5.64],[136893,136893,3.6],[136894,136894,5.59],[136895,136895,4.36],[136896,136896,5.59],[136897,136897,3.13],[136898,136898,3.6],[136899,136899,5.63],[136900,136900,5.36],[136901,136901,5.71],[136902,136902,4.42],[136903,136903,5.59],[136904,136904,5.05],[136905,136905,6.68],[136906,136906,4.19],[136907,136907,7.18],[136908,136908,3.13],[136909,136909,3.6],[136910,136910,5.71],[136911,136911,5.64],[136912,136912,4.43],[136913,136913,4.66],[136914,136914,5.6],[136915,136915,4.42],[136916,136916,6.05],[136917,136917,5.69],[136918,136918,8.1],[136919,136919,8.29],[136920,136920,7.28],[136921,136921,3.87],[136922,136922,4.37],[136923,136923,4.72],[136924,136924,5.84],[136925,136925,6.47],[136926,136926,8.04],[136927,136927,6.4],[136928,136928,6.96],[136929,136929,5.64],[136930,136930,6.96],[136931,136931,6.68],[136932,136932,7.55],[136933,136933,8.04],[136934,136934,7.28],[136935,136935,3.13],[136936,136936,5.71],[136937,136937,4.83],[136938,136938,8.41],[136939,136939,4.03],[136940,136940,3.05],[136941,136941,5.09],[136942,136942,5.64],[136943,136943,7.28],[136944,136944,6.62],[136945,136945,5.68],[136946,136946,6.07],[136947,136947,5.02],[136948,136948,6.08],[136949,136949,4.09],[136950,136950,5.21],[136951,136951,5.54],[136952,136952,6.23],[136953,136959,11],[136960,136960,11.15],[136961,136961,11.12],[136962,136962,5.88],[136963,136963,10.82],[136964,136964,9.21],[136965,136965,11.12],[136966,136966,10.72],[136967,136967,11.53],[136968,136968,9.35],[136969,136969,11.77],[136970,136970,9.36],[136971,136971,11.33],[136972,136972,11.32],[136973,136973,11],[136974,136974,10.04],[136975,136975,8.37],[136976,136976,10.14],[136977,136977,11.54],[136978,136980,6.53],[136981,136991,11],[136992,136992,9.68],[136993,136993,9.64],[136994,136994,5.73],[136995,136995,6.9],[136996,136996,8.62],[136997,136997,8.85],[136998,136998,10.56],[136999,136999,9.57],[137000,137000,10.63],[137001,137001,9.6],[137002,137002,5.71],[137003,137003,9.59],[137004,137004,9.63],[137005,137005,6.74],[137006,137006,9.81],[137007,137007,11.19],[137008,137008,10.54],[137009,137009,8.85],[137010,137012,6.53],[137013,137013,3.62],[137014,137014,5.37],[137015,137023,11],[137024,137025,9.11],[137026,137026,6.88],[137027,137027,6.81],[137028,137028,6.59],[137029,137029,8.85],[137030,137030,11.27],[137031,137031,8.99],[137032,137032,4.82],[137033,137033,9.11],[137034,137034,6.81],[137035,137035,8.07],[137036,137036,9.69],[137037,137037,6.74],[137038,137038,9.54],[137039,137039,8.99],[137040,137040,8.34],[137041,137041,6.31],[137042,137043,6.53],[137044,137055,11],[137056,137056,8.85],[137057,137057,10.1],[137058,137058,4.31],[137059,137059,6.92],[137060,137060,8.77],[137061,137061,10.39],[137062,137062,11.16],[137063,137063,8.85],[137064,137064,8.77],[137065,137065,10.1],[137066,137066,9.38],[137067,137067,10.1],[137068,137068,10.35],[137069,137069,11],[137070,137070,10.32],[137071,137071,9.17],[137072,137072,11.58],[137073,137073,11],[137074,137075,6.53],[137076,137087,11],[137088,137090,6.6],[137091,137091,10.45],[137092,137095,6.6],[137096,137096,14.3],[137097,137097,10.45],[137098,137100,6.6],[137101,137101,10.45],[137102,137102,14.3],[137103,137104,6.6],[137105,137105,6.84],[137106,137112,6.6],[137113,137113,10.45],[137114,137114,3.85],[137115,137115,10.45],[137116,137116,3.85],[137117,137118,6.6],[137119,137120,10.45],[137121,137121,10.69],[137122,137122,6.38],[137123,137123,6.6],[137124,137124,10.45],[137125,137125,6.6],[137126,137126,10.45],[137127,137128,6.6],[137129,137129,7.81],[137130,137130,6.82],[137131,137139,6.6],[137140,137141,0],[137142,137142,9.44],[137143,137143,6.13],[137144,137146,6.12],[137147,137149,5.25],[137150,137150,9.91],[137151,137152,11.23],[137153,137154,9.14],[137155,137155,9.36],[137156,137156,13.3],[137157,137157,13.68],[137158,137158,5.25],[137159,137159,8.74],[137160,137160,7.85],[137161,137161,5.25],[137162,137162,6.57],[137163,137164,5.25],[137165,137165,5.29],[137166,137171,5.25],[137172,137172,5.11],[137173,137173,6.82],[137174,137174,3.77],[137175,137175,5.83],[137176,137176,20.08],[137177,137177,7.12],[137178,137178,12.93],[137179,137179,4.18],[137180,137180,5.83],[137181,137181,5.25],[137182,137183,11],[137184,137185,5.83],[137186,137186,7.27],[137187,137187,9.68],[137188,137190,6.54],[137191,137191,7.66],[137192,137192,6.54],[137193,137193,6.21],[137194,137199,11],[137200,137200,4.14],[137201,137201,4.53],[137202,137202,1.76],[137203,137203,7.25],[137204,137204,4.53],[137205,137205,4.38],[137206,137206,3.13],[137207,137207,5.88],[137208,137208,3.13],[137209,137209,4.88],[137210,137215,11],[137216,137216,5.88],[137217,137217,11.33],[137218,137218,4.22],[137219,137219,7.02],[137220,137220,4.22],[137221,137221,6.4],[137222,137222,4.4],[137223,137223,5.88],[137224,137224,4.64],[137225,137225,7.06],[137226,137226,1.85],[137227,137230,0],[137231,137231,11],[137232,137233,6.29],[137234,137234,6.65],[137235,137235,9.63],[137236,137236,5.88],[137237,137237,7.83],[137238,137239,6.93],[137240,137240,6.2],[137241,137241,5.88],[137242,137247,11],[137248,137248,10.22],[137249,137249,9.07],[137250,137250,10.92],[137251,137252,10.25],[137253,137254,13.58],[137255,137255,13.2],[137256,137256,6.24],[137257,137257,8.12],[137258,137258,7.48],[137259,137259,7.42],[137260,137261,9.49],[137262,137263,6.24],[137264,137265,8.31],[137266,137266,8.2],[137267,137267,8.23],[137268,137268,8.44],[137269,137270,5.46],[137271,137271,7.62],[137272,137272,6.55],[137273,137273,7.48],[137274,137274,6.06],[137275,137275,6.05],[137276,137276,9.81],[137277,137277,8.96],[137278,137278,11.97],[137279,137279,9.99],[137280,137280,11.97],[137281,137281,7.05],[137282,137282,12.94],[137283,137283,2.21],[137284,137284,9.89],[137285,137285,9.96],[137286,137286,10.07],[137287,137287,12.39],[137288,137288,10.07],[137289,137289,12.39],[137290,137290,11.76],[137291,137291,10.17],[137292,137292,7.87],[137293,137294,9.47],[137295,137295,5.78],[137296,137296,7.95],[137297,137297,6.06],[137298,137298,8.64],[137299,137299,8.44],[137300,137300,7.15],[137301,137301,4.96],[137302,137302,8.24],[137303,137303,6.25],[137304,137304,6.03],[137305,137305,12.1],[137306,137306,8.13],[137307,137307,5.7],[137308,137308,8],[137309,137309,9.07],[137310,137310,10.92],[137311,137311,3.13],[137312,137312,10.25],[137313,137313,13.58],[137314,137314,10.12],[137315,137315,4.71],[137316,137316,7.62],[137317,137317,8.71],[137318,137318,7.9],[137319,137319,7.49],[137320,137320,9.15],[137321,137321,8.2],[137322,137322,5.63],[137323,137323,6.55],[137324,137325,6.06],[137326,137327,8.31],[137328,137328,4.1],[137329,137329,8.44],[137330,137330,5.63],[137331,137331,10.92],[137332,137332,6.02],[137333,137333,9.55],[137334,137334,6.16],[137335,137335,5.46],[137336,137343,11],[137344,137344,6.41],[137345,137345,8.69],[137346,137346,7.4],[137347,137348,5.31],[137349,137349,11.63],[137350,137350,10.85],[137351,137351,11.23],[137352,137352,10.92],[137353,137353,7.77],[137354,137354,10.01],[137355,137355,6.9],[137356,137356,5.61],[137357,137357,8.71],[137358,137358,6.77],[137359,137359,5.77],[137360,137360,5.98],[137361,137361,6.06],[137362,137362,7.48],[137363,137363,7.42],[137364,137364,7.2],[137365,137365,9.16],[137366,137366,8],[137367,137367,6.05],[137368,137368,6.88],[137369,137369,9.46],[137370,137370,12.85],[137371,137371,9.34],[137372,137372,8.31],[137373,137373,10.15],[137374,137374,5.72],[137375,137375,7.66],[137376,137376,6.06],[137377,137377,11.53],[137378,137378,8.31],[137379,137379,5.72],[137380,137381,8.31],[137382,137382,5.55],[137383,137383,6.13],[137384,137384,10.98],[137385,137385,0],[137386,137386,7.9],[137387,137471,11],[137472,137472,7.41],[137473,137473,6.65],[137474,137474,7.71],[137475,137475,6.54],[137476,137476,6.62],[137477,137477,10.2],[137478,137478,6.9],[137479,137479,6.95],[137480,137480,7.42],[137481,137481,6.41],[137482,137482,8.55],[137483,137483,6.08],[137484,137484,7.6],[137485,137485,6.88],[137486,137486,7.48],[137487,137487,6.65],[137488,137488,8.22],[137489,137489,8.92],[137490,137490,6.76],[137491,137491,7.7],[137492,137492,7.12],[137493,137493,6.64],[137494,137494,6.88],[137495,137495,7.22],[137496,137496,7.27],[137497,137497,7],[137498,137498,5.73],[137499,137499,6.94],[137500,137500,7.25],[137501,137501,6.76],[137502,137502,6.61],[137503,137503,11],[137504,137506,7.93],[137507,137507,11.08],[137508,137508,14.1],[137509,137509,11.08],[137510,137510,14.1],[137511,137512,7.93],[137513,137513,11.87],[137514,137514,7.93],[137515,137515,12.44],[137516,137519,11],[137520,137520,13.95],[137521,137521,10.83],[137522,137522,7.93],[137523,137523,10.9],[137524,137524,13.18],[137525,137525,13.58],[137526,137526,13.46],[137527,137527,9.15],[137528,137528,11.49],[137529,137531,7.93],[137532,137535,11],[137536,137536,6.05],[137537,137539,11],[137540,137540,4.84],[137541,137541,5.28],[137542,137542,6.04],[137543,137543,5.49],[137544,137544,5.47],[137545,137545,5.07],[137546,137546,5.5],[137547,137547,5.36],[137548,137549,5.41],[137550,137550,5.47],[137551,137551,5.41],[137552,137552,5.64],[137553,137553,7.3],[137554,137554,5.9],[137555,137555,8],[137556,137556,7.24],[137557,137557,6.69],[137558,137558,9.92],[137559,137559,10.64],[137560,137560,6.26],[137561,137561,5.72],[137562,137562,9.14],[137563,137563,5.6],[137564,137564,9.14],[137565,137565,6.35],[137566,137566,9.34],[137567,137567,7.48],[137568,137568,5.59],[137569,137569,7.2],[137570,137570,5.9],[137571,137571,2.63],[137572,137572,6.04],[137573,137573,5.65],[137574,137574,6.04],[137575,137575,3.19],[137576,137576,2.72],[137577,137577,5.52],[137578,137578,6.04],[137579,137579,5.65],[137580,137580,2.3],[137581,137581,6.92],[137582,137583,11],[137584,137584,6.09],[137585,137585,5.75],[137586,137586,6.63],[137587,137587,6.01],[137588,137588,5.75],[137589,137599,11],[137600,137601,10.22],[137602,137602,9.99],[137603,137603,5.83],[137604,137604,10.05],[137605,137605,6.72],[137606,137606,6.58],[137607,137607,7.11],[137608,137608,6.36],[137609,137609,10.22],[137610,137610,6.83],[137611,137611,6.72],[137612,137612,6.58],[137613,137614,9.99],[137615,137615,6.92],[137616,137616,10.05],[137617,137617,7.06],[137618,137618,8.24],[137619,137619,6.34],[137620,137620,6.98],[137621,137621,9.16],[137622,137622,10.05],[137623,137623,9.99],[137624,137624,10.22],[137625,137625,6.72],[137626,137626,7.06],[137627,137628,10.05],[137629,137629,9.99],[137630,137630,6.09],[137631,137632,10.05],[137633,137633,5.97],[137634,137634,6.72],[137635,137635,7.46],[137636,137636,5.97],[137637,137637,6.72],[137638,137638,9.99],[137639,137639,5.95],[137640,137640,6.72],[137641,137641,6.58],[137642,137642,10.22],[137643,137643,6.58],[137644,137647,11],[137648,137648,7.33],[137649,137649,5.97],[137650,137650,6.64],[137651,137651,5.97],[137652,137652,6.57],[137653,137653,7.73],[137654,137654,14.3],[137655,137655,5.81],[137656,137656,5.71],[137657,137657,6.64],[137658,137658,6.19],[137659,137659,8.88],[137660,137660,9.02],[137661,137661,9],[137662,137662,7.96],[137663,137664,9.55],[137665,137665,6.09],[137666,137666,7.12],[137667,137667,6.42],[137668,137668,6.72],[137669,137669,9.99],[137670,137670,5.97],[137671,137671,6.72],[137672,137672,5.63],[137673,137673,5.74],[137674,137679,11],[137680,137680,6.09],[137681,137681,5.97],[137682,137682,3.95],[137683,137684,5.92],[137685,137685,8.54],[137686,137686,6.91],[137687,137687,8.54],[137688,137688,6.17],[137689,137689,6.58],[137690,137690,6.79],[137691,137693,11],[137694,137695,9.2],[137696,137696,7.08],[137697,137697,5.83],[137698,137698,7.27],[137699,137699,9.68],[137700,137702,6.54],[137703,137703,7.66],[137704,137704,6.54],[137705,137705,6.21],[137706,137707,13.97],[137708,137708,14.5],[137709,137709,15.84],[137710,137711,13.97],[137712,137712,6.98],[137713,137713,5.83],[137714,137714,7.27],[137715,137715,9.68],[137716,137718,6.54],[137719,137719,7.66],[137720,137720,6.54],[137721,137721,6.21],[137722,137723,13.97],[137724,137724,14.5],[137725,137725,15.84],[137726,137727,13.97],[137728,137728,7.45],[137729,137729,11.51],[137730,137730,6.65],[137731,137731,8.3],[137732,137732,11.51],[137733,137733,7.45],[137734,137734,10.39],[137735,137735,9.66],[137736,137738,10.39],[137739,137740,11.51],[137741,137741,8.62],[137742,137742,13.43],[137743,137743,14.57],[137744,137744,13.41],[137745,137745,7.58],[137746,137746,13.73],[137747,137747,13.41],[137748,137748,6.34],[137749,137749,13.38],[137750,137750,11.37],[137751,137752,6.53],[137753,137753,10.46],[137754,137754,12.47],[137755,137755,6.53],[137756,137757,11],[137758,137758,5.54],[137759,137759,5.92],[137760,137760,10.18],[137761,137761,5.81],[137762,137762,5.76],[137763,137763,6.53],[137764,137764,6.42],[137765,137765,11.47],[137766,137766,6.94],[137767,137767,6.55],[137768,137768,10],[137769,137770,6.12],[137771,137771,10.78],[137772,137772,10.01],[137773,137774,7.44],[137775,137775,5.77],[137776,137776,7.2],[137777,137777,12.01],[137778,137778,9.82],[137779,137779,7.72],[137780,137780,7.12],[137781,137781,7],[137782,137782,6.07],[137783,137783,6.53],[137784,137784,6.9],[137785,137785,7.7],[137786,137786,7.56],[137787,137788,7.23],[137789,137789,9.66],[137790,137790,6.53],[137791,137791,10.73],[137792,137792,6.74],[137793,137793,7.1],[137794,137794,7.25],[137795,137795,9.88],[137796,137796,5.77],[137797,137797,5.92],[137798,137798,6.53],[137799,137800,10.01],[137801,137801,9.88],[137802,137802,6.94],[137803,137803,9.73],[137804,137804,9.88],[137805,137805,7.23],[137806,137806,8.92],[137807,137808,5.77],[137809,137809,6.56],[137810,137810,11.88],[137811,137811,10.1],[137812,137812,14.25],[137813,137814,0],[137815,137815,3.12],[137816,137822,0],[137823,137823,11],[137824,137824,0],[137825,137825,4.93],[137826,137826,0],[137827,137827,5.4],[137828,137828,2.72],[137829,137836,0],[137837,137837,2.34],[137838,137838,5.93],[137839,137839,11.11],[137840,137841,5.93],[137842,137842,6.02],[137843,137852,0],[137853,137854,11],[137855,137855,0],[137856,137856,5.92],[137857,137857,5.89],[137858,137858,3.73],[137859,137860,5.83],[137861,137861,5.82],[137862,137862,5.88],[137863,137863,5.82],[137864,137864,6.14],[137865,137865,5.88],[137866,137871,11],[137872,137872,5.92],[137873,137873,7.28],[137874,137874,4.46],[137875,137875,9.9],[137876,137876,7.22],[137877,137877,7.12],[137878,137878,7.45],[137879,137879,7.44],[137880,137880,7.23],[137881,137881,9.88],[137882,137887,11],[137888,137888,7.85],[137889,137889,7.88],[137890,137890,10.79],[137891,137891,9.06],[137892,137892,7.85],[137893,137893,8.06],[137894,137894,7.19],[137895,137895,7.34],[137896,137896,3.28],[137897,137897,5.05],[137898,137898,6.59],[137899,137899,8.2],[137900,137900,13.56],[137901,137901,6.07],[137902,137983,11],[137984,137987,6.53],[137988,137988,11.07],[137989,137989,12.13],[137990,137990,17.05],[137991,137991,10.26],[137992,137992,15.18],[137993,137993,8.24],[137994,137994,13.16],[137995,137995,8.88],[137996,137996,13.79],[137997,137997,10.42],[137998,137998,15.33],[137999,137999,7.9],[138000,138000,12.58],[138001,138001,10.81],[138002,138002,15.73],[138003,138003,12.22],[138004,138004,12.44],[138005,138005,12.01],[138006,138006,12.85],[138007,138007,10.26],[138008,138008,8.73],[138009,138009,11.57],[138010,138010,9.67],[138011,138011,13.29],[138012,138012,16.6],[138013,138013,11.55],[138014,138014,11.12],[138015,138015,10.27],[138016,138016,8.91],[138017,138017,13.43],[138018,138018,13.24],[138019,138019,8.72],[138020,138020,11.79],[138021,138021,10.12],[138022,138022,9.39],[138023,138023,8.88],[138024,138024,8.41],[138025,138025,12.98],[138026,138026,10.17],[138027,138027,9.39],[138028,138028,10.55],[138029,138029,9.29],[138030,138030,13.45],[138031,138031,8.72],[138032,138032,12.01],[138033,138033,8.88],[138034,138034,8.89],[138035,138035,13.45],[138036,138036,6.53],[138037,138037,11.45],[138038,138042,6.53],[138043,138043,11.45],[138044,138044,6.53],[138045,138045,11.45],[138046,138047,11.85],[138048,138049,16.76],[138050,138050,6.53],[138051,138051,11.45],[138052,138052,3.83],[138053,138053,13.34],[138054,138054,19.9],[138055,138055,13.24],[138056,138056,8.88],[138057,138057,8.72],[138058,138058,8.89],[138059,138059,16.08],[138060,138063,11],[138064,138064,5.19],[138065,138065,13],[138066,138066,10.42],[138067,138067,10.81],[138068,138068,5.59],[138069,138069,7.19],[138070,138070,7.9],[138071,138071,12.02],[138072,138072,8.41],[138073,138073,9.92],[138074,138074,12.87],[138075,138075,14.21],[138076,138076,4.07],[138077,138077,5.04],[138078,138078,4.32],[138079,138079,7.06],[138080,138080,4.74],[138081,138081,6.12],[138082,138082,5.31],[138083,138083,4.62],[138084,138084,5.27],[138085,138085,6.69],[138086,138086,7.3],[138087,138087,10.34],[138088,138088,4.26],[138089,138089,14.33],[138090,138090,4.53],[138091,138099,6.53],[138100,138100,6.61],[138101,138101,6.28],[138102,138102,6.61],[138103,138103,6.28],[138104,138104,6.49],[138105,138105,6.86],[138106,138106,6.49],[138107,138107,6.96],[138108,138108,4.42],[138109,138111,11],[138112,138113,6.53],[138114,138114,10.79],[138115,138115,9.58],[138116,138116,6.17],[138117,138117,8.41],[138118,138118,10.02],[138119,138119,8.84],[138120,138120,8.74],[138121,138121,9.58],[138122,138122,8.72],[138123,138123,8.8],[138124,138124,8.81],[138125,138125,8.01],[138126,138126,8.25],[138127,138127,8.96],[138128,138128,9.12],[138129,138129,11.85],[138130,138130,9.47],[138131,138131,7.83],[138132,138132,7.93],[138133,138134,8.72],[138135,138135,7.44],[138136,138136,10.67],[138137,138137,7.6],[138138,138138,9.56],[138139,138139,5.88],[138140,138140,8.67],[138141,138141,7.52],[138142,138143,8.77],[138144,138144,8.47],[138145,138149,6.53],[138150,138151,10.66],[138152,138153,6.53],[138154,138154,9.44],[138155,138155,0],[138156,138157,6.53],[138158,138158,15.2],[138159,138159,18.12],[138160,138160,9.11],[138161,138161,8.79],[138162,138162,7.71],[138163,138163,8.41],[138164,138164,5.88],[138165,138165,9.53],[138166,138166,7.29],[138167,138167,8.16],[138168,138168,8.77],[138169,138169,8.19],[138170,138170,4],[138171,138171,7.83],[138172,138172,12.98],[138173,138173,14.7],[138174,138174,11.82],[138175,138175,8],[138176,138176,12.39],[138177,138177,12.58],[138178,138178,11.44],[138179,138179,11.62],[138180,138180,11.64],[138181,138181,11.77],[138182,138182,10.89],[138183,138183,9.24],[138184,138184,10.37],[138185,138185,10.89],[138186,138186,10.52],[138187,138187,11],[138188,138188,11.62],[138189,138189,8.67],[138190,138190,10.35],[138191,138191,11.62],[138192,138192,11.25],[138193,138193,8.92],[138194,138194,10.48],[138195,138195,10.85],[138196,138196,11.59],[138197,138197,11.97],[138198,138198,8.78],[138199,138199,11.8],[138200,138200,10.56],[138201,138202,11.62],[138203,138204,11.77],[138205,138205,8.32],[138206,138206,10.24],[138207,138207,11.62],[138208,138208,10.09],[138209,138209,11.19],[138210,138210,9.63],[138211,138211,10.89],[138212,138213,10.04],[138214,138214,6.53],[138215,138215,10.03],[138216,138217,6.53],[138218,138218,11.85],[138219,138219,10.35],[138220,138220,12.4],[138221,138225,6.53],[138226,138226,12.57],[138227,138227,11.42],[138228,138235,11],[138236,138236,11.77],[138237,138237,12.18],[138238,138238,9.36],[138239,138239,7.57],[138240,138240,6.62],[138241,138241,5.95],[138242,138242,7.13],[138243,138244,10.26],[138245,138245,4.72],[138246,138246,7.45],[138247,138247,7.64],[138248,138248,7.84],[138249,138249,6.71],[138250,138250,7.03],[138251,138251,7.33],[138252,138252,6.68],[138253,138253,8.03],[138254,138256,6.61],[138257,138257,6.93],[138258,138258,10.72],[138259,138259,7.19],[138260,138260,10.26],[138261,138262,8.15],[138263,138263,7.04],[138264,138264,11.33],[138265,138265,6.51],[138266,138266,5.79],[138267,138267,5.6],[138268,138268,10.72],[138269,138269,7.81],[138270,138270,6.49],[138271,138271,7.19],[138272,138272,11.11],[138273,138273,7.42],[138274,138274,11.78],[138275,138275,6.7],[138276,138276,9.42],[138277,138277,8.14],[138278,138278,9.5],[138279,138279,9.49],[138280,138280,8.37],[138281,138281,7.81],[138282,138282,8.68],[138283,138283,9.67],[138284,138291,5.61],[138292,138292,9.84],[138293,138293,7.59],[138294,138295,5.61],[138296,138298,11],[138299,138299,2.75],[138300,138300,4.73],[138301,138301,5.76],[138302,138302,6.2],[138303,138303,6.47],[138304,138305,5.39],[138306,138306,6.17],[138307,138307,6.34],[138308,138308,7.46],[138309,138309,7.42],[138310,138310,6.5],[138311,138311,5.18],[138312,138312,5.99],[138313,138313,5.54],[138314,138316,11],[138317,138318,6.2],[138319,138319,7.29],[138320,138320,6.29],[138321,138321,5.66],[138322,138322,5.64],[138323,138323,5.73],[138324,138324,5.31],[138325,138325,6.06],[138326,138326,5.57],[138327,138327,5.65],[138328,138328,7.35],[138329,138329,6.95],[138330,138330,7.14],[138331,138331,8.59],[138332,138332,7.44],[138333,138333,7.39],[138334,138334,6.42],[138335,138335,7.61],[138336,138336,6.37],[138337,138338,6.92],[138339,138339,7.2],[138340,138340,6.17],[138341,138341,6.46],[138342,138342,8.38],[138343,138343,6.42],[138344,138344,5.96],[138345,138345,5.99],[138346,138346,7.19],[138347,138347,7.46],[138348,138348,8.38],[138349,138349,7.2],[138350,138350,6.31],[138351,138351,8.01],[138352,138352,7.9],[138353,138354,6.25],[138355,138355,7.36],[138356,138356,6.92],[138357,138357,7.9],[138358,138358,7.2],[138359,138359,7.9],[138360,138362,2.95],[138363,138363,5.5],[138364,138364,3.59],[138365,138365,5.85],[138366,138366,2.95],[138367,138367,5.51],[138368,138383,11],[138384,138384,6.25],[138385,138386,6.49],[138387,138387,9.86],[138388,138388,6.37],[138389,138389,6.27],[138390,138390,6.68],[138391,138391,10.03],[138392,138392,6.54],[138393,138393,6.17],[138394,138394,11.49],[138395,138396,6.69],[138397,138397,9.12],[138398,138398,6.1],[138399,138399,6.47],[138400,138400,8.38],[138401,138401,6.5],[138402,138402,8.02],[138403,138403,6.78],[138404,138404,9],[138405,138405,6.4],[138406,138406,8.59],[138407,138407,6.6],[138408,138408,6.69],[138409,138409,6.55],[138410,138410,7.19],[138411,138412,6.74],[138413,138413,7.03],[138414,138414,6.74],[138415,138415,6.31],[138416,138416,6.29],[138417,138417,7.05],[138418,138418,6.56],[138419,138419,6.29],[138420,138420,6.28],[138421,138421,6.74],[138422,138422,8.28],[138423,138423,6.34],[138424,138424,6.55],[138425,138425,6.34],[138426,138426,6.43],[138427,138428,11],[138429,138429,7.08],[138430,138430,6.56],[138431,138431,7.81],[138432,138432,11.2],[138433,138435,7.41],[138436,138436,18.48],[138437,138437,8.18],[138438,138438,12.48],[138439,138439,18.09],[138440,138457,11],[138458,138458,0],[138459,138484,11],[138485,138485,5.8],[138486,138495,11],[138496,138496,5.53],[138497,138497,7.1],[138498,138498,7.34],[138499,138499,5.11],[138500,138500,5.26],[138501,138502,5.77],[138503,138503,4.89],[138504,138504,4.35],[138505,138505,3.06],[138506,138506,3.26],[138507,138507,5.94],[138508,138508,4.89],[138509,138509,6.96],[138510,138510,5.89],[138511,138511,5.5],[138512,138512,5.26],[138513,138513,5.96],[138514,138514,5.91],[138515,138515,5.96],[138516,138516,7.94],[138517,138517,4.8],[138518,138519,5.5],[138520,138520,5.02],[138521,138522,5.06],[138523,138523,4.81],[138524,138524,5.91],[138525,138525,5.55],[138526,138526,7.2],[138527,138527,5.55],[138528,138528,5.5],[138529,138529,7.94],[138530,138530,4.88],[138531,138531,4.35],[138532,138532,4.37],[138533,138533,5.92],[138534,138534,4.51],[138535,138535,5.5],[138536,138536,5.89],[138537,138537,5.02],[138538,138538,5.81],[138539,138539,5.49],[138540,138540,4.64],[138541,138541,5.92],[138542,138543,4.25],[138544,138544,4.73],[138545,138546,4.07],[138547,138547,4.76],[138548,138548,4.84],[138549,138549,2.2],[138550,138550,2.71],[138551,138551,5.04],[138552,138552,4.08],[138553,138553,5.94],[138554,138554,5.09],[138555,138555,4.85],[138556,138556,4.6],[138557,138557,3.7],[138558,138558,3.65],[138559,138559,4.51],[138560,138560,3.99],[138561,138561,4.98],[138562,138562,6.09],[138563,138564,3.01],[138565,138565,3.45],[138566,138566,4.29],[138567,138567,3.41],[138568,138568,3.42],[138569,138570,2.82],[138571,138572,2.66],[138573,138573,3.31],[138574,138574,1.8],[138575,138575,3.47],[138576,138576,5.38],[138577,138577,3.1],[138578,138578,3.17],[138579,138579,2.81],[138580,138581,3.17],[138582,138582,3.42],[138583,138583,2.11],[138584,138584,3.6],[138585,138585,3.36],[138586,138586,5.38],[138587,138587,3.23],[138588,138588,3.51],[138589,138589,3.1],[138590,138590,2.92],[138591,138591,2.98],[138592,138592,3.68],[138593,138593,3.1],[138594,138594,1.8],[138595,138595,2.52],[138596,138596,3.6],[138597,138597,3.23],[138598,138598,3.1],[138599,138599,2.92],[138600,138600,3.25],[138601,138601,3.68],[138602,138602,3.1],[138603,138603,8.37],[138604,138605,5.5],[138606,138606,3.66],[138607,138607,8.56],[138608,138609,5.5],[138610,138611,3.66],[138612,138612,4.28],[138613,138613,3.06],[138614,138614,4.88],[138615,138615,5.5],[138616,138616,3.56],[138617,138617,5.18],[138618,138618,8.43],[138619,138619,3.06],[138620,138620,2.96],[138621,138621,5.5],[138622,138622,5.91],[138623,138623,6.04],[138624,138625,5.5],[138626,138626,3.66],[138627,138627,6.56],[138628,138628,5.5],[138629,138629,3.06],[138630,138630,8.56],[138631,138632,5.5],[138633,138633,3.66],[138634,138634,4.28],[138635,138635,4.67],[138636,138637,5.5],[138638,138639,4.88],[138640,138640,5.75],[138641,138641,5.5],[138642,138642,4.88],[138643,138644,4.62],[138645,138645,4.88],[138646,138646,3.06],[138647,138647,4.88],[138648,138648,4.83],[138649,138649,5.5],[138650,138650,4.88],[138651,138651,3.45],[138652,138653,2.81],[138654,138654,3.16],[138655,138655,2.66],[138656,138657,2.29],[138658,138658,2.93],[138659,138659,3.53],[138660,138660,1.8],[138661,138661,2],[138662,138663,1.81],[138664,138664,2.12],[138665,138666,1.8],[138667,138667,2.98],[138668,138668,4.93],[138669,138669,5.38],[138670,138671,3.6],[138672,138672,3.54],[138673,138673,3.17],[138674,138674,3.53],[138675,138675,2.34],[138676,138676,2.37],[138677,138677,2.11],[138678,138678,3.6],[138679,138679,3.49],[138680,138680,3.58],[138681,138681,3.2],[138682,138682,3.23],[138683,138684,3.01],[138685,138685,3.34],[138686,138686,2.92],[138687,138687,2.96],[138688,138703,0],[138704,138706,11],[138707,138713,0],[138714,138714,11],[138715,138726,0],[138727,138749,11],[138750,138751,0],[138752,138752,7.94],[138753,138753,4.88],[138754,138754,7.34],[138755,138755,5.5],[138756,138756,7.54],[138757,138757,6.85],[138758,138758,7.34],[138759,138759,5.5],[138760,138760,7.68],[138761,138761,5.73],[138762,138762,7.94],[138763,138763,5.5],[138764,138764,8.48],[138765,138765,6.85],[138766,138766,7.94],[138767,138767,5.5],[138768,138768,7.94],[138769,138769,5.5],[138770,138770,7.94],[138771,138771,5.5],[138772,138772,6.96],[138773,138773,6.55],[138774,138774,6.96],[138775,138775,6.55],[138776,138776,6.72],[138777,138777,4.88],[138778,138778,6.72],[138779,138779,4.88],[138780,138780,6.72],[138781,138781,4.88],[138782,138782,6.12],[138783,138783,3.66],[138784,138784,7.94],[138785,138785,5.5],[138786,138786,7.94],[138787,138787,5.5],[138788,138788,8.27],[138789,138789,6.96],[138790,138790,7.94],[138791,138791,5.5],[138792,138792,7.94],[138793,138793,5.5],[138794,138794,7.94],[138795,138795,5.5],[138796,138796,3.66],[138797,138797,3.06],[138798,138798,4.63],[138799,138799,3.02],[138800,138800,7.62],[138801,138801,6.51],[138802,138802,7.62],[138803,138803,6.51],[138804,138804,7.94],[138805,138805,5.5],[138806,138806,6.12],[138807,138807,3.02],[138808,138808,6.72],[138809,138809,3.06],[138810,138810,6.72],[138811,138811,3.06],[138812,138812,6.72],[138813,138813,3.06],[138814,138814,9.27],[138815,138815,10.7],[138816,138816,9.78],[138817,138817,8.56],[138818,138818,9.27],[138819,138819,10.7],[138820,138820,7.94],[138821,138821,5.5],[138822,138822,8.23],[138823,138823,6.96],[138824,138824,7.94],[138825,138825,5.5],[138826,138826,7.94],[138827,138827,5.5],[138828,138828,8.66],[138829,138829,6.68],[138830,138830,7.94],[138831,138831,5.5],[138832,138832,8.66],[138833,138833,6.68],[138834,138834,8.66],[138835,138835,6.68],[138836,138836,6.63],[138837,138837,6.85],[138838,138838,6.12],[138839,138839,5.5],[138840,138840,7.34],[138841,138841,3.66],[138842,138842,7.65],[138843,138843,4.69],[138844,138844,7.34],[138845,138845,3.66],[138846,138846,7.34],[138847,138847,3.66],[138848,138848,6.12],[138849,138849,4.28],[138850,138850,7.52],[138851,138851,5.73],[138852,138852,6.12],[138853,138853,4.28],[138854,138854,6.12],[138855,138855,4.28],[138856,138856,6.12],[138857,138857,4.28],[138858,138858,6.72],[138859,138859,3.06],[138860,138860,6.78],[138861,138861,4.33],[138862,138862,6.72],[138863,138863,3.06],[138864,138864,6.72],[138865,138865,3.06],[138866,138866,7.94],[138867,138867,5.5],[138868,138868,7.94],[138869,138869,5.5],[138870,138870,7.94],[138871,138871,5.5],[138872,138872,8.05],[138873,138873,6.96],[138874,138874,7.94],[138875,138875,5.5],[138876,138876,7.52],[138877,138877,6.51],[138878,138878,7.52],[138879,138879,6.51],[138880,138880,10.88],[138881,138881,9],[138882,138882,10.88],[138883,138883,9],[138884,138884,10.88],[138885,138885,9],[138886,138886,10.38],[138887,138887,7.94],[138888,138888,10.88],[138889,138889,9],[138890,138890,7.94],[138891,138891,5.5],[138892,138892,7.94],[138893,138893,5.5],[138894,138894,7.94],[138895,138895,5.5],[138896,138896,6.72],[138897,138897,4.88],[138898,138898,7.54],[138899,138899,5.78],[138900,138900,6.72],[138901,138901,4.88],[138902,138902,5.5],[138903,138903,3.06],[138904,138904,7.94],[138905,138905,5.5],[138906,138906,4.88],[138907,138907,3.06],[138908,138908,4.66],[138909,138909,4.65],[138910,138910,7.46],[138911,138911,6.62],[138912,138912,7.52],[138913,138913,6.61],[138914,138914,7.52],[138915,138915,6.61],[138916,138916,7.52],[138917,138917,6.61],[138918,138918,7.52],[138919,138919,6.61],[138920,138920,7.52],[138921,138921,6.61],[138922,138922,7.52],[138923,138923,6.61],[138924,138924,7.52],[138925,138925,6.61],[138926,138926,7.52],[138927,138927,6.61],[138928,138928,7.52],[138929,138929,6.61],[138930,138930,7.52],[138931,138931,6.61],[138932,138932,7.52],[138933,138933,6.61],[138934,138934,7.52],[138935,138935,6.61],[138936,138936,6.96],[138937,138937,6.55],[138938,138938,6.96],[138939,138939,6.55],[138940,138940,6.96],[138941,138941,6.55],[138942,138942,6.96],[138943,138943,6.55],[138944,138944,6.96],[138945,138945,6.55],[138946,138946,6.96],[138947,138947,6.55],[138948,138948,6.96],[138949,138949,6.55],[138950,138950,6.96],[138951,138951,6.55],[138952,138952,4.63],[138953,138953,3.02],[138954,138954,4.63],[138955,138955,3.02],[138956,138956,8.66],[138957,138957,6.68],[138958,138958,8.66],[138959,138959,6.68],[138960,138960,8.66],[138961,138961,6.68],[138962,138962,8.66],[138963,138963,6.68],[138964,138964,8.66],[138965,138965,6.68],[138966,138966,8.66],[138967,138967,6.68],[138968,138968,8.66],[138969,138969,6.68],[138970,138970,8.87],[138971,138971,6.68],[138972,138972,8.87],[138973,138973,6.68],[138974,138974,8.87],[138975,138975,6.68],[138976,138976,8.87],[138977,138977,6.68],[138978,138978,8.87],[138979,138979,6.68],[138980,138980,8.05],[138981,138981,6.96],[138982,138982,8.05],[138983,138983,6.96],[138984,138984,8.32],[138985,138985,7.26],[138986,138986,8.32],[138987,138987,7.26],[138988,138988,8.32],[138989,138989,7.26],[138990,138990,8.32],[138991,138991,7.26],[138992,138992,8.32],[138993,138993,7.26],[138994,138994,6.77],[138995,138995,6.51],[138996,138996,6.77],[138997,138997,6.51],[138998,138998,6.77],[138999,138999,6.51],[139000,139000,6.77],[139001,139001,6.51],[139002,139002,10.3],[139003,139003,6.48],[139004,139004,5.57],[139005,139005,4.89],[139006,139007,5.04],[139008,139015,5.76],[139016,139017,7.94],[139018,139023,8.7],[139024,139029,4.62],[139030,139031,11],[139032,139033,8.23],[139034,139037,9.95],[139038,139039,11],[139040,139047,5.75],[139048,139049,9.45],[139050,139055,11.17],[139056,139063,2.96],[139064,139065,5.17],[139066,139071,6.89],[139072,139077,5.5],[139078,139079,11],[139080,139081,8.7],[139082,139083,10.96],[139084,139085,9.88],[139086,139087,11],[139088,139095,5.45],[139096,139096,11],[139097,139097,9.45],[139098,139098,11],[139099,139099,11.23],[139100,139100,11],[139101,139101,11.23],[139102,139102,11],[139103,139103,11.23],[139104,139111,7.24],[139112,139113,8.93],[139114,139115,10.97],[139116,139119,10.22],[139120,139121,6.85],[139122,139123,5.64],[139124,139125,6.96],[139126,139127,3.02],[139128,139129,6.68],[139130,139131,6.94],[139132,139133,8.95],[139134,139135,11],[139136,139143,5.76],[139144,139145,7.94],[139146,139151,8.7],[139152,139159,5.75],[139160,139161,9.45],[139162,139167,11.17],[139168,139175,7.24],[139176,139177,8.93],[139178,139179,10.97],[139180,139183,10.22],[139184,139188,5.76],[139189,139189,11],[139190,139191,5.76],[139192,139193,7.94],[139194,139195,7.52],[139196,139196,7.94],[139197,139197,3.66],[139198,139198,3.02],[139199,139201,3.66],[139202,139204,5.75],[139205,139205,11],[139206,139207,5.75],[139208,139208,6.96],[139209,139209,8.26],[139210,139210,8.27],[139211,139211,9.57],[139212,139212,7.94],[139213,139215,3.66],[139216,139217,2.96],[139218,139219,3.02],[139220,139221,11],[139222,139223,2.96],[139224,139225,3.66],[139226,139226,4.63],[139227,139227,5.94],[139228,139228,11],[139229,139231,3.66],[139232,139233,5.45],[139234,139235,6.94],[139236,139237,5.49],[139238,139239,5.45],[139240,139241,7.94],[139242,139242,6.77],[139243,139243,8.29],[139244,139244,7.63],[139245,139247,6.99],[139248,139249,11],[139250,139252,7.24],[139253,139253,11],[139254,139255,7.24],[139256,139256,8.66],[139257,139257,9.69],[139258,139258,9],[139259,139259,9.98],[139260,139260,8.17],[139261,139261,6.99],[139262,139262,3.66],[139263,139263,11],[139264,139264,5.5],[139265,139265,11],[139266,139266,5.5],[139267,139267,11],[139268,139268,3.67],[139269,139269,2.75],[139270,139270,1.83],[139271,139271,6.99],[139272,139272,4],[139273,139273,2.2],[139274,139274,0.69],[139275,139279,0],[139280,139281,6.36],[139282,139283,6.99],[139284,139285,11],[139286,139286,3.09],[139287,139287,6.99],[139288,139291,2.95],[139292,139295,5.05],[139296,139297,6.99],[139298,139298,6],[139299,139299,5.17],[139300,139300,3.67],[139301,139301,7.33],[139302,139302,9],[139303,139303,3.48],[139304,139310,0],[139311,139311,1.93],[139312,139312,16.74],[139313,139313,14.91],[139314,139314,3.97],[139315,139316,6.13],[139317,139317,3.58],[139318,139318,5.96],[139319,139319,8.35],[139320,139320,3.88],[139321,139322,5],[139323,139323,7.95],[139324,139324,6.87],[139325,139325,4.64],[139326,139326,6.99],[139327,139328,5.5],[139329,139329,5.11],[139330,139330,10.02],[139331,139331,3.58],[139332,139332,3.97],[139333,139334,3.58],[139335,139335,8.88],[139336,139337,7.77],[139338,139339,6.96],[139340,139340,5.96],[139341,139341,5.97],[139342,139342,5.3],[139343,139343,3.48],[139344,139344,5.5],[139345,139345,5.3],[139346,139346,6.06],[139347,139347,11],[139348,139348,5.5],[139349,139349,7.67],[139350,139350,6.53],[139351,139351,10.72],[139352,139353,6.53],[139354,139354,11],[139355,139355,6.53],[139356,139356,7.68],[139357,139357,11],[139358,139358,3.06],[139359,139359,2.44],[139360,139375,0],[139376,139376,4.64],[139377,139377,2.38],[139378,139379,11],[139380,139381,5.96],[139382,139382,4.64],[139383,139384,5.96],[139385,139388,4.64],[139389,139390,2.48],[139391,139391,6],[139392,139404,4.64],[139405,139406,2.48],[139407,139407,11],[139408,139408,3.01],[139409,139409,2.82],[139410,139410,3.17],[139411,139411,3.19],[139412,139412,2.82],[139413,139423,11],[139424,139424,6.99],[139425,139426,7.68],[139427,139428,6.99],[139429,139429,10.7],[139430,139430,8.23],[139431,139431,12.8],[139432,139432,12.83],[139433,139433,10.88],[139434,139434,9.18],[139435,139435,6.85],[139436,139436,6.99],[139437,139437,7.62],[139438,139438,6.78],[139439,139439,11],[139440,139440,5.73],[139441,139441,6.63],[139442,139442,8.53],[139443,139444,7.52],[139445,139445,7.68],[139446,139446,7.44],[139447,139447,8.03],[139448,139448,6.22],[139449,139449,6.6],[139450,139450,6.12],[139451,139451,9.14],[139452,139453,6.22],[139454,139454,8.28],[139455,139455,7.22],[139456,139471,11],[139472,139474,0],[139475,139475,6.6],[139476,139477,7.7],[139478,139480,0],[139481,139482,6.6],[139483,139485,0],[139486,139486,11],[139487,139487,9.51],[139488,139488,9.9],[139489,139489,0],[139490,139490,11],[139491,139504,0],[139505,139519,11],[139520,139521,8.25],[139522,139522,6.62],[139523,139523,10.88],[139524,139524,7.04],[139525,139525,11.84],[139526,139526,8.25],[139527,139527,6.58],[139528,139528,6.63],[139529,139529,9.31],[139530,139530,11],[139531,139531,10.97],[139532,139532,9.06],[139533,139533,6.62],[139534,139534,6.35],[139535,139535,6.76],[139536,139536,9.87],[139537,139537,8.38],[139538,139538,10.41],[139539,139539,3.56],[139540,139540,8.56],[139541,139541,6.62],[139542,139542,12.89],[139543,139543,9.41],[139544,139544,9.09],[139545,139546,6.62],[139547,139547,10.38],[139548,139548,9.61],[139549,139549,6.62],[139550,139550,6.96],[139551,139551,7.34],[139552,139552,12.41],[139553,139553,16.53],[139554,139554,10.74],[139555,139555,7.94],[139556,139556,6.62],[139557,139557,5.63],[139558,139558,9],[139559,139559,8.75],[139560,139560,7.99],[139561,139561,4.4],[139562,139562,7.62],[139563,139563,7.52],[139564,139564,10.45],[139565,139565,7.89],[139566,139566,7.9],[139567,139567,6.9],[139568,139568,8.25],[139569,139569,10.11],[139570,139570,7.3],[139571,139571,11.79],[139572,139572,7.67],[139573,139573,7.1],[139574,139574,6.19],[139575,139575,4.7],[139576,139576,5.51],[139577,139577,7.26],[139578,139578,10.27],[139579,139579,18.04],[139580,139580,7.4],[139581,139581,5.94],[139582,139582,5.16],[139583,139583,7.9],[139584,139584,10.15],[139585,139585,7.95],[139586,139587,5.87],[139588,139588,6.85],[139589,139589,7.84],[139590,139590,6.39],[139591,139591,5.66],[139592,139592,3.22],[139593,139593,3.75],[139594,139594,7.3],[139595,139595,7.67],[139596,139596,8.91],[139597,139597,9.7],[139598,139598,4.58],[139599,139602,11],[139603,139604,8.25],[139605,139610,8.81],[139611,139614,11],[139615,139615,4.18],[139616,139616,3.17],[139617,139617,6.49],[139618,139618,9.21],[139619,139619,9.95],[139620,139620,7.19],[139621,139621,10.1],[139622,139622,13.34],[139623,139623,16.06],[139624,139624,9.59],[139625,139625,6.89],[139626,139626,9.38],[139627,139627,12.62],[139628,139628,5.87],[139629,139629,7.61],[139630,139630,8.24],[139631,139631,9.47],[139632,139632,3.18],[139633,139633,6.36],[139634,139634,9.01],[139635,139635,8.57],[139636,139636,5.69],[139637,139637,8.6],[139638,139638,11.78],[139639,139639,14.43],[139640,139640,9.18],[139641,139641,6.75],[139642,139642,9.16],[139643,139643,12.34],[139644,139644,3.18],[139645,139645,5.63],[139646,139646,6.92],[139647,139647,10.27],[139648,139648,11.45],[139649,139649,8.24],[139650,139650,11.45],[139651,139651,7.61],[139652,139652,4.88],[139653,139653,7.17],[139654,139654,6.21],[139655,139664,11],[139665,139665,5.5],[139666,139666,11],[139667,139667,5.5],[139668,139668,11],[139669,139669,5.5],[139670,139675,11],[139676,139687,6.62],[139688,139688,5.5],[139689,139689,11],[139690,139690,10.87],[139691,139693,6.62],[139694,139694,11],[139695,139695,6.62],[139696,139698,9.51],[139699,139699,11],[139700,139700,9.51],[139701,139701,11],[139702,139703,9.51],[139704,139705,11],[139706,139707,6.62],[139708,139708,9.51],[139709,139711,6.62],[139712,139712,9.51],[139713,139715,6.62],[139716,139718,11],[139719,139722,6.62],[139723,139724,11],[139725,139725,9.68],[139726,139726,6.62],[139727,139727,9.56],[139728,139728,11],[139729,139729,9.51],[139730,139730,10.24],[139731,139731,9.51],[139732,139732,10.24],[139733,139741,6.62],[139742,139743,7.1],[139744,139744,11],[139745,139745,7.1],[139746,139746,11],[139747,139747,7.1],[139748,139754,11],[139755,139759,6.62],[139760,139760,9.51],[139761,139764,6.62],[139765,139765,11],[139766,139775,6.62],[139776,139776,6.93],[139777,139777,5.16],[139778,139778,6.99],[139779,139779,5.78],[139780,139780,5.88],[139781,139781,7.89],[139782,139782,8],[139783,139783,7.7],[139784,139784,6.34],[139785,139785,6.73],[139786,139786,5.6],[139787,139787,6.34],[139788,139788,6.48],[139789,139789,5.6],[139790,139790,5.74],[139791,139791,9],[139792,139792,8.75],[139793,139793,8],[139794,139794,9],[139795,139795,8.75],[139796,139796,6.58],[139797,139797,3.97],[139798,139798,8.75],[139799,139799,5.76],[139800,139800,3.9],[139801,139801,4],[139802,139802,9],[139803,139803,8.23],[139804,139804,7.97],[139805,139805,5.7],[139806,139806,11],[139807,139807,10.77],[139808,139808,6.57],[139809,139809,6.61],[139810,139810,6.66],[139811,139811,2.74],[139812,139812,5.2],[139813,139813,3.8],[139814,139814,5.78],[139815,139816,6.53],[139817,139817,7.94],[139818,139818,5.84],[139819,139819,6.99],[139820,139820,10.06],[139821,139821,12.36],[139822,139822,7.46],[139823,139823,10.16],[139824,139824,12.83],[139825,139825,6.58],[139826,139826,6.91],[139827,139827,6.57],[139828,139828,6.64],[139829,139829,6.57],[139830,139830,3.7],[139831,139831,6.33],[139832,139832,6.19],[139833,139833,6.33],[139834,139834,6.38],[139835,139835,6.16],[139836,139837,6.05],[139838,139838,5.97],[139839,139839,6.42],[139840,139840,4.29],[139841,139841,6.32],[139842,139842,6.38],[139843,139843,6.43],[139844,139844,7.38],[139845,139845,7.66],[139846,139846,6.92],[139847,139847,6.72],[139848,139848,9],[139849,139849,6.04],[139850,139850,6.64],[139851,139851,7.38],[139852,139852,5.97],[139853,139853,6.63],[139854,139854,6.57],[139855,139855,6.52],[139856,139856,6.16],[139857,139857,7.02],[139858,139859,6.96],[139860,139861,8.4],[139862,139862,6.36],[139863,139863,6.55],[139864,139864,6.48],[139865,139865,6.69],[139866,139866,6.81],[139867,139867,7.11],[139868,139868,7],[139869,139869,6.19],[139870,139870,6.32],[139871,139871,6.49],[139872,139873,9],[139874,139874,6.2],[139875,139875,6.52],[139876,139877,9],[139878,139878,6.32],[139879,139879,6.2],[139880,139880,6.84],[139881,139881,6.48],[139882,139882,8.07],[139883,139883,7.71],[139884,139884,3.94],[139885,139885,6.09],[139886,139887,6.2],[139888,139889,6.04],[139890,139890,6.2],[139891,139891,6.24],[139892,139892,6.41],[139893,139893,6.39],[139894,139895,6.66],[139896,139896,6.17],[139897,139897,6.34],[139898,139898,6.24],[139899,139899,6.36],[139900,139900,6.56],[139901,139901,6.36],[139902,139902,6.44],[139903,139903,6.4],[139904,139904,6.68],[139905,139905,6.36],[139906,139907,6.95],[139908,139908,7.08],[139909,139909,6.94],[139910,139911,7.29],[139912,139912,7.34],[139913,139913,7.14],[139914,139915,6.18],[139916,139917,6.4],[139918,139918,6.7],[139919,139920,7.19],[139921,139922,7.17],[139923,139924,6.72],[139925,139925,7.96],[139926,139926,8.2],[139927,139927,7.83],[139928,139928,7.94],[139929,139929,8.32],[139930,139930,8.09],[139931,139931,7.9],[139932,139932,8.37],[139933,139933,8.31],[139934,139934,8.62],[139935,139935,8.36],[139936,139936,8.06],[139937,139937,7.87],[139938,139941,8.26],[139942,139942,3.63],[139943,139943,3.67],[139944,139944,6.86],[139945,139945,8.02],[139946,139946,6.85],[139947,139947,8.31],[139948,139948,8.53],[139949,139949,8.56],[139950,139950,9.61],[139951,139951,9.2],[139952,139953,6.96],[139954,139955,8.15],[139956,139957,7.73],[139958,139959,8.08],[139960,139960,6.55],[139961,139961,7.51],[139962,139962,5.28],[139963,139964,7.66],[139965,139965,7.42],[139966,139966,8.16],[139967,139967,6.94],[139968,139969,7.38],[139970,139971,7.05],[139972,139972,4.19],[139973,139973,4.85],[139974,139974,4.93],[139975,139975,6.94],[139976,139976,8.5],[139977,139978,8.14],[139979,139980,7.96],[139981,139981,6.43],[139982,139983,6.98],[139984,139985,7.13],[139986,139987,6.26],[139988,139988,6.04],[139989,139989,6.75],[139990,139991,6.63],[139992,139993,10.65],[139994,139995,7.16],[139996,139997,7.11],[139998,139999,7.36],[140000,140000,7.33],[140001,140001,7.21],[140002,140002,7.55],[140003,140003,7.3],[140004,140004,7.38],[140005,140005,7.41],[140006,140006,7.44],[140007,140007,7.55],[140008,140008,7.91],[140009,140009,7.57],[140010,140010,8.23],[140011,140011,8.42],[140012,140012,8.49],[140013,140013,8.54],[140014,140014,4.52],[140015,140015,11],[140016,140016,10.12],[140017,140017,10.33],[140018,140018,7.15],[140019,140019,6.34],[140020,140020,5.6],[140021,140022,6.34],[140023,140023,5.6],[140024,140024,6.34],[140025,140025,6.95],[140026,140026,7.15],[140027,140027,6.34],[140028,140028,5.6],[140029,140029,6.34],[140030,140030,5.6],[140031,140031,5.78],[140032,140033,6.62],[140034,140034,6.6],[140035,140035,8.74],[140036,140036,6.62],[140037,140037,8.74],[140038,140038,7.3],[140039,140039,11],[140040,140047,6.62],[140048,140048,6.2],[140049,140049,6.62],[140050,140050,11],[140051,140051,6.62],[140052,140052,9.51],[140053,140053,6.62],[140054,140055,12.1],[140056,140056,11],[140057,140057,6.62],[140058,140059,11],[140060,140063,6.62],[140064,140065,6.64],[140066,140067,9.51],[140068,140068,8.74],[140069,140069,11],[140070,140070,13.35],[140071,140071,11],[140072,140072,6.62],[140073,140074,11],[140075,140075,13.35],[140076,140076,10.19],[140077,140077,10.85],[140078,140078,6.86],[140079,140081,6.04],[140082,140082,9.78],[140083,140084,6.04],[140085,140085,6.62],[140086,140086,10.19],[140087,140092,6.62],[140093,140093,11],[140094,140094,6.62],[140095,140096,7.51],[140097,140100,6.62],[140101,140102,6.6],[140103,140105,6.62],[140106,140106,6.6],[140107,140109,6.62],[140110,140111,6.6],[140112,140112,6.62],[140113,140113,6.6],[140114,140116,6.62],[140117,140118,6.6],[140119,140124,6.62],[140125,140125,6.6],[140126,140128,6.62],[140129,140130,6.6],[140131,140133,6.62],[140134,140135,6.6],[140136,140137,6.62],[140138,140138,6.6],[140139,140144,6.62],[140145,140146,6.6],[140147,140154,6.62],[140155,140155,7.36],[140156,140156,9.58],[140157,140157,3.48],[140158,140158,10.33],[140159,140159,4.08],[140160,140163,6.62],[140164,140164,8.63],[140165,140165,7.52],[140166,140166,7.42],[140167,140168,11],[140169,140170,6.62],[140171,140171,11],[140172,140172,8.88],[140173,140173,8.65],[140174,140174,8.22],[140175,140178,7.24],[140179,140179,10.04],[140180,140180,10.19],[140181,140181,6.62],[140182,140182,5.19],[140183,140184,8.67],[140185,140186,8.97],[140187,140205,11],[140206,140206,6.62],[140207,140207,3.46],[140208,140209,11],[140210,140211,16.37],[140212,140214,10.19],[140215,140215,7.07],[140216,140221,5.54],[140222,140236,11],[140237,140237,10.97],[140238,140238,11],[140239,140239,9.43],[140240,140240,5.62],[140241,140241,5.96],[140242,140243,5.97],[140244,140245,11.34],[140246,140246,10.54],[140247,140249,10.73],[140250,140257,11],[140258,140258,12.58],[140259,140259,10.01],[140260,140260,12.03],[140261,140261,11.2],[140262,140262,10.19],[140263,140263,8.78],[140264,140319,11],[140320,140320,6.6],[140321,140321,11],[140322,140322,6.6],[140323,140323,3.48],[140324,140324,6.6],[140325,140325,8.71],[140326,140326,4.44],[140327,140351,11],[140352,140357,6.64],[140358,140361,8.25],[140362,140362,6.64],[140363,140484,11],[140485,140485,9.41],[140486,140543,11],[140544,140544,7.79],[140545,140545,11],[140546,140546,7.79],[140547,140555,11],[140556,140556,7.79],[140557,140559,11],[140560,140560,7.79],[140561,140563,11],[140564,140564,7.79],[140565,140567,11],[140568,140568,7.79],[140569,140571,11],[140572,140572,7.79],[140573,140579,11],[140580,140580,7.79],[140581,140587,11],[140588,140588,7.79],[140589,140595,11],[140596,140596,7.79],[140597,140603,11],[140604,140604,7.79],[140605,140619,11],[140620,140623,6.62],[140624,140652,7.79],[140653,140660,11],[140661,140671,6.62],[140672,140672,7.79],[140673,140675,11],[140676,140676,7.79],[140677,140679,11],[140680,140680,7.79],[140681,140683,11],[140684,140684,7.79],[140685,140687,11],[140688,140690,7.79],[140691,140691,8.02],[140692,140693,11],[140694,140703,6.62],[140704,140705,6.64],[140706,140706,11],[140707,140713,9.51],[140714,140715,3.9],[140716,140716,11],[140717,140717,9.51],[140718,140720,6.62],[140721,140721,11],[140722,140722,10.89],[140723,140723,11],[140724,140724,6.06],[140725,140725,9.51],[140726,140726,9.68],[140727,140727,11],[140728,140729,5.83],[140730,140730,10.89],[140731,140731,6.62],[140732,140732,10.89],[140733,140733,11],[140734,140735,7.03],[140736,140736,11],[140737,140737,8.74],[140738,140738,6.62],[140739,140739,9.51],[140740,140740,10.89],[140741,140741,6.62],[140742,140742,7.95],[140743,140743,6.76],[140744,140744,9.51],[140745,140745,11],[140746,140746,9],[140747,140747,6.64],[140748,140748,6.54],[140749,140749,6.62],[140750,140750,11],[140751,140751,6.64],[140752,140755,11],[140756,140759,6.62],[140760,140761,6.64],[140762,140769,6.62],[140770,140773,11],[140774,140774,3.9],[140775,140782,6.62],[140783,140783,11],[140784,140794,6.62],[140795,140798,11],[140799,140799,6.62],[140800,140803,11],[140804,140804,6.62],[140805,140806,11],[140807,140808,6.62],[140809,140809,11],[140810,140813,6.62],[140814,140814,11],[140815,140815,9.51],[140816,140818,9.13],[140819,140819,6.62],[140820,140823,11],[140824,140827,6.62],[140828,140831,11],[140832,140846,6.62],[140847,140847,9.51],[140848,140855,9.9],[140856,140857,6.62],[140858,140858,11.23],[140859,140859,11.57],[140860,140860,10.08],[140861,140863,6.62],[140864,140864,8.25],[140865,140865,6.62],[140866,140866,8.25],[140867,140871,6.62],[140872,140883,11],[140884,140895,6.62],[140896,140896,5.84],[140897,140898,11],[140899,140899,7.22],[140900,140900,11],[140901,140901,6.53],[140902,140902,5.61],[140903,140905,11],[140906,140906,5.5],[140907,140907,8.25],[140908,140910,11],[140911,140911,5.5],[140912,140913,6.62],[140914,140925,11],[140926,140926,6.62],[140927,140927,11],[140928,140939,6.62],[140940,140940,9.67],[140941,140941,9.49],[140942,140942,9.45],[140943,140943,9.86],[140944,140946,6.62],[140947,140947,11],[140948,140956,6.62],[140957,140961,11],[140962,140962,9.81],[140963,140963,9.87],[140964,140964,9.71],[140965,140965,7.26],[140966,140966,8.15],[140967,140967,10.16],[140968,140968,5.86],[140969,140969,10.12],[140970,140971,11],[140972,140972,6.21],[140973,140973,8.54],[140974,140974,11.61],[140975,140975,12.3],[140976,140977,6.62],[140978,140978,6.63],[140979,141025,11],[141026,141026,7.7],[141027,141056,11],[141057,141057,10.72],[141058,141058,10.57],[141059,141059,10.72],[141060,141060,10.78],[141061,141061,11],[141062,141062,8.68],[141063,141063,8.69],[141064,141064,8.7],[141065,141065,7.59],[141066,141069,11],[141070,141070,8.66],[141071,141071,10.26],[141072,141072,10.02],[141073,141073,10.39],[141074,141074,10.72],[141075,141075,8.41],[141076,141076,9.31],[141077,141077,8.38],[141078,141078,8.37],[141079,141079,6.28],[141080,141080,7.44],[141081,141081,8.4],[141082,141082,8.36],[141083,141083,8.35],[141084,141084,8.29],[141085,141085,5.44],[141086,141086,6.07],[141087,141087,5.91],[141088,141088,6.35],[141089,141089,7.61],[141090,141090,8.65],[141091,141092,8.67],[141093,141093,8.69],[141094,141094,8.72],[141095,141095,8.73],[141096,141096,11],[141097,141097,9.06],[141098,141098,8.68],[141099,141099,9.25],[141100,141100,9.06],[141101,141101,9.16],[141102,141102,8.98],[141103,141103,9.14],[141104,141104,10.15],[141105,141105,8.19],[141106,141106,7.95],[141107,141107,8.24],[141108,141108,8.69],[141109,141109,8.71],[141110,141110,7.64],[141111,141111,8.53],[141112,141112,8.45],[141113,141113,8.71],[141114,141114,8.35],[141115,141115,7.78],[141116,141116,7.79],[141117,141117,7.5],[141118,141118,7.71],[141119,141119,9.09],[141120,141120,8.96],[141121,141122,8.68],[141123,141123,7.78],[141124,141124,7.56],[141125,141125,7.65],[141126,141126,7.58],[141127,141127,8.65],[141128,141128,8.66],[141129,141129,7.84],[141130,141130,8.7],[141131,141131,8.64],[141132,141132,11],[141133,141133,9.6],[141134,141134,11],[141135,141136,8.38],[141137,141138,8.35],[141139,141141,11],[141142,141142,8.63],[141143,141143,11],[141144,141144,3.18],[141145,141145,3.05],[141146,141146,4.57],[141147,141148,4.31],[141149,141150,7.35],[141151,141152,11],[141153,141153,8.05],[141154,141155,5.98],[141156,141156,10.01],[141157,141157,7.34],[141158,141159,8.36],[141160,141161,4.29],[141162,141163,3.49],[141164,141165,3.03],[141166,141167,5.6],[141168,141169,4.51],[141170,141171,2.57],[141172,141173,3.67],[141174,141203,8.67],[141204,141204,9.83],[141205,141207,11],[141208,141208,8.23],[141209,141209,10.16],[141210,141210,8.23],[141211,141211,10.1],[141212,141212,10.19],[141213,141214,10.21],[141215,141215,9.17],[141216,141216,9.6],[141217,141217,9.11],[141218,141219,10.16],[141220,141220,10.09],[141221,141221,10.23],[141222,141222,10.24],[141223,141223,5.09],[141224,141224,9.71],[141225,141226,9.2],[141227,141228,9.54],[141229,141230,7.65],[141231,141231,9.61],[141232,141232,11],[141233,141233,9.61],[141234,141234,8.36],[141235,141235,10.4],[141236,141236,8.48],[141237,141237,9.52],[141238,141238,8.48],[141239,141239,9.77],[141240,141240,10.63],[141241,141241,9.77],[141242,141242,9.14],[141243,141243,9.6],[141244,141244,10.19],[141245,141245,10.67],[141246,141246,10.1],[141247,141247,11],[141248,141248,6.03],[141249,141249,10.43],[141250,141250,7.58],[141251,141252,6.21],[141253,141254,6.62],[141255,141255,6.82],[141256,141257,10.1],[141258,141258,3.74],[141259,141259,9.22],[141260,141260,3.57],[141261,141261,9.22],[141262,141263,11],[141264,141264,8.21],[141265,141265,6.82],[141266,141266,6.57],[141267,141268,5.97],[141269,141270,9.93],[141271,141271,12.26],[141272,141273,7.58],[141274,141274,9.57],[141275,141275,9.42],[141276,141276,11.6],[141277,141278,9.33],[141279,141279,4.36],[141280,141280,6.06],[141281,141281,7.7],[141282,141283,9.64],[141284,141285,10.41],[141286,141287,4.64],[141288,141289,4.02],[141290,141291,5.1],[141292,141293,5.37],[141294,141295,2.56],[141296,141297,11.36],[141298,141299,10.71],[141300,141300,13.2],[141301,141311,17.31],[141312,141567,7.52],[141568,141575,10.19],[141576,141577,5.62],[141578,141583,10.19],[141584,141584,15.53],[141585,141585,10.19],[141586,141587,5.62],[141588,141619,10.19],[141620,141621,11],[141622,141623,9.51],[141624,141624,5.62],[141625,141625,9.51],[141626,141640,10.19],[141641,141641,5.62],[141642,141643,10.19],[141644,141645,5.62],[141646,141646,10.19],[141647,141647,5.62],[141648,141648,10.19],[141649,141649,5.62],[141650,141651,10.19],[141652,141653,5.62],[141654,141655,10.19],[141656,141657,5.62],[141658,141659,10.19],[141660,141661,5.62],[141662,141663,10.19],[141664,141665,5.62],[141666,141669,9.51],[141670,141677,10.19],[141678,141679,7.53],[141680,141685,10.19],[141686,141686,7.53],[141687,141687,10.19],[141688,141689,7.53],[141690,141690,10.19],[141691,141691,7.53],[141692,141693,10.19],[141694,141695,7.53],[141696,141696,4.01],[141697,141697,4.18],[141698,141698,3.45],[141699,141700,4.11],[141701,141702,4.92],[141703,141704,3.68],[141705,141706,4.35],[141707,141708,3.31],[141709,141712,3.3],[141713,141713,4.02],[141714,141714,4.04],[141715,141716,7.25],[141717,141718,7.65],[141719,141720,7.13],[141721,141721,2.48],[141722,141722,3.05],[141723,141723,6.53],[141724,141725,6.51],[141726,141726,7.27],[141727,141727,6.03],[141728,141729,6.53],[141730,141733,6.03],[141734,141735,8.28],[141736,141743,6.53],[141744,141748,7.73],[141749,141749,9.56],[141750,141750,7.7],[141751,141751,7.72],[141752,141752,7.94],[141753,141753,7.72],[141754,141754,7.73],[141755,141755,7.74],[141756,141761,7.72],[141762,141762,9.41],[141763,141763,9.61],[141764,141768,8.22],[141769,141769,8.75],[141770,141772,8.23],[141773,141773,10.38],[141774,141774,7.15],[141775,141776,8.34],[141777,141779,7.56],[141780,141781,7.17],[141782,141783,8.44],[141784,141785,3.05],[141786,141787,4.66],[141788,141788,7.01],[141789,141789,7.12],[141790,141790,7.01],[141791,141791,7.41],[141792,141792,8.22],[141793,141793,7.19],[141794,141794,7.51],[141795,141797,7.3],[141798,141798,7.81],[141799,141799,6.99],[141800,141801,8.23],[141802,141802,7.89],[141803,141803,5.2],[141804,141805,9.89],[141806,141807,6.57],[141808,141809,7.79],[141810,141811,7.72],[141812,141812,9],[141813,141813,6.58],[141814,141814,6.34],[141815,141817,5.59],[141818,141819,7.43],[141820,141821,5.91],[141822,141823,5.2],[141824,141825,9.89],[141826,141826,9.92],[141827,141828,5.99],[141829,141830,6.55],[141831,141832,8.43],[141833,141833,7.33],[141834,141834,9.41],[141835,141835,7.18],[141836,141836,16.56],[141837,141839,6.72],[141840,141840,5.49],[141841,141841,8.01],[141842,141842,5.71],[141843,141843,5.49],[141844,141844,6.91],[141845,141845,5.49],[141846,141846,6.72],[141847,141847,7.43],[141848,141850,6.72],[141851,141851,7.02],[141852,141852,6.79],[141853,141853,7.56],[141854,141854,4.35],[141855,141855,3.67],[141856,141856,8.92],[141857,141857,3.59],[141858,141859,5.95],[141860,141860,5.99],[141861,141861,5.95],[141862,141862,5.99],[141863,141863,7.12],[141864,141864,7.02],[141865,141866,5.99],[141867,141868,5.97],[141869,141870,8.37],[141871,141871,5.04],[141872,141872,5.82],[141873,141873,5.96],[141874,141874,5.74],[141875,141875,8.85],[141876,141877,7.86],[141878,141880,9.89],[141881,141883,8.23],[141884,141885,5.63],[141886,141886,3.67],[141887,141887,6.77],[141888,141893,5.99],[141894,141895,4.27],[141896,141897,5.96],[141898,141899,5.62],[141900,141901,8.13],[141902,141903,6.55],[141904,141904,8.13],[141905,141906,6.71],[141907,141908,7.17],[141909,141910,8.28],[141911,141912,7.17],[141913,141913,6.67],[141914,141915,7.17],[141916,141917,8.12],[141918,141920,6.71],[141921,141921,5.97],[141922,141923,6.71],[141924,141925,7.34],[141926,141929,5.96],[141930,141933,5.98],[141934,141934,5.33],[141935,141936,5.98],[141937,141938,5.97],[141939,141939,5.99],[141940,141940,9.33],[141941,141941,10.82],[141942,141942,16.03],[141943,141943,6],[141944,141944,6.55],[141945,141946,7.25],[141947,141948,5.63],[141949,141951,5.97],[141952,141952,5.98],[141953,141956,5.97],[141957,141958,5.98],[141959,141959,6.06],[141960,141960,6.27],[141961,141962,5.98],[141963,141964,5.97],[141965,141965,6.06],[141966,141966,6.03],[141967,141968,5.99],[141969,141975,5.97],[141976,141978,5.98],[141979,141980,5.97],[141981,141982,5.98],[141983,141983,6.07],[141984,141984,6],[141985,141986,7.51],[141987,141987,8.87],[141988,141988,5.99],[141989,141989,10.29],[141990,141993,6.75],[141994,141994,5.63],[141995,141995,5.76],[141996,141996,6.06],[141997,141997,6.11],[141998,141998,5.97],[141999,142001,6.08],[142002,142002,6.06],[142003,142006,6.08],[142007,142007,6.02],[142008,142008,6.03],[142009,142009,6.02],[142010,142010,6.03],[142011,142012,9.76],[142013,142014,6.21],[142015,142022,5.05],[142023,142026,6],[142027,142028,5.05],[142029,142030,10.48],[142031,142032,6.21],[142033,142034,6.2],[142035,142038,5.05],[142039,142040,9.35],[142041,142043,6.57],[142044,142044,6.71],[142045,142045,6.57],[142046,142046,4.32],[142047,142049,7.58],[142050,142050,7.55],[142051,142051,7.52],[142052,142052,7.55],[142053,142053,9.21],[142054,142054,7.54],[142055,142057,7.58],[142058,142059,7.62],[142060,142061,5.63],[142062,142062,3.44],[142063,142064,3.13],[142065,142065,3.29],[142066,142066,4.29],[142067,142067,5.98],[142068,142068,3.84],[142069,142069,5.26],[142070,142070,2.48],[142071,142072,10.68],[142073,142074,5.97],[142075,142075,5.48],[142076,142076,3.9],[142077,142077,4.52],[142078,142079,3.23],[142080,142083,6.62],[142084,142084,12.07],[142085,142087,11],[142088,142091,6.62],[142092,142092,12.07],[142093,142093,6.45],[142094,142097,6.6],[142098,142105,6.62],[142106,142108,11],[142109,142110,2.64],[142111,142114,10.01],[142115,142115,10.19],[142116,142116,13.28],[142117,142118,11],[142119,142120,5.98],[142121,142121,11],[142122,142123,3.93],[142124,142125,9.26],[142126,142127,6.56],[142128,142129,10.19],[142130,142130,13.2],[142131,142131,17.31],[142132,142134,10.19],[142135,142135,15.53],[142136,142148,10.19],[142149,142150,10.21],[142151,142156,10.19],[142157,142160,11],[142161,142161,8.73],[142162,142162,7.7],[142163,142164,9.51],[142165,142223,11],[142224,142225,13.57],[142226,142335,11],[142336,142336,8.99],[142337,142337,9.32],[142338,142338,11.69],[142339,142339,10.54],[142340,142340,11.78],[142341,142341,7.24],[142342,142342,11.69],[142343,142343,9.39],[142344,142344,11.21],[142345,142346,11.79],[142347,142347,5.73],[142348,142348,12.06],[142349,142349,4.89],[142350,142350,11.42],[142351,142351,9.2],[142352,142353,6.26],[142354,142354,8.46],[142355,142355,6.26],[142356,142356,8.84],[142357,142357,11.69],[142358,142358,9.39],[142359,142359,8.76],[142360,142360,9.4],[142361,142361,8.76],[142362,142362,9.51],[142363,142363,9],[142364,142364,9.24],[142365,142365,10],[142366,142366,9.43],[142367,142367,8.16],[142368,142368,7.69],[142369,142369,10.3],[142370,142370,8.56],[142371,142371,9.43],[142372,142372,8],[142373,142373,9.35],[142374,142374,9.46],[142375,142375,11.33],[142376,142376,11.44],[142377,142377,14.34],[142378,142378,10.2],[142379,142379,6.61],[142380,142380,4.27],[142381,142381,8.71],[142382,142382,10.88],[142383,142383,11],[142384,142384,7.78],[142385,142385,8],[142386,142386,10.12],[142387,142387,8.78],[142388,142388,9.86],[142389,142389,5.59],[142390,142390,10.12],[142391,142391,7.57],[142392,142392,9.17],[142393,142394,10.05],[142395,142395,5.2],[142396,142396,10.11],[142397,142397,4.37],[142398,142398,9.58],[142399,142399,7.95],[142400,142400,5.42],[142401,142401,5.57],[142402,142402,7.29],[142403,142403,5.35],[142404,142404,7.06],[142405,142405,10.12],[142406,142406,8.12],[142407,142407,8.17],[142408,142408,7.69],[142409,142409,6.85],[142410,142410,7.72],[142411,142411,7.78],[142412,142412,7.36],[142413,142413,7.68],[142414,142414,8.21],[142415,142415,7.03],[142416,142416,6.74],[142417,142417,7.94],[142418,142418,6.64],[142419,142419,8.21],[142420,142420,6.2],[142421,142421,7.3],[142422,142422,7.94],[142423,142423,8.62],[142424,142424,9.38],[142425,142425,11.42],[142426,142426,8.77],[142427,142427,5.31],[142428,142428,3.43],[142429,142429,7.08],[142430,142430,8.48],[142431,142431,11],[142432,142432,6.72],[142433,142433,3.06],[142434,142434,6.72],[142435,142435,6.12],[142436,142436,7.34],[142437,142437,4.88],[142438,142438,3.06],[142439,142439,7.94],[142440,142440,5.5],[142441,142441,7.94],[142442,142442,5.5],[142443,142443,6.72],[142444,142444,4.88],[142445,142445,8.45],[142446,142447,6.62],[142448,142448,9.88],[142449,142449,7.11],[142450,142450,11.62],[142451,142451,9.63],[142452,142452,5.19],[142453,142453,7.25],[142454,142454,5.55],[142455,142455,6.35],[142456,142456,7.58],[142457,142458,6.62],[142459,142459,4.48],[142460,142461,6.62],[142462,142462,6.45],[142463,142463,6.6],[142464,142464,6.96],[142465,142465,6.31],[142466,142466,7.15],[142467,142467,6.34],[142468,142468,5.76],[142469,142469,4.76],[142470,142470,8.95],[142471,142471,7.24],[142472,142472,7.07],[142473,142473,5.44],[142474,142474,6.12],[142475,142475,5.27],[142476,142476,6.29],[142477,142477,4.99],[142478,142478,8.15],[142479,142479,7.01],[142480,142480,8.6],[142481,142481,6.65],[142482,142482,3.12],[142483,142483,2.84],[142484,142484,6.81],[142485,142485,5.87],[142486,142486,6.39],[142487,142487,5.14],[142488,142488,8.8],[142489,142489,8.21],[142490,142490,8.36],[142491,142491,6.95],[142492,142492,6.29],[142493,142493,5.17],[142494,142494,8.59],[142495,142495,6.65],[142496,142496,8.04],[142497,142497,6.86],[142498,142498,6.65],[142499,142499,5.83],[142500,142500,6.95],[142501,142501,5.28],[142502,142502,6.71],[142503,142503,6.24],[142504,142504,6.23],[142505,142505,5.59],[142506,142506,8.84],[142507,142507,7.97],[142508,142508,6.45],[142509,142509,5.82],[142510,142510,9.17],[142511,142511,7.7],[142512,142512,11.35],[142513,142513,8.98],[142514,142514,7.12],[142515,142515,5.57],[142516,142516,6.09],[142517,142517,6.29],[142518,142518,6.93],[142519,142519,6.07],[142520,142520,6.29],[142521,142521,5.17],[142522,142522,7.12],[142523,142523,5.57],[142524,142524,8.67],[142525,142525,7.77],[142526,142526,8.98],[142527,142527,8.19],[142528,142528,7.14],[142529,142529,5.92],[142530,142530,11.35],[142531,142531,8.98],[142532,142532,6.42],[142533,142533,5.48],[142534,142534,4.85],[142535,142535,4.18],[142536,142536,6.04],[142537,142537,5.77],[142538,142539,6.29],[142540,142540,6.47],[142541,142541,5.61],[142542,142542,6.79],[142543,142543,6.05],[142544,142544,5.76],[142545,142545,4.78],[142546,142547,6.29],[142548,142548,3.93],[142549,142549,4.06],[142550,142550,6.59],[142551,142551,5.69],[142552,142552,8.04],[142553,142553,6.86],[142554,142554,8.95],[142555,142555,7.24],[142556,142557,6.64],[142558,142558,6.12],[142559,142559,5.17],[142560,142560,9.06],[142561,142561,8.01],[142562,142562,7.24],[142563,142563,6.43],[142564,142564,5.87],[142565,142565,8.24],[142566,142566,8.01],[142567,142567,9.58],[142568,142569,7.62],[142570,142570,11.49],[142571,142571,9],[142572,142572,6.51],[142573,142573,8.36],[142574,142574,7.27],[142575,142577,0],[142578,142578,8.03],[142579,142579,6.76],[142580,142584,11],[142585,142585,9.2],[142586,142587,6.09],[142588,142588,9.2],[142589,142589,3.81],[142590,142590,4.69],[142591,142591,3.3],[142592,142639,11],[142640,142640,4.55],[142641,142641,9.42],[142642,142642,9.43],[142643,142644,7.47],[142645,142645,7.03],[142646,142646,6.65],[142647,142648,6.94],[142649,142650,7.12],[142651,142651,7.7],[142652,142652,8.73],[142653,142653,7.96],[142654,142654,5.48],[142655,142655,7.96],[142656,142657,9.43],[142658,142658,3.13],[142659,142659,7.03],[142660,142660,7.97],[142661,142661,7.03],[142662,142662,7.69],[142663,142663,8.01],[142664,142664,8.16],[142665,142665,5.25],[142666,142666,5.62],[142667,142667,6.9],[142668,142668,8.62],[142669,142669,5.9],[142670,142670,7.12],[142671,142671,3.11],[142672,142672,8.41],[142673,142673,3],[142674,142674,6.06],[142675,142675,4.55],[142676,142677,9.43],[142678,142678,7.97],[142679,142679,3.21],[142680,142680,7.81],[142681,142682,9.43],[142683,142683,8.32],[142684,142684,5.71],[142685,142685,7.03],[142686,142686,8.32],[142687,142687,7.12],[142688,142688,7.38],[142689,142689,7.75],[142690,142690,5.25],[142691,142691,9.2],[142692,142692,4.99],[142693,142693,9.2],[142694,142694,7.16],[142695,142695,8.48],[142696,142702,11],[142703,142703,3.39],[142704,142704,8.46],[142705,142718,11],[142719,142719,0],[142720,142720,13.71],[142721,142721,11.96],[142722,142722,11.68],[142723,142723,9.72],[142724,142724,10.23],[142725,142725,10.02],[142726,142726,8.53],[142727,142728,8.7],[142729,142729,10.16],[142730,142730,8.91],[142731,142731,10.11],[142732,142732,11.04],[142733,142733,10.88],[142734,142734,10.89],[142735,142735,15],[142736,142736,17.58],[142737,142737,9],[142738,142738,9.58],[142739,142739,11.77],[142740,142740,11.18],[142741,142741,8.1],[142742,142742,11.18],[142743,142751,11],[142752,142752,10.23],[142753,142753,12.02],[142754,142754,11.93],[142755,142755,10.23],[142756,142756,11.86],[142757,142758,10.23],[142759,142759,11],[142760,142762,8.53],[142763,142763,8.6],[142764,142764,8.53],[142765,142765,10.04],[142766,142766,8.7],[142767,142767,11],[142768,142772,12.4],[142773,142773,13.66],[142774,142774,12.4],[142775,142775,11],[142776,142776,17.07],[142777,142777,17.29],[142778,142778,17.25],[142779,142779,17.12],[142780,142780,20.36],[142781,142781,16.67],[142782,142782,16.88],[142783,142783,11],[142784,142790,9.36],[142791,142791,11],[142792,142792,7.92],[142793,142793,10.17],[142794,142794,10.14],[142795,142795,7.92],[142796,142796,10.08],[142797,142798,7.92],[142799,142799,11],[142800,142800,9.84],[142801,142801,12.09],[142802,142802,12.06],[142803,142803,9.84],[142804,142804,11.99],[142805,142806,9.84],[142807,142807,11],[142808,142808,6.42],[142809,142809,9.17],[142810,142810,6.67],[142811,142811,7.01],[142812,142812,6.61],[142813,142813,8.84],[142814,142814,6.42],[142815,142815,11],[142816,142847,0],[142848,142848,2.62],[142849,142849,2.67],[142850,142851,1.9],[142852,142852,2.24],[142853,142853,2.22],[142854,142854,4.17],[142855,142855,4.21],[142856,142856,3.35],[142857,142858,3.26],[142859,142859,3.89],[142860,142861,2.57],[142862,142862,11.06],[142863,142863,13.26],[142864,142865,12.84],[142866,142866,1.72],[142867,142867,6.06],[142868,142869,7.74],[142870,142870,6.63],[142871,142871,3.66],[142872,142872,6.62],[142873,142873,11],[142874,142874,4.17],[142875,142875,7.33],[142876,142877,2.57],[142878,142879,7.33],[142880,142881,4.71],[142882,142885,4.91],[142886,142887,7.4],[142888,142889,6.94],[142890,142892,7.61],[142893,142893,7.33],[142894,142894,6.62],[142895,142895,2.58],[142896,142896,3.75],[142897,142897,3.08],[142898,142911,11],[142912,142912,5.5],[142913,143405,11],[143406,143407,17.6],[143408,143422,11],[143423,143423,5.5],[143424,143512,11],[143513,143514,0],[143515,143664,11],[143665,143715,9.51],[143716,143716,9.31],[143717,143758,9.51],[143759,143871,11],[143872,143899,9.51],[143900,143900,9.36],[143901,143967,11],[143968,143995,9.51],[143996,143998,11],[143999,143999,9.31],[144000,144255,11],[144256,144260,9.51],[144261,144265,11],[144266,144268,9.51],[144269,144272,11],[144273,144277,9.51],[144278,144280,11],[144281,144282,9.51],[144283,144294,11],[144295,144303,9.51],[144304,144307,11],[144308,144321,9.51],[144322,144322,11],[144323,144323,9.51],[144324,144324,11],[144325,144326,9.51],[144327,144327,9.31],[144328,144328,11],[144329,144330,9.51],[144331,144334,11],[144335,144336,9.51],[144337,144338,11],[144339,144339,9.51],[144340,144341,11],[144342,144342,9.51],[144343,144346,11],[144347,144349,9.51],[144350,150975,11],[150976,151039,9.67],[151040,172031,11],[172032,172034,6.79],[172035,172035,7.05],[172036,172036,6.76],[172037,172038,6.25],[172039,172039,6.93],[172040,172040,5.77],[172041,172042,5.97],[172043,172043,6.18],[172044,172045,6.52],[172046,172046,6.3],[172047,172047,6.4],[172048,172050,7.53],[172051,172051,6.48],[172052,172052,6.36],[172053,172053,7.01],[172054,172054,6.89],[172055,172057,5.85],[172058,172058,7.42],[172059,172060,6.42],[172061,172061,6.9],[172062,172062,5.65],[172063,172064,7.01],[172065,172065,6.65],[172066,172067,6.41],[172068,172068,4.94],[172069,172069,6.61],[172070,172071,5.72],[172072,172072,5.7],[172073,172074,6.73],[172075,172075,4.94],[172076,172076,6.29],[172077,172078,5.76],[172079,172079,5.44],[172080,172081,6.67],[172082,172082,6.02],[172083,172084,5.93],[172085,172085,6.62],[172086,172087,7.75],[172088,172088,6.68],[172089,172090,6.84],[172091,172091,6.29],[172092,172093,7.34],[172094,172094,6.73],[172095,172095,6.52],[172096,172097,6.74],[172098,172098,6.85],[172099,172100,6.3],[172101,172101,6.48],[172102,172102,6.82],[172103,172104,7.03],[172105,172105,6.19],[172106,172106,5.51],[172107,172108,6.38],[172109,172109,6.57],[172110,172111,6.85],[172112,172112,6.68],[172113,172114,7.07],[172115,172115,6.72],[172116,172117,6.79],[172118,172118,6.73],[172119,172120,6.4],[172121,172121,6.51],[172122,172122,6.9],[172123,172124,6.28],[172125,172125,6.75],[172126,172126,6.92],[172127,172128,8.81],[172129,172129,7.01],[172130,172131,6.31],[172132,172132,6.68],[172133,172133,6.7],[172134,172135,5.53],[172136,172136,6.73],[172137,172138,6.34],[172139,172139,6.69],[172140,172140,6.78],[172141,172142,6.5],[172143,172143,6.09],[172144,172145,6.34],[172146,172146,6.14],[172147,172148,5.83],[172149,172149,5.61],[172150,172150,6.43],[172151,172152,6.25],[172153,172153,6.08],[172154,172155,6.48],[172156,172156,5.8],[172157,172157,7.29],[172158,172159,5.99],[172160,172160,7.38],[172161,172161,6.63],[172162,172164,7.01],[172165,172165,6.17],[172166,172167,6.68],[172168,172168,6.19],[172169,172170,7.8],[172171,172171,6.45],[172172,172173,6.74],[172174,172174,6.27],[172175,172176,6.2],[172177,172177,5.61],[172178,172179,6.16],[172180,172180,6.51],[172181,172181,7.03],[172182,172182,6.81],[172183,172183,5.57],[172184,172184,6.63],[172185,172186,6.54],[172187,172187,6.34],[172188,172189,6.46],[172190,172190,5.87],[172191,172191,6.68],[172192,172193,6.42],[172194,172194,6.12],[172195,172195,6.04],[172196,172197,5.96],[172198,172198,6.51],[172199,172200,7.03],[172201,172202,5.72],[172203,172203,5.87],[172204,172205,6.73],[172206,172206,6.51],[172207,172208,5.95],[172209,172209,5.7],[172210,172211,6.51],[172212,172212,5.99],[172213,172213,6.96],[172214,172215,6.58],[172216,172216,7.01],[172217,172217,6.15],[172218,172219,6.26],[172220,172220,7.53],[172221,172221,6.68],[172222,172223,6.16],[172224,172224,6.41],[172225,172226,6.6],[172227,172227,6.35],[172228,172229,7.19],[172230,172230,6.4],[172231,172232,5.8],[172233,172233,5.85],[172234,172235,7.03],[172236,172236,5.8],[172237,172237,6.09],[172238,172239,6.12],[172240,172240,5.76],[172241,172241,7.24],[172242,172244,6.17],[172245,172246,5.81],[172247,172247,5.9],[172248,172248,5.3],[172249,172250,6.84],[172251,172251,6.69],[172252,172253,6.02],[172254,172254,6.16],[172255,172258,6.69],[172259,172260,5.94],[172261,172261,6.02],[172262,172262,5.93],[172263,172264,5.53],[172265,172265,5.66],[172266,172268,6.51],[172269,172269,5.66],[172270,172270,6.23],[172271,172272,6.13],[172273,172273,6.98],[172274,172275,5.96],[172276,172276,6.35],[172277,172278,5.7],[172279,172279,5.94],[172280,172281,6.12],[172282,172282,6.16],[172283,172284,7.03],[172285,172285,6.16],[172286,172287,6.86],[172288,172288,7.41],[172289,172290,6.09],[172291,172291,6.79],[172292,172293,6.28],[172294,172294,6.23],[172295,172295,6.89],[172296,172297,5.73],[172298,172298,6.73],[172299,172300,5.9],[172301,172301,6.25],[172302,172303,6.21],[172304,172304,5.61],[172305,172306,5.48],[172307,172307,5.91],[172308,172308,5.39],[172309,172310,5.59],[172311,172311,6.08],[172312,172313,5.53],[172314,172314,5.61],[172315,172316,5.42],[172317,172317,5.59],[172318,172319,6.29],[172320,172320,6.26],[172321,172321,5.48],[172322,172323,5.91],[172324,172324,5.48],[172325,172325,6.15],[172326,172327,5.3],[172328,172328,6.54],[172329,172329,5.61],[172330,172331,5.87],[172332,172332,5.92],[172333,172334,6.19],[172335,172335,5.91],[172336,172336,6.49],[172337,172338,6.51],[172339,172339,6.46],[172340,172341,6.76],[172342,172342,5.91],[172343,172344,5.73],[172345,172348,5.91],[172349,172349,6.19],[172350,172352,5.91],[172353,172354,6.15],[172355,172355,6.06],[172356,172356,5.72],[172357,172358,5.58],[172359,172359,5.83],[172360,172361,5.7],[172362,172362,6.68],[172363,172363,6.32],[172364,172365,7.03],[172366,172366,6.46],[172367,172368,6.74],[172369,172369,5.91],[172370,172371,5.35],[172372,172372,6.09],[172373,172374,6.3],[172375,172375,6.19],[172376,172377,6.16],[172378,172378,7.11],[172379,172379,6.08],[172380,172382,6.16],[172383,172384,6.68],[172385,172385,6.57],[172386,172386,5.61],[172387,172388,5.84],[172389,172389,6.4],[172390,172391,6.08],[172392,172392,5.43],[172393,172394,5.32],[172395,172395,6.16],[172396,172396,5.95],[172397,172398,6.69],[172399,172399,6.2],[172400,172400,5.52],[172401,172402,6.45],[172403,172403,5.87],[172404,172405,7.33],[172406,172406,6.34],[172407,172408,5.74],[172409,172410,5.91],[172411,172411,6.28],[172412,172412,6.39],[172413,172413,6.51],[172414,172415,6.74],[172416,172416,6.68],[172417,172418,6.53],[172419,172419,6.05],[172420,172421,6.15],[172422,172422,6.04],[172423,172424,5.92],[172425,172425,6.3],[172426,172426,6.2],[172427,172428,6.26],[172429,172429,6.2],[172430,172431,5.76],[172432,172432,5.72],[172433,172433,6.02],[172434,172436,6.34],[172437,172438,5.96],[172439,172441,6.16],[172442,172442,5.93],[172443,172444,6.16],[172445,172445,6.4],[172446,172446,6.84],[172447,172448,6.7],[172449,172449,6.29],[172450,172451,6.1],[172452,172452,6.28],[172453,172454,5.9],[172455,172455,6.28],[172456,172458,5.72],[172459,172459,6.21],[172460,172461,5.5],[172462,172462,5.96],[172463,172464,6.02],[172465,172465,6.53],[172466,172467,6.6],[172468,172468,6.38],[172469,172470,6.34],[172471,172471,5.91],[172472,172473,5.09],[172474,172474,6.51],[172475,172475,5.39],[172476,172477,5.37],[172478,172478,5.36],[172479,172479,6.88],[172480,172481,5.64],[172482,172482,6.15],[172483,172485,5.84],[172486,172486,6.6],[172487,172487,6.59],[172488,172489,6.25],[172490,172490,6.09],[172491,172492,5.51],[172493,172493,7.01],[172494,172494,6.51],[172495,172496,7.01],[172497,172497,6.16],[172498,172499,5.62],[172500,172500,6.6],[172501,172502,6.17],[172503,172503,5.91],[172504,172505,5.49],[172506,172506,6.56],[172507,172508,6.41],[172509,172510,5.72],[172511,172512,6.59],[172513,172513,5.72],[172514,172514,6.18],[172515,172516,6.01],[172517,172517,6.51],[172518,172518,6.88],[172519,172520,7.07],[172521,172521,6.51],[172522,172522,7.19],[172523,172524,6.13],[172525,172525,5.8],[172526,172526,5.85],[172527,172528,5.61],[172529,172529,5.43],[172530,172530,6.89],[172531,172532,6.74],[172533,172533,6.51],[172534,172535,6.15],[172536,172536,6.27],[172537,172538,6.09],[172539,172539,5.46],[172540,172541,5.91],[172542,172542,6.2],[172543,172543,6.39],[172544,172545,5.84],[172546,172546,5.85],[172547,172548,5.96],[172549,172549,6.36],[172550,172550,5.8],[172551,172552,5.53],[172553,172553,6.01],[172554,172554,6.78],[172555,172556,4.99],[172557,172557,7.03],[172558,172558,6.6],[172559,172560,6.31],[172561,172561,5.92],[172562,172563,5.58],[172564,172564,6.51],[172565,172566,5.91],[172567,172568,6.57],[172569,172569,6.23],[172570,172570,6.28],[172571,172572,6.07],[172573,172573,5.77],[172574,172574,6.02],[172575,172576,6.89],[172577,172577,6.4],[172578,172578,5.82],[172579,172580,5.14],[172581,172581,5.04],[172582,172582,5.96],[172583,172584,6.52],[172585,172585,7.4],[172586,172586,6.63],[172587,172589,5.82],[172590,172591,6.08],[172592,172593,6.58],[172594,172594,5.93],[172595,172596,6.7],[172597,172597,5.93],[172598,172599,6.08],[172600,172601,5.95],[172602,172603,6.43],[172604,172604,6.34],[172605,172606,5.68],[172607,172607,6.02],[172608,172608,6.92],[172609,172610,5.25],[172611,172611,6.3],[172612,172613,6.74],[172614,172614,6.15],[172615,172616,6.2],[172617,172617,6.04],[172618,172618,5.58],[172619,172620,6.14],[172621,172621,6.69],[172622,172622,6.46],[172623,172624,5.86],[172625,172625,6.18],[172626,172626,6.65],[172627,172628,6.27],[172629,172629,6.65],[172630,172630,5.48],[172631,172632,5.76],[172633,172633,6.2],[172634,172635,6.08],[172636,172636,6.09],[172637,172638,6.15],[172639,172639,5.76],[172640,172640,6.7],[172641,172642,5.91],[172643,172643,6.47],[172644,172644,6.51],[172645,172646,5.74],[172647,172647,5.26],[172648,172649,6.19],[172650,172650,7.11],[172651,172652,5.7],[172653,172653,6.72],[172654,172656,5.77],[172657,172657,6.64],[172658,172660,6.78],[172661,172661,5.97],[172662,172663,6.08],[172664,172664,6.38],[172665,172665,5.79],[172666,172667,6.51],[172668,172668,6.24],[172669,172670,6.48],[172671,172671,6.73],[172672,172672,6.82],[172673,172675,6.13],[172676,172677,6.05],[172678,172678,6.38],[172679,172680,5.69],[172681,172681,5.37],[172682,172683,6.03],[172684,172684,6.34],[172685,172685,6.27],[172686,172687,6.79],[172688,172688,6.17],[172689,172690,6.26],[172691,172691,6.1],[172692,172694,6.01],[172695,172695,6.79],[172696,172697,6.19],[172698,172698,6.64],[172699,172699,6.36],[172700,172701,6.58],[172702,172702,6.19],[172703,172704,6.28],[172705,172705,5.77],[172706,172706,6.08],[172707,172708,5.26],[172709,172709,6.01],[172710,172711,7.15],[172712,172712,5.69],[172713,172714,5.95],[172715,172715,5.27],[172716,172717,6.04],[172718,172718,5.7],[172719,172720,5.32],[172721,172721,5.46],[172722,172722,6.54],[172723,172724,6.08],[172725,172725,6.09],[172726,172728,6.51],[172729,172729,7.42],[172730,172731,5.61],[172732,172732,6.26],[172733,172733,6.98],[172734,172735,6.93],[172736,172736,6.24],[172737,172738,6.51],[172739,172739,7.01],[172740,172740,6.56],[172741,172742,6.96],[172743,172743,6.21],[172744,172745,6.47],[172746,172746,5.38],[172747,172748,6.41],[172749,172749,5.61],[172750,172751,5.64],[172752,172752,6.28],[172753,172754,6.68],[172755,172755,5.85],[172756,172756,5.7],[172757,172758,6.08],[172759,172759,6.13],[172760,172760,6.47],[172761,172762,6.35],[172763,172763,6.47],[172764,172765,6.4],[172766,172766,5.95],[172767,172768,6.41],[172769,172769,6.32],[172770,172771,6.08],[172772,172772,6.04],[172773,172774,5.6],[172775,172775,6.64],[172776,172777,5.66],[172778,172778,5.91],[172779,172780,6.59],[172781,172781,6.23],[172782,172783,5.96],[172784,172784,5.82],[172785,172787,7.09],[172788,172790,5.96],[172791,172791,5.84],[172792,172793,6.57],[172794,172795,6.19],[172796,172797,5.05],[172798,172799,6.57],[172800,172800,6.31],[172801,172802,6.74],[172803,172803,6.23],[172804,172805,5.25],[172806,172806,6.51],[172807,172808,6.74],[172809,172809,6.59],[172810,172811,6.57],[172812,172812,5.77],[172813,172814,6.96],[172815,172815,6.69],[172816,172816,5.72],[172817,172818,5.57],[172819,172819,6.06],[172820,172822,5.25],[172823,172823,6.01],[172824,172825,5.64],[172826,172826,6.01],[172827,172828,6.28],[172829,172829,5.74],[172830,172830,6.58],[172831,172832,5.65],[172833,172833,6.19],[172834,172835,6.07],[172836,172838,6.3],[172839,172839,5.96],[172840,172841,6.3],[172842,172842,5.49],[172843,172844,5.51],[172845,172845,5.75],[172846,172847,6.16],[172848,172848,5.91],[172849,172849,7.01],[172850,172852,6.08],[172853,172853,5.98],[172854,172855,6.51],[172856,172856,7.2],[172857,172858,5.61],[172859,172859,6.51],[172860,172860,5.96],[172861,172862,6.04],[172863,172863,6.91],[172864,172864,7.14],[172865,172866,6.05],[172867,172867,6.14],[172868,172869,6.73],[172870,172870,6.41],[172871,172872,6.34],[172873,172873,5.59],[172874,172875,5.96],[172876,172876,5.85],[172877,172877,7.34],[172878,172879,6.96],[172880,172880,6.28],[172881,172883,5.72],[172884,172884,6.74],[172885,172885,7.27],[172886,172887,7.05],[172888,172888,6.67],[172889,172890,6.35],[172891,172891,6.07],[172892,172893,6.16],[172894,172894,5.7],[172895,172896,6.15],[172897,172897,5.87],[172898,172899,6.56],[172900,172900,6.16],[172901,172901,6.34],[172902,172903,5.92],[172904,172904,6.53],[172905,172905,6.2],[172906,172907,5.53],[172908,172908,5.77],[172909,172911,6.25],[172912,172912,5.91],[172913,172914,7.75],[172915,172915,6.41],[172916,172917,6.31],[172918,172918,6.14],[172919,172920,6.29],[172921,172921,5.87],[172922,172923,6.14],[172924,172925,6.19],[172926,172927,5.85],[172928,172928,6.46],[172929,172930,6.09],[172931,172931,6.41],[172932,172932,5.74],[172933,172934,5.59],[172935,172935,6.16],[172936,172936,5.84],[172937,172938,6.41],[172939,172939,6.96],[172940,172941,5.83],[172942,172942,6.23],[172943,172944,5.83],[172945,172945,5.65],[172946,172947,6.08],[172948,172948,6.51],[172949,172950,6.42],[172951,172951,5.7],[172952,172954,6.41],[172955,172955,5.59],[172956,172957,6.25],[172958,172958,6.68],[172959,172959,6.16],[172960,172961,6.19],[172962,172962,6.69],[172963,172964,6.29],[172965,172965,5.88],[172966,172967,6.23],[172968,172968,5.91],[172969,172970,6.57],[172971,172971,5.84],[172972,172973,6.25],[172974,172974,6.85],[172975,172976,5.53],[172977,172977,5.5],[172978,172978,6.39],[172979,172980,6.57],[172981,172981,6.71],[172982,172982,6.6],[172983,172985,5.74],[172986,172986,5.71],[172987,172988,6.36],[172989,172989,6.08],[172990,172991,5.96],[172992,172992,5.91],[172993,172994,5.27],[172995,172995,6.69],[172996,172997,5.53],[172998,172998,6.51],[172999,173000,7.16],[173001,173001,6.02],[173002,173003,6.42],[173004,173004,5.55],[173005,173005,6.32],[173006,173006,6.19],[173007,173007,6.32],[173008,173008,6.7],[173009,173010,6.14],[173011,173011,6.75],[173012,173012,5.53],[173013,173014,5.91],[173015,173015,5.87],[173016,173017,5.53],[173018,173018,7.71],[173019,173020,5.85],[173021,173021,6.35],[173022,173023,5.59],[173024,173024,6.17],[173025,173026,5.91],[173027,173027,6.23],[173028,173028,6.04],[173029,173030,6.68],[173031,173031,6.1],[173032,173032,5.95],[173033,173035,6.57],[173036,173038,7.01],[173039,173039,6.57],[173040,173040,6.51],[173041,173042,5.41],[173043,173043,6.17],[173044,173045,6.74],[173046,173046,6.35],[173047,173048,6.28],[173049,173049,5.48],[173050,173051,6.2],[173052,173052,6.58],[173053,173054,6.27],[173055,173055,6.51],[173056,173056,8.51],[173057,173058,6.68],[173059,173059,6.95],[173060,173060,5.85],[173061,173063,6.15],[173064,173064,5.8],[173065,173066,7.42],[173067,173067,6.51],[173068,173068,6.23],[173069,173070,6.51],[173071,173071,5.7],[173072,173073,6.51],[173074,173074,6.03],[173075,173077,6.69],[173078,173079,6.09],[173080,173080,6.16],[173081,173082,5.64],[173083,173083,6.15],[173084,173084,6.3],[173085,173086,6.2],[173087,173087,6.79],[173088,173089,6.01],[173090,173090,7.19],[173091,173091,6.45],[173092,173093,6.16],[173094,173094,6.01],[173095,173095,6.4],[173096,173097,7.26],[173098,173098,6.29],[173099,173100,6.17],[173101,173101,5.91],[173102,173103,6.81],[173104,173104,5.95],[173105,173105,5.83],[173106,173107,6.3],[173108,173108,6.6],[173109,173109,7.01],[173110,173111,6.82],[173112,173112,6.08],[173113,173114,7.01],[173115,173115,6.61],[173116,173117,7.25],[173118,173118,6.19],[173119,173120,5.54],[173121,173121,5.5],[173122,173123,6.35],[173124,173124,5.95],[173125,173126,5.69],[173127,173127,5.61],[173128,173129,6.14],[173130,173130,6.28],[173131,173132,5.32],[173133,173133,5.25],[173134,173134,6.42],[173135,173136,6.64],[173137,173137,5.5],[173138,173139,6.08],[173140,173140,6.48],[173141,173141,6.14],[173142,173143,6.34],[173144,173144,6.25],[173145,173145,6.51],[173146,173147,5.84],[173148,173148,5.96],[173149,173149,7.01],[173150,173151,6.75],[173152,173152,5.95],[173153,173155,7.01],[173156,173156,7.4],[173157,173158,6.16],[173159,173159,7.01],[173160,173161,6.39],[173162,173162,6.56],[173163,173163,5.95],[173164,173168,5.91],[173169,173169,6.79],[173170,173171,6.39],[173172,173172,5.61],[173173,173173,6.79],[173174,173175,5.95],[173176,173176,6.29],[173177,173177,6.17],[173178,173179,5.85],[173180,173180,5.96],[173181,173181,6.15],[173182,173183,6.17],[173184,173184,6.3],[173185,173185,5.87],[173186,173187,6.79],[173188,173188,5.84],[173189,173190,5.96],[173191,173191,5.95],[173192,173193,5.86],[173194,173194,6.04],[173195,173196,6.12],[173197,173199,11],[173200,173200,2.9],[173201,173202,4.49],[173203,173203,4.13],[173204,173204,5.61],[173205,173206,5.9],[173207,173207,5.27],[173208,173208,5.5],[173209,173209,6.15],[173210,173210,6.01],[173211,173211,3.73],[173212,173212,6.41],[173213,173213,6.17],[173214,173214,5.3],[173215,173215,4.96],[173216,173216,5.48],[173217,173218,7.03],[173219,173219,5.38],[173220,173220,6.74],[173221,173221,5.93],[173222,173222,6.24],[173223,173223,6.25],[173224,173224,6.51],[173225,173225,5.5],[173226,173226,6.29],[173227,173227,5.93],[173228,173228,6.68],[173229,173229,6.42],[173230,173230,6.79],[173231,173231,5.53],[173232,173233,4.26],[173234,173234,3.87],[173235,173235,7.01],[173236,173236,8.95],[173237,173237,6.81],[173238,173238,8.08],[173239,173239,6.2],[173240,173240,5.18],[173241,173241,5.59],[173242,173242,5.96],[173243,173243,5.37],[173244,173244,5.62],[173245,173245,6.26],[173246,173246,5.46],[173247,173247,6.48],[173248,173248,5.84],[173249,173249,6.06],[173250,173250,6.71],[173251,173251,5.47],[173252,173252,5.37],[173253,173253,6.08],[173254,173254,4.62],[173255,173263,11],[173264,173264,7.15],[173265,173266,6.65],[173267,173267,8.03],[173268,173269,6.12],[173270,173270,8.01],[173271,173272,6.81],[173273,173273,4.08],[173274,173275,6.95],[173276,173276,6.29],[173277,173278,5.71],[173279,173279,9.98],[173280,173280,8.36],[173281,173281,5.76],[173282,173282,6.04],[173283,173284,6.84],[173285,173286,6.6],[173287,173287,8.15],[173288,173288,8.01],[173289,173289,4.08],[173290,173290,10.23],[173291,173291,6.45],[173292,173292,6.23],[173293,173293,7.15],[173294,173295,7.03],[173296,173297,6.12],[173298,173298,3.13],[173299,173299,8.59],[173300,173301,8.04],[173302,173302,5.76],[173303,173303,8.03],[173304,173304,3.3],[173305,173305,3.33],[173306,173306,5.39],[173307,173307,5.42],[173308,173308,3.33],[173309,173309,3.3],[173310,173310,6.96],[173311,173311,6.01],[173312,173312,7.15],[173313,173313,7.63],[173314,173314,8.57],[173315,173316,9.43],[173317,173317,9.7],[173318,173318,11.9],[173319,173320,8.08],[173321,173323,7.35],[173324,173325,5.98],[173326,173326,10.04],[173327,173327,10.16],[173328,173329,13.16],[173330,173331,9.36],[173332,173332,7.8],[173333,173333,7.64],[173334,173334,7.7],[173335,173335,7.71],[173336,173337,7.7],[173338,173339,11.73],[173340,173341,8.57],[173342,173342,15.29],[173343,173343,11.44],[173344,173344,8.69],[173345,173345,7.96],[173346,173346,8.49],[173347,173347,11.73],[173348,173348,9.36],[173349,173349,10.35],[173350,173350,10.24],[173351,173351,4.95],[173352,173352,9.26],[173353,173353,9.81],[173354,173354,6.68],[173355,173355,9.59],[173356,173356,7.3],[173357,173357,7.74],[173358,173358,6.79],[173359,173359,7.11],[173360,173360,8.47],[173361,173361,8.74],[173362,173362,8.01],[173363,173363,8.81],[173364,173364,9.28],[173365,173366,7.27],[173367,173368,4.77],[173369,173369,6.78],[173370,173370,9.95],[173371,173371,8.39],[173372,173372,9.16],[173373,173373,7.5],[173374,173374,8.5],[173375,173375,6.67],[173376,173378,9.97],[173379,173380,5.81],[173381,173381,10.45],[173382,173382,8.56],[173383,173383,6.89],[173384,173384,7.64],[173385,173385,6.01],[173386,173386,7.9],[173387,173387,8.14],[173388,173389,10.21],[173390,173390,8.81],[173391,173391,10.25],[173392,173392,9.56],[173393,173393,9.18],[173394,173394,10.41],[173395,173395,9.83],[173396,173396,7.5],[173397,173397,7.12],[173398,173398,8.23],[173399,173399,6.68],[173400,173400,6.03],[173401,173401,8.07],[173402,173403,7.77],[173404,173404,8.39],[173405,173405,10.58],[173406,173407,7.72],[173408,173409,9.66],[173410,173411,10.09],[173412,173412,9.61],[173413,173413,9.97],[173414,173414,7.95],[173415,173415,8.45],[173416,173416,7.47],[173417,173417,8.91],[173418,173418,7.39],[173419,173419,8.99],[173420,173420,8.17],[173421,173421,10.43],[173422,173422,8.05],[173423,173423,6.75],[173424,173424,10.05],[173425,173425,7.47],[173426,173426,7.8],[173427,173427,7.47],[173428,173428,7.82],[173429,173429,8.15],[173430,173431,6.23],[173432,173432,8.1],[173433,173433,9.76],[173434,173434,6.59],[173435,173435,8.72],[173436,173436,6.52],[173437,173438,7.99],[173439,173440,7.57],[173441,173442,10.21],[173443,173444,9.43],[173445,173445,9.55],[173446,173446,10.32],[173447,173447,8.58],[173448,173448,8.81],[173449,173449,5.49],[173450,173450,7.85],[173451,173452,7.04],[173453,173453,9.03],[173454,173454,5.52],[173455,173455,8.05],[173456,173456,9.01],[173457,173457,7.39],[173458,173458,9.76],[173459,173459,10.91],[173460,173460,7.7],[173461,173461,8.6],[173462,173462,8.84],[173463,173463,8.45],[173464,173464,7.88],[173465,173465,7.77],[173466,173466,8.57],[173467,173467,8.69],[173468,173468,9.7],[173469,173469,8.25],[173470,173470,8.58],[173471,173473,7.99],[173474,173474,9.38],[173475,173475,10.69],[173476,173476,5.84],[173477,173477,6.54],[173478,173478,8.91],[173479,173479,10.69],[173480,173483,7.38],[173484,173487,7.8],[173488,173491,8.48],[173492,173492,6.79],[173493,173494,5.98],[173495,173495,7.39],[173496,173496,8.36],[173497,173497,6.73],[173498,173498,8.74],[173499,173500,9.22],[173501,173501,9.32],[173502,173502,9.21],[173503,173503,8.49],[173504,173504,9.32],[173505,173506,10.69],[173507,173508,7.72],[173509,173510,9.07],[173511,173512,8.98],[173513,173514,6.47],[173515,173515,7.42],[173516,173516,9.03],[173517,173517,7.42],[173518,173518,9.23],[173519,173520,5.91],[173521,173522,8.12],[173523,173523,8],[173524,173524,8.93],[173525,173525,8],[173526,173526,8.93],[173527,173527,5.99],[173528,173529,7.52],[173530,173530,6.15],[173531,173531,8.1],[173532,173532,11.54],[173533,173533,8.65],[173534,173534,6.74],[173535,173535,6.23],[173536,173536,10.52],[173537,173537,7.78],[173538,173538,13.82],[173539,173539,8.28],[173540,173540,8.37],[173541,173541,10.65],[173542,173542,8.12],[173543,173543,8.34],[173544,173544,6.3],[173545,173545,7.31],[173546,173546,7.01],[173547,173547,8.11],[173548,173550,9.76],[173551,173552,9.6],[173553,173554,8.1],[173555,173555,9.02],[173556,173556,9.9],[173557,173558,8.91],[173559,173562,6.71],[173563,173566,9.95],[173567,173567,7.66],[173568,173568,9.09],[173569,173569,8.98],[173570,173570,8.76],[173571,173575,7.77],[173576,173576,9.9],[173577,173577,6.25],[173578,173578,8.33],[173579,173579,9.05],[173580,173580,6.98],[173581,173581,5.18],[173582,173582,6.26],[173583,173583,8.16],[173584,173584,14.81],[173585,173585,8.49],[173586,173586,10.79],[173587,173587,5.4],[173588,173588,9.47],[173589,173589,10.21],[173590,173590,7.59],[173591,173591,7.8],[173592,173592,8],[173593,173593,8.16],[173594,173594,11.86],[173595,173595,10.05],[173596,173596,7.94],[173597,173597,9.09],[173598,173598,10.11],[173599,173599,6.84],[173600,173600,6.54],[173601,173601,3.3],[173602,173602,7.28],[173603,173603,7.33],[173604,173604,7.19],[173605,173605,7.14],[173606,173606,6.01],[173607,173607,7.2],[173608,173608,6.47],[173609,173609,6.84],[173610,173610,9.87],[173611,173611,5.97],[173612,173631,11],[173632,173632,8.23],[173633,173633,6.12],[173634,173634,8.23],[173635,173635,6.12],[173636,173636,8.17],[173637,173637,4.99],[173638,173638,3.42],[173639,173639,2.86],[173640,173640,7.81],[173641,173641,6.29],[173642,173643,6.36],[173644,173644,9.93],[173645,173645,7.8],[173646,173646,7.77],[173647,173647,6.53],[173648,173648,10.37],[173649,173649,9],[173650,173650,8.9],[173651,173651,7.68],[173652,173652,11.24],[173653,173653,8.87],[173654,173654,10.3],[173655,173655,8.19],[173656,173656,8],[173657,173657,6.18],[173658,173658,7.81],[173659,173659,6.62],[173660,173660,10.19],[173661,173661,8.71],[173662,173662,7.97],[173663,173663,7.02],[173664,173664,7.93],[173665,173665,6.51],[173666,173666,8.46],[173667,173667,7.6],[173668,173668,7.88],[173669,173669,7.09],[173670,173670,11.48],[173671,173671,10.3],[173672,173672,7.92],[173673,173673,6.3],[173674,173674,7.92],[173675,173675,6.3],[173676,173676,10.45],[173677,173677,7.78],[173678,173678,7.5],[173679,173682,0],[173683,173683,5.54],[173684,173693,0],[173694,173695,5.5],[173696,173696,8.46],[173697,173697,7.29],[173698,173698,4.77],[173699,173699,3.81],[173700,173700,13.86],[173701,173701,12.19],[173702,173702,10.05],[173703,173704,8.46],[173705,173705,7.29],[173706,173706,8.68],[173707,173707,7.44],[173708,173708,6.24],[173709,173709,5.91],[173710,173710,8],[173711,173711,6.93],[173712,173712,6.73],[173713,173713,5.91],[173714,173714,9.27],[173715,173715,8.01],[173716,173716,7.64],[173717,173717,6.41],[173718,173718,9.98],[173719,173719,8.7],[173720,173720,8.65],[173721,173721,7.35],[173722,173722,5.79],[173723,173723,4.95],[173724,173724,2.16],[173725,173725,1.86],[173726,173727,0],[173728,173728,7.26],[173729,173729,8.45],[173730,173730,6.01],[173731,173731,7.22],[173732,173732,7.78],[173733,173733,6.79],[173734,173734,6.36],[173735,173735,6.67],[173736,173736,6.05],[173737,173737,7.97],[173738,173738,7.25],[173739,173739,6.6],[173740,173740,7.27],[173741,173741,6.29],[173742,173742,6.04],[173743,173743,6.6],[173744,173744,7.01],[173745,173745,6.05],[173746,173746,6.23],[173747,173747,5.76],[173748,173748,7.6],[173749,173749,6.47],[173750,173750,8.15],[173751,173751,7.88],[173752,173752,8.6],[173753,173753,5.28],[173754,173754,6.83],[173755,173755,6.8],[173756,173756,7.03],[173757,173757,6.6],[173758,173758,8.15],[173759,173761,6.81],[173762,173762,5.86],[173763,173763,8.47],[173764,173764,7.67],[173765,173765,6.62],[173766,173766,6.26],[173767,173767,6.83],[173768,173768,7.37],[173769,173769,6.29],[173770,173770,8.23],[173771,173771,6.19],[173772,173772,5.31],[173773,173773,6.01],[173774,173774,6.6],[173775,173775,7.81],[173776,173776,5.11],[173777,173777,6.83],[173778,173778,5.72],[173779,173779,7.47],[173780,173780,7.84],[173781,173781,5.72],[173782,173782,6.37],[173783,173783,7.91],[173784,173784,7.9],[173785,173785,6.6],[173786,173786,5.76],[173787,173787,7.16],[173788,173788,6.81],[173789,173789,7.35],[173790,173790,6.37],[194560,194814,11],[194815,194815,8.69],[194816,195102,11],[917504,917504,0],[917505,917511,3.66],[917512,917512,0],[917513,917517,3.87],[917518,917532,3.66],[917533,917533,0],[917534,917535,3.66],[917536,917536,3.87],[917537,917537,4.33],[917538,917538,5.05],[917539,917539,9],[917540,917540,6.99],[917541,917541,11.84],[917542,917542,7.99],[917543,917543,2.95],[917544,917545,5],[917546,917546,6.99],[917547,917547,9],[917548,917548,4],[917549,917549,5],[917550,917550,4],[917551,917551,5],[917552,917561,6.99],[917562,917563,5],[917564,917566,9],[917567,917567,6],[917568,917568,11],[917569,917569,7.52],[917570,917570,7.54],[917571,917571,7.68],[917572,917572,8.48],[917573,917573,6.96],[917574,917574,6.32],[917575,917575,8.53],[917576,917576,8.27],[917577,917577,4.63],[917578,917578,5],[917579,917579,7.62],[917580,917580,6.12],[917581,917581,9.27],[917582,917582,8.23],[917583,917583,8.66],[917584,917584,6.63],[917585,917585,8.66],[917586,917586,7.65],[917587,917587,7.52],[917588,917588,6.78],[917589,917589,8.05],[917590,917590,7.52],[917591,917591,10.88],[917592,917592,7.54],[917593,917593,6.77],[917594,917594,7.54],[917595,917597,5],[917598,917598,9],[917599,917600,6.99],[917601,917601,6.61],[917602,917602,6.85],[917603,917603,5.73],[917604,917604,6.85],[917605,917605,6.55],[917606,917606,3.87],[917607,917607,6.85],[917608,917608,6.96],[917609,917609,3.02],[917610,917610,3.79],[917611,917611,6.51],[917612,917612,3.02],[917613,917613,10.7],[917614,917614,6.96],[917615,917615,6.68],[917616,917617,6.85],[917618,917618,4.69],[917619,917619,5.73],[917620,917620,4.33],[917621,917621,6.96],[917622,917622,6.51],[917623,917623,9],[917624,917625,6.51],[917626,917626,5.78],[917627,917627,6.98],[917628,917628,5],[917629,917629,6.98],[917630,917630,9]] \ No newline at end of file diff --git a/node_modules/anafanafo/index.js b/node_modules/anafanafo/index.js new file mode 100644 index 0000000..484ee03 --- /dev/null +++ b/node_modules/anafanafo/index.js @@ -0,0 +1,22 @@ +'use strict' + +const { createConsumer } = require('char-width-table-consumer') + +const consumers = { + '10px Verdana': createConsumer(require('./data/verdana-10px-normal.json')), + 'bold 10px Verdana': createConsumer(require('./data/verdana-10px-bold.json')), + '11px Verdana': createConsumer(require('./data/verdana-11px-normal.json')), + 'bold 11px Helvetica': createConsumer( + require('./data/helvetica-11px-bold.json') + ), +} + +module.exports = function measure(text, { font, ...rest }) { + const consumer = consumers[font] + if (!consumer) { + throw Error( + `Unknown font "${font}", expected ${Object.keys(consumers).join(', ')}` + ) + } + return consumer.widthOf(text, { ...rest }) +} diff --git a/node_modules/anafanafo/package.json b/node_modules/anafanafo/package.json new file mode 100644 index 0000000..091b802 --- /dev/null +++ b/node_modules/anafanafo/package.json @@ -0,0 +1,18 @@ +{ + "name": "anafanafo", + "version": "2.0.0", + "repository": "metabolize/anafanafo", + "description": "Compute text width in Verdana", + "scripts": { + "test": "../../node_modules/.bin/mocha test.js" + }, + "author": "Metabolize", + "license": "MIT", + "dependencies": { + "char-width-table-consumer": "^1.0.0" + }, + "files": [ + "index.js", + "data/*.json" + ] +} diff --git a/node_modules/badge-maker/CHANGELOG.md b/node_modules/badge-maker/CHANGELOG.md new file mode 100644 index 0000000..2d99050 --- /dev/null +++ b/node_modules/badge-maker/CHANGELOG.md @@ -0,0 +1,277 @@ +# Changelog + +## 3.3.1 + +- Improve font measuring in for-the-badge and social styles +- Make for-the-badge letter spacing more predictable + +## 3.3.0 + +- Readability improvements: a dark font color is automatically used when the badge's background is too light. For example: ![](https://img.shields.io/badge/hello-world-white) +- Better CSS color compliance: thanks to a switch from _is-css-color_ to _[css-color-converter](https://www.npmjs.com/package/css-color-converter)_, you can use a wider range of color formats from the latest CSS specification, for example `rgb(0 255 0)` +- Less dependencies: _badge-maker_ no longer depends on _camelcase_ + +## 3.2.0 + +- Accessibility improvements: Help users of assistive technologies to read the badges when used inline + +## 3.1.0 + +- Add TypeScript definitions + +## 3.0.1 + +- Fix missing dependency + +## 3.0.0 + +### Breaking Changes + +- Dropped support for node < 10 +- Package name has changed to `badge-maker` and moved to https://www.npmjs.com/package/badge-maker +- `BadgeFactory` class is removed and replaced by `makeBadge()` function. +- Deprecated parameters have been removed. In version 2.2.0 the `colorA`, `colorB` and `colorscheme` params were deprecated. In version 3.0.0 these have been removed. +- Only SVG output format is now provided. JSON format has been dropped and the `format` key has been removed. +- The `text` array has been replaced by `label` and `message` keys. +- The `template` key has been renamed `style`. + To upgrade from v2.1.1, change your code from: + ```js + const { BadgeFactory } = require('gh-badges') + const bf = new BadgeFactory() + const svg = bf.create({ + text: ['build', 'passed'], + format: 'svg', + template: 'flat-square', + }) + ``` + to: + ```js + const { makeBadge } = require('badge-maker') + const svg = makeBadge({ + label: 'build', + message: 'passed', + style: 'flat-square', + }) + ``` +- `ValidationError` had been added and inputs are now validated. In previous releases, invalid inputs would be discarded and replaced with defaults. For example, in 2.2.1 + ```js + const { BadgeFactory } = require('gh-badges') + const bf = new BadgeFactory() + const svg = bf.create({ + text: ['build', 'passed'], + template: 'some invalid value', + }) + ``` + would generate an SVG badge. In version >=3 + ```js + const { makeBadge } = require('badge-maker') + const svg = makeBadge({ + label: 'build', + message: 'passed', + style: 'some invalid value', + }) + ``` + will throw a `ValidationError`. +- Raster support has been removed from the CLI. It will now only output SVG. On the console, the output of `badge` can be piped to a utility like [imagemagick](https://imagemagick.org/script/command-line-processing.php). If you were previously using + ```sh + badge build passed :green .gif + ``` + this could be replaced by + ```sh + badge build passed :green | magick svg:- gif:- + ``` + +### Security + +- Removed dependency on doT library which has known vulnerabilities. + +## 2.2.1 - 2019-05-30 + +### Fixes + +- Escape logos to prevent XSS vulnerability +- Update docblock for BadgeFactory.create() + +## 2.2.0 - 2019-05-29 + +### Deprecations + +- `labelColor` and `color` are now the recommended attribute names for label color and message color. + + - `colorA` (now an alias for `labelColor`), + - `colorB` (now an alias for `color`) and + - `colorscheme` (now an alias for `color`) + + are now deprecated and will be removed in some future release. + +### New Features + +- Semantic color aliases. Add support for: + - ![success](https://img.shields.io/badge/success-success.svg) + - ![important](https://img.shields.io/badge/important-important.svg) + - ![critical](https://img.shields.io/badge/critical-critical.svg) + - ![informational](https://img.shields.io/badge/informational-informational.svg) + - ![inactive](https://img.shields.io/badge/inactive-inactive.svg) +- Add directory field to package.json (to help tools find this package in the repo) + +### Bug Fixes + +- Prevent bad letter spacing when whitespace surrounds badge text + +### Dependencies + +- Bump anafanafo +- Use caret instead of tilde for dependencies + +### Internals + +- Generate JSON badges without using a template +- Refactoring +- Testing improvements + +### Node support + +- Declare support for all currently maintained Node versions +- Explicitly test on all supported versions + +## 2.1.0 - 2018-11-18 + +gh-badges v2.1.0 implements a new text width measurer which uses a lookup table, removing the dependency +on PDFKit. It is no longer necessary to provide a local copy of Verdana for accurate text width computation. + +As such, the `fontPath` and `precomputeWidths` parameters are now deprecated. The recommended call to create an instance of `BadgeFactory` is now + +```js +const bf = new BadgeFactory() +``` + +For backwards compatibility you can still construct an instance of `BadgeFactory` with a call like + +```js +const bf = new BadgeFactory({ + fontPath: '/path/to/Verdana.ttf', + precomputeWidths: true, +}) +``` + +However, the function will issue a warning. + +To clear the warning, change the code to: + +```js +const bf = new BadgeFactory() +``` + +These arguments will be removed in a future release. + +To upgrade from v1.3.0, change your code from: + +```js +const badge = require('gh-badges') + +const format = { + text: ['build', 'passed'], + colorscheme: 'green', + template: 'flat', +} + +badge.loadFont('/path/to/Verdana.ttf', err => { + badge(format, (svg, err) => { + // svg is a string containing your badge + }) +}) +``` + +to: + +```js +const { BadgeFactory } = require('gh-badges') + +const bf = new BadgeFactory() + +const format = { + text: ['build', 'passed'], + colorscheme: 'green', + template: 'flat', +} + +const svg = bf.create(format) +``` + +### Other changes in this release: + +- Remove unnecessary dependencies +- Documentation improvements + +## 2.0.0 - 2018-11-09 + +gh-badges v2.0.0 declares a new public interface which is synchronous. +If your version 1.3.0 code looked like this: + +```js +const badge = require('gh-badges') + +const format = { + text: ['build', 'passed'], + colorscheme: 'green', + template: 'flat', +} + +badge.loadFont('/path/to/Verdana.ttf', err => { + badge(format, (svg, err) => { + // svg is a string containing your badge + }) +}) +``` + +To upgrade to version 2.0.0, refactor you code to: + +```js +const { BadgeFactory } = require('gh-badges') + +const bf = new BadgeFactory({ fontPath: '/path/to/Verdana.ttf' }) + +const format = { + text: ['build', 'passed'], + colorscheme: 'green', + template: 'flat', +} + +const svg = bf.create(format) +``` + +You can generate badges without a copy of Verdana, however font width computation is approximate and badges may be distorted. + +```js +const bf = new BadgeFactory({ fallbackFontPath: 'Helvetica' }) +``` + +## 1.3.0 - 2016-09-07 + +Add support for optionally specifying the path to `Verdana.ttf`. In earlier versions, the file needed to be in the directory containing Shields. + +Without font path: + +```js +const badge = require('gh-badges') + +badge({ text: ['build', 'passed'], colorscheme: 'green' }, (svg, err) => { + // svg is a string containing your badge +}) +``` + +With font path: + +```js +const badge = require('gh-badges') + +// Optional step, to have accurate text width computation. +badge.loadFont('/path/to/Verdana.ttf', err => { + badge( + { text: ['build', 'passed'], colorscheme: 'green', template: 'flat' }, + (svg, err) => { + // svg is a string containing your badge + } + ) +}) +``` diff --git a/node_modules/badge-maker/LICENSE b/node_modules/badge-maker/LICENSE new file mode 100644 index 0000000..670154e --- /dev/null +++ b/node_modules/badge-maker/LICENSE @@ -0,0 +1,116 @@ +CC0 1.0 Universal + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator and +subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for the +purpose of contributing to a commons of creative, cultural and scientific +works ("Commons") that the public can reliably and without fear of later +claims of infringement build upon, modify, incorporate in other works, reuse +and redistribute as freely as possible in any form whatsoever and for any +purposes, including without limitation commercial purposes. These owners may +contribute to the Commons to promote the ideal of a free culture and the +further production of creative, cultural and scientific works, or to gain +reputation or greater distribution for their Work in part through the use and +efforts of others. + +For these and/or other purposes and motivations, and without any expectation +of additional consideration or compensation, the person associating CC0 with a +Work (the "Affirmer"), to the extent that he or she is an owner of Copyright +and Related Rights in the Work, voluntarily elects to apply CC0 to the Work +and publicly distribute the Work under its terms, with knowledge of his or her +Copyright and Related Rights in the Work and the meaning and intended legal +effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not limited +to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, communicate, + and translate a Work; + + ii. moral rights retained by the original author(s) and/or performer(s); + + iii. publicity and privacy rights pertaining to a person's image or likeness + depicted in a Work; + + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + + v. rights protecting the extraction, dissemination, use and reuse of data in + a Work; + + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation thereof, + including any amended or successor version of such directive); and + + vii. other similar, equivalent or corresponding rights throughout the world + based on applicable law or treaty, and any national implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention of, +applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and +unconditionally waives, abandons, and surrenders all of Affirmer's Copyright +and Related Rights and associated claims and causes of action, whether now +known or unknown (including existing as well as future claims and causes of +action), in the Work (i) in all territories worldwide, (ii) for the maximum +duration provided by applicable law or treaty (including future time +extensions), (iii) in any current or future medium and for any number of +copies, and (iv) for any purpose whatsoever, including without limitation +commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes +the Waiver for the benefit of each member of the public at large and to the +detriment of Affirmer's heirs and successors, fully intending that such Waiver +shall not be subject to revocation, rescission, cancellation, termination, or +any other legal or equitable action to disrupt the quiet enjoyment of the Work +by the public as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason be +judged legally invalid or ineffective under applicable law, then the Waiver +shall be preserved to the maximum extent permitted taking into account +Affirmer's express Statement of Purpose. In addition, to the extent the Waiver +is so judged Affirmer hereby grants to each affected person a royalty-free, +non transferable, non sublicensable, non exclusive, irrevocable and +unconditional license to exercise Affirmer's Copyright and Related Rights in +the Work (i) in all territories worldwide, (ii) for the maximum duration +provided by applicable law or treaty (including future time extensions), (iii) +in any current or future medium and for any number of copies, and (iv) for any +purpose whatsoever, including without limitation commercial, advertising or +promotional purposes (the "License"). The License shall be deemed effective as +of the date CC0 was applied by Affirmer to the Work. Should any part of the +License for any reason be judged legally invalid or ineffective under +applicable law, such partial invalidity or ineffectiveness shall not +invalidate the remainder of the License, and in such case Affirmer hereby +affirms that he or she will not (i) exercise any of his or her remaining +Copyright and Related Rights in the Work or (ii) assert any associated claims +and causes of action with respect to the Work, in either case contrary to +Affirmer's express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + + b. Affirmer offers the Work as-is and makes no representations or warranties + of any kind concerning the Work, express, implied, statutory or otherwise, + including without limitation warranties of title, merchantability, fitness + for a particular purpose, non infringement, or the absence of latent or + other defects, accuracy, or the present or absence of errors, whether or not + discoverable, all to the greatest extent permissible under applicable law. + + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without limitation + any person's Copyright and Related Rights in the Work. Further, Affirmer + disclaims responsibility for obtaining any necessary consents, permissions + or other rights required for any use of the Work. + + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to this + CC0 or use of the Work. + +For more information, please see + diff --git a/node_modules/badge-maker/README.md b/node_modules/badge-maker/README.md new file mode 100644 index 0000000..a6d2e71 --- /dev/null +++ b/node_modules/badge-maker/README.md @@ -0,0 +1,142 @@ +# badge-maker + +[![npm version](https://img.shields.io/npm/v/badge-maker.svg)](https://npmjs.org/package/badge-maker) +[![npm license](https://img.shields.io/npm/l/badge-maker.svg)](https://npmjs.org/package/badge-maker) +[![npm type definitions](https://img.shields.io/npm/types/badge-maker)](https://npmjs.org/package/badge-maker) + +## Installation + +```sh +npm install badge-maker +``` + +## Usage + +### On the console + +```sh +npm install -g badge-maker +badge build passed :green > mybadge.svg +``` + +### As a library + +With CommonJS in JavaScript, + +```js +const { makeBadge, ValidationError } = require('badge-maker') +``` + +With ESM or TypeScript, + +```ts +import { makeBadge, ValidationError } from 'badge-maker' +``` + +```js +const format = { + label: 'build', + message: 'passed', + color: 'green', +} + +const svg = makeBadge(format) +console.log(svg) // { + try { + console.log(makeBadge(badgeData)) + } catch (e) { + console.error(e) + process.exit(1) + } +})() diff --git a/node_modules/badge-maker/lib/badge-renderers.js b/node_modules/badge-maker/lib/badge-renderers.js new file mode 100644 index 0000000..6aba746 --- /dev/null +++ b/node_modules/badge-maker/lib/badge-renderers.js @@ -0,0 +1,807 @@ +'use strict' + +const anafanafo = require('anafanafo') +const { brightness } = require('./color') +const { XmlElement, escapeXml } = require('./xml') + +// https://github.com/badges/shields/pull/1132 +const FONT_SCALE_UP_FACTOR = 10 +const FONT_SCALE_DOWN_VALUE = 'scale(.1)' + +const FONT_FAMILY = 'Verdana,Geneva,DejaVu Sans,sans-serif' +const fontFamily = `font-family="${FONT_FAMILY}"` +const socialFontFamily = + 'font-family="Helvetica Neue,Helvetica,Arial,sans-serif"' +const brightnessThreshold = 0.69 + +function capitalize(s) { + return `${s.charAt(0).toUpperCase()}${s.slice(1)}` +} + +function colorsForBackground(color) { + if (brightness(color) <= brightnessThreshold) { + return { textColor: '#fff', shadowColor: '#010101' } + } else { + return { textColor: '#333', shadowColor: '#ccc' } + } +} + +function roundUpToOdd(val) { + return val % 2 === 0 ? val + 1 : val +} + +function preferredWidthOf(str, options) { + // Increase chances of pixel grid alignment. + return roundUpToOdd(anafanafo(str, options) | 0) +} + +function createAccessibleText({ label, message }) { + const labelPrefix = label ? `${label}: ` : '' + return labelPrefix + message +} + +function hasLinks({ links }) { + const [leftLink, rightLink] = links || [] + const hasLeftLink = leftLink && leftLink.length + const hasRightLink = rightLink && rightLink.length + const hasLink = hasLeftLink && hasRightLink + return { hasLink, hasLeftLink, hasRightLink } +} + +function shouldWrapBodyWithLink({ links }) { + const { hasLeftLink, hasRightLink } = hasLinks({ links }) + return hasLeftLink && !hasRightLink +} + +function renderAriaAttributes({ accessibleText, links }) { + const { hasLink } = hasLinks({ links }) + return hasLink ? '' : `role="img" aria-label="${escapeXml(accessibleText)}"` +} + +function renderTitle({ accessibleText, links }) { + const { hasLink } = hasLinks({ links }) + return hasLink ? '' : `${escapeXml(accessibleText)}` +} + +function renderLogo({ + logo, + badgeHeight, + horizPadding, + logoWidth = 14, + logoPadding = 0, +}) { + if (logo) { + const logoHeight = 14 + const y = (badgeHeight - logoHeight) / 2 + const x = horizPadding + return { + hasLogo: true, + totalLogoWidth: logoWidth + logoPadding, + renderedLogo: ``, + } + } else { + return { hasLogo: false, totalLogoWidth: 0, renderedLogo: '' } + } +} + +function renderLink({ + link, + height, + textLength, + horizPadding, + leftMargin, + renderedText, +}) { + const rectHeight = height + const rectWidth = textLength + horizPadding * 2 + const rectX = leftMargin > 1 ? leftMargin + 1 : 0 + return ` + + ${renderedText} + ` +} + +function renderText({ + leftMargin, + horizPadding = 0, + content, + link, + height, + verticalMargin = 0, + shadow = false, + color, +}) { + if (!content.length) { + return { renderedText: '', width: 0 } + } + + const textLength = preferredWidthOf(content, { font: '11px Verdana' }) + const escapedContent = escapeXml(content) + + const shadowMargin = 150 + verticalMargin + const textMargin = 140 + verticalMargin + + const outTextLength = 10 * textLength + const x = 10 * (leftMargin + 0.5 * textLength + horizPadding) + + let renderedText = '' + const { textColor, shadowColor } = colorsForBackground(color) + if (shadow) { + renderedText = `` + } + renderedText += `${escapedContent}` + + return { + renderedText: link + ? renderLink({ + link, + height, + textLength, + horizPadding, + leftMargin, + renderedText, + }) + : renderedText, + width: textLength, + } +} + +function renderBadge( + { links, leftWidth, rightWidth, height, accessibleText }, + main +) { + const width = leftWidth + rightWidth + const leftLink = escapeXml(links[0]) + + return ` + + + ${renderTitle({ accessibleText, links })} + ${ + shouldWrapBodyWithLink({ links }) + ? `${main}` + : main + } + ` +} + +class Badge { + static get fontFamily() { + throw new Error('Not implemented') + } + + static get height() { + throw new Error('Not implemented') + } + + static get verticalMargin() { + throw new Error('Not implemented') + } + + static get shadow() { + throw new Error('Not implemented') + } + + constructor({ + label, + message, + links, + logo, + logoWidth, + logoPadding, + color = '#4c1', + labelColor, + }) { + const horizPadding = 5 + const { hasLogo, totalLogoWidth, renderedLogo } = renderLogo({ + logo, + badgeHeight: this.constructor.height, + horizPadding, + logoWidth, + logoPadding, + }) + const hasLabel = label.length || labelColor + if (labelColor == null) { + labelColor = '#555' + } + + const [leftLink, rightLink] = links + + labelColor = hasLabel || hasLogo ? labelColor : color + labelColor = escapeXml(labelColor) + color = escapeXml(color) + + const labelMargin = totalLogoWidth + 1 + + const { renderedText: renderedLabel, width: labelWidth } = renderText({ + leftMargin: labelMargin, + horizPadding, + content: label, + link: !shouldWrapBodyWithLink({ links }) && leftLink, + height: this.constructor.height, + verticalMargin: this.constructor.verticalMargin, + shadow: this.constructor.shadow, + color: labelColor, + }) + + const leftWidth = hasLabel + ? labelWidth + 2 * horizPadding + totalLogoWidth + : 0 + + let messageMargin = leftWidth - (message.length ? 1 : 0) + if (!hasLabel) { + if (hasLogo) { + messageMargin = messageMargin + totalLogoWidth + horizPadding + } else { + messageMargin = messageMargin + 1 + } + } + + const { renderedText: renderedMessage, width: messageWidth } = renderText({ + leftMargin: messageMargin, + horizPadding, + content: message, + link: rightLink, + height: this.constructor.height, + verticalMargin: this.constructor.verticalMargin, + shadow: this.constructor.shadow, + color, + }) + + let rightWidth = messageWidth + 2 * horizPadding + if (hasLogo && !hasLabel) { + rightWidth += totalLogoWidth + horizPadding - 1 + } + + const width = leftWidth + rightWidth + + const accessibleText = createAccessibleText({ label, message }) + + this.links = links + this.leftWidth = leftWidth + this.rightWidth = rightWidth + this.width = width + this.labelColor = labelColor + this.color = color + this.label = label + this.message = message + this.accessibleText = accessibleText + this.renderedLogo = renderedLogo + this.renderedLabel = renderedLabel + this.renderedMessage = renderedMessage + } + + static render(params) { + return new this(params).render() + } + + render() { + throw new Error('Not implemented') + } +} + +class Plastic extends Badge { + static get fontFamily() { + return fontFamily + } + + static get height() { + return 18 + } + + static get verticalMargin() { + return -10 + } + + static get shadow() { + return true + } + + render() { + return renderBadge( + { + links: this.links, + leftWidth: this.leftWidth, + rightWidth: this.rightWidth, + accessibleText: this.accessibleText, + height: this.constructor.height, + }, + ` + + + + + + + + + + + + + + + + + + + ${this.renderedLogo} + ${this.renderedLabel} + ${this.renderedMessage} + ` + ) + } +} + +class Flat extends Badge { + static get fontFamily() { + return fontFamily + } + + static get height() { + return 20 + } + + static get verticalMargin() { + return 0 + } + + static get shadow() { + return true + } + + render() { + return renderBadge( + { + links: this.links, + leftWidth: this.leftWidth, + rightWidth: this.rightWidth, + accessibleText: this.accessibleText, + height: this.constructor.height, + }, + ` + + + + + + + + + + + + + + + + + ${this.renderedLogo} + ${this.renderedLabel} + ${this.renderedMessage} + ` + ) + } +} + +class FlatSquare extends Badge { + static get fontFamily() { + return fontFamily + } + + static get height() { + return 20 + } + + static get verticalMargin() { + return 0 + } + + static get shadow() { + return false + } + + render() { + return renderBadge( + { + links: this.links, + leftWidth: this.leftWidth, + rightWidth: this.rightWidth, + accessibleText: this.accessibleText, + height: this.constructor.height, + }, + ` + + + + + + + ${this.renderedLogo} + ${this.renderedLabel} + ${this.renderedMessage} + ` + ) + } +} + +function social({ + label, + message, + links = [], + logo, + logoWidth, + logoPadding, + color = '#4c1', + labelColor = '#555', +}) { + // Social label is styled with a leading capital. Convert to caps here so + // width can be measured using the correct characters. + label = capitalize(label) + + const externalHeight = 20 + const internalHeight = 19 + const labelHorizPadding = 5 + const messageHorizPadding = 4 + const horizGutter = 6 + const { totalLogoWidth, renderedLogo } = renderLogo({ + logo, + badgeHeight: externalHeight, + horizPadding: labelHorizPadding, + logoWidth, + logoPadding, + }) + const hasMessage = message.length + + const font = 'bold 11px Helvetica' + const labelTextWidth = preferredWidthOf(label, { font }) + const messageTextWidth = preferredWidthOf(message, { font }) + const labelRectWidth = labelTextWidth + totalLogoWidth + 2 * labelHorizPadding + const messageRectWidth = messageTextWidth + 2 * messageHorizPadding + + let [leftLink, rightLink] = links + leftLink = escapeXml(leftLink) + rightLink = escapeXml(rightLink) + const { hasLeftLink, hasRightLink, hasLink } = hasLinks({ links }) + + const accessibleText = createAccessibleText({ label, message }) + + function renderMessageBubble() { + const messageBubbleMainX = labelRectWidth + horizGutter + 0.5 + const messageBubbleNotchX = labelRectWidth + horizGutter + return ` + + + + ` + } + + function renderLabelText() { + const labelTextX = + 10 * (totalLogoWidth + labelTextWidth / 2 + labelHorizPadding) + const labelTextLength = 10 * labelTextWidth + const escapedLabel = escapeXml(label) + const shouldWrapWithLink = hasLeftLink && !shouldWrapBodyWithLink({ links }) + + const rect = `` + const shadow = `` + const text = `${escapedLabel}` + + return shouldWrapWithLink + ? ` + + ${shadow} + ${text} + ${rect} + + ` + : ` + ${rect} + ${shadow} + ${text} + ` + } + + function renderMessageText() { + const messageTextX = + 10 * (labelRectWidth + horizGutter + messageRectWidth / 2) + const messageTextLength = 10 * messageTextWidth + const escapedMessage = escapeXml(message) + + const rect = `` + const shadow = `` + const text = `${escapedMessage}` + + return hasRightLink + ? ` + + ${rect} + ${shadow} + ${text} + + ` + : ` + ${shadow} + ${text} + ` + } + + return renderBadge( + { + links, + leftWidth: labelRectWidth + 1, + rightWidth: hasMessage ? horizGutter + messageRectWidth : 0, + accessibleText, + height: externalHeight, + }, + ` + + + + + + + + + + + + ${hasMessage ? renderMessageBubble() : ''} + + ${renderedLogo} + + ${renderLabelText()} + ${hasMessage ? renderMessageText() : ''} + + ` + ) +} + +function forTheBadge({ + label, + message, + links, + logo, + logoWidth, + color = '#4c1', + labelColor, +}) { + const FONT_SIZE = 10 + const BADGE_HEIGHT = 28 + const LOGO_HEIGHT = 14 + const TEXT_MARGIN = 12 + const LOGO_MARGIN = 9 + const LOGO_TEXT_GUTTER = 6 + const LETTER_SPACING = 1.25 + + // Prepare content. For the Badge is styled in all caps. It's important to to + // convert to uppercase first so the widths can be measured using the correct + // symbols. + label = label.toUpperCase() + message = message.toUpperCase() + + const [leftLink, rightLink] = links + const { hasLeftLink, hasRightLink } = hasLinks({ links }) + + const outLabelColor = labelColor || '#555' + + // Compute text width. + // TODO: This really should count the symbols rather than just using `.length`. + // https://mathiasbynens.be/notes/javascript-unicode + // This is not using `preferredWidthOf()` as it tends to produce larger + // inconsistencies in the letter spacing. The badges look fine, however if you + // replace `textLength` with `letterSpacing` in the rendered SVG, you can see + // the discrepancy. Ideally, swapping out `textLength` for `letterSpacing` + // should not affect the appearance. + const labelTextWidth = label.length + ? (anafanafo(label, { font: `${FONT_SIZE}px Verdana` }) | 0) + + LETTER_SPACING * label.length + : 0 + const messageTextWidth = message.length + ? (anafanafo(message, { font: `bold ${FONT_SIZE}px Verdana` }) | 0) + + LETTER_SPACING * message.length + : 0 + + // Compute horizontal layout. + // If a `labelColor` is set, the logo is always set against it, even when + // there is no label. When `needsLabelRect` is true, render a label rect and a + // message rect; when false, only a message rect. + const hasLabel = Boolean(label.length) + const needsLabelRect = hasLabel || (logo && labelColor) + let logoMinX, labelTextMinX + if (logo) { + logoMinX = LOGO_MARGIN + labelTextMinX = logoMinX + logoWidth + LOGO_TEXT_GUTTER + } else { + labelTextMinX = TEXT_MARGIN + } + let labelRectWidth, messageTextMinX, messageRectWidth + if (needsLabelRect) { + if (hasLabel) { + labelRectWidth = labelTextMinX + labelTextWidth + TEXT_MARGIN + } else { + labelRectWidth = 2 * LOGO_MARGIN + logoWidth + } + messageTextMinX = labelRectWidth + TEXT_MARGIN + messageRectWidth = 2 * TEXT_MARGIN + messageTextWidth + } else { + if (logo) { + messageTextMinX = TEXT_MARGIN + logoWidth + LOGO_TEXT_GUTTER + messageRectWidth = + 2 * TEXT_MARGIN + logoWidth + LOGO_TEXT_GUTTER + messageTextWidth + } else { + messageTextMinX = TEXT_MARGIN + messageRectWidth = 2 * TEXT_MARGIN + messageTextWidth + } + } + + const logoElement = new XmlElement({ + name: 'image', + attrs: { + x: logoMinX, + y: 0.5 * (BADGE_HEIGHT - LOGO_HEIGHT), + width: logoWidth, + height: LOGO_HEIGHT, + 'xlink:href': logo, + }, + }) + + function getLabelElement() { + const { textColor } = colorsForBackground(outLabelColor) + const midX = labelTextMinX + 0.5 * labelTextWidth + const text = new XmlElement({ + name: 'text', + content: [label], + attrs: { + transform: FONT_SCALE_DOWN_VALUE, + x: FONT_SCALE_UP_FACTOR * midX, + y: 175, + textLength: FONT_SCALE_UP_FACTOR * labelTextWidth, + fill: textColor, + }, + }) + + if (hasLeftLink && !shouldWrapBodyWithLink({ links })) { + const rect = new XmlElement({ + name: 'rect', + attrs: { + width: labelRectWidth, + height: BADGE_HEIGHT, + fill: 'rgba(0,0,0,0)', + }, + }) + return new XmlElement({ + name: 'a', + content: [rect, text], + attrs: { + target: '_blank', + 'xlink:href': leftLink, + }, + }) + } else { + return text + } + } + + function getMessageElement() { + const { textColor } = colorsForBackground(color) + const midX = messageTextMinX + 0.5 * messageTextWidth + const text = new XmlElement({ + name: 'text', + content: [message], + attrs: { + transform: FONT_SCALE_DOWN_VALUE, + x: FONT_SCALE_UP_FACTOR * midX, + y: 175, + textLength: FONT_SCALE_UP_FACTOR * messageTextWidth, + fill: textColor, + 'font-weight': 'bold', + }, + }) + + if (hasRightLink) { + const rect = new XmlElement({ + name: 'rect', + attrs: { + width: messageRectWidth, + height: BADGE_HEIGHT, + x: labelRectWidth || 0, + fill: 'rgba(0,0,0,0)', + }, + }) + return new XmlElement({ + name: 'a', + content: [rect, text], + attrs: { + target: '_blank', + 'xlink:href': rightLink, + }, + }) + } else { + return text + } + } + + let backgroundContent + if (needsLabelRect) { + backgroundContent = [ + new XmlElement({ + name: 'rect', + attrs: { + width: labelRectWidth, + height: BADGE_HEIGHT, + fill: outLabelColor, + }, + }), + new XmlElement({ + name: 'rect', + attrs: { + x: labelRectWidth, + width: messageRectWidth, + height: BADGE_HEIGHT, + fill: color, + }, + }), + ] + } else { + backgroundContent = [ + new XmlElement({ + name: 'rect', + attrs: { + width: messageRectWidth, + height: BADGE_HEIGHT, + fill: color, + }, + }), + ] + } + + const backgroundGroup = new XmlElement({ + name: 'g', + content: backgroundContent, + attrs: { + 'shape-rendering': 'crispEdges', + }, + }) + const foregroundGroup = new XmlElement({ + name: 'g', + content: [ + logo ? logoElement : '', + hasLabel ? getLabelElement() : '', + getMessageElement(), + ], + attrs: { + fill: '#fff', + 'text-anchor': 'middle', + 'font-family': FONT_FAMILY, + 'text-rendering': 'geometricPrecision', + 'font-size': FONT_SCALE_UP_FACTOR * FONT_SIZE, + }, + }) + + // Render. + return renderBadge( + { + links, + leftWidth: labelRectWidth || 0, + rightWidth: messageRectWidth, + accessibleText: createAccessibleText({ label, message }), + height: BADGE_HEIGHT, + }, + [backgroundGroup.render(), foregroundGroup.render()].join('') + ) +} + +module.exports = { + plastic: params => Plastic.render(params), + flat: params => Flat.render(params), + 'flat-square': params => FlatSquare.render(params), + social, + 'for-the-badge': forTheBadge, +} diff --git a/node_modules/badge-maker/lib/color.js b/node_modules/badge-maker/lib/color.js new file mode 100644 index 0000000..391e28e --- /dev/null +++ b/node_modules/badge-maker/lib/color.js @@ -0,0 +1,88 @@ +'use strict' + +const { fromString } = require('css-color-converter') + +// When updating these, be sure also to update the list in `badge-maker/README.md`. +const namedColors = { + brightgreen: '#4c1', + green: '#97ca00', + yellow: '#dfb317', + yellowgreen: '#a4a61d', + orange: '#fe7d37', + red: '#e05d44', + blue: '#007ec6', + grey: '#555', + lightgrey: '#9f9f9f', +} + +const aliases = { + gray: 'grey', + lightgray: 'lightgrey', + critical: 'red', + important: 'orange', + success: 'brightgreen', + informational: 'blue', + inactive: 'lightgrey', +} + +const resolvedAliases = {} +Object.entries(aliases).forEach(([alias, original]) => { + resolvedAliases[alias] = namedColors[original] +}) + +// This function returns false for `#ccc`. However `isCSSColor('#ccc')` is +// true. +const hexColorRegex = /^([\da-f]{3}){1,2}$/i +function isHexColor(s = '') { + return hexColorRegex.test(s) +} + +function isCSSColor(color) { + return typeof color === 'string' && fromString(color.trim()) +} + +function normalizeColor(color) { + if (color === undefined) { + return undefined + } else if (color in namedColors) { + return color + } else if (color in aliases) { + return aliases[color] + } else if (isHexColor(color)) { + return `#${color.toLowerCase()}` + } else if (isCSSColor(color)) { + return color.toLowerCase() + } else { + return undefined + } +} + +function toSvgColor(color) { + const normalized = normalizeColor(color) + if (normalized in namedColors) { + return namedColors[normalized] + } else if (normalized in resolvedAliases) { + return resolvedAliases[normalized] + } else { + return normalized + } +} + +function brightness(color) { + if (color) { + const cssColor = fromString(color) + if (cssColor) { + const rgb = cssColor.toRgbaArray() + return +((rgb[0] * 299 + rgb[1] * 587 + rgb[2] * 114) / 255000).toFixed(2) + } + } + return 0 +} + +module.exports = { + namedColors, + isHexColor, + normalizeColor, + toSvgColor, + brightness, +} diff --git a/node_modules/badge-maker/lib/index.js b/node_modules/badge-maker/lib/index.js new file mode 100644 index 0000000..f4eed2c --- /dev/null +++ b/node_modules/badge-maker/lib/index.js @@ -0,0 +1,81 @@ +'use strict' +/** + * @module badge-maker + */ + +const _makeBadge = require('./make-badge') + +class ValidationError extends Error {} + +function _validate(format) { + if (format !== Object(format)) { + throw new ValidationError('makeBadge takes an argument of type object') + } + + if (!('message' in format)) { + throw new ValidationError('Field `message` is required') + } + + const stringFields = ['labelColor', 'color', 'message', 'label'] + stringFields.forEach(function (field) { + if (field in format && typeof format[field] !== 'string') { + throw new ValidationError(`Field \`${field}\` must be of type string`) + } + }) + + const styleValues = [ + 'plastic', + 'flat', + 'flat-square', + 'for-the-badge', + 'social', + ] + if ('style' in format && !styleValues.includes(format.style)) { + throw new ValidationError( + `Field \`style\` must be one of (${styleValues.toString()})` + ) + } +} + +function _clean(format) { + const expectedKeys = ['label', 'message', 'labelColor', 'color', 'style'] + + const cleaned = {} + Object.keys(format).forEach(key => { + if (format[key] != null && expectedKeys.includes(key)) { + cleaned[key] = format[key] + } else { + throw new ValidationError( + `Unexpected field '${key}'. Allowed values are (${expectedKeys.toString()})` + ) + } + }) + + // Legacy. + cleaned.label = cleaned.label || '' + + return cleaned +} + +/** + * Create a badge + * + * @param {object} format Object specifying badge data + * @param {string} format.label (Optional) Badge label (e.g: 'build') + * @param {string} format.message (Required) Badge message (e.g: 'passing') + * @param {string} format.labelColor (Optional) Label color + * @param {string} format.color (Optional) Message color + * @param {string} format.style (Optional) Visual style e.g: 'flat' + * @returns {string} Badge in SVG format + * @see https://github.com/badges/shields/tree/master/badge-maker/README.md + */ +function makeBadge(format) { + _validate(format) + const cleanedFormat = _clean(format) + return _makeBadge(cleanedFormat) +} + +module.exports = { + makeBadge, + ValidationError, +} diff --git a/node_modules/badge-maker/lib/make-badge.js b/node_modules/badge-maker/lib/make-badge.js new file mode 100644 index 0000000..495dd4e --- /dev/null +++ b/node_modules/badge-maker/lib/make-badge.js @@ -0,0 +1,63 @@ +'use strict' + +const { normalizeColor, toSvgColor } = require('./color') +const badgeRenderers = require('./badge-renderers') +const { stripXmlWhitespace } = require('./xml') + +/* +note: makeBadge() is fairly thinly wrapped so if we are making changes here +it is likely this will impact on the package's public interface in index.js +*/ +module.exports = function makeBadge({ + format, + style = 'flat', + label, + message, + color, + labelColor, + logo, + logoPosition, + logoWidth, + links = ['', ''], +}) { + // String coercion and whitespace removal. + label = `${label}`.trim() + message = `${message}`.trim() + + // This ought to be the responsibility of the server, not `makeBadge`. + if (format === 'json') { + return JSON.stringify({ + label, + message, + logoWidth, + // Only call normalizeColor for the JSON case: this is handled + // internally by toSvgColor in the SVG case. + color: normalizeColor(color), + labelColor: normalizeColor(labelColor), + link: links, + name: label, + value: message, + }) + } + + const render = badgeRenderers[style] + if (!render) { + throw new Error(`Unknown badge style: '${style}'`) + } + + logoWidth = +logoWidth || (logo ? 14 : 0) + + return stripXmlWhitespace( + render({ + label, + message, + links, + logo, + logoPosition, + logoWidth, + logoPadding: logo && label.length ? 3 : 0, + color: toSvgColor(color), + labelColor: toSvgColor(labelColor), + }) + ) +} diff --git a/node_modules/badge-maker/lib/xml.js b/node_modules/badge-maker/lib/xml.js new file mode 100644 index 0000000..1d30fa5 --- /dev/null +++ b/node_modules/badge-maker/lib/xml.js @@ -0,0 +1,76 @@ +/** + * @module + */ + +'use strict' + +function stripXmlWhitespace(xml) { + return xml.replace(/>\s+/g, '>').replace(/<\s+/g, '<').trim() +} + +function escapeXml(s) { + if (typeof s === 'number') { + return s + } else if (s === undefined || typeof s !== 'string') { + return undefined + } else { + return s + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/"/g, '"') + .replace(/'/g, ''') + } +} + +/** + * Representation of an XML element + */ +class XmlElement { + /** + * Xml Element Constructor + * + * @param {object} attrs Refer to individual attrs + * @param {string} attrs.name + * Name of the XML tag + * @param {Array.} [attrs.content=[]] + * Array of objects to render inside the tag. content may contain a mix of + * string and XmlElement objects. If content is `[]` or ommitted the + * element will be rendered as a self-closing element. + * @param {object} [attrs.attrs={}] + * Object representing the tag's attributes as name/value pairs + */ + constructor({ name, content = [], attrs = {} }) { + this.name = name + this.content = content + this.attrs = attrs + } + + /** + * Render the XML element to a string, applying appropriate escaping + * + * @returns {string} String representation of the XML element + */ + render() { + const attrsStr = Object.entries(this.attrs) + .map(([k, v]) => ` ${k}="${escapeXml(v)}"`) + .join('') + if (this.content.length > 0) { + const content = this.content + .map(function (el) { + if (el instanceof XmlElement) { + return el.render() + } else { + return escapeXml(el) + } + }) + .join(' ') + return stripXmlWhitespace( + `<${this.name}${attrsStr}>${content}` + ) + } + return stripXmlWhitespace(`<${this.name}${attrsStr}/>`) + } +} + +module.exports = { escapeXml, stripXmlWhitespace, XmlElement } diff --git a/node_modules/badge-maker/package.json b/node_modules/badge-maker/package.json new file mode 100644 index 0000000..2e19d53 --- /dev/null +++ b/node_modules/badge-maker/package.json @@ -0,0 +1,44 @@ +{ + "name": "badge-maker", + "version": "3.3.1", + "description": "Shields.io badge library", + "keywords": [ + "GitHub", + "badge", + "SVG", + "image", + "shields.io" + ], + "types": "index.d.ts", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/badges/shields.git", + "directory": "badge-maker" + }, + "author": "Thaddée Tyl ", + "license": "CC0-1.0", + "bugs": { + "url": "https://github.com/badges/shields/issues" + }, + "homepage": "http://shields.io", + "bin": { + "badge": "lib/badge-cli.js" + }, + "engines": { + "node": ">= 10", + "npm": ">= 5" + }, + "collective": { + "type": "opencollective", + "url": "https://opencollective.com/shields", + "logo": "https://opencollective.com/opencollective/logo.txt" + }, + "dependencies": { + "anafanafo": "2.0.0", + "css-color-converter": "^2.0.0" + }, + "scripts": { + "test": "echo 'Run tests from parent dir'; false" + } +} diff --git a/node_modules/binary-search/.travis.yml b/node_modules/binary-search/.travis.yml new file mode 100644 index 0000000..795ac70 --- /dev/null +++ b/node_modules/binary-search/.travis.yml @@ -0,0 +1,6 @@ +language: node_js +node_js: + - '6' +cache: + directories: + - node_modules diff --git a/node_modules/binary-search/README.md b/node_modules/binary-search/README.md new file mode 100644 index 0000000..e02805a --- /dev/null +++ b/node_modules/binary-search/README.md @@ -0,0 +1,46 @@ +binary-search +============= + +This is a really tiny, stupid, simple binary search library for Node.JS. We +wrote it because existing solutions were bloated and incorrect. + +This version is a straight port of the Java version mentioned by Joshua Bloch +in his article, [Nearly All Binary Searches and Merge Sorts are Broken](http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html). + +Thanks to [Conrad Irwin](https://github.com/ConradIrwin) and [Michael +Marino](https://github.com/mgmarino) for, ironically, pointing out bugs. + +Example +------- + +```js +var bs = require("binary-search"); + +bs([1, 2, 3, 4], 3, function(element, needle) { return element - needle; }); +// => 2 + +bs([1, 2, 4, 5], 3, function(element, needle) { return element - needle; }); +// => -3 +``` + +Be advised that passing in a comparator function is *required*. Since you're +probably using one for your sort function anyway, this isn't a big deal. + +The comparator takes a 1st and 2nd argument of element and needle, respectively. + +The comparator also takes a 3rd and 4th argument, the current index and array, +respectively. You shouldn't normally need the index or array to compare values, +but it's there if you do. + +You may also, optionally, specify an input range as the final two parameters, +in case you want to limit the search to a particular range of inputs. However, +be advised that this is generally a bad idea (but sometimes bad ideas are +necessary). + +License +------- + +To the extent possible by law, The Dark Sky Company, LLC has [waived all +copyright and related or neighboring rights][cc0] to this library. + +[cc0]: http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/node_modules/binary-search/binary-search.d.ts b/node_modules/binary-search/binary-search.d.ts new file mode 100644 index 0000000..0395d93 --- /dev/null +++ b/node_modules/binary-search/binary-search.d.ts @@ -0,0 +1,22 @@ +//Typescript type definition for: +//https://github.com/darkskyapp/binary-search +declare module 'binary-search' { + +function binarySearch( + haystack: ArrayLike, + needle: B, + comparator: (a: A, b: B, index?: number, haystack?: A[]) => any, + // Notes about comparator return value: + // * when ab the comparator's returned value should be: + // * positive number or a value such that `+value` is a positive number + // * examples: `1` or the string `"1"` + // * when a===b + // * any value other than the return cases for ab + // * examples: undefined, NaN, 'abc' + low?: number, + high?: number): number; //returns index of found result or number < 0 if not found +export = binarySearch; +} diff --git a/node_modules/binary-search/index.js b/node_modules/binary-search/index.js new file mode 100644 index 0000000..bc281ca --- /dev/null +++ b/node_modules/binary-search/index.js @@ -0,0 +1,45 @@ +module.exports = function(haystack, needle, comparator, low, high) { + var mid, cmp; + + if(low === undefined) + low = 0; + + else { + low = low|0; + if(low < 0 || low >= haystack.length) + throw new RangeError("invalid lower bound"); + } + + if(high === undefined) + high = haystack.length - 1; + + else { + high = high|0; + if(high < low || high >= haystack.length) + throw new RangeError("invalid upper bound"); + } + + while(low <= high) { + // The naive `low + high >>> 1` could fail for array lengths > 2**31 + // because `>>>` converts its operands to int32. `low + (high - low >>> 1)` + // works for array lengths <= 2**32-1 which is also Javascript's max array + // length. + mid = low + ((high - low) >>> 1); + cmp = +comparator(haystack[mid], needle, mid, haystack); + + // Too low. + if(cmp < 0.0) + low = mid + 1; + + // Too high. + else if(cmp > 0.0) + high = mid - 1; + + // Key found. + else + return mid; + } + + // Key not found. + return ~low; +} diff --git a/node_modules/binary-search/package.json b/node_modules/binary-search/package.json new file mode 100644 index 0000000..9a91ed5 --- /dev/null +++ b/node_modules/binary-search/package.json @@ -0,0 +1,28 @@ +{ + "name": "binary-search", + "version": "1.3.6", + "description": "tiny binary search function with comparators", + "license": "CC0-1.0", + "typings": "./binary-search.d.ts", + "author": { + "name": "The Dark Sky Company, LLC", + "email": "support@darkskyapp.com" + }, + "contributors": [ + { + "name": "Darcy Parker", + "web": "https://github.com/darcyparker" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/darkskyapp/binary-search.git" + }, + "devDependencies": { + "chai": "^4.2.0", + "mocha": "^5.2.0" + }, + "scripts": { + "test": "mocha" + } +} diff --git a/node_modules/binary-search/test.js b/node_modules/binary-search/test.js new file mode 100644 index 0000000..95a497f --- /dev/null +++ b/node_modules/binary-search/test.js @@ -0,0 +1,46 @@ +var expect = require("chai").expect; + +describe("binarysearch", function() { + var bs = require("./"), + arr = [1, 2, 2, 2, 3, 5, 9], + cmp = function(a, b) { return a - b; }; + + it("should bail if not passed an array", function() { + expect(function() { bs(undefined, 3, cmp); }).to.throw(TypeError); + }); + + it("should bail if not passed a comparator", function() { + expect(function() { bs(arr, 3, undefined); }).to.throw(TypeError); + }); + + it("should return the index of an item in a sorted array", function() { + expect(bs(arr, 3, cmp)).to.equal(4); + }); + + it("should return the index of where the item would go plus one, negated, if the item is not found", function() { + expect(bs(arr, 4, cmp)).to.equal(-6); + }); + + it("should return any valid index if an item exists multiple times in the array", function() { + expect(bs(arr, 2, cmp)).to.equal(3); + }); + + it("should work even on empty arrays", function() { + expect(bs([], 42, cmp)).to.equal(-1); + }); + + it("should work even on arrays of doubles", function() { + expect(bs([0.0, 0.1, 0.2, 0.3, 0.4], 0.25, cmp)).to.equal(-4); + }); + + it("should pass the index and array parameters to the comparator", function() { + var indexes = [], + indexCmp = function(a, b, i, array) { + expect(array).to.equal(arr); + indexes.push(i); + return cmp(a, b); + }; + bs(arr, 3, indexCmp); + expect(indexes).to.deep.equal([3, 5, 4]) + }); +}); diff --git a/node_modules/char-width-table-consumer/CHANGELOG.md b/node_modules/char-width-table-consumer/CHANGELOG.md new file mode 100644 index 0000000..39d0572 --- /dev/null +++ b/node_modules/char-width-table-consumer/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## 1.0.0 – Apr 12, 2019 + +- Update dependencies. +- Same API as previous release. + +## 0.2.1 – Nov 15, 2018 + +No external changes. + +## 0.2.0 – Nov 13, 2018 + +- Add `loadConsumerSync()` function. + +## 0.1.0 – Nov 13, 2018 + +Initial release. diff --git a/node_modules/char-width-table-consumer/LICENSE b/node_modules/char-width-table-consumer/LICENSE new file mode 100644 index 0000000..4df06af --- /dev/null +++ b/node_modules/char-width-table-consumer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Metabolize LLC + +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/node_modules/char-width-table-consumer/README.md b/node_modules/char-width-table-consumer/README.md new file mode 100644 index 0000000..0521ac5 --- /dev/null +++ b/node_modules/char-width-table-consumer/README.md @@ -0,0 +1,32 @@ +# char-width-table-consumer + +[![version](https://img.shields.io/npm/v/char-width-table-consumer.svg?style=flat-square)][npm] +[![license](https://img.shields.io/npm/l/char-width-table-consumer.svg?style=flat-square)][npm] +[![build](https://img.shields.io/circleci/project/github/metabolize/anafanafo.svg?style=flat-square)][build] +[![code style](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)][prettier] +[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg?style=flat-square)][lerna] + +[npm]: https://npmjs.com/char-width-table-consumer +[build]: https://circleci.com/gh/metabolize/anafanafo/tree/master +[prettier]: https://prettier.io/ +[lerna]: https://lernajs.io/ + +Measure text using a character width table. + +[puppeteer]: https://pptr.dev/ + +## Features + +This library allows efficient text measuring using a character width table. +Create the tables using companion package [char-width-table-builder][]. + +This performs a simple lookup, without considering kerning. + +Built with [Shields][] in mind. + +[char-width-table-builder]: https://www.npmjs.com/package/char-width-table-builder +[shields]: https://github.com/badges/shields/ + +## License + +This project is licensed under the MIT license. diff --git a/node_modules/char-width-table-consumer/package.json b/node_modules/char-width-table-consumer/package.json new file mode 100644 index 0000000..7b55d63 --- /dev/null +++ b/node_modules/char-width-table-consumer/package.json @@ -0,0 +1,16 @@ +{ + "name": "char-width-table-consumer", + "version": "1.0.0", + "repository": "metabolize/anafanafo", + "description": "Measure text using a character width table", + "main": "src", + "scripts": { + "test": "jest" + }, + "author": "Metabolize", + "license": "MIT", + "dependencies": { + "binary-search": "^1.3.5" + }, + "gitHead": "4bd230d372ffe93cd9bf7f036b83be6ef5dab75e" +} diff --git a/node_modules/char-width-table-consumer/src/consumer.js b/node_modules/char-width-table-consumer/src/consumer.js new file mode 100644 index 0000000..c723a90 --- /dev/null +++ b/node_modules/char-width-table-consumer/src/consumer.js @@ -0,0 +1,79 @@ +'use strict' + +const fs = require('fs') +const bs = require('binary-search') +const { promisify } = require('util') +const readFile = promisify(fs.readFile) + +module.exports = class CharWidthTableConsumer { + constructor(data) { + this.data = data + this.emWidth = this.widthOf('m') + } + + static create(data) { + return new CharWidthTableConsumer(data) + } + + static async load(path) { + const json = await readFile(path) + const data = JSON.parse(json) + return new CharWidthTableConsumer(data) + } + + static loadSync(path) { + const json = fs.readFileSync(path) + const data = JSON.parse(json) + return new CharWidthTableConsumer(data) + } + + static isControlChar(charCode) { + return charCode <= 31 || charCode === 127 + } + + widthOfCharCode(charCode) { + if (this.constructor.isControlChar(charCode)) { + return 0.0 + } + + // https://github.com/darkskyapp/binary-search/pull/18 + const index = bs(this.data, charCode, ([lower], needle) => lower - needle) + if (index >= 0) { + // The index matches the beginning of a range. + const [, , width] = this.data[index] + return width + } else { + // The index does not match the beginning of a range, which means it + // should be in the preceeding range A return value of `-x` means the + // needle would be at `x - 1`, and we want to check the element before + // that. + const candidateIndex = -index - 2 + const [lower, upper, width] = this.data[candidateIndex] + if (charCode >= lower && charCode <= upper) { + return width + } else { + return undefined + } + } + } + + widthOf(text, { guess = true } = {}) { + // Array.from() will split a string into an array of strings, each of + // which contains a single code point. + // https://stackoverflow.com/a/42596897/893113 + return Array.from(text).reduce((accumWidth, char) => { + const charWidth = this.widthOfCharCode(char.codePointAt(0)) + if (charWidth === undefined) { + if (guess) { + return accumWidth + this.emWidth + } else { + throw Error( + `No width available for character code ${char.codePointAt(0)}` + ) + } + } else { + return accumWidth + charWidth + } + }, 0.0) + } +} diff --git a/node_modules/char-width-table-consumer/src/index.js b/node_modules/char-width-table-consumer/src/index.js new file mode 100644 index 0000000..d0a2eb9 --- /dev/null +++ b/node_modules/char-width-table-consumer/src/index.js @@ -0,0 +1,16 @@ +'use strict' + +const CharWidthTableConsumer = require('./consumer') + +const { + create: createConsumer, + load: loadConsumer, + loadSync: loadConsumerSync, +} = CharWidthTableConsumer + +module.exports = { + createConsumer, + loadConsumer, + loadConsumerSync, + CharWidthTableConsumer, +} diff --git a/node_modules/color-convert/.travis.yml b/node_modules/color-convert/.travis.yml new file mode 100644 index 0000000..587bd3e --- /dev/null +++ b/node_modules/color-convert/.travis.yml @@ -0,0 +1 @@ +language: node_js diff --git a/node_modules/color-convert/CHANGELOG.md b/node_modules/color-convert/CHANGELOG.md new file mode 100644 index 0000000..8608d57 --- /dev/null +++ b/node_modules/color-convert/CHANGELOG.md @@ -0,0 +1,4 @@ +# 0.5.3 - 2015-06-02 + +- Fixed: hsl2hsv does not return `NaN` anymore when using `[0,0,0]` +([#15](https://github.com/harthur/color-convert/issues/15)) diff --git a/node_modules/color-convert/LICENSE b/node_modules/color-convert/LICENSE new file mode 100644 index 0000000..a8b08d4 --- /dev/null +++ b/node_modules/color-convert/LICENSE @@ -0,0 +1,21 @@ +Copyright (c) 2011 Heather Arthur + +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/node_modules/color-convert/README.md b/node_modules/color-convert/README.md new file mode 100644 index 0000000..9c11426 --- /dev/null +++ b/node_modules/color-convert/README.md @@ -0,0 +1,57 @@ +# color-convert [![Build Status](https://travis-ci.org/harthur/color-convert.svg?branch=master)](https://travis-ci.org/harthur/color-convert) +Color-convert is a color conversion library for JavaScript and node. It converts all ways between `rgb`, `hsl`, `hsv`, `hwb`, `cmyk`, and CSS keywords: + +```js +var converter = require("color-convert")(); + +converter.rgb(140, 200, 100).hsl() // [96, 48, 59] + +converter.keyword("blue").rgb() // [0, 0, 255] +``` + +# Install + +```console +npm install color-convert +``` + +# API + +Color-convert exports a converter object with getter/setter methods for each color space. It caches conversions: + +```js +var converter = require("color-convert")(); + +converter.rgb(140, 200, 100).hsl() // [96, 48, 59] + +converter.rgb([140, 200, 100]) // args can be an array +``` + +### Plain functions +Get direct conversion functions with no fancy objects: + +```js +require("color-convert").rgb2hsl([140, 200, 100]); // [96, 48, 59] +``` + +### Unrounded +To get the unrounded conversion, append `Raw` to the function name: + +```js +convert.rgb2hslRaw([140, 200, 100]); // [95.99999999999999, 47.619047619047606, 58.82352941176471] +``` + +### Hash +There's also a hash of the conversion functions keyed first by the "from" color space, then by the "to" color space: + +```js +convert["hsl"]["hsv"]([160, 0, 20]) == convert.hsl2hsv([160, 0, 20]) +``` + +### Other spaces + +There are some conversions from rgb (sRGB) to XYZ and LAB too, available as `rgb2xyz()`, `rgb2lab()`, `xyz2rgb()`, and `xyz2lab()`. + +# Contribute + +Please fork, add conversions, figure out color profile stuff for XYZ, LAB, etc. This is meant to be a basic library that can be used by other libraries to wrap color calculations in some cool way. diff --git a/node_modules/color-convert/component.json b/node_modules/color-convert/component.json new file mode 100644 index 0000000..c13fb12 --- /dev/null +++ b/node_modules/color-convert/component.json @@ -0,0 +1,9 @@ +{ + "name": "color-convert", + "description": "Plain color conversion functions", + "version": "0.5.3", + "author": "Heather Arthur ", + "repository": "harthur/color-convert", + "keywords": ["color", "colour", "rgb"], + "scripts": ["index.js", "conversions.js"] +} diff --git a/node_modules/color-convert/conversions.js b/node_modules/color-convert/conversions.js new file mode 100644 index 0000000..5e5d558 --- /dev/null +++ b/node_modules/color-convert/conversions.js @@ -0,0 +1,698 @@ +/* MIT license */ + +module.exports = { + rgb2hsl: rgb2hsl, + rgb2hsv: rgb2hsv, + rgb2hwb: rgb2hwb, + rgb2cmyk: rgb2cmyk, + rgb2keyword: rgb2keyword, + rgb2xyz: rgb2xyz, + rgb2lab: rgb2lab, + rgb2lch: rgb2lch, + + hsl2rgb: hsl2rgb, + hsl2hsv: hsl2hsv, + hsl2hwb: hsl2hwb, + hsl2cmyk: hsl2cmyk, + hsl2keyword: hsl2keyword, + + hsv2rgb: hsv2rgb, + hsv2hsl: hsv2hsl, + hsv2hwb: hsv2hwb, + hsv2cmyk: hsv2cmyk, + hsv2keyword: hsv2keyword, + + hwb2rgb: hwb2rgb, + hwb2hsl: hwb2hsl, + hwb2hsv: hwb2hsv, + hwb2cmyk: hwb2cmyk, + hwb2keyword: hwb2keyword, + + cmyk2rgb: cmyk2rgb, + cmyk2hsl: cmyk2hsl, + cmyk2hsv: cmyk2hsv, + cmyk2hwb: cmyk2hwb, + cmyk2keyword: cmyk2keyword, + + keyword2rgb: keyword2rgb, + keyword2hsl: keyword2hsl, + keyword2hsv: keyword2hsv, + keyword2hwb: keyword2hwb, + keyword2cmyk: keyword2cmyk, + keyword2lab: keyword2lab, + keyword2xyz: keyword2xyz, + + xyz2rgb: xyz2rgb, + xyz2lab: xyz2lab, + xyz2lch: xyz2lch, + + lab2xyz: lab2xyz, + lab2rgb: lab2rgb, + lab2lch: lab2lch, + + lch2lab: lch2lab, + lch2xyz: lch2xyz, + lch2rgb: lch2rgb +} + + +function rgb2hsl(rgb) { + var r = rgb[0]/255, + g = rgb[1]/255, + b = rgb[2]/255, + min = Math.min(r, g, b), + max = Math.max(r, g, b), + delta = max - min, + h, s, l; + + if (max == min) + h = 0; + else if (r == max) + h = (g - b) / delta; + else if (g == max) + h = 2 + (b - r) / delta; + else if (b == max) + h = 4 + (r - g)/ delta; + + h = Math.min(h * 60, 360); + + if (h < 0) + h += 360; + + l = (min + max) / 2; + + if (max == min) + s = 0; + else if (l <= 0.5) + s = delta / (max + min); + else + s = delta / (2 - max - min); + + return [h, s * 100, l * 100]; +} + +function rgb2hsv(rgb) { + var r = rgb[0], + g = rgb[1], + b = rgb[2], + min = Math.min(r, g, b), + max = Math.max(r, g, b), + delta = max - min, + h, s, v; + + if (max == 0) + s = 0; + else + s = (delta/max * 1000)/10; + + if (max == min) + h = 0; + else if (r == max) + h = (g - b) / delta; + else if (g == max) + h = 2 + (b - r) / delta; + else if (b == max) + h = 4 + (r - g) / delta; + + h = Math.min(h * 60, 360); + + if (h < 0) + h += 360; + + v = ((max / 255) * 1000) / 10; + + return [h, s, v]; +} + +function rgb2hwb(rgb) { + var r = rgb[0], + g = rgb[1], + b = rgb[2], + h = rgb2hsl(rgb)[0], + w = 1/255 * Math.min(r, Math.min(g, b)), + b = 1 - 1/255 * Math.max(r, Math.max(g, b)); + + return [h, w * 100, b * 100]; +} + +function rgb2cmyk(rgb) { + var r = rgb[0] / 255, + g = rgb[1] / 255, + b = rgb[2] / 255, + c, m, y, k; + + k = Math.min(1 - r, 1 - g, 1 - b); + c = (1 - r - k) / (1 - k) || 0; + m = (1 - g - k) / (1 - k) || 0; + y = (1 - b - k) / (1 - k) || 0; + return [c * 100, m * 100, y * 100, k * 100]; +} + +function rgb2keyword(rgb) { + return reverseKeywords[JSON.stringify(rgb)]; +} + +function rgb2xyz(rgb) { + var r = rgb[0] / 255, + g = rgb[1] / 255, + b = rgb[2] / 255; + + // assume sRGB + r = r > 0.04045 ? Math.pow(((r + 0.055) / 1.055), 2.4) : (r / 12.92); + g = g > 0.04045 ? Math.pow(((g + 0.055) / 1.055), 2.4) : (g / 12.92); + b = b > 0.04045 ? Math.pow(((b + 0.055) / 1.055), 2.4) : (b / 12.92); + + var x = (r * 0.4124) + (g * 0.3576) + (b * 0.1805); + var y = (r * 0.2126) + (g * 0.7152) + (b * 0.0722); + var z = (r * 0.0193) + (g * 0.1192) + (b * 0.9505); + + return [x * 100, y *100, z * 100]; +} + +function rgb2lab(rgb) { + var xyz = rgb2xyz(rgb), + x = xyz[0], + y = xyz[1], + z = xyz[2], + l, a, b; + + x /= 95.047; + y /= 100; + z /= 108.883; + + x = x > 0.008856 ? Math.pow(x, 1/3) : (7.787 * x) + (16 / 116); + y = y > 0.008856 ? Math.pow(y, 1/3) : (7.787 * y) + (16 / 116); + z = z > 0.008856 ? Math.pow(z, 1/3) : (7.787 * z) + (16 / 116); + + l = (116 * y) - 16; + a = 500 * (x - y); + b = 200 * (y - z); + + return [l, a, b]; +} + +function rgb2lch(args) { + return lab2lch(rgb2lab(args)); +} + +function hsl2rgb(hsl) { + var h = hsl[0] / 360, + s = hsl[1] / 100, + l = hsl[2] / 100, + t1, t2, t3, rgb, val; + + if (s == 0) { + val = l * 255; + return [val, val, val]; + } + + if (l < 0.5) + t2 = l * (1 + s); + else + t2 = l + s - l * s; + t1 = 2 * l - t2; + + rgb = [0, 0, 0]; + for (var i = 0; i < 3; i++) { + t3 = h + 1 / 3 * - (i - 1); + t3 < 0 && t3++; + t3 > 1 && t3--; + + if (6 * t3 < 1) + val = t1 + (t2 - t1) * 6 * t3; + else if (2 * t3 < 1) + val = t2; + else if (3 * t3 < 2) + val = t1 + (t2 - t1) * (2 / 3 - t3) * 6; + else + val = t1; + + rgb[i] = val * 255; + } + + return rgb; +} + +function hsl2hsv(hsl) { + var h = hsl[0], + s = hsl[1] / 100, + l = hsl[2] / 100, + sv, v; + + if(l === 0) { + // no need to do calc on black + // also avoids divide by 0 error + return [0, 0, 0]; + } + + l *= 2; + s *= (l <= 1) ? l : 2 - l; + v = (l + s) / 2; + sv = (2 * s) / (l + s); + return [h, sv * 100, v * 100]; +} + +function hsl2hwb(args) { + return rgb2hwb(hsl2rgb(args)); +} + +function hsl2cmyk(args) { + return rgb2cmyk(hsl2rgb(args)); +} + +function hsl2keyword(args) { + return rgb2keyword(hsl2rgb(args)); +} + + +function hsv2rgb(hsv) { + var h = hsv[0] / 60, + s = hsv[1] / 100, + v = hsv[2] / 100, + hi = Math.floor(h) % 6; + + var f = h - Math.floor(h), + p = 255 * v * (1 - s), + q = 255 * v * (1 - (s * f)), + t = 255 * v * (1 - (s * (1 - f))), + v = 255 * v; + + switch(hi) { + case 0: + return [v, t, p]; + case 1: + return [q, v, p]; + case 2: + return [p, v, t]; + case 3: + return [p, q, v]; + case 4: + return [t, p, v]; + case 5: + return [v, p, q]; + } +} + +function hsv2hsl(hsv) { + var h = hsv[0], + s = hsv[1] / 100, + v = hsv[2] / 100, + sl, l; + + l = (2 - s) * v; + sl = s * v; + sl /= (l <= 1) ? l : 2 - l; + sl = sl || 0; + l /= 2; + return [h, sl * 100, l * 100]; +} + +function hsv2hwb(args) { + return rgb2hwb(hsv2rgb(args)) +} + +function hsv2cmyk(args) { + return rgb2cmyk(hsv2rgb(args)); +} + +function hsv2keyword(args) { + return rgb2keyword(hsv2rgb(args)); +} + +// http://dev.w3.org/csswg/css-color/#hwb-to-rgb +function hwb2rgb(hwb) { + var h = hwb[0] / 360, + wh = hwb[1] / 100, + bl = hwb[2] / 100, + ratio = wh + bl, + i, v, f, n; + + // wh + bl cant be > 1 + if (ratio > 1) { + wh /= ratio; + bl /= ratio; + } + + i = Math.floor(6 * h); + v = 1 - bl; + f = 6 * h - i; + if ((i & 0x01) != 0) { + f = 1 - f; + } + n = wh + f * (v - wh); // linear interpolation + + switch (i) { + default: + case 6: + case 0: r = v; g = n; b = wh; break; + case 1: r = n; g = v; b = wh; break; + case 2: r = wh; g = v; b = n; break; + case 3: r = wh; g = n; b = v; break; + case 4: r = n; g = wh; b = v; break; + case 5: r = v; g = wh; b = n; break; + } + + return [r * 255, g * 255, b * 255]; +} + +function hwb2hsl(args) { + return rgb2hsl(hwb2rgb(args)); +} + +function hwb2hsv(args) { + return rgb2hsv(hwb2rgb(args)); +} + +function hwb2cmyk(args) { + return rgb2cmyk(hwb2rgb(args)); +} + +function hwb2keyword(args) { + return rgb2keyword(hwb2rgb(args)); +} + +function cmyk2rgb(cmyk) { + var c = cmyk[0] / 100, + m = cmyk[1] / 100, + y = cmyk[2] / 100, + k = cmyk[3] / 100, + r, g, b; + + r = 1 - Math.min(1, c * (1 - k) + k); + g = 1 - Math.min(1, m * (1 - k) + k); + b = 1 - Math.min(1, y * (1 - k) + k); + return [r * 255, g * 255, b * 255]; +} + +function cmyk2hsl(args) { + return rgb2hsl(cmyk2rgb(args)); +} + +function cmyk2hsv(args) { + return rgb2hsv(cmyk2rgb(args)); +} + +function cmyk2hwb(args) { + return rgb2hwb(cmyk2rgb(args)); +} + +function cmyk2keyword(args) { + return rgb2keyword(cmyk2rgb(args)); +} + + +function xyz2rgb(xyz) { + var x = xyz[0] / 100, + y = xyz[1] / 100, + z = xyz[2] / 100, + r, g, b; + + r = (x * 3.2406) + (y * -1.5372) + (z * -0.4986); + g = (x * -0.9689) + (y * 1.8758) + (z * 0.0415); + b = (x * 0.0557) + (y * -0.2040) + (z * 1.0570); + + // assume sRGB + r = r > 0.0031308 ? ((1.055 * Math.pow(r, 1.0 / 2.4)) - 0.055) + : r = (r * 12.92); + + g = g > 0.0031308 ? ((1.055 * Math.pow(g, 1.0 / 2.4)) - 0.055) + : g = (g * 12.92); + + b = b > 0.0031308 ? ((1.055 * Math.pow(b, 1.0 / 2.4)) - 0.055) + : b = (b * 12.92); + + r = Math.min(Math.max(0, r), 1); + g = Math.min(Math.max(0, g), 1); + b = Math.min(Math.max(0, b), 1); + + return [r * 255, g * 255, b * 255]; +} + +function xyz2lab(xyz) { + var x = xyz[0], + y = xyz[1], + z = xyz[2], + l, a, b; + + x /= 95.047; + y /= 100; + z /= 108.883; + + x = x > 0.008856 ? Math.pow(x, 1/3) : (7.787 * x) + (16 / 116); + y = y > 0.008856 ? Math.pow(y, 1/3) : (7.787 * y) + (16 / 116); + z = z > 0.008856 ? Math.pow(z, 1/3) : (7.787 * z) + (16 / 116); + + l = (116 * y) - 16; + a = 500 * (x - y); + b = 200 * (y - z); + + return [l, a, b]; +} + +function xyz2lch(args) { + return lab2lch(xyz2lab(args)); +} + +function lab2xyz(lab) { + var l = lab[0], + a = lab[1], + b = lab[2], + x, y, z, y2; + + if (l <= 8) { + y = (l * 100) / 903.3; + y2 = (7.787 * (y / 100)) + (16 / 116); + } else { + y = 100 * Math.pow((l + 16) / 116, 3); + y2 = Math.pow(y / 100, 1/3); + } + + x = x / 95.047 <= 0.008856 ? x = (95.047 * ((a / 500) + y2 - (16 / 116))) / 7.787 : 95.047 * Math.pow((a / 500) + y2, 3); + + z = z / 108.883 <= 0.008859 ? z = (108.883 * (y2 - (b / 200) - (16 / 116))) / 7.787 : 108.883 * Math.pow(y2 - (b / 200), 3); + + return [x, y, z]; +} + +function lab2lch(lab) { + var l = lab[0], + a = lab[1], + b = lab[2], + hr, h, c; + + hr = Math.atan2(b, a); + h = hr * 360 / 2 / Math.PI; + if (h < 0) { + h += 360; + } + c = Math.sqrt(a * a + b * b); + return [l, c, h]; +} + +function lab2rgb(args) { + return xyz2rgb(lab2xyz(args)); +} + +function lch2lab(lch) { + var l = lch[0], + c = lch[1], + h = lch[2], + a, b, hr; + + hr = h / 360 * 2 * Math.PI; + a = c * Math.cos(hr); + b = c * Math.sin(hr); + return [l, a, b]; +} + +function lch2xyz(args) { + return lab2xyz(lch2lab(args)); +} + +function lch2rgb(args) { + return lab2rgb(lch2lab(args)); +} + +function keyword2rgb(keyword) { + return cssKeywords[keyword]; +} + +function keyword2hsl(args) { + return rgb2hsl(keyword2rgb(args)); +} + +function keyword2hsv(args) { + return rgb2hsv(keyword2rgb(args)); +} + +function keyword2hwb(args) { + return rgb2hwb(keyword2rgb(args)); +} + +function keyword2cmyk(args) { + return rgb2cmyk(keyword2rgb(args)); +} + +function keyword2lab(args) { + return rgb2lab(keyword2rgb(args)); +} + +function keyword2xyz(args) { + return rgb2xyz(keyword2rgb(args)); +} + +var cssKeywords = { + aliceblue: [240,248,255], + antiquewhite: [250,235,215], + aqua: [0,255,255], + aquamarine: [127,255,212], + azure: [240,255,255], + beige: [245,245,220], + bisque: [255,228,196], + black: [0,0,0], + blanchedalmond: [255,235,205], + blue: [0,0,255], + blueviolet: [138,43,226], + brown: [165,42,42], + burlywood: [222,184,135], + cadetblue: [95,158,160], + chartreuse: [127,255,0], + chocolate: [210,105,30], + coral: [255,127,80], + cornflowerblue: [100,149,237], + cornsilk: [255,248,220], + crimson: [220,20,60], + cyan: [0,255,255], + darkblue: [0,0,139], + darkcyan: [0,139,139], + darkgoldenrod: [184,134,11], + darkgray: [169,169,169], + darkgreen: [0,100,0], + darkgrey: [169,169,169], + darkkhaki: [189,183,107], + darkmagenta: [139,0,139], + darkolivegreen: [85,107,47], + darkorange: [255,140,0], + darkorchid: [153,50,204], + darkred: [139,0,0], + darksalmon: [233,150,122], + darkseagreen: [143,188,143], + darkslateblue: [72,61,139], + darkslategray: [47,79,79], + darkslategrey: [47,79,79], + darkturquoise: [0,206,209], + darkviolet: [148,0,211], + deeppink: [255,20,147], + deepskyblue: [0,191,255], + dimgray: [105,105,105], + dimgrey: [105,105,105], + dodgerblue: [30,144,255], + firebrick: [178,34,34], + floralwhite: [255,250,240], + forestgreen: [34,139,34], + fuchsia: [255,0,255], + gainsboro: [220,220,220], + ghostwhite: [248,248,255], + gold: [255,215,0], + goldenrod: [218,165,32], + gray: [128,128,128], + green: [0,128,0], + greenyellow: [173,255,47], + grey: [128,128,128], + honeydew: [240,255,240], + hotpink: [255,105,180], + indianred: [205,92,92], + indigo: [75,0,130], + ivory: [255,255,240], + khaki: [240,230,140], + lavender: [230,230,250], + lavenderblush: [255,240,245], + lawngreen: [124,252,0], + lemonchiffon: [255,250,205], + lightblue: [173,216,230], + lightcoral: [240,128,128], + lightcyan: [224,255,255], + lightgoldenrodyellow: [250,250,210], + lightgray: [211,211,211], + lightgreen: [144,238,144], + lightgrey: [211,211,211], + lightpink: [255,182,193], + lightsalmon: [255,160,122], + lightseagreen: [32,178,170], + lightskyblue: [135,206,250], + lightslategray: [119,136,153], + lightslategrey: [119,136,153], + lightsteelblue: [176,196,222], + lightyellow: [255,255,224], + lime: [0,255,0], + limegreen: [50,205,50], + linen: [250,240,230], + magenta: [255,0,255], + maroon: [128,0,0], + mediumaquamarine: [102,205,170], + mediumblue: [0,0,205], + mediumorchid: [186,85,211], + mediumpurple: [147,112,219], + mediumseagreen: [60,179,113], + mediumslateblue: [123,104,238], + mediumspringgreen: [0,250,154], + mediumturquoise: [72,209,204], + mediumvioletred: [199,21,133], + midnightblue: [25,25,112], + mintcream: [245,255,250], + mistyrose: [255,228,225], + moccasin: [255,228,181], + navajowhite: [255,222,173], + navy: [0,0,128], + oldlace: [253,245,230], + olive: [128,128,0], + olivedrab: [107,142,35], + orange: [255,165,0], + orangered: [255,69,0], + orchid: [218,112,214], + palegoldenrod: [238,232,170], + palegreen: [152,251,152], + paleturquoise: [175,238,238], + palevioletred: [219,112,147], + papayawhip: [255,239,213], + peachpuff: [255,218,185], + peru: [205,133,63], + pink: [255,192,203], + plum: [221,160,221], + powderblue: [176,224,230], + purple: [128,0,128], + rebeccapurple: [102, 51, 153], + red: [255,0,0], + rosybrown: [188,143,143], + royalblue: [65,105,225], + saddlebrown: [139,69,19], + salmon: [250,128,114], + sandybrown: [244,164,96], + seagreen: [46,139,87], + seashell: [255,245,238], + sienna: [160,82,45], + silver: [192,192,192], + skyblue: [135,206,235], + slateblue: [106,90,205], + slategray: [112,128,144], + slategrey: [112,128,144], + snow: [255,250,250], + springgreen: [0,255,127], + steelblue: [70,130,180], + tan: [210,180,140], + teal: [0,128,128], + thistle: [216,191,216], + tomato: [255,99,71], + turquoise: [64,224,208], + violet: [238,130,238], + wheat: [245,222,179], + white: [255,255,255], + whitesmoke: [245,245,245], + yellow: [255,255,0], + yellowgreen: [154,205,50] +}; + +var reverseKeywords = {}; +for (var key in cssKeywords) { + reverseKeywords[JSON.stringify(cssKeywords[key])] = key; +} diff --git a/node_modules/color-convert/index.js b/node_modules/color-convert/index.js new file mode 100644 index 0000000..4bab806 --- /dev/null +++ b/node_modules/color-convert/index.js @@ -0,0 +1,92 @@ +var conversions = require("./conversions"); + +var convert = function() { + return new Converter(); +} + +for (var func in conversions) { + // export Raw versions + convert[func + "Raw"] = (function(func) { + // accept array or plain args + return function(arg) { + if (typeof arg == "number") + arg = Array.prototype.slice.call(arguments); + return conversions[func](arg); + } + })(func); + + var pair = /(\w+)2(\w+)/.exec(func), + from = pair[1], + to = pair[2]; + + // export rgb2hsl and ["rgb"]["hsl"] + convert[from] = convert[from] || {}; + + convert[from][to] = convert[func] = (function(func) { + return function(arg) { + if (typeof arg == "number") + arg = Array.prototype.slice.call(arguments); + + var val = conversions[func](arg); + if (typeof val == "string" || val === undefined) + return val; // keyword + + for (var i = 0; i < val.length; i++) + val[i] = Math.round(val[i]); + return val; + } + })(func); +} + + +/* Converter does lazy conversion and caching */ +var Converter = function() { + this.convs = {}; +}; + +/* Either get the values for a space or + set the values for a space, depending on args */ +Converter.prototype.routeSpace = function(space, args) { + var values = args[0]; + if (values === undefined) { + // color.rgb() + return this.getValues(space); + } + // color.rgb(10, 10, 10) + if (typeof values == "number") { + values = Array.prototype.slice.call(args); + } + + return this.setValues(space, values); +}; + +/* Set the values for a space, invalidating cache */ +Converter.prototype.setValues = function(space, values) { + this.space = space; + this.convs = {}; + this.convs[space] = values; + return this; +}; + +/* Get the values for a space. If there's already + a conversion for the space, fetch it, otherwise + compute it */ +Converter.prototype.getValues = function(space) { + var vals = this.convs[space]; + if (!vals) { + var fspace = this.space, + from = this.convs[fspace]; + vals = convert[fspace][space](from); + + this.convs[space] = vals; + } + return vals; +}; + +["rgb", "hsl", "hsv", "cmyk", "keyword"].forEach(function(space) { + Converter.prototype[space] = function(vals) { + return this.routeSpace(space, arguments); + } +}); + +module.exports = convert; \ No newline at end of file diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json new file mode 100644 index 0000000..9125087 --- /dev/null +++ b/node_modules/color-convert/package.json @@ -0,0 +1,20 @@ +{ + "name": "color-convert", + "description": "Plain color conversion functions", + "version": "0.5.3", + "author": "Heather Arthur ", + "repository": { + "type": "git", + "url": "http://github.com/harthur/color-convert.git" + }, + "devDependencies": { + }, + "scripts": { + "test": "node test/basic.js" + }, + "keywords": [ + "color", + "colour", + "rgb" + ] +} diff --git a/node_modules/color-convert/test/basic.js b/node_modules/color-convert/test/basic.js new file mode 100644 index 0000000..98ad28c --- /dev/null +++ b/node_modules/color-convert/test/basic.js @@ -0,0 +1,187 @@ +var convert = require("../index"), + assert = require("assert"); + +assert.deepEqual(convert.rgb2hsl([140, 200, 100]), [96, 48, 59]); +assert.deepEqual(convert.rgb2hsv([140, 200, 100]), [96, 50, 78]); +assert.deepEqual(convert.rgb2hwb([140, 200, 100]), [96, 39, 22]); +assert.deepEqual(convert.rgb2cmyk([140, 200, 100]), [30, 0, 50, 22]); +assert.deepEqual(convert.rgb2cmyk([0,0,0,1]), [0,0,0,100]); +assert.deepEqual(convert.rgb2keyword([255, 228, 196]), "bisque"); +assert.deepEqual(convert.rgb2xyz([92, 191, 84]), [25, 40, 15]); +assert.deepEqual(convert.rgb2lab([92, 191, 84]), [70, -50, 45]); +assert.deepEqual(convert.rgb2lch([92, 191, 84]), [70, 67, 138]); + +assert.deepEqual(convert.hsl2rgb([96, 48, 59]), [140, 201, 100]); +assert.deepEqual(convert.hsl2hsv([96, 48, 59]), [96, 50, 79]); // colorpicker says [96,50,79] +assert.deepEqual(convert.hsl2hwb([96, 48, 59]), [96, 39, 21]); // computer round to 21, should be 22 +assert.deepEqual(convert.hsl2cmyk([96, 48, 59]), [30, 0, 50, 21]); +assert.deepEqual(convert.hsl2keyword([240, 100, 50]), "blue"); + +assert.deepEqual(convert.hsv2rgb([96, 50, 78]), [139, 199, 99]); +assert.deepEqual(convert.hsv2hsl([96, 50, 78]), [96, 47, 59]); +assert.deepEqual(convert.hsv2hsl([0,0,0]), [0,0,0]); +assert.deepEqual(convert.hsv2hwb([96, 50, 78]), [96, 39, 22]); +assert.deepEqual(convert.hsv2cmyk([96, 50, 78]), [30, 0, 50, 22]); +assert.deepEqual(convert.hsv2keyword([240, 100, 100]), "blue"); + +assert.deepEqual(convert.cmyk2rgb([30, 0, 50, 22]), [139, 199, 99]); +assert.deepEqual(convert.cmyk2hsl([30, 0, 50, 22]), [96, 47, 59]); +assert.deepEqual(convert.cmyk2hsv([30, 0, 50, 22]), [96, 50, 78]); +assert.deepEqual(convert.cmyk2hwb([30, 0, 50, 22]), [96, 39, 22]); +assert.deepEqual(convert.cmyk2keyword([100, 100, 0, 0]), "blue"); + +assert.deepEqual(convert.keyword2rgb("blue"), [0, 0, 255]); +assert.deepEqual(convert.keyword2hsl("blue"), [240, 100, 50]); +assert.deepEqual(convert.keyword2hsv("blue"), [240, 100, 100]); +assert.deepEqual(convert.keyword2hwb("blue"), [240, 0, 0]); +assert.deepEqual(convert.keyword2cmyk("blue"), [100, 100, 0, 0]); +assert.deepEqual(convert.keyword2lab("blue"), [32, 79, -108]); +assert.deepEqual(convert.keyword2xyz("blue"), [18, 7, 95]); + +assert.deepEqual(convert.xyz2rgb([25, 40, 15]), [97, 190, 85]); +assert.deepEqual(convert.xyz2rgb([50, 100, 100]), [0, 255, 241]); +assert.deepEqual(convert.xyz2lab([25, 40, 15]), [69, -48, 44]); +assert.deepEqual(convert.xyz2lch([25, 40, 15]), [69, 65, 137]); + +assert.deepEqual(convert.lab2xyz([69, -48, 44]), [25, 39, 15]); +assert.deepEqual(convert.lab2rgb([75, 20, -30]), [194, 175, 240]); +assert.deepEqual(convert.lab2lch([69, -48, 44]), [69, 65, 137]); + +assert.deepEqual(convert.lch2lab([69, 65, 137]), [69, -48, 44]); +assert.deepEqual(convert.lch2xyz([69, 65, 137]), [25, 39, 15]); +assert.deepEqual(convert.lch2rgb([69, 65, 137]), [98, 188, 83]); + +// non-array arguments +assert.deepEqual(convert.hsl2rgb(96, 48, 59), [140, 201, 100]); + +// raw functions +function round(vals) { + for (var i = 0; i < vals.length; i++) + vals[i] = vals[i].toFixed(1); + return vals; +} + +assert.deepEqual(round(convert.hsl2rgbRaw([96, 48, 59])), [140.4, 200.6, 100.3]); +assert.deepEqual(round(convert.rgb2hslRaw([140, 200, 100])), [96, 47.6, 58.8]); + +assert.deepEqual(round(convert.hsv2rgbRaw([96, 50, 78])), [139.2, 198.9, 99.5]); +assert.deepEqual(round(convert.rgb2hsvRaw([140, 200, 100])), [96, 50, 78.4]); + +assert.deepEqual(round(convert.hwb2rgbRaw([96, 39, 22])), [139.2, 198.9, 99.5]); +assert.deepEqual(round(convert.rgb2hwbRaw([140, 200, 100])), [96, 39.2, 21.6]); + +assert.deepEqual(round(convert.cmyk2rgbRaw([30, 0, 50, 22])), [139.2, 198.9, 99.5]); +assert.deepEqual(round(convert.rgb2cmykRaw([140, 200, 100])), [30, 0, 50, 21.6]); + +assert.deepEqual(round(convert.keyword2rgbRaw("blue")), [0, 0, 255]); +assert.deepEqual(convert.rgb2keywordRaw([255, 228, 196]), "bisque"); + +assert.deepEqual(round(convert.hsv2hslRaw([96, 50, 78])), [96, 47, 58.5]); +assert.deepEqual(round(convert.hsl2hsvRaw([96, 48, 59])), [96, 50, 78.7]); + +assert.deepEqual(round(convert.hsl2hsvRaw([96, 48, 59])), [96, 50, 78.7]); + +assert.deepEqual(round(convert.xyz2rgbRaw([25, 40, 15])), [97.4, 189.9, 85]); +assert.deepEqual(round(convert.rgb2xyzRaw([92, 191, 84])), [24.6, 40.2, 14.8]); + +assert.deepEqual(round(convert.rgb2labRaw([92, 191, 84])), [69.6, -50.1, 44.6]); + +// hashed +var val = [140, 200, 100]; +assert.deepEqual(convert["rgb"]["hsl"](val), convert.rgb2hsl(val)); +assert.deepEqual(convert["rgb"]["hsv"](val), convert.rgb2hsv(val)); +assert.deepEqual(convert["rgb"]["hwb"](val), convert.rgb2hwb(val)); +assert.deepEqual(convert["rgb"]["cmyk"](val), convert.rgb2cmyk(val)); +assert.deepEqual(convert["rgb"]["xyz"](val), convert.rgb2xyz(val)); +assert.deepEqual(convert["rgb"]["lab"](val), convert.rgb2lab(val)); +assert.deepEqual(convert["rgb"]["keyword"]([255, 228, 196]), "bisque"); + +val = [96, 48, 59]; +assert.deepEqual(convert["hsl"]["rgb"](val), convert.hsl2rgb(val)); +assert.deepEqual(convert["hsl"]["hsv"](val), convert.hsl2hsv(val)); +assert.deepEqual(convert["hsl"]["hwb"](val), convert.hsl2hwb(val)); +assert.deepEqual(convert["hsl"]["cmyk"](val), convert.hsl2cmyk(val)); +assert.deepEqual(convert["hsl"]["keyword"](val), convert.hsl2keyword(val )); + +val = [96, 50, 78]; +assert.deepEqual(convert["hsv"]["rgb"](val), convert.hsv2rgb(val)); +assert.deepEqual(convert["hsv"]["hsl"](val), convert.hsv2hsl(val)); +assert.deepEqual(convert["hsv"]["hwb"](val), convert.hsv2hwb(val)); +assert.deepEqual(convert["hsv"]["cmyk"](val), convert.hsv2cmyk(val)); +assert.deepEqual(convert["hsv"]["keyword"](val), convert.hsv2keyword(val)); + +val = [30, 0, 50, 22]; +assert.deepEqual(convert["cmyk"]["rgb"](val), convert.cmyk2rgb(val)); +assert.deepEqual(convert["cmyk"]["hsl"](val), convert.cmyk2hsl(val)); +assert.deepEqual(convert["cmyk"]["hsv"](val), convert.cmyk2hsv(val)); +assert.deepEqual(convert["cmyk"]["hwb"](val), convert.cmyk2hwb(val)); +assert.deepEqual(convert["cmyk"]["keyword"](val), convert.cmyk2keyword(val)); + +val = "blue"; +assert.deepEqual(convert["keyword"]["rgb"](val), convert.keyword2rgb(val)); +assert.deepEqual(convert["keyword"]["hsl"](val), convert.keyword2hsl(val)); +assert.deepEqual(convert["keyword"]["hsv"](val), convert.keyword2hsv(val)); +assert.deepEqual(convert["keyword"]["hwb"](val), convert.keyword2hwb(val)); +assert.deepEqual(convert["keyword"]["cmyk"](val), convert.keyword2cmyk(val)); +assert.deepEqual(convert["keyword"]["lab"](val), convert.keyword2lab(val)); +assert.deepEqual(convert["keyword"]["xyz"](val), convert.keyword2xyz(val)); + +val = [25, 40, 15] +assert.deepEqual(convert["xyz"]["rgb"](val), convert.xyz2rgb(val)); +assert.deepEqual(convert["xyz"]["lab"](val), convert.xyz2lab(val)); + +val = [69, -48, 44]; +assert.deepEqual(convert["lab"]["xyz"](val), [25, 39, 15]); + + +// converter +var converter = convert(); + +var vals = [140, 200, 100]; +converter.rgb(140, 200, 100); + +assert.deepEqual(converter.hsl(), convert.rgb2hsl(vals)); +assert.deepEqual(converter.hsv(), convert.rgb2hsv(vals)); +assert.deepEqual(converter.cmyk(), convert.rgb2cmyk(vals)); +assert.deepEqual(converter.rgb(), vals); +assert.deepEqual(converter.rgb([255, 228, 196]).keyword(), "bisque"); + +vals = [96, 48, 59]; +converter.hsl(vals); +assert.deepEqual(converter.rgb(), convert.hsl2rgb(vals)); +assert.deepEqual(converter.hsv(), convert.hsl2hsv(vals)); +assert.deepEqual(converter.cmyk(), convert.hsl2cmyk(vals)); +assert.deepEqual(converter.keyword(), convert.hsl2keyword(vals)); + +// hwb +// http://dev.w3.org/csswg/css-color/#hwb-examples + +// all extrem value should give black, white or grey +for(var angle = 0; angle <= 360; angle ++) { + assert.deepEqual(convert.hwb2rgb([angle, 0, 100]), [0, 0, 0]); + assert.deepEqual(convert.hwb2rgb([angle, 100, 0]), [255, 255, 255]); + assert.deepEqual(convert.hwb2rgb([angle, 100, 100]), [128, 128, 128]); +} + +assert.deepEqual(convert.hwb2rgb([0, 0, 0]), [255,0,0]); +assert.deepEqual(convert.hwb2rgb([0, 20, 40]), [153, 51, 51]); +assert.deepEqual(convert.hwb2rgb([0, 40, 40]), [153, 102, 102]); +assert.deepEqual(convert.hwb2rgb([0, 40, 20]), [204, 102, 102]); + +assert.deepEqual(convert.hwb2rgb([120, 0, 0]), [0,255,0]); +assert.deepEqual(convert.hwb2rgb([120, 20, 40]), [51, 153, 51]); +assert.deepEqual(convert.hwb2rgb([120, 40, 40]), [102, 153, 102]); +assert.deepEqual(convert.hwb2rgb([120, 40, 20]), [102, 204, 102]); + +assert.deepEqual(convert.hwb2rgb([240, 0, 0]), [0,0,255]); +assert.deepEqual(convert.hwb2rgb([240, 20, 40]), [51, 51, 153]); +assert.deepEqual(convert.hwb2rgb([240, 40, 40]), [102, 102, 153]); +assert.deepEqual(convert.hwb2rgb([240, 40, 20]), [102, 102, 204]); + + +// black should always stay black +val = [0, 0, 0]; +assert.deepEqual(convert.hsl2hsv(val), val); +assert.deepEqual(convert.hsl2rgb(val), val); +assert.deepEqual(convert.hsl2hwb(val), [0, 0, 100]); +assert.deepEqual(convert.hsl2cmyk(val), [0, 0, 0, 100]); diff --git a/node_modules/color-convert/test/speed.js b/node_modules/color-convert/test/speed.js new file mode 100644 index 0000000..9a7ca11 --- /dev/null +++ b/node_modules/color-convert/test/speed.js @@ -0,0 +1,23 @@ +var convert = require("../index"); + +var converter = convert(); + +var times = 10000; + +console.time("cached"); +converter.rgb(10, 2, 30); +for(var i = 0; i < times; i++) { + converter.hsv(); + converter.hsl(); + converter.cmyk(); +} +console.timeEnd("cached"); + +console.time("uncached"); +for(var i = 0; i < times; i++) { + convert.rgb2hsl(10, 2, 30); + convert.rgb2hsv(10, 2, 30); + convert.rgb2cmyk(10, 2, 30); +} +console.timeEnd("uncached"); + diff --git a/node_modules/color-name/LICENSE b/node_modules/color-name/LICENSE new file mode 100644 index 0000000..c6b1001 --- /dev/null +++ b/node_modules/color-name/LICENSE @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright (c) 2015 Dmitry Ivanov + +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. \ No newline at end of file diff --git a/node_modules/color-name/README.md b/node_modules/color-name/README.md new file mode 100644 index 0000000..932b979 --- /dev/null +++ b/node_modules/color-name/README.md @@ -0,0 +1,11 @@ +A JSON with color names and its values. Based on http://dev.w3.org/csswg/css-color/#named-colors. + +[![NPM](https://nodei.co/npm/color-name.png?mini=true)](https://nodei.co/npm/color-name/) + + +```js +var colors = require('color-name'); +colors.red //[255,0,0] +``` + + diff --git a/node_modules/color-name/index.js b/node_modules/color-name/index.js new file mode 100644 index 0000000..b7c198a --- /dev/null +++ b/node_modules/color-name/index.js @@ -0,0 +1,152 @@ +'use strict' + +module.exports = { + "aliceblue": [240, 248, 255], + "antiquewhite": [250, 235, 215], + "aqua": [0, 255, 255], + "aquamarine": [127, 255, 212], + "azure": [240, 255, 255], + "beige": [245, 245, 220], + "bisque": [255, 228, 196], + "black": [0, 0, 0], + "blanchedalmond": [255, 235, 205], + "blue": [0, 0, 255], + "blueviolet": [138, 43, 226], + "brown": [165, 42, 42], + "burlywood": [222, 184, 135], + "cadetblue": [95, 158, 160], + "chartreuse": [127, 255, 0], + "chocolate": [210, 105, 30], + "coral": [255, 127, 80], + "cornflowerblue": [100, 149, 237], + "cornsilk": [255, 248, 220], + "crimson": [220, 20, 60], + "cyan": [0, 255, 255], + "darkblue": [0, 0, 139], + "darkcyan": [0, 139, 139], + "darkgoldenrod": [184, 134, 11], + "darkgray": [169, 169, 169], + "darkgreen": [0, 100, 0], + "darkgrey": [169, 169, 169], + "darkkhaki": [189, 183, 107], + "darkmagenta": [139, 0, 139], + "darkolivegreen": [85, 107, 47], + "darkorange": [255, 140, 0], + "darkorchid": [153, 50, 204], + "darkred": [139, 0, 0], + "darksalmon": [233, 150, 122], + "darkseagreen": [143, 188, 143], + "darkslateblue": [72, 61, 139], + "darkslategray": [47, 79, 79], + "darkslategrey": [47, 79, 79], + "darkturquoise": [0, 206, 209], + "darkviolet": [148, 0, 211], + "deeppink": [255, 20, 147], + "deepskyblue": [0, 191, 255], + "dimgray": [105, 105, 105], + "dimgrey": [105, 105, 105], + "dodgerblue": [30, 144, 255], + "firebrick": [178, 34, 34], + "floralwhite": [255, 250, 240], + "forestgreen": [34, 139, 34], + "fuchsia": [255, 0, 255], + "gainsboro": [220, 220, 220], + "ghostwhite": [248, 248, 255], + "gold": [255, 215, 0], + "goldenrod": [218, 165, 32], + "gray": [128, 128, 128], + "green": [0, 128, 0], + "greenyellow": [173, 255, 47], + "grey": [128, 128, 128], + "honeydew": [240, 255, 240], + "hotpink": [255, 105, 180], + "indianred": [205, 92, 92], + "indigo": [75, 0, 130], + "ivory": [255, 255, 240], + "khaki": [240, 230, 140], + "lavender": [230, 230, 250], + "lavenderblush": [255, 240, 245], + "lawngreen": [124, 252, 0], + "lemonchiffon": [255, 250, 205], + "lightblue": [173, 216, 230], + "lightcoral": [240, 128, 128], + "lightcyan": [224, 255, 255], + "lightgoldenrodyellow": [250, 250, 210], + "lightgray": [211, 211, 211], + "lightgreen": [144, 238, 144], + "lightgrey": [211, 211, 211], + "lightpink": [255, 182, 193], + "lightsalmon": [255, 160, 122], + "lightseagreen": [32, 178, 170], + "lightskyblue": [135, 206, 250], + "lightslategray": [119, 136, 153], + "lightslategrey": [119, 136, 153], + "lightsteelblue": [176, 196, 222], + "lightyellow": [255, 255, 224], + "lime": [0, 255, 0], + "limegreen": [50, 205, 50], + "linen": [250, 240, 230], + "magenta": [255, 0, 255], + "maroon": [128, 0, 0], + "mediumaquamarine": [102, 205, 170], + "mediumblue": [0, 0, 205], + "mediumorchid": [186, 85, 211], + "mediumpurple": [147, 112, 219], + "mediumseagreen": [60, 179, 113], + "mediumslateblue": [123, 104, 238], + "mediumspringgreen": [0, 250, 154], + "mediumturquoise": [72, 209, 204], + "mediumvioletred": [199, 21, 133], + "midnightblue": [25, 25, 112], + "mintcream": [245, 255, 250], + "mistyrose": [255, 228, 225], + "moccasin": [255, 228, 181], + "navajowhite": [255, 222, 173], + "navy": [0, 0, 128], + "oldlace": [253, 245, 230], + "olive": [128, 128, 0], + "olivedrab": [107, 142, 35], + "orange": [255, 165, 0], + "orangered": [255, 69, 0], + "orchid": [218, 112, 214], + "palegoldenrod": [238, 232, 170], + "palegreen": [152, 251, 152], + "paleturquoise": [175, 238, 238], + "palevioletred": [219, 112, 147], + "papayawhip": [255, 239, 213], + "peachpuff": [255, 218, 185], + "peru": [205, 133, 63], + "pink": [255, 192, 203], + "plum": [221, 160, 221], + "powderblue": [176, 224, 230], + "purple": [128, 0, 128], + "rebeccapurple": [102, 51, 153], + "red": [255, 0, 0], + "rosybrown": [188, 143, 143], + "royalblue": [65, 105, 225], + "saddlebrown": [139, 69, 19], + "salmon": [250, 128, 114], + "sandybrown": [244, 164, 96], + "seagreen": [46, 139, 87], + "seashell": [255, 245, 238], + "sienna": [160, 82, 45], + "silver": [192, 192, 192], + "skyblue": [135, 206, 235], + "slateblue": [106, 90, 205], + "slategray": [112, 128, 144], + "slategrey": [112, 128, 144], + "snow": [255, 250, 250], + "springgreen": [0, 255, 127], + "steelblue": [70, 130, 180], + "tan": [210, 180, 140], + "teal": [0, 128, 128], + "thistle": [216, 191, 216], + "tomato": [255, 99, 71], + "turquoise": [64, 224, 208], + "violet": [238, 130, 238], + "wheat": [245, 222, 179], + "white": [255, 255, 255], + "whitesmoke": [245, 245, 245], + "yellow": [255, 255, 0], + "yellowgreen": [154, 205, 50] +}; diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json new file mode 100644 index 0000000..782dd82 --- /dev/null +++ b/node_modules/color-name/package.json @@ -0,0 +1,28 @@ +{ + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:colorjs/color-name.git" + }, + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "author": "DY ", + "license": "MIT", + "bugs": { + "url": "https://github.com/colorjs/color-name/issues" + }, + "homepage": "https://github.com/colorjs/color-name" +} diff --git a/node_modules/css-color-converter/CHANGELOG.md b/node_modules/css-color-converter/CHANGELOG.md new file mode 100644 index 0000000..de51166 --- /dev/null +++ b/node_modules/css-color-converter/CHANGELOG.md @@ -0,0 +1,22 @@ +# 2.0.0 - 2020-09-24 +* Rewrite as ES module. Some breaking changes to the API surface has been made as a result. +* Better adhere to CSS specification (#4). +* Add support for CSS Color Module Level 4 syntax. +* Update dependencies. +* Add eslint. +* Add babel. + +# 1.1.1 - 2020-03-20 +* Fix alpha 0 incorrectly defaulting to 1 (#2). Thanks to jedwards1211. + +# 1.1.0 - 2016-08-13 +* Add `toHslaArray` method. + +# 1.0.2 - 2015-05-27 +* Fix typo causing `rgba()` to return incorrect results. + +# 1.0.1 - 2015-05-27 +* Fix `toHexString()` not padding values. + +# 1.0.0 - 2015-05-27 +* Initial release. diff --git a/node_modules/css-color-converter/LICENSE b/node_modules/css-color-converter/LICENSE new file mode 100644 index 0000000..9b1c49b --- /dev/null +++ b/node_modules/css-color-converter/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2015 Andy Jansson + +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. \ No newline at end of file diff --git a/node_modules/css-color-converter/README.md b/node_modules/css-color-converter/README.md new file mode 100644 index 0000000..4c3aea8 --- /dev/null +++ b/node_modules/css-color-converter/README.md @@ -0,0 +1,92 @@ +# css-color-converter [![Build Status][ci-img]][ci] + +Converts CSS colors from one representation to another + +[ci-img]: https://travis-ci.org/andyjansson/css-color-converter.svg +[ci]: https://travis-ci.org/andyjansson/css-color-converter + +## Installation + +```js +npm install css-color-converter +``` + +## Usage + +**Example usage**: +```js +import { fromString } from 'css-color-converter'; + +fromString('rgb(255, 255, 255)').toHslString(); // hsl(0, 0%, 100%) +fromString('rgba(255, 255, 255, 0.5)').toHslString(); // hsla(0, 0%, 100%, 0.5) +fromString('blue').toRgbString(); // rgb(0, 0, 255) +fromString('red').toHexString(); // #ff0000 +``` +## Functions + +### `fromString(str)` +| parameter | type | description | +| --------- | ------ | ---------------------------------------------- | +| `str` | string | Supports named colors, hex, rgb/rgba, hsl/hsla | + +**Returns** [`instance`](#Methods) if valid, `null` if invalid. + +### `fromRgb([r, g, b])` + +| parameter | type | description | +| --------- | ------ | ------------- | +| `r` | int | red (0-255) | +| `g` | int | green (0-255) | +| `b` | int | blue (0-255) | + +**Returns** [`instance`](#Methods) + +### `fromRgba([r, g, b, a])` + +| parameter | type | description | +| --------- | ------ | ------------- | +| `r` | int | red (0-255) | +| `g` | int | green (0-255) | +| `b` | int | blue (0-255) | +| `a` | float | alpha (0-1) | + +**Returns** [`instance`](#Methods) + +### `fromHsl([h, s, l])` + +| parameter | type | description | +| --------- | ------ | ------------------ | +| `h` | int | hue (0-360) | +| `s` | int | saturation (0-100) | +| `l` | int | luminosity (0-100) | + +**Returns** [`instance`](#Methods) + +### `fromHsla([h, s, l, a])` + +| parameter | type | description | +| --------- | ------ | ------------------ | +| `h` | int | hue (0-360) | +| `s` | int | saturation (0-100) | +| `l` | int | luminosity (0-100) | +| `a` | float | alpha (0-1) | + +**Returns** [`instance`](#Methods) + +## Methods + +### `toRgbString()` + +**Returns** `rgb()` or `rgba()`, depending on the alpha. + +### `toHslString()` + +**Returns** `hsl()` or `hsla()`, depending on the alpha. + +### `toHexString()` + +**Returns** 6-digit or 8-digit `hex`, depending on the alpha. + +### `toRgbaArray()` + +**Returns** `[r, g, b, a]` array. \ No newline at end of file diff --git a/node_modules/css-color-converter/lib/index.js b/node_modules/css-color-converter/lib/index.js new file mode 100644 index 0000000..ab8e42f --- /dev/null +++ b/node_modules/css-color-converter/lib/index.js @@ -0,0 +1,314 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fromRgba = fromRgba; +exports.fromRgb = fromRgb; +exports.fromHsla = fromHsla; +exports.fromHsl = fromHsl; +exports.fromString = fromString; +exports["default"] = void 0; + +var _colorName = _interopRequireDefault(require("color-name")); + +var _cssUnitConverter = _interopRequireDefault(require("css-unit-converter")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +var hex = /^#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})?$/; +var shortHex = /^#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])?$/; +var rgb = /^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*,\s*(0|1|0?\.\d+|\d+%))?\s*\)$/; +var rgbfn = /^rgba?\(\s*(\d+)\s+(\d+)\s+(\d+)(?:\s*\/\s*(0|1|0?\.\d+|\d+%))?\s*\)$/; +var rgbperc = /^rgba?\(\s*(\d+%)\s*,\s*(\d+%)\s*,\s*(\d+%)(?:\s*,\s*(0|1|0?\.\d+|\d+%))?\s*\)$/; +var rgbpercfn = /^rgba?\(\s*(\d+%)\s+(\d+%)\s+(\d+%)(?:\s*\/\s*(0|1|0?\.\d+|\d+%))?\s*\)$/; +var hsl = /^hsla?\(\s*(\d+)(deg|rad|grad|turn)?\s*,\s*(\d+)%\s*,\s*(\d+)%(?:\s*,\s*(0|1|0?\.\d+|\d+%))?\s*\)$/; + +function contains(haystack, needle) { + return haystack.indexOf(needle) > -1; +} + +function rgbToHsl(r, g, b) { + var rprim = r / 255; + var gprim = g / 255; + var bprim = b / 255; + var cmax = Math.max(rprim, gprim, bprim); + var cmin = Math.min(rprim, gprim, bprim); + var delta = cmax - cmin; + var l = (cmax + cmin) / 2; + + if (delta === 0) { + return [0, 0, l * 100]; + } + + var s = delta / (1 - Math.abs(2 * l - 1)); + + var h = function () { + switch (cmax) { + case rprim: + { + return (gprim - bprim) / delta % 6; + } + + case gprim: + { + return (bprim - rprim) / delta + 2; + } + + default: + { + return (rprim - gprim) / delta + 4; + } + } + }(); + + return [h * 60, s * 100, l * 100]; +} + +function hslToRgb(h, s, l) { + var hprim = h / 60; + var sprim = s / 100; + var lprim = l / 100; + var c = (1 - Math.abs(2 * lprim - 1)) * sprim; + var x = c * (1 - Math.abs(hprim % 2 - 1)); + var m = lprim - c / 2; + + var _ref = function () { + if (hprim < 1) return [c, x, 0]; + if (hprim < 2) return [x, c, 0]; + if (hprim < 3) return [0, c, x]; + if (hprim < 4) return [0, x, c]; + if (hprim < 5) return [x, 0, c]; + return [c, 0, x]; + }(), + _ref2 = _slicedToArray(_ref, 3), + rprim = _ref2[0], + gprim = _ref2[1], + bprim = _ref2[2]; + + return [(rprim + m) * 255, (gprim + m) * 255, (bprim + m) * 255]; +} + +var Color = /*#__PURE__*/function () { + function Color(_ref3) { + var _ref4 = _slicedToArray(_ref3, 4), + r = _ref4[0], + g = _ref4[1], + b = _ref4[2], + a = _ref4[3]; + + _classCallCheck(this, Color); + + this.values = [Math.max(Math.min(parseInt(r, 10), 255), 0), Math.max(Math.min(parseInt(g, 10), 255), 0), Math.max(Math.min(parseInt(b, 10), 255), 0), a == null ? 1 : Math.max(Math.min(parseFloat(a), 255), 0)]; + } + + _createClass(Color, [{ + key: "toRgbString", + value: function toRgbString() { + var _this$values = _slicedToArray(this.values, 4), + r = _this$values[0], + g = _this$values[1], + b = _this$values[2], + a = _this$values[3]; + + if (a === 1) { + return "rgb(".concat(r, ", ").concat(g, ", ").concat(b, ")"); + } + + return "rgba(".concat(r, ", ").concat(g, ", ").concat(b, ", ").concat(a, ")"); + } + }, { + key: "toHslString", + value: function toHslString() { + var _this$toHslaArray = this.toHslaArray(), + _this$toHslaArray2 = _slicedToArray(_this$toHslaArray, 4), + h = _this$toHslaArray2[0], + s = _this$toHslaArray2[1], + l = _this$toHslaArray2[2], + a = _this$toHslaArray2[3]; + + if (a === 1) { + return "hsl(".concat(h, ", ").concat(s, "%, ").concat(l, "%)"); + } + + return "hsla(".concat(h, ", ").concat(s, "%, ").concat(l, "%, ").concat(a, ")"); + } + }, { + key: "toHexString", + value: function toHexString() { + var _this$values2 = _slicedToArray(this.values, 4), + r = _this$values2[0], + g = _this$values2[1], + b = _this$values2[2], + a = _this$values2[3]; + + r = Number(r).toString(16).padStart(2, '0'); + g = Number(g).toString(16).padStart(2, '0'); + b = Number(b).toString(16).padStart(2, '0'); + a = a < 1 ? parseInt(a * 255, 10).toString(16).padStart(2, '0') : ''; + return "#".concat(r).concat(g).concat(b).concat(a); + } + }, { + key: "toRgbaArray", + value: function toRgbaArray() { + return this.values; + } + }, { + key: "toHslaArray", + value: function toHslaArray() { + var _this$values3 = _slicedToArray(this.values, 4), + r = _this$values3[0], + g = _this$values3[1], + b = _this$values3[2], + a = _this$values3[3]; + + var _rgbToHsl = rgbToHsl(r, g, b), + _rgbToHsl2 = _slicedToArray(_rgbToHsl, 3), + h = _rgbToHsl2[0], + s = _rgbToHsl2[1], + l = _rgbToHsl2[2]; + + return [h, s, l, a]; + } + }]); + + return Color; +}(); + +function fromRgba(_ref5) { + var _ref6 = _slicedToArray(_ref5, 4), + r = _ref6[0], + g = _ref6[1], + b = _ref6[2], + a = _ref6[3]; + + return new Color([r, g, b, a]); +} + +function fromRgb(_ref7) { + var _ref8 = _slicedToArray(_ref7, 3), + r = _ref8[0], + g = _ref8[1], + b = _ref8[2]; + + return fromRgba([r, g, b, 1]); +} + +function fromHsla(_ref9) { + var _ref10 = _slicedToArray(_ref9, 4), + h = _ref10[0], + s = _ref10[1], + l = _ref10[2], + a = _ref10[3]; + + var _hslToRgb = hslToRgb(h, s, l), + _hslToRgb2 = _slicedToArray(_hslToRgb, 3), + r = _hslToRgb2[0], + g = _hslToRgb2[1], + b = _hslToRgb2[2]; + + return fromRgba([r, g, b, a]); +} + +function fromHsl(_ref11) { + var _ref12 = _slicedToArray(_ref11, 3), + h = _ref12[0], + s = _ref12[1], + l = _ref12[2]; + + return fromHsla([h, s, l, 1]); +} + +function fromHexString(str) { + var _ref13 = hex.exec(str) || shortHex.exec(str), + _ref14 = _slicedToArray(_ref13, 5), + r = _ref14[1], + g = _ref14[2], + b = _ref14[3], + a = _ref14[4]; + + r = parseInt(r.length < 2 ? r.repeat(2) : r, 16); + g = parseInt(g.length < 2 ? g.repeat(2) : g, 16); + b = parseInt(b.length < 2 ? b.repeat(2) : b, 16); + a = a && (parseInt(a.length < 2 ? a.repeat(2) : a, 16) / 255).toPrecision(1) || 1; + return fromRgba([r, g, b, a]); +} + +function fromRgbString(str) { + var _ref15 = rgb.exec(str) || rgbperc.exec(str) || rgbfn.exec(str) || rgbpercfn.exec(str), + _ref16 = _slicedToArray(_ref15, 5), + r = _ref16[1], + g = _ref16[2], + b = _ref16[3], + a = _ref16[4]; + + r = contains(r, '%') ? parseInt(r, 10) * 255 / 100 : parseInt(r, 10); + g = contains(g, '%') ? parseInt(g, 10) * 255 / 100 : parseInt(g, 10); + b = contains(b, '%') > 0 ? parseInt(b, 10) * 255 / 100 : parseInt(b, 10); + a = a === undefined ? 1 : parseFloat(a) / (contains(a, '%') ? 100 : 1); + return fromRgba([r, g, b, a]); +} + +function fromHslString(str) { + var _hsl$exec = hsl.exec(str), + _hsl$exec2 = _slicedToArray(_hsl$exec, 6), + h = _hsl$exec2[1], + unit = _hsl$exec2[2], + s = _hsl$exec2[3], + l = _hsl$exec2[4], + a = _hsl$exec2[5]; + + unit = unit || 'deg'; + h = (0, _cssUnitConverter["default"])(parseFloat(h), unit, 'deg'); + s = parseFloat(s); + l = parseFloat(l); + a = a === undefined ? 1 : parseFloat(a) / (contains(a, '%') ? 100 : 1); + return fromHsla([h, s, l, a]); +} + +function fromString(str) { + if (_colorName["default"][str]) { + return fromRgb(_colorName["default"][str]); + } + + if (hex.test(str) || shortHex.test(str)) { + return fromHexString(str); + } + + if (rgb.test(str) || rgbperc.test(str) || rgbfn.test(str) || rgbpercfn.test(str)) { + return fromRgbString(str); + } + + if (hsl.test(str)) { + return fromHslString(str); + } + + return null; +} + +var _default = { + fromString: fromString, + fromRgb: fromRgb, + fromRgba: fromRgba, + fromHsl: fromHsl, + fromHsla: fromHsla +}; +exports["default"] = _default; \ No newline at end of file diff --git a/node_modules/css-color-converter/package.json b/node_modules/css-color-converter/package.json new file mode 100644 index 0000000..65532fc --- /dev/null +++ b/node_modules/css-color-converter/package.json @@ -0,0 +1,42 @@ +{ + "name": "css-color-converter", + "version": "2.0.0", + "description": "Converts CSS colors from one representation to another", + "main": "lib/index.js", + "scripts": { + "prepublish": "npm run lint && npm run build", + "lint": "eslint --ext .mjs src", + "build": "babel src -d lib", + "pretest": "npm run lint", + "test": "node src/__tests__/test.mjs" + }, + "repository": { + "type": "git", + "url": "https://github.com/andyjansson/css-color-converter.git" + }, + "keywords": [ + "css", + "color", + "conversions", + "converter" + ], + "author": "Andy Jansson", + "license": "MIT", + "bugs": { + "url": "https://github.com/andyjansson/css-color-converter/issues" + }, + "homepage": "https://github.com/andyjansson/css-color-converter", + "dependencies": { + "color-convert": "^0.5.2", + "color-name": "^1.1.4", + "css-unit-converter": "^1.1.2" + }, + "devDependencies": { + "@babel/cli": "^7.11.6", + "@babel/core": "^7.11.6", + "@babel/preset-env": "^7.11.5", + "eslint": "^7.9.0", + "eslint-config-airbnb-base": "^14.2.0", + "eslint-plugin-import": "^2.22.0" + } +} diff --git a/node_modules/css-unit-converter/CHANGELOG.md b/node_modules/css-unit-converter/CHANGELOG.md new file mode 100644 index 0000000..0bd248c --- /dev/null +++ b/node_modules/css-unit-converter/CHANGELOG.md @@ -0,0 +1,15 @@ +# 1.1.2 - 2020-05-16 + +* Add TypeScript definitions (thanks to @seaneking) + +# 1.1.1 - 2017-01-25 + +* Change decimal rounding technique + +# 1.1 - 2017-01-24 + +* Add optional precision argument + +# 1.0 - 2015-05-18 + +* Initial release diff --git a/node_modules/css-unit-converter/LICENSE b/node_modules/css-unit-converter/LICENSE new file mode 100644 index 0000000..9b1c49b --- /dev/null +++ b/node_modules/css-unit-converter/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2015 Andy Jansson + +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. \ No newline at end of file diff --git a/node_modules/css-unit-converter/README.md b/node_modules/css-unit-converter/README.md new file mode 100644 index 0000000..5ea113e --- /dev/null +++ b/node_modules/css-unit-converter/README.md @@ -0,0 +1,26 @@ +# css-unit-converter [![Build Status][ci-img]][ci] + +Converts CSS values from one unit to another + +[PostCSS]: https://github.com/postcss/css-unit-converter +[ci-img]: https://travis-ci.org/andyjansson/css-unit-converter.svg +[ci]: https://travis-ci.org/andyjansson/css-unit-converter + + +## Installation + +```js +npm install css-unit-converter +``` + +## Usage + + +```js +var convert = require('css-unit-converter'); +//convert 1 inch to pc +convert(1, 'in', 'pc'); // 6 + +//convert 10px to cm with a maximum of 10 decimals +convert(10, 'px', 'cm', 10); // 0.2645833333 +``` diff --git a/node_modules/css-unit-converter/index.d.ts b/node_modules/css-unit-converter/index.d.ts new file mode 100644 index 0000000..f8b96da --- /dev/null +++ b/node_modules/css-unit-converter/index.d.ts @@ -0,0 +1,10 @@ +declare module 'css-unit-converter' { + export type CSSUnits = 'px' | 'cm' | 'mm' | 'in' | 'pt' | 'pc' | 'deg' | 'grad' | 'rad' | 'turn' | 's' | 'ms' | 'Hz' | 'kHz' | 'dpi' | 'dpcm' | 'dppx'; + + export default function ( + value: number, + sourceUnit: CSSUnits, + targetUnit: CSSUnits, + precision?: number + ): number; +} diff --git a/node_modules/css-unit-converter/index.js b/node_modules/css-unit-converter/index.js new file mode 100644 index 0000000..2bdf1a1 --- /dev/null +++ b/node_modules/css-unit-converter/index.js @@ -0,0 +1,127 @@ +var conversions = { + // length + 'px': { + 'px': 1, + 'cm': 96.0/2.54, + 'mm': 96.0/25.4, + 'in': 96, + 'pt': 96.0/72.0, + 'pc': 16 + }, + 'cm': { + 'px': 2.54/96.0, + 'cm': 1, + 'mm': 0.1, + 'in': 2.54, + 'pt': 2.54/72.0, + 'pc': 2.54/6.0 + }, + 'mm': { + 'px': 25.4/96.0, + 'cm': 10, + 'mm': 1, + 'in': 25.4, + 'pt': 25.4/72.0, + 'pc': 25.4/6.0 + }, + 'in': { + 'px': 1.0/96.0, + 'cm': 1.0/2.54, + 'mm': 1.0/25.4, + 'in': 1, + 'pt': 1.0/72.0, + 'pc': 1.0/6.0 + }, + 'pt': { + 'px': 0.75, + 'cm': 72.0/2.54, + 'mm': 72.0/25.4, + 'in': 72, + 'pt': 1, + 'pc': 12 + }, + 'pc': { + 'px': 6.0/96.0, + 'cm': 6.0/2.54, + 'mm': 6.0/25.4, + 'in': 6, + 'pt': 6.0/72.0, + 'pc': 1 + }, + // angle + 'deg': { + 'deg': 1, + 'grad': 0.9, + 'rad': 180/Math.PI, + 'turn': 360 + }, + 'grad': { + 'deg': 400/360, + 'grad': 1, + 'rad': 200/Math.PI, + 'turn': 400 + }, + 'rad': { + 'deg': Math.PI/180, + 'grad': Math.PI/200, + 'rad': 1, + 'turn': Math.PI*2 + }, + 'turn': { + 'deg': 1/360, + 'grad': 1/400, + 'rad': 0.5/Math.PI, + 'turn': 1 + }, + // time + 's': { + 's': 1, + 'ms': 1/1000 + }, + 'ms': { + 's': 1000, + 'ms': 1 + }, + // frequency + 'Hz': { + 'Hz': 1, + 'kHz': 1000 + }, + 'kHz': { + 'Hz': 1/1000, + 'kHz': 1 + }, + // resolution + 'dpi': { + 'dpi': 1, + 'dpcm': 1.0/2.54, + 'dppx': 1/96 + }, + 'dpcm': { + 'dpi': 2.54, + 'dpcm': 1, + 'dppx': 2.54/96.0 + }, + 'dppx': { + 'dpi': 96, + 'dpcm': 96.0/2.54, + 'dppx': 1 + } +}; + +module.exports = function (value, sourceUnit, targetUnit, precision) { + if (!conversions.hasOwnProperty(targetUnit)) + throw new Error("Cannot convert to " + targetUnit); + + if (!conversions[targetUnit].hasOwnProperty(sourceUnit)) + throw new Error("Cannot convert from " + sourceUnit + " to " + targetUnit); + + var converted = conversions[targetUnit][sourceUnit] * value; + + if (precision !== false) { + precision = Math.pow(10, parseInt(precision) || 5); + return Math.round(converted * precision) / precision; + } + + return converted; +}; diff --git a/node_modules/css-unit-converter/package.json b/node_modules/css-unit-converter/package.json new file mode 100644 index 0000000..a141344 --- /dev/null +++ b/node_modules/css-unit-converter/package.json @@ -0,0 +1,29 @@ +{ + "name": "css-unit-converter", + "version": "1.1.2", + "description": "Converts CSS values from one unit to another", + "main": "index.js", + "scripts": { + "test": "node test/test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/andyjansson/css-unit-converter.git" + }, + "keywords": [ + "css", + "value", + "unit", + "converter", + "convert" + ], + "author": "Andy Jansson", + "license": "MIT", + "bugs": { + "url": "https://github.com/andyjansson/css-unit-converter/issues" + }, + "homepage": "https://github.com/andyjansson/css-unit-converter", + "devDependencies": { + "tape": "^4.6.3" + } +} diff --git a/package-lock.json b/package-lock.json index 642de30..56fc053 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,8 @@ "version": "1.5.0", "license": "MIT", "dependencies": { - "@actions/core": "^1.10.0" + "@actions/core": "^1.10.0", + "badge-maker": "^3.3.1" } }, "node_modules/@actions/core": { @@ -29,6 +30,68 @@ "tunnel": "^0.0.6" } }, + "node_modules/anafanafo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anafanafo/-/anafanafo-2.0.0.tgz", + "integrity": "sha512-Nlfq7NC4AOkTJerWRIZcOAiMNtIDVIGWGvQ98O7Jl6Kr2Dk0dX5u4MqN778kSRTy5KRqchpLdF2RtLFEz9FVkQ==", + "dependencies": { + "char-width-table-consumer": "^1.0.0" + } + }, + "node_modules/badge-maker": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/badge-maker/-/badge-maker-3.3.1.tgz", + "integrity": "sha512-OO/PS7Zg2E6qaUWzHEHt21Q5VjcFBAJVA8ztgT/fIdSZFBUwoyeo0ZhA6V5tUM8Vcjq8DJl6jfGhpjESssyqMQ==", + "dependencies": { + "anafanafo": "2.0.0", + "css-color-converter": "^2.0.0" + }, + "bin": { + "badge": "lib/badge-cli.js" + }, + "engines": { + "node": ">= 10", + "npm": ">= 5" + } + }, + "node_modules/binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" + }, + "node_modules/char-width-table-consumer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/char-width-table-consumer/-/char-width-table-consumer-1.0.0.tgz", + "integrity": "sha512-Fz4UD0LBpxPgL9i29CJ5O4KANwaMnX/OhhbxzvNa332h+9+nRKyeuLw4wA51lt/ex67+/AdsoBQJF3kgX2feYQ==", + "dependencies": { + "binary-search": "^1.3.5" + } + }, + "node_modules/color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha512-RwBeO/B/vZR3dfKL1ye/vx8MHZ40ugzpyfeVG5GsiuGnrlMWe2o8wxBbLCpw9CsxV+wHuzYlCiWnybrIA0ling==" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/css-color-converter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-color-converter/-/css-color-converter-2.0.0.tgz", + "integrity": "sha512-oLIG2soZz3wcC3aAl/7Us5RS8Hvvc6I8G8LniF/qfMmrm7fIKQ8RIDDRZeKyGL2SrWfNqYspuLShbnjBMVWm8g==", + "dependencies": { + "color-convert": "^0.5.2", + "color-name": "^1.1.4", + "css-unit-converter": "^1.1.2" + } + }, + "node_modules/css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, "node_modules/tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", @@ -64,6 +127,61 @@ "tunnel": "^0.0.6" } }, + "anafanafo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anafanafo/-/anafanafo-2.0.0.tgz", + "integrity": "sha512-Nlfq7NC4AOkTJerWRIZcOAiMNtIDVIGWGvQ98O7Jl6Kr2Dk0dX5u4MqN778kSRTy5KRqchpLdF2RtLFEz9FVkQ==", + "requires": { + "char-width-table-consumer": "^1.0.0" + } + }, + "badge-maker": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/badge-maker/-/badge-maker-3.3.1.tgz", + "integrity": "sha512-OO/PS7Zg2E6qaUWzHEHt21Q5VjcFBAJVA8ztgT/fIdSZFBUwoyeo0ZhA6V5tUM8Vcjq8DJl6jfGhpjESssyqMQ==", + "requires": { + "anafanafo": "2.0.0", + "css-color-converter": "^2.0.0" + } + }, + "binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" + }, + "char-width-table-consumer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/char-width-table-consumer/-/char-width-table-consumer-1.0.0.tgz", + "integrity": "sha512-Fz4UD0LBpxPgL9i29CJ5O4KANwaMnX/OhhbxzvNa332h+9+nRKyeuLw4wA51lt/ex67+/AdsoBQJF3kgX2feYQ==", + "requires": { + "binary-search": "^1.3.5" + } + }, + "color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha512-RwBeO/B/vZR3dfKL1ye/vx8MHZ40ugzpyfeVG5GsiuGnrlMWe2o8wxBbLCpw9CsxV+wHuzYlCiWnybrIA0ling==" + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "css-color-converter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/css-color-converter/-/css-color-converter-2.0.0.tgz", + "integrity": "sha512-oLIG2soZz3wcC3aAl/7Us5RS8Hvvc6I8G8LniF/qfMmrm7fIKQ8RIDDRZeKyGL2SrWfNqYspuLShbnjBMVWm8g==", + "requires": { + "color-convert": "^0.5.2", + "color-name": "^1.1.4", + "css-unit-converter": "^1.1.2" + } + }, + "css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, "tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", diff --git a/package.json b/package.json index fc144eb..96d3710 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "dynamic-badges-action", "version": "1.5.0", "description": "A GitHub Action which uses shields.io to create custom badges and uploads the to a gist.", + "type": "module", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -18,6 +19,7 @@ }, "homepage": "https://github.com/Schneegans/dynamic-badges-action#readme", "dependencies": { - "@actions/core": "^1.10.0" + "@actions/core": "^1.10.0", + "badge-maker": "^3.3.1" } -} \ No newline at end of file +}