diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd4eb98 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed + +# Coverage directory used by tools like istanbul +coverage + +# node-waf configuration +.lock-wscript + +# Dependency directory +node_modules + +# Compiled JS directory +/dist/* +!/dist/iexec.js + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b372aef --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2017 iExec Blockchain Tech, https://iex.ec + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index fecb605..4cac9a4 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,79 @@ -# iexec dapps samples +# iExec dapp samples +## 1 branch = 1 dapp -This is the registry for sample iexec dapps, used by the iexec-sdk cli. +Each branch of this repo is a sample iExec dapp, and can be easily played with by using the [iexec sdk cli](https://github.com/iExecBlockchainComputing/iexec-sdk) like this: +```iexec init branchName``` -Each branch name of this repo can be used as an argument to iexec init command. - -ex: ```bash -iexec init -iexec init factorial -iexec init echo +iexec init # current branch containing minimum working config +iexec init factorial # download and init factorial dapp +iexec init echo # download and init echo dapp ``` + +Start a [Pull Request](https://github.com/iExecBlockchainComputing/iexec-dapp-samples/pulls) to add you dapp to this repo. + +## [iExec Dapp Challenge](https://medium.com/iex-ec/the-iexec-%C3%B0app-challenge-150k-of-grants-to-win-abf6798b31ee) + + * Go checkout the [iExec Dapp Challenge](https://medium.com/iex-ec/the-iexec-%C3%B0app-challenge-150k-of-grants-to-win-abf6798b31ee) + * Go submit a request to be listed on the [iExec dapp store](https://dapps.iex.ec/) + +--- +# Hector on IExec - Global Climate Module + +## Description + +The idea is to decentralize climate models and let everyone participate with unused computing resources to run the models. +With the recent advent of open-source climate models that are highly modular everyone can contribute to climate research with code and with the emerging blockchain technology we can help to let people contribute with their hardware as well. + +HECTOR - https://github.com/JGCRI/hector + +Hector, an open-source, object-oriented, reduced-form global climate carbon-cycle model, is written in C++. This model runs essentially instantaneously while still representing the most critical global-scale earth system processes. Hector has a three-part main carbon cycle: a one-pool atmosphere, land, and ocean. The model’s terrestrial carbon cycle includes primary production and respiration fluxes, accommodating arbitrary geographic divisions into, e.g., ecological biomes or political units. Hector actively solves the inorganic carbon system in the surface ocean, directly calculating air– sea fluxes of carbon and ocean pH. Hector reproduces the global historical trends of atmospheric [CO2], radiative forcing, and surface temperatures. The model simulates all four Representative Concentration Pathways (RCPs) with equivalent rates of change of key variables over time compared to current observations, MAGICC, and models from CMIP5 (Hartin et al., 2015). Hector’s flexibility, open-source nature, and modular design facilitates a broad range of research in various areas. + +Introduction paper: https://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.pdf + +My personal background is software development (+20 years experience) as well as climate research (3 years) and teaching. My goal is to raise awareness for the current climate crisis and help people contribute. +My vision is that science regains trust from the public by being completely open and transparent. Currently especially in climate research this is not the case and only very few models are open-source models. The hereby presented model HECTOR is one of those new approaches. + +## Components + +Main components of HECTOR model +http://jgcri.github.io/gcam-doc/hector.html + +Inputs: +Ini-file : a general setup file located in input directory ( links to emissions directory ) +Start app with e.g. : "hector hector_rcp85.ini" + +Outputs: +At every time step Hector calculates and outputs key climate variables for Atmosphere, Land and Ocean +e.g. CO2, CH4 etc… + + +## Open Tasks - Roadmap + +- add HECTOR executable for x64 environments (MAC-OS build included) and integrate into sampled app pull request +- bundle output data files for iexec result output + +-> HECTOR running on IExec (X64 environment) - timeline FEB/MARCH 2018 + +- advertise 1st climate model on blockchain ( similar to SETI project https://github.com/SETI one of the 1st public scientific HPC projects ) +- develop a monetization model with RLC for + - a) business cases ( HPC on blockchain - similar to other IExec projects ) + - b) incentivize „normal“ interested users ( public ) to spend tokens and help promote climate models and open research + + +## Dapp params + +module.exports = { + name: 'HECTOR', + data: { + type: 'BINARY', + cpu: 'AMD64', + os: 'MACOS', + }, + work: { // HERE: add input files + cmdline: '10', + } +} + +## [Examples] - coming soon diff --git a/apps/README.md b/apps/README.md new file mode 100644 index 0000000..bc23275 --- /dev/null +++ b/apps/README.md @@ -0,0 +1,7 @@ +Your iExec Dapp is composed of two parts: + +* under the ```apps``` directory : +Put the offchain app (any kind of legacy application). The offchain app will be executed by the iExec decentralized cloud. + +* under the ```contracts``` directory : +A smart contract that interfaces with your iExec Dapp, it will serve as a gateway from Ethereum to your offchain app. diff --git a/apps/hector b/apps/hector new file mode 100755 index 0000000..fcfb9ea Binary files /dev/null and b/apps/hector differ diff --git a/build/contracts/MyContract.json b/build/contracts/MyContract.json new file mode 100644 index 0000000..eda0a85 --- /dev/null +++ b/build/contracts/MyContract.json @@ -0,0 +1,436 @@ +{ + "contractName": "MyContract", + "abi": [ + { + "constant": false, + "inputs": [ + { + "name": "submitTxHash", + "type": "bytes32" + }, + { + "name": "user", + "type": "address" + }, + { + "name": "stdout", + "type": "string" + }, + { + "name": "uri", + "type": "string" + } + ], + "name": "iexecSubmitCallback", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "DAPP_PRICE", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "param", + "type": "string" + } + ], + "name": "iexecSubmit", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "DAPP_NAME", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "_iexecOracleAddress", + "type": "address" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "name": "submitTxHash", + "type": "bytes32" + }, + { + "indexed": true, + "name": "user", + "type": "address" + }, + { + "indexed": false, + "name": "stdout", + "type": "string" + }, + { + "indexed": false, + "name": "uri", + "type": "string" + } + ], + "name": "IexecSubmitCallback", + "type": "event" + } + ], + "bytecode": "0x6060604052341561000f57600080fd5b60405160208061076c833981016040528080519060200190919050508060006040805190810160405280600481526020017f696e6974000000000000000000000000000000000000000000000000000000008152506000836000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16635993ef5384846000604051602001526040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610162578082015181840152602081019050610147565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509350505050602060405180830381600087803b15156101ae57600080fd5b6102c65a03f115156101bf57600080fd5b5050506040518051905015156101d457600080fd5b5050505050610584806101e86000396000f300606060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806310a9f201146100675780633c0aef301461014b5780638cd213b914610174578063c878f958146101c6575b600080fd5b341561007257600080fd5b61013160048080356000191690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050610254565b604051808215151515815260200191505060405180910390f35b341561015657600080fd5b61015e6103ed565b6040518082815260200191505060405180910390f35b6101c4600480803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919050506103f2565b005b34156101d157600080fd5b6101d961051f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102195780820151818401526020810190506101fe565b50505050905090810190601f1680156102465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156102b157600080fd5b8373ffffffffffffffffffffffffffffffffffffffff167f68d2eaa37ea3e53bbe55f11eb038084f280086b8f4c4552dbca1b5692efeb9138685856040518084600019166000191681526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561033e578082015181840152602081019050610323565b50505050905090810190601f16801561036b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156103a4578082015181840152602081019050610389565b50505050905090810190601f1680156103d15780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a260019050949350505050565b600081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663d99a8dc334846000604051602001526040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156104aa57808201518184015260208101905061048f565b50505050905090810190601f1680156104d75780820380516001836020036101000a031916815260200191505b50925050506020604051808303818588803b15156104f457600080fd5b6125ee5a03f1151561050557600080fd5b5050505060405180519050151561051b57600080fd5b5050565b6040805190810160405280600481526020017f696e697400000000000000000000000000000000000000000000000000000000815250815600a165627a7a723058203ad58bfd842836fbab63e8da1c58eacc04f060ed5ec703ac1d057a1a060c776e0029", + "deployedBytecode": "0x606060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806310a9f201146100675780633c0aef301461014b5780638cd213b914610174578063c878f958146101c6575b600080fd5b341561007257600080fd5b61013160048080356000191690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050610254565b604051808215151515815260200191505060405180910390f35b341561015657600080fd5b61015e6103ed565b6040518082815260200191505060405180910390f35b6101c4600480803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919050506103f2565b005b34156101d157600080fd5b6101d961051f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102195780820151818401526020810190506101fe565b50505050905090810190601f1680156102465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156102b157600080fd5b8373ffffffffffffffffffffffffffffffffffffffff167f68d2eaa37ea3e53bbe55f11eb038084f280086b8f4c4552dbca1b5692efeb9138685856040518084600019166000191681526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561033e578082015181840152602081019050610323565b50505050905090810190601f16801561036b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156103a4578082015181840152602081019050610389565b50505050905090810190601f1680156103d15780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a260019050949350505050565b600081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663d99a8dc334846000604051602001526040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156104aa57808201518184015260208101905061048f565b50505050905090810190601f1680156104d75780820380516001836020036101000a031916815260200191505b50925050506020604051808303818588803b15156104f457600080fd5b6125ee5a03f1151561050557600080fd5b5050505060405180519050151561051b57600080fd5b5050565b6040805190810160405280600481526020017f696e697400000000000000000000000000000000000000000000000000000000815250815600a165627a7a723058203ad58bfd842836fbab63e8da1c58eacc04f060ed5ec703ac1d057a1a060c776e0029", + "sourceMap": "86:254:0:-;;;223:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288:19;164:1;319:9;;;;;;;;;;;;;;;;;;426:23:3;397:19;378:18;;:38;;;;;;;;;;;;;;;;;;464:18;;;;;;;;;;;426:57;;501:11;:35;;;537:9;547:8;501:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;52:2;49:1;45:3;40:15;;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493:64:3;;;;;;;;272:292;;;;223:114:0;86:254;;;;;;", + "deployedSourceMap": "86:254:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761:252:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570:185:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;52:2;49:1;45:3;40:15;;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761:252:3;870:4;907:18;;;;;;;;;;;893:32;;:10;:32;;;885:41;;;;;;;;969:4;936:49;;;956:12;974:6;981:3;936:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;52:2;49:1;45:3;40:15;;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;52:2;49:1;45:3;40:15;;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002:4:3;995:11;;761:252;;;;;;:::o;130:35:0:-;164:1;130:35;:::o;570:185:3:-;630:23;668:18;;;;;;;;;;;630:57;;705:11;:18;;;730:9;741:5;705:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;80:1;75:3;71;64:6;52:2;49:1;45:3;40:15;;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697:51:3;;;;;;;;570:185;;:::o;171:41:0:-;;;;;;;;;;;;;;;;;;;;:::o", + "source": "pragma solidity ^0.4.11;\nimport \"iexec-oracle-contract/contracts/IexecOracleAPI.sol\";\ncontract MyContract is IexecOracleAPI{\n\n uint public constant DAPP_PRICE = 0;\n string public constant DAPP_NAME = \"init\";\n \n function MyContract (address _iexecOracleAddress) IexecOracleAPI(_iexecOracleAddress,DAPP_PRICE,DAPP_NAME){\n\n }\n\n}\n", + "sourcePath": "/home/vagrant/iexecdev/iexec-init/contracts/MyContract.sol", + "ast": { + "attributes": { + "absolutePath": "/home/vagrant/iexecdev/iexec-init/contracts/MyContract.sol", + "exportedSymbols": { + "MyContract": [ + 22 + ] + } + }, + "children": [ + { + "attributes": { + "literals": [ + "solidity", + "^", + "0.4", + ".11" + ] + }, + "id": 1, + "name": "PragmaDirective", + "src": "0:24:0" + }, + { + "attributes": { + "SourceUnit": 795, + "absolutePath": "iexec-oracle-contract/contracts/IexecOracleAPI.sol", + "file": "iexec-oracle-contract/contracts/IexecOracleAPI.sol", + "scope": 23, + "symbolAliases": [ + null + ], + "unitAlias": "" + }, + "id": 2, + "name": "ImportDirective", + "src": "25:60:0" + }, + { + "attributes": { + "contractDependencies": [ + 794 + ], + "contractKind": "contract", + "documentation": null, + "fullyImplemented": true, + "linearizedBaseContracts": [ + 22, + 794 + ], + "name": "MyContract", + "scope": 23 + }, + "children": [ + { + "attributes": { + "arguments": [ + null + ] + }, + "children": [ + { + "attributes": { + "contractScope": null, + "name": "IexecOracleAPI", + "referencedDeclaration": 794, + "type": "contract IexecOracleAPI" + }, + "id": 3, + "name": "UserDefinedTypeName", + "src": "109:14:0" + } + ], + "id": 4, + "name": "InheritanceSpecifier", + "src": "109:14:0" + }, + { + "attributes": { + "constant": true, + "name": "DAPP_PRICE", + "scope": 22, + "stateVariable": true, + "storageLocation": "default", + "type": "uint256", + "visibility": "public" + }, + "children": [ + { + "attributes": { + "name": "uint", + "type": "uint256" + }, + "id": 5, + "name": "ElementaryTypeName", + "src": "130:4:0" + }, + { + "attributes": { + "argumentTypes": null, + "hexvalue": "30", + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "subdenomination": null, + "token": "number", + "type": "int_const 0", + "value": "0" + }, + "id": 6, + "name": "Literal", + "src": "164:1:0" + } + ], + "id": 7, + "name": "VariableDeclaration", + "src": "130:35:0" + }, + { + "attributes": { + "constant": true, + "name": "DAPP_NAME", + "scope": 22, + "stateVariable": true, + "storageLocation": "default", + "type": "string memory", + "visibility": "public" + }, + "children": [ + { + "attributes": { + "name": "string", + "type": "string storage pointer" + }, + "id": 8, + "name": "ElementaryTypeName", + "src": "171:6:0" + }, + { + "attributes": { + "argumentTypes": null, + "hexvalue": "696e6974", + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "subdenomination": null, + "token": "string", + "type": "literal_string \"init\"", + "value": "init" + }, + "id": 9, + "name": "Literal", + "src": "206:6:0" + } + ], + "id": 10, + "name": "VariableDeclaration", + "src": "171:41:0" + }, + { + "attributes": { + "constant": false, + "implemented": true, + "isConstructor": true, + "name": "MyContract", + "payable": false, + "scope": 22, + "stateMutability": "nonpayable", + "superFunction": null, + "visibility": "public" + }, + "children": [ + { + "children": [ + { + "attributes": { + "constant": false, + "name": "_iexecOracleAddress", + "scope": 21, + "stateVariable": false, + "storageLocation": "default", + "type": "address", + "value": null, + "visibility": "internal" + }, + "children": [ + { + "attributes": { + "name": "address", + "type": "address" + }, + "id": 11, + "name": "ElementaryTypeName", + "src": "244:7:0" + } + ], + "id": 12, + "name": "VariableDeclaration", + "src": "244:27:0" + } + ], + "id": 13, + "name": "ParameterList", + "src": "243:29:0" + }, + { + "attributes": { + "parameters": [ + null + ] + }, + "children": [], + "id": 19, + "name": "ParameterList", + "src": "329:0:0" + }, + { + "children": [ + { + "attributes": { + "argumentTypes": null, + "overloadedDeclarations": [ + null + ], + "referencedDeclaration": 794, + "type": "type(contract IexecOracleAPI)", + "value": "IexecOracleAPI" + }, + "id": 14, + "name": "Identifier", + "src": "273:14:0" + }, + { + "attributes": { + "argumentTypes": null, + "overloadedDeclarations": [ + null + ], + "referencedDeclaration": 12, + "type": "address", + "value": "_iexecOracleAddress" + }, + "id": 15, + "name": "Identifier", + "src": "288:19:0" + }, + { + "attributes": { + "argumentTypes": null, + "overloadedDeclarations": [ + null + ], + "referencedDeclaration": 7, + "type": "uint256", + "value": "DAPP_PRICE" + }, + "id": 16, + "name": "Identifier", + "src": "308:10:0" + }, + { + "attributes": { + "argumentTypes": null, + "overloadedDeclarations": [ + null + ], + "referencedDeclaration": 10, + "type": "string memory", + "value": "DAPP_NAME" + }, + "id": 17, + "name": "Identifier", + "src": "319:9:0" + } + ], + "id": 18, + "name": "ModifierInvocation", + "src": "273:56:0" + }, + { + "attributes": { + "statements": [ + null + ] + }, + "children": [], + "id": 20, + "name": "Block", + "src": "329:8:0" + } + ], + "id": 21, + "name": "FunctionDefinition", + "src": "223:114:0" + } + ], + "id": 22, + "name": "ContractDefinition", + "src": "86:254:0" + } + ], + "id": 23, + "name": "SourceUnit", + "src": "0:341:0" + }, + "compiler": { + "name": "solc", + "version": "0.4.18+commit.9cf6e910.Emscripten.clang" + }, + "networks": {}, + "schemaVersion": "1.0.1", + "updatedAt": "2017-12-20T16:10:37.901Z" +} \ No newline at end of file diff --git a/contracts/HECTOR.sol b/contracts/HECTOR.sol new file mode 100644 index 0000000..35fe7e6 --- /dev/null +++ b/contracts/HECTOR.sol @@ -0,0 +1,12 @@ +pragma solidity ^0.4.11; +import "iexec-oracle-contract/contracts/IexecOracleAPI.sol"; +contract HECTOR is IexecOracleAPI{ + + uint public constant DAPP_PRICE = 0; + string public constant DAPP_NAME = "hector"; + + function HECTOR (address _iexecOracleAddress) IexecOracleAPI(_iexecOracleAddress,DAPP_PRICE,DAPP_NAME){ + + } + +} diff --git a/contracts/MyContract.sol b/contracts/MyContract.sol deleted file mode 100644 index 5382017..0000000 --- a/contracts/MyContract.sol +++ /dev/null @@ -1,9 +0,0 @@ -pragma solidity ^0.4.11; -import "./IexecOracleAPI.sol"; -contract MyContract is IexecOracleAPI{ - - function MyContract (address _iexecOracleAddress) IexecOracleAPI(_iexecOracleAddress){ - - } - -} \ No newline at end of file diff --git a/examples/iexec-cmdline-10.js b/examples/iexec-cmdline-10.js new file mode 100644 index 0000000..7d6b547 --- /dev/null +++ b/examples/iexec-cmdline-10.js @@ -0,0 +1,11 @@ +module.exports = { + name: 'MyContract', + data: { + type: 'BINARY', + cpu: 'AMD64', + os: 'LINUX', + }, + work: { + cmdline: '10', + } +}; diff --git a/iexec.js b/iexec.js index ddb3c67..3000b8f 100644 --- a/iexec.js +++ b/iexec.js @@ -1,6 +1,11 @@ module.exports = { - name: 'MyContract', - constructorArgs: ['0xb34406538112bd2b3036b2c417c7cff827777a11'], // oracle v0.1.2 ropsten - // constructorArgs: ['0x98275d4b6511ef05ed063d127dd82b72588326c9'], // oracle v0.1.2 rinkeby - // constructorArgs: ['0xb81d38d843cb526a3d0c3130d568fe09799135aa'], // oracle v0.1.2 kovan -}; \ No newline at end of file + name: 'HECTOR', + data: { + type: 'BINARY', + cpu: 'AMD64', + os: 'LINUX', + }, + work: { + cmdline: '10', + } +}; diff --git a/input/emissions/RCP85_emissions.csv b/input/emissions/RCP85_emissions.csv new file mode 100644 index 0000000..c9b17c6 --- /dev/null +++ b/input/emissions/RCP85_emissions.csv @@ -0,0 +1,740 @@ +; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr +Date,anthroEmissions,lucEmissions,CH4_emissions,N2O_emissions,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,CF4_emissions,C2F6_emissions,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCF22_emissions,HCF141b_emissions,HCF142b_emissions,halon1211_emissions,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions +1765,0.003,0,0,0,0,0,0,0,0,0,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1766,0.003,0.005338296,1.9632619,0.005191085,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1767,0.003,0.010676593,2.4364481,0.010116813,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1768,0.003,0.016014889,2.911105,0.015042803,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1769,0.003,0.021353185,3.3872782,0.019969063,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1770,0.003,0.026691482,3.8650146,0.024895601,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1771,0.004,0.032029778,4.3443625,0.029822427,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1772,0.004,0.037368074,4.8253718,0.034749548,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1773,0.004,0.042706371,5.3080938,0.039676975,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1774,0.004,0.048044667,5.7925816,0.044604715,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1775,0.004,0.053382963,6.2788896,0.04953278,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1776,0.004,0.058721259,6.7670743,0.05446118,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1777,0.004,0.064059556,7.2571937,0.059389923,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1778,0.004,0.069397852,7.7493076,0.064319022,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1779,0.004,0.074736148,8.2434776,0.069248487,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1780,0.004,0.080074445,8.7397674,0.07417833,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1781,0.005,0.085412741,9.2382426,0.079108562,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1782,0.005,0.090751037,9.7389706,0.084039195,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1783,0.005,0.096089334,10.242021,0.088970241,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1784,0.005,0.10142763,10.747466,0.093901714,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1785,0.005,0.10676593,11.25538,0.098833627,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1786,0.005,0.11210422,11.765839,0.10376599,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1787,0.005,0.11744252,12.278921,0.10869883,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1788,0.005,0.12278082,12.794707,0.11363214,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1789,0.005,0.12811911,13.313282,0.11856595,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1790,0.005,0.13345741,13.834732,0.12350027,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1791,0.006,0.1387957,14.359145,0.12843512,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1792,0.006,0.144134,14.886613,0.13337052,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1793,0.006,0.1494723,15.417231,0.13830648,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1794,0.006,0.15481059,15.951096,0.14324301,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1795,0.006,0.16014889,16.488308,0.14818014,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1796,0.006,0.16548719,17.028971,0.15311788,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1797,0.007,0.17082548,17.573192,0.15805626,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1798,0.007,0.17616378,18.121081,0.16299529,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1799,0.007,0.18150207,18.672751,0.167935,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1800,0.008,0.18684037,19.228319,0.1728754,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1801,0.008,0.19217867,19.787906,0.17781651,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1802,0.01,0.19751696,20.351635,0.18275836,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1803,0.009,0.20285526,20.919636,0.18770098,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1804,0.009,0.20819356,21.49204,0.19264437,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1805,0.009,0.21353185,22.068984,0.19758858,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1806,0.01,0.21887015,22.650607,0.20253362,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1807,0.01,0.22420845,23.237055,0.20747952,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1808,0.01,0.22954674,23.828476,0.2124263,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1809,0.01,0.23488504,24.425025,0.217374,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1810,0.01,0.24022333,25.02686,0.22232264,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1811,0.011,0.24556163,25.634145,0.22727225,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1812,0.011,0.25089993,26.247048,0.23222285,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1813,0.011,0.25623822,26.865743,0.2371745,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1814,0.011,0.26157652,27.490408,0.2421272,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1815,0.012,0.26691482,28.12123,0.247081,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1816,0.013,0.27225311,28.758398,0.25203593,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1817,0.014,0.27759141,29.402108,0.25699203,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1818,0.014,0.2829297,30.052563,0.26194932,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1819,0.014,0.288268,30.709971,0.26690786,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1820,0.014,0.2936063,31.374548,0.27186767,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1821,0.014,0.29894459,32.046514,0.2768288,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1822,0.015,0.30428289,32.7261,0.28179128,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1823,0.016,0.30962119,33.413539,0.28675516,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1824,0.016,0.31495948,34.109076,0.29172049,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1825,0.017,0.32029778,34.81296,0.2966873,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1826,0.017,0.32563608,35.52545,0.30165564,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1827,0.018,0.33097437,36.246813,0.30662557,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1828,0.018,0.33631267,36.977321,0.31159712,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1829,0.018,0.34165096,37.717259,0.31657035,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1830,0.024,0.34698926,38.466917,0.32154532,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1831,0.023,0.35232756,39.226597,0.32652206,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1832,0.023,0.35766585,39.996609,0.33150065,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1833,0.024,0.36300415,40.777271,0.33648114,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1834,0.024,0.36834245,41.568914,0.34146358,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1835,0.025,0.37368074,42.371876,0.34644803,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1836,0.029,0.37901904,43.186509,0.35143456,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1837,0.029,0.38435733,44.013173,0.35642324,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1838,0.03,0.38969563,44.85224,0.36141413,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1839,0.031,0.39503393,45.704093,0.36640729,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1840,0.032999999,0.40037222,46.569129,0.3714028,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1841,0.033999999,0.40571052,47.447755,0.37640073,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1842,0.035999999,0.41104882,48.34039,0.38140115,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1843,0.036999999,0.41638711,49.247469,0.38640415,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1844,0.038999999,0.42172541,50.169439,0.3914098,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1845,0.042999999,0.42706371,51.106759,0.39641818,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1846,0.042999999,0.432402,52.059904,0.40142938,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1847,0.045999999,0.4377403,53.029365,0.40644349,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1848,0.046999999,0.44307859,54.015644,0.41146059,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1849,0.049999999,0.44841689,55.019264,0.41648078,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 +1850,0.053999999,0.45375519,56.040759,0.42150415,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,157.267,3100.211 +1851,0.053999999,0.44678569,56.46132,0.42740096,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,157.267,3100.211 +1852,0.056999999,0.49862282,56.88188,0.46466062,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,157.267,3100.211 +1853,0.058999999,0.49735449,57.302441,0.46477417,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,157.267,3100.211 +1854,0.068999999,0.49581708,57.723001,0.46443647,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,157.267,3100.211 +1855,0.070999999,0.49367925,58.143562,0.46327909,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,157.267,3100.211 +1856,0.075999999,0.49893488,58.564122,0.46729312,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,157.267,3100.211 +1857,0.076999999,0.504232,58.984683,0.47126447,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,157.267,3100.211 +1858,0.077999999,0.50923298,59.405243,0.47503119,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,157.267,3100.211 +1859,0.082999999,0.51425389,59.825804,0.47876627,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,157.267,3100.211 +1860,0.090999999,0.51896689,60.246364,0.48257672,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,157.267,3100.211 +1861,0.094999998,0.5282236,59.614468,0.50499476,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,157.267,3100.211 +1862,0.096999998,0.47371663,58.982573,0.47111281,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,157.267,3100.211 +1863,0.104,0.47374912,58.350677,0.47444935,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,157.267,3100.211 +1864,0.112,0.47413825,57.718781,0.47785801,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,157.267,3100.211 +1865,0.119,0.47479536,57.086885,0.48144966,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,157.267,3100.211 +1866,0.122,0.47491218,56.45499,0.48420454,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,157.267,3100.211 +1867,0.13022269,0.47338353,55.823094,0.48472337,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,157.267,3100.211 +1868,0.13525196,0.47198274,55.191198,0.48595323,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,157.267,3100.211 +1869,0.14228123,0.47048522,54.559303,0.48686155,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,157.267,3100.211 +1870,0.14731051,0.46933399,53.927407,0.48774355,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,157.267,3100.211 +1871,0.15633978,0.48732546,56.683869,0.58501628,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,157.267,3100.211 +1872,0.17336905,0.56696435,59.440331,0.66673981,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,157.267,3100.211 +1873,0.18439832,0.57690133,62.196793,0.69637076,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,157.267,3100.211 +1874,0.1744276,0.58328394,64.953255,0.7087503,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,157.267,3100.211 +1875,0.18845687,0.5899696,67.709717,0.72034342,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,157.267,3100.211 +1876,0.19148614,0.59639187,70.46618,0.74524338,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,157.267,3100.211 +1877,0.19451541,0.60262312,73.222642,0.75633197,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,157.267,3100.211 +1878,0.196,0.6090507,75.979104,0.7660459,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,157.267,3100.211 +1879,0.21,0.61534752,78.735566,0.77491118,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,157.267,3100.211 +1880,0.236,0.62124317,81.492028,0.78412129,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,157.267,3100.211 +1881,0.243,0.64887292,84.359461,0.81157848,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,157.267,3100.211 +1882,0.256,0.60466403,87.226893,0.78526034,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,157.267,3100.211 +1883,0.272,0.60851762,90.094326,0.79255607,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,157.267,3100.211 +1884,0.275,0.61212775,92.961758,0.7987505,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,157.267,3100.211 +1885,0.27699999,0.61523611,95.829191,0.80453383,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,157.267,3100.211 +1886,0.28099999,0.61714413,98.696624,0.82619361,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,157.267,3100.211 +1887,0.295,0.61616314,101.56406,0.83219647,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,157.267,3100.211 +1888,0.32699999,0.61473356,104.43149,0.83705812,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,157.267,3100.211 +1889,0.32699999,0.6132002,107.29892,0.84143987,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,157.267,3100.211 +1890,0.35599999,0.61175412,110.16635,0.84552548,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,157.267,3100.211 +1891,0.37199999,0.61024855,111.52362,0.85098169,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,157.267,3100.211 +1892,0.37399999,0.62319119,112.88089,0.85741997,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,157.267,3100.211 +1893,0.36999999,0.62440331,114.23816,0.86475824,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,157.267,3100.211 +1894,0.38299999,0.64036719,115.59543,0.87294487,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,157.267,3100.211 +1895,0.40599999,0.64441851,116.9527,0.88188195,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,157.267,3100.211 +1896,0.41899999,0.6462784,118.30997,0.89141802,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,157.267,3100.211 +1897,0.43999999,0.64956412,119.66724,0.90140157,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,157.267,3100.211 +1898,0.46499999,0.65100098,121.02451,0.91168111,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,157.267,3100.211 +1899,0.50699999,0.65220446,122.38178,0.92210515,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,157.267,3100.211 +1900,0.53399999,0.65320628,123.73905,0.9325222,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,157.267,3100.211 +1901,0.55199999,0.70294318,124.8415,0.9446669,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,157.267,3100.211 +1902,0.56599999,0.70297364,125.94396,0.95993065,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,157.267,3100.211 +1903,0.61699999,0.72667096,127.04642,0.97764708,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,157.267,3100.211 +1904,0.62399999,0.74829324,128.14887,0.99722904,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,157.267,3100.211 +1905,0.66299999,0.76981521,129.25133,1.0181293,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,157.267,3100.211 +1906,0.70699999,0.79653384,130.35378,1.0397413,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,157.267,3100.211 +1907,0.78399999,0.80376274,131.45624,1.0614586,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,157.267,3100.211 +1908,0.74999999,0.81141278,132.5587,1.0826746,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,157.267,3100.211 +1909,0.78499999,0.81737807,133.66115,1.1027829,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,157.267,3100.211 +1910,0.81899999,0.82198169,134.76361,1.121177,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,157.267,3100.211 +1911,0.83599999,0.77889405,135.96943,1.1389722,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,157.267,3100.211 +1912,0.87899999,0.74784844,137.17525,1.1575596,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,157.267,3100.211 +1913,0.94299999,0.72297977,138.38107,1.1767464,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,157.267,3100.211 +1914,0.84999999,0.71479152,139.5869,1.1962611,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,157.267,3100.211 +1915,0.83799999,0.70574964,140.79272,1.2158443,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,157.267,3100.211 +1916,0.90099999,0.70811648,141.99854,1.2353217,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,157.267,3100.211 +1917,0.95499999,0.7111963,143.20436,1.254519,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,157.267,3100.211 +1918,0.93599999,0.71430427,144.41019,1.2732618,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,157.267,3100.211 +1919,0.80599999,0.71965435,145.61601,1.2913759,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,157.267,3100.211 +1920,0.93199999,0.72128338,146.82183,1.3086869,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,157.267,3100.211 +1921,0.80299999,0.75741661,147.86155,1.3257924,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,157.267,3100.211 +1922,0.84499999,0.7479409,148.90128,1.343275,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,157.267,3100.211 +1923,0.96999999,0.75328819,149.941,1.3609385,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,157.267,3100.211 +1924,0.96299999,0.75686059,150.98072,1.3796194,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,157.267,3100.211 +1925,0.97499999,0.75808855,152.02045,1.3998974,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,157.267,3100.211 +1926,0.98299999,0.76148327,153.06017,1.4211909,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,157.267,3100.211 +1927,1.062,0.79718283,154.09989,1.4429184,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,157.267,3100.211 +1928,1.065,0.79967141,155.13962,1.4644982,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,157.267,3100.211 +1929,1.145,0.82422601,156.17934,1.4853488,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,157.267,3100.211 +1930,1.053,0.89587975,157.21906,1.5048887,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,1.6637375,0.23563239,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,157.267,3100.211 +1931,0.93999999,0.90334082,158.34545,1.5226236,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,1.7507764,0.24803412,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,157.267,3100.211 +1932,0.84699999,0.81222597,159.47183,1.5385172,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,1.8423953,0.26108852,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,157.267,3100.211 +1933,0.89299999,0.80858849,160.59821,1.5526746,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,1.9388369,0.27483004,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,157.267,3100.211 +1934,0.97299999,0.79686256,161.7246,1.5653127,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,2.0403528,0.28929476,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,157.267,3100.211 +1935,1.027,0.79471575,162.85098,1.5771213,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,2.1472124,0.30452082,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,157.267,3100.211 +1936,1.13,0.80129993,163.97736,1.5889151,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,2.2596977,0.32054821,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,157.267,3100.211 +1937,1.209,0.77969902,165.10375,1.6015088,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,2.3781004,0.33741917,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,157.267,3100.211 +1938,1.142,0.78188222,166.23013,1.615717,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,2.5027381,0.35517808,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,157.267,3100.211 +1939,1.192,0.77944376,167.35651,1.6323545,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,2.6339328,0.37387169,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,157.267,3100.211 +1940,1.299,0.76683237,168.4829,1.6522358,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,2.7720335,0.39354912,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,157.267,3100.211 +1941,1.334,0.75036458,170.03046,1.7002044,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,2.9174066,0.41426223,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,157.267,3100.211 +1942,1.342,0.7690497,171.57803,1.7938613,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,3.0704314,0.39468287,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,157.267,3100.211 +1943,1.391,0.7637656,173.12559,1.9231582,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,3.2315097,0.37832187,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,157.267,3100.211 +1944,1.383,0.76839864,174.67315,2.0866797,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,3.4010636,0.3640764,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,157.267,3100.211 +1945,1.16,0.76914739,176.22072,2.280402,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,3.579544,0.35194679,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,157.267,3100.211 +1946,1.238,0.84214892,177.76828,2.4903635,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,3.7674167,0.34193311,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,157.267,3100.211 +1947,1.392,0.87017994,179.31584,2.7026031,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,3.9651774,0.33403572,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,157.267,3100.211 +1948,1.469,0.87513044,180.86341,2.9031595,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,4.1733472,0.32825472,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,157.267,3100.211 +1949,1.419,0.88212641,182.41097,3.0780722,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,4.3924702,0.32459037,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,157.267,3100.211 +1950,1.63,0.89233465,183.95853,3.2133815,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,4.62313,0.32304286,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,157.267,3100.211 +1951,1.768,1.0885201,189.11003,3.3186021,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,4.865916,0.32361242,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,157.267,3100.211 +1952,1.796,1.1096378,194.26153,3.4111061,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,5.121479,0.32629927,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,157.927,3117.785 +1953,1.841,1.1045171,199.41303,3.4887221,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,5.3904959,0.3311036,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,158.604,3137.148 +1954,1.865,1.1521416,204.56453,3.5543489,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,5.6736692,0.33802563,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,159.3,3158.216 +1955,2.043,1.1911855,209.71603,3.614111,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,5.9717491,0.34706557,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,160.014,3180.749 +1956,2.178,1.2446883,214.86753,3.6706801,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,6.2855162,0.35822365,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,160.748,3204.498 +1957,2.27,1.2718718,220.01902,3.7267318,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,6.6157969,0.37150001,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,161.502,3229.071 +1958,2.33,1.3195817,225.17052,3.7849451,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,6.9634615,0.38689499,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,162.277,3254.039 +1959,2.462,1.2035957,230.32202,3.8480013,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,7.3294266,0.40440867,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,163.073,3278.967 +1960,2.577,1.1922833,235.47352,3.9185827,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,7.7146508,0.42404135,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,163.892,3303.389 +1961,2.594,1.2443218,238.52217,4.0240052,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,8.1201607,0.4457932,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,164.735,3326.864 +1962,2.7,1.2355717,241.57083,4.1836477,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,8.5470132,0.46966444,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,165.601,3349.069 +1963,2.848,1.2442947,244.61948,4.3883117,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,14.984956,0.49565531,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.007,166.493,3369.713 +1964,3.008,1.2515879,247.66813,4.6374693,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,13.488099,0.52376596,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.003,0.014,167.41,3388.628 +1965,3.145,1.2642558,250.71679,4.8968181,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,13.488369,0.55399667,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.028,168.355,3405.698 +1966,3.305,1.2936968,253.76544,5.195583,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,13.488639,0.58634761,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.048,169.328,3420.923 +1967,3.411,1.2976254,256.81409,5.457478,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,13.488909,0.62081899,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.075,170.329,3434.335 +1968,3.588,1.2352028,259.86274,5.619744,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,13.48918,0.65741104,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.016,0.109,171.36,3446.065 +1969,3.8,1.2383879,262.9114,5.784831,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,13.489449,0.69612398,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.024,0.15,172.423,3456.224 +1970,4.076,1.1971129,265.96005,5.9368752,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,11.992564,0.73695798,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.043,0.197,173.518,3464.95 +1971,4.231,1.0708913,270.02505,5.6049759,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,13.489967,0.7799133,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.1,0.252,174.646,3472.409 +1972,4.399,1.0470621,274.09004,5.9181309,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,13.490244,0.82499011,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.17,0.313,175.809,3478.741 +1973,4.6349999,1.0330987,278.15504,6.0449043,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,13.490523,0.87218868,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.277,0.391,177.007,3484.114 +1974,4.644,1.0387371,282.22003,5.9406002,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,11.993645,0.9215092,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.372,0.468,178.243,3488.632 +1975,4.615,1.0315876,286.28503,6.1409693,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,13.49105,0.97295172,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.524,0.544,179.517,3492.425 +1976,4.883,1.0906077,290.35002,6.3042588,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,13.491328,1.0265167,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.783,0.621,180.83,3495.619 +1977,5.029,1.0939874,294.41502,6.534405,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,11.994452,1.0822044,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,1.006,0.697,182.185,3498.281 +1978,5.105,1.09037,298.48002,6.6193729,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,13.491857,1.1400146,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,1.253,0.774,183.581,3500.505 +1979,5.387,1.0647127,302.54501,7.007773,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,11.994981,1.1999481,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,1.548,0.85,185.022,3502.36 +1980,5.332,1.0252096,306.61001,7.0613923,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,13.492387,1.2620043,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,1.805,0.927,186.506,3503.915 +1981,5.168,1.0448621,310.01251,6.8417522,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,11.995499,1.3261846,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,2.139,1.003,188.038,3505.193 +1982,5.127,1.1904055,313.415,7.1189858,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,13.492893,1.392488,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,2.645,1.105,189.616,3506.255 +1983,5.11,1.2255201,316.8175,7.2168971,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,11.996004,1.4609153,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,2.98,1.183,191.243,3507.154 +1984,5.29,1.2600833,320.22,7.0481314,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,11.996242,1.5314669,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,3.475,1.262,192.92,3507.882 +1985,5.444,1.2753449,323.6225,7.0169243,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,11.99648,1.6041426,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,3.997,1.355,194.648,3508.496 +1986,5.61,1.2872023,327.025,7.0704917,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,13.493874,1.678943,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,4.579,1.434,196.427,3508.999 +1987,5.753,1.2940086,330.42749,7.4616728,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,11.996986,1.7558675,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,5.109,1.504,198.259,3509.425 +1988,5.964,1.3167248,333.82999,7.2025077,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,11.997224,1.8349176,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,5.696,1.728,200.146,3509.774 +1989,6.089,1.3236436,337.23249,7.3310397,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,11.997462,1.9160924,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,5.482,1.73,202.087,3510.061 +1990,6.144,1.3194833,340.63499,7.5856812,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,11.997683,2.0735678,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,5.119,1.73,204.082,3510.299 +1991,6.235,1.3809799,336.59218,7.4023631,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,11.997905,2.3729101,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,4.094,1.735,206.133,3510.501 +1992,6.118,1.3035304,332.54937,7.7989323,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,11.998111,2.3731469,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,2.74,1.715,208.24,3510.656 +1993,6.124,1.2981006,328.50656,7.3131034,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,11.998354,2.3733837,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,3.344,1.7,210.402,3510.801 +1994,6.242,1.2895956,324.46375,7.5072841,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,11.998587,2.3736205,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,4.75,1.68,212.619,3510.907 +1995,6.372,1.2750104,320.42094,7.6191035,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,10.501674,2.3738573,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,3.991,1.3,200.199,3511.005 +1996,6.51,1.2511025,316.37814,7.6520638,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,11.999071,2.3740941,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,2.691,0.85,201.834,3511.082 +1997,6.619,1.2181397,312.33533,7.9097526,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,11.999322,2.3743309,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,2.594,0.7,207.696,3511.082 +1998,6.588,1.2148431,308.29252,7.8957263,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,11.999575,2.3745677,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,2.491,0.71,206.946,3511.082 +1999,6.569,1.1827892,304.24971,7.5269849,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,10.502692,2.3748045,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,2.39,0.631,195.938,3511.082 +2000,6.735,1.1488,300.2069,7.4566,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,12.0001,2.3749,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,2.295,0.562,186.206,3511.082 +2001,6.8959,1.132,303.4092,7.503,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,11.925,2.4345,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,2.209,0.5,181.525,3511.082 +2002,6.949,1.2317,306.5788,7.5487,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,11.8481,2.4915,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,2.131,0.445,181.887,3511.082 +2003,7.286,1.2257,309.7164,7.5942,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,11.7693,2.5463,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,2.057,0.396,177.539,3511.082 +2004,7.6719,1.2429,312.824,7.6394,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,11.6885,2.599,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,1.987,0.353,174.26,3511.082 +2005,7.971,1.1955,315.9027,7.6841,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,11.6059,2.6494,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,1.92,0.314,168.841,3511.082 +2006,8.1615,1.165,322.1577,7.778,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,11.4149,2.6001,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,1.834,0.279,167.857,3511.082 +2007,8.3523,1.1349,328.4342,7.8717,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,11.2221,2.5502,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,1.752,0.249,167.857,3511.082 +2008,8.5434,1.1045,334.75397,7.9653667,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,11.0262,2.4998333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,1.675,0.221,167.857,3511.082 +2009,8.7345,1.0741,341.07373,8.0590333,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,10.8303,2.4494667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,1.601,0.197,167.857,3511.082 +2010,8.9256,1.0437,347.3935,8.1527,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,10.6344,2.3991,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,1.521,0.175,167.857,3511.082 +2011,9.18679,1.02998,354.56076,8.29296,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,10.74841,2.42213,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,1.445,0.156,167.857,3511.082 +2012,9.44798,1.01626,361.72802,8.43322,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,10.86242,2.44516,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,1.373,0.139,167.857,3511.082 +2013,9.70917,1.00254,368.89528,8.57348,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,10.97643,2.46819,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,1.304,0.124,167.857,3511.082 +2014,9.97036,0.98882,376.06254,8.71374,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,11.09044,2.49122,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,1.239,0.11,167.857,3511.082 +2015,10.23155,0.9751,383.2298,8.854,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,11.20445,2.51425,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,1.177,0.098,155.925,3511.082 +2016,10.49274,0.96138,390.39706,8.99426,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,11.31846,2.53728,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,1.118,0.087,155.925,3511.082 +2017,10.75393,0.94766,397.56432,9.13452,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,11.43247,2.56031,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,1.062,0.078,155.925,3511.082 +2018,11.01512,0.93394,404.73158,9.27478,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,11.54648,2.58334,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,1.009,0.069,155.925,3511.082 +2019,11.27631,0.92022,411.89884,9.41504,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,11.66049,2.60637,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0.959,0.061,155.925,3511.082 +2020,11.5375,0.9065,419.0661,9.5553,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,11.7745,2.6294,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0.911,0.055,155.925,3511.082 +2021,11.76766,0.88735,425.58022,9.67767,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,11.83853,2.64399,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0.865,0.049,155.925,3511.082 +2022,11.99782,0.8682,432.09434,9.80004,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,11.90256,2.65858,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0.822,0.043,155.925,3511.082 +2023,12.22798,0.84905,438.60846,9.92241,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,11.96659,2.67317,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0.781,0.039,155.925,3511.082 +2024,12.45814,0.8299,445.12258,10.04478,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,12.03062,2.68776,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0.742,0.034,155.925,3511.082 +2025,12.6883,0.81075,451.6367,10.16715,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,12.09465,2.70235,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0.705,0.031,155.925,3511.082 +2026,12.91846,0.7916,458.15082,10.28952,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,12.15868,2.71694,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0.669,0.027,155.925,3511.082 +2027,13.14862,0.77245,464.66494,10.41189,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,12.22271,2.73153,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0.636,0.024,155.925,3511.082 +2028,13.37878,0.7533,471.17906,10.53426,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,12.28674,2.74612,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0.604,0.022,155.925,3511.082 +2029,13.60894,0.73415,477.69318,10.65663,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,12.35077,2.76071,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0.574,0.019,155.925,3511.082 +2030,13.8391,0.715,484.2073,10.779,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,12.4148,2.7753,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0.545,0.017,155.925,3511.082 +2031,14.13385,0.708,493.52545,10.90391,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,12.38727,2.77061,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0.518,0.015,155.925,3511.082 +2032,14.4286,0.701,502.8436,11.02882,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,12.35974,2.76592,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0.492,0.013,155.925,3511.082 +2033,14.72335,0.694,512.16175,11.15373,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,12.33221,2.76123,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0.467,0.012,155.925,3511.082 +2034,15.0181,0.687,521.4799,11.27864,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,12.30468,2.75654,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0.444,0.011,155.925,3511.082 +2035,15.31285,0.68,530.79805,11.40355,37605,986.5774,221.81625,39.13365,6.58835,32.33085,12.27715,2.75185,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0.422,0.01,155.925,3511.082 +2036,15.6076,0.673,540.1162,11.52846,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,12.24962,2.74716,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0.401,0.008,155.925,3511.082 +2037,15.90235,0.666,549.43435,11.65337,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,12.22209,2.74247,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0.381,0.008,155.925,3511.082 +2038,16.1971,0.659,558.7525,11.77828,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,12.19456,2.73778,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0.362,0.007,155.925,3511.082 +2039,16.49185,0.652,568.07065,11.90319,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,12.16703,2.73309,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0.344,0.006,155.925,3511.082 +2040,16.7866,0.645,577.3888,12.0281,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,12.1395,2.7284,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0.326,0.005,155.925,3511.082 +2041,17.1284,0.6381,587.33132,12.10488,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,12.17462,2.73746,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0.31,0.005,155.925,3511.082 +2042,17.4702,0.6312,597.27384,12.18166,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,12.20974,2.74652,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0.295,0.004,155.925,3511.082 +2043,17.812,0.6243,607.21636,12.25844,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,12.24486,2.75558,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0.28,0.004,155.925,3511.082 +2044,18.1538,0.6174,617.15888,12.33522,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,12.27998,2.76464,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0.266,0.003,155.925,3511.082 +2045,18.4956,0.6105,627.1014,12.412,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,12.3151,2.7737,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0.253,0.003,155.925,3511.082 +2046,18.8374,0.6036,637.04392,12.48878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,12.35022,2.78276,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0.24,0.003,155.925,3511.082 +2047,19.1792,0.5967,646.98644,12.56556,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,12.38534,2.79182,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0.228,0.002,155.925,3511.082 +2048,19.521,0.5898,656.92896,12.64234,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,12.42046,2.80088,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0.217,0.002,155.925,3511.082 +2049,19.8628,0.5829,666.87148,12.71912,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,12.45558,2.80994,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0.206,0.002,155.925,3511.082 +2050,20.2046,0.576,676.814,12.7959,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,12.4907,2.819,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0.195,0.002,155.925,3511.082 +2051,20.54375,0.5685,683.65001,12.85847,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,12.41897,2.80583,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0.186,0.001,155.925,3511.082 +2052,20.8829,0.561,690.48602,12.92104,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,12.34724,2.79266,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0.176,0.001,155.925,3511.082 +2053,21.22205,0.5535,697.32203,12.98361,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,12.27551,2.77949,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0.168,0.001,155.925,3511.082 +2054,21.5612,0.546,704.15804,13.04618,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,12.20378,2.76632,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0.159,0.001,155.925,3511.082 +2055,21.90035,0.5385,710.99405,13.10875,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,12.13205,2.75315,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0.151,0.001,155.925,3511.082 +2056,22.2395,0.531,717.83006,13.17132,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,12.06032,2.73998,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0.144,0.001,155.925,3511.082 +2057,22.57865,0.5235,724.66607,13.23389,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,11.98859,2.72681,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0.136,0.001,155.925,3511.082 +2058,22.9178,0.516,731.50208,13.29646,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,11.91686,2.71364,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0.13,0.001,155.925,3511.082 +2059,23.25695,0.5085,738.33809,13.35903,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,11.84513,2.70047,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0.123,0.001,155.925,3511.082 +2060,23.5961,0.501,745.1741,13.4216,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,11.7734,2.6873,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0.117,0.001,155.925,3511.082 +2061,23.83271,0.4921,748.66794,13.47346,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,11.78015,2.69384,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0.111,0,155.925,3511.082 +2062,24.06932,0.4832,752.16178,13.52532,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,11.7869,2.70038,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0.106,0,155.925,3511.082 +2063,24.30593,0.4743,755.65562,13.57718,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,11.79365,2.70692,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0.1,0,155.925,3511.082 +2064,24.54254,0.4654,759.14946,13.62904,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,11.8004,2.71346,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0.095,0,155.925,3511.082 +2065,24.77915,0.4565,762.6433,13.6809,21385,818.31885,197.38655,30.9218,5.0208,27.85645,11.80715,2.72,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0.091,0,155.925,3511.082 +2066,25.01576,0.4476,766.13714,13.73276,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,11.8139,2.72654,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0.086,0,155.925,3511.082 +2067,25.25237,0.4387,769.63098,13.78462,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,11.82065,2.73308,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0.082,0,155.925,3511.082 +2068,25.48898,0.4298,773.12482,13.83648,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,11.8274,2.73962,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0.078,0,155.925,3511.082 +2069,25.72559,0.4209,776.61866,13.88834,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,11.83415,2.74616,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0.074,0,155.925,3511.082 +2070,25.9622,0.412,780.1125,13.9402,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,11.8409,2.7527,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0.07,0,155.925,3511.082 +2071,26.10659,0.4017,784.24064,14.00204,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,11.8161,2.75174,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0.067,0,155.925,3511.082 +2072,26.25098,0.3914,788.36878,14.06388,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,11.7913,2.75078,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0.063,0,155.925,3511.082 +2073,26.39537,0.3811,792.49692,14.12572,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,11.7665,2.74982,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0.06,0,155.925,3511.082 +2074,26.53976,0.3708,796.62506,14.18756,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,11.7417,2.74886,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0.057,0,155.925,3511.082 +2075,26.68415,0.3605,800.7532,14.2494,19255,776.3637,191.10315,29.5758,4.75325,26.8342,11.7169,2.7479,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0.054,0,155.925,3511.082 +2076,26.82854,0.3502,804.88134,14.31124,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,11.6921,2.74694,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0.052,0,155.925,3511.082 +2077,26.97293,0.3399,809.00948,14.37308,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,11.6673,2.74598,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0.049,0,155.925,3511.082 +2078,27.11732,0.3296,813.13762,14.43492,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,11.6425,2.74502,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0.046,0,155.925,3511.082 +2079,27.26171,0.3193,817.26576,14.49676,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,11.6177,2.74406,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0.044,0,155.925,3511.082 +2080,27.4061,0.309,821.3939,14.5586,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,11.5929,2.7431,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0.042,0,155.925,3511.082 +2081,27.49916,0.2975,826.32941,14.63201,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,11.54293,2.73607,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0.04,0,155.925,3511.082 +2082,27.59222,0.286,831.26492,14.70542,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,11.49296,2.72904,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0.038,0,155.925,3511.082 +2083,27.68528,0.2745,836.20043,14.77883,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,11.44299,2.72201,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0.036,0,155.925,3511.082 +2084,27.77834,0.263,841.13594,14.85224,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,11.39302,2.71498,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0.034,0,155.925,3511.082 +2085,27.8714,0.2515,846.07145,14.92565,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,11.34305,2.70795,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0.032,0,155.925,3511.082 +2086,27.96446,0.24,851.00696,14.99906,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,11.29308,2.70092,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0.031,0,155.925,3511.082 +2087,28.05752,0.2285,855.94247,15.07247,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,11.24311,2.69389,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0.029,0,155.925,3511.082 +2088,28.15058,0.217,860.87798,15.14588,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,11.19314,2.68686,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0.028,0,155.925,3511.082 +2089,28.24364,0.2055,865.81349,15.21929,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,11.14317,2.67983,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0.026,0,155.925,3511.082 +2090,28.3367,0.194,870.749,15.2927,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,11.0932,2.6728,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0.025,0,155.925,3511.082 +2091,28.37703,0.1823,872.43319,15.34099,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,11.06043,2.66808,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0.024,0,155.925,3511.082 +2092,28.41736,0.1706,874.11738,15.38928,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,11.02766,2.66336,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0.023,0,155.925,3511.082 +2093,28.45769,0.1589,875.80157,15.43757,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,10.99489,2.65864,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0.022,0,155.925,3511.082 +2094,28.49802,0.1472,877.48576,15.48586,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,10.96212,2.65392,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0.02,0,155.925,3511.082 +2095,28.53835,0.1355,879.16995,15.53415,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,10.92935,2.6492,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0.019,0,155.925,3511.082 +2096,28.57868,0.1238,880.85414,15.58244,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,10.89658,2.64448,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0.018,0,155.925,3511.082 +2097,28.61901,0.1121,882.53833,15.63073,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,10.86381,2.63976,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0.018,0,155.925,3511.082 +2098,28.65934,0.1004,884.22252,15.67902,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,10.83104,2.63504,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0.017,0,155.925,3511.082 +2099,28.69967,0.0887,885.90671,15.72731,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,10.79827,2.63032,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0.016,0,155.925,3511.082 +2100,28.74,0.077,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0.015,0,155.925,3511.082 +2101,28.74,0.07392,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0.014,0,155.925,3511.082 +2102,28.74,0.07084,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0.014,0,155.925,3511.082 +2103,28.74,0.06776,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0.013,0,155.925,3511.082 +2104,28.74,0.06468,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0.012,0,155.925,3511.082 +2105,28.74,0.0616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0.012,0,155.925,3511.082 +2106,28.74,0.05852,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0.011,0,155.925,3511.082 +2107,28.74,0.05544,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0.011,0,155.925,3511.082 +2108,28.74,0.05236,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0.01,0,155.925,3511.082 +2109,28.74,0.04928,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0.009,0,155.925,3511.082 +2110,28.74,0.0462,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0.009,0,155.925,3511.082 +2111,28.74,0.04312,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0.009,0,155.925,3511.082 +2112,28.74,0.04004,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0.008,0,155.925,3511.082 +2113,28.74,0.03696,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0.008,0,155.925,3511.082 +2114,28.74,0.03388,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0.007,0,155.925,3511.082 +2115,28.74,0.0308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0.007,0,155.925,3511.082 +2116,28.74,0.02772,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0.007,0,155.925,3511.082 +2117,28.74,0.02464,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0.006,0,155.925,3511.082 +2118,28.74,0.02156,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0.006,0,155.925,3511.082 +2119,28.74,0.01848,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0.006,0,155.925,3511.082 +2120,28.74,0.0154,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0.005,0,155.925,3511.082 +2121,28.74,0.01232,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0.005,0,155.925,3511.082 +2122,28.74,0.00924,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0.005,0,155.925,3511.082 +2123,28.74,0.00616,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0.005,0,155.925,3511.082 +2124,28.74,0.00308,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0.004,0,155.925,3511.082 +2125,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0.004,0,155.925,3511.082 +2126,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0.004,0,155.925,3511.082 +2127,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0.004,0,155.925,3511.082 +2128,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0.004,0,155.925,3511.082 +2129,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0.003,0,155.925,3511.082 +2130,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0.003,0,155.925,3511.082 +2131,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0.003,0,155.925,3511.082 +2132,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0.003,0,155.925,3511.082 +2133,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0.003,0,155.925,3511.082 +2134,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0.003,0,155.925,3511.082 +2135,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0.002,0,155.925,3511.082 +2136,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0.002,0,155.925,3511.082 +2137,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0.002,0,155.925,3511.082 +2138,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0.002,0,155.925,3511.082 +2139,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0.002,0,155.925,3511.082 +2140,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0.002,0,155.925,3511.082 +2141,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0.002,0,155.925,3511.082 +2142,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0.002,0,155.925,3511.082 +2143,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0.002,0,155.925,3511.082 +2144,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0.002,0,155.925,3511.082 +2145,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0.001,0,155.925,3511.082 +2146,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0.001,0,155.925,3511.082 +2147,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0.001,0,155.925,3511.082 +2148,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0.001,0,155.925,3511.082 +2149,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0.001,0,155.925,3511.082 +2150,28.74,0,887.5909,15.7756,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.7655,2.6256,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0.001,0,155.925,3511.082 +2151,28.470205,0,887.7612,15.750727,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.656371,2.5994163,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0.001,0,155.925,3511.082 +2152,28.20041,0,887.93151,15.725853,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.547243,2.5732327,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0.001,0,155.925,3511.082 +2153,27.930615,0,888.10181,15.70098,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.438114,2.547049,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0.001,0,155.925,3511.082 +2154,27.66082,0,888.27211,15.676106,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.328986,2.5208653,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0.001,0,155.925,3511.082 +2155,27.391026,0,888.44242,15.651233,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.219857,2.4946816,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0.001,0,155.925,3511.082 +2156,27.121231,0,888.61272,15.626359,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.110729,2.468498,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0.001,0,155.925,3511.082 +2157,26.851436,0,888.78302,15.601486,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,10.0016,2.4423143,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0.001,0,155.925,3511.082 +2158,26.581641,0,888.95332,15.576612,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.8924714,2.4161306,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0.001,0,155.925,3511.082 +2159,26.311846,0,889.12363,15.551739,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.7833429,2.3899469,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0.001,0,155.925,3511.082 +2160,26.042051,0,889.29393,15.526865,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.6742143,2.3637633,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0.001,0,155.925,3511.082 +2161,25.772256,0,889.46423,15.501992,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.5650857,2.3375796,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0.001,0,155.925,3511.082 +2162,25.502461,0,889.63454,15.477118,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.4559571,2.3113959,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0.001,0,155.925,3511.082 +2163,25.232666,0,889.80484,15.452245,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.3468286,2.2852122,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0.001,0,155.925,3511.082 +2164,24.962871,0,889.97514,15.427371,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.2377,2.2590286,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0.001,0,155.925,3511.082 +2165,24.693077,0,890.14545,15.402498,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.1285714,2.2328449,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0.001,0,155.925,3511.082 +2166,24.423282,0,890.31575,15.377624,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,9.0194429,2.2066612,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0.001,0,155.925,3511.082 +2167,24.153487,0,890.48605,15.352751,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.9103143,2.1804776,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,155.925,3511.082 +2168,23.883692,0,890.65636,15.327878,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.8011857,2.1542939,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,155.925,3511.082 +2169,23.613897,0,890.82666,15.303004,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.6920571,2.1281102,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,155.925,3511.082 +2170,23.344102,0,890.99696,15.278131,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.5829286,2.1019265,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,155.925,3511.082 +2171,23.074307,0,891.16726,15.253257,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.4738,2.0757429,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,155.925,3511.082 +2172,22.804512,0,891.33757,15.228384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.3646714,2.0495592,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,155.925,3511.082 +2173,22.534717,0,891.50787,15.20351,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.2555429,2.0233755,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,155.925,3511.082 +2174,22.264922,0,891.67817,15.178637,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.1464143,1.9971918,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,155.925,3511.082 +2175,21.995128,0,891.84848,15.153763,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,8.0372857,1.9710082,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,155.925,3511.082 +2176,21.725333,0,892.01878,15.12889,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.9281571,1.9448245,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,155.925,3511.082 +2177,21.455538,0,892.18908,15.104016,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.8190286,1.9186408,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,155.925,3511.082 +2178,21.185743,0,892.35939,15.079143,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.7099,1.8924571,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,155.925,3511.082 +2179,20.915948,0,892.52969,15.054269,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.6007714,1.8662735,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,155.925,3511.082 +2180,20.646153,0,892.69999,15.029396,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.4916429,1.8400898,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,155.925,3511.082 +2181,20.376358,0,892.87029,15.004522,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.3825143,1.8139061,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,155.925,3511.082 +2182,20.106563,0,893.0406,14.979649,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.2733857,1.7877224,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,155.925,3511.082 +2183,19.836768,0,893.2109,14.954776,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.1642571,1.7615388,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,155.925,3511.082 +2184,19.566973,0,893.3812,14.929902,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,7.0551286,1.7353551,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,155.925,3511.082 +2185,19.297179,0,893.55151,14.905029,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.946,1.7091714,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,155.925,3511.082 +2186,19.027384,0,893.72181,14.880155,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.8368714,1.6829878,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,155.925,3511.082 +2187,18.757589,0,893.89211,14.855282,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.7277429,1.6568041,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,155.925,3511.082 +2188,18.487794,0,894.06242,14.830408,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.6186143,1.6306204,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,155.925,3511.082 +2189,18.217999,0,894.23272,14.805535,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.5094857,1.6044367,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,155.925,3511.082 +2190,17.948204,0,894.40302,14.780661,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.4003571,1.5782531,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,155.925,3511.082 +2191,17.678409,0,894.57333,14.755788,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.2912286,1.5520694,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,155.925,3511.082 +2192,17.408614,0,894.74363,14.730914,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.1821,1.5258857,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,155.925,3511.082 +2193,17.138819,0,894.91393,14.706041,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,6.0729714,1.499702,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,155.925,3511.082 +2194,16.869024,0,895.08423,14.681167,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.9638429,1.4735184,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082 +2195,16.59923,0,895.25454,14.656294,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.8547143,1.4473347,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,155.925,3511.082 +2196,16.329435,0,895.42484,14.63142,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.7455857,1.421151,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,155.925,3511.082 +2197,16.05964,0,895.59514,14.606547,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.6364571,1.3949673,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,155.925,3511.082 +2198,15.789845,0,895.76545,14.581673,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.5273286,1.3687837,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082 +2199,15.52005,0,895.93575,14.5568,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.4182,1.3426,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,155.925,3511.082 +2200,15.250255,0,896.10605,14.531927,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.3090714,1.3164163,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 +2201,14.98046,0,896.27636,14.507053,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.1999429,1.2902327,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,155.925,3511.082 +2202,14.710665,0,896.44666,14.48218,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,5.0908143,1.264049,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,155.925,3511.082 +2203,14.44087,0,896.61696,14.457306,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.9816857,1.2378653,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 +2204,14.171076,0,896.78727,14.432433,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.8725571,1.2116816,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,155.925,3511.082 +2205,13.901281,0,896.95757,14.407559,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.7634286,1.185498,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 +2206,13.631486,0,897.12787,14.382686,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.6543,1.1593143,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,155.925,3511.082 +2207,13.361691,0,897.29817,14.357812,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.5451714,1.1331306,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 +2208,13.091896,0,897.46848,14.332939,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.4360429,1.1069469,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 +2209,12.822101,0,897.63878,14.308065,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.3269143,1.0807633,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,155.925,3511.082 +2210,12.552306,0,897.80908,14.283192,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.2177857,1.0545796,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 +2211,12.282511,0,897.97939,14.258318,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,4.1086571,1.0283959,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 +2212,12.012716,0,898.14969,14.233445,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.9995286,1.0022122,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,155.925,3511.082 +2213,11.742921,0,898.31999,14.208571,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.8904,0.97602857,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 +2214,11.473127,0,898.4903,14.183698,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.7812714,0.9498449,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 +2215,11.203332,0,898.6606,14.158824,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.6721429,0.92366122,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,155.925,3511.082 +2216,10.933537,0,898.8309,14.133951,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.5630143,0.89747755,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 +2217,10.663742,0,899.00121,14.109078,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.4538857,0.87129388,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 +2218,10.393947,0,899.17151,14.084204,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.3447571,0.8451102,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 +2219,10.124152,0,899.34181,14.059331,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.2356286,0.81892653,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,155.925,3511.082 +2220,9.8543571,0,899.51211,14.034457,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.1265,0.79274286,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 +2221,9.5845622,0,899.68242,14.009584,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,3.0173714,0.76655918,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 +2222,9.3147673,0,899.85272,13.98471,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.9082429,0.74037551,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 +2223,9.0449724,0,900.02302,13.959837,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.7991143,0.71419184,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 +2224,8.7751776,0,900.19333,13.934963,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.6899857,0.68800816,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,155.925,3511.082 +2225,8.5053827,0,900.36363,13.91009,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.5808571,0.66182449,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2226,8.2355878,0,900.53393,13.885216,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.4717286,0.63564082,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2227,7.9657929,0,900.70424,13.860343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.3626,0.60945714,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2228,7.695998,0,900.87454,13.835469,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.2534714,0.58327347,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2229,7.4262031,0,901.04484,13.810596,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.1443429,0.5570898,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2230,7.1564082,0,901.21514,13.785722,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,2.0352143,0.53090612,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,155.925,3511.082 +2231,6.8866133,0,901.38545,13.760849,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.9260857,0.50472245,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2232,6.6168184,0,901.55575,13.735976,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.8169571,0.47853878,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2233,6.3470235,0,901.72605,13.711102,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.7078286,0.4523551,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2234,6.0772286,0,901.89636,13.686229,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.5987,0.42617143,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2235,5.8074337,0,902.06666,13.661355,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.4895714,0.39998776,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2236,5.5376388,0,902.23696,13.636482,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.3804429,0.37380408,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2237,5.2678439,0,902.40727,13.611608,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.2713143,0.34762041,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2238,4.998049,0,902.57757,13.586735,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.1621857,0.32143673,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2239,4.7282541,0,902.74787,13.561861,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,1.0530571,0.29525306,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2240,4.4584592,0,902.91818,13.536988,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.94392857,0.26906939,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,155.925,3511.082 +2241,4.1886643,0,903.08848,13.512114,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.8348,0.24288571,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2242,3.9188694,0,903.25878,13.487241,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.72567143,0.21670204,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2243,3.6490745,0,903.42908,13.462367,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.61654286,0.19051837,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2244,3.3792796,0,903.59939,13.437494,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.50741429,0.16433469,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2245,3.1094847,0,903.76969,13.41262,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.39828571,0.13815102,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2246,2.8396898,0,903.93999,13.387747,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.28915714,0.11196735,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2247,2.5698949,0,904.1103,13.362873,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.18002857,0.085783673,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2248,2.3001,0,904.2806,13.338,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0596,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,155.925,3511.082 +2249,2.088,0,904.7895,13.343,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0.008,0,155.92,3511.082 +2250,2.0458,0,904.8603,13.3436,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.937,3511.082 +2251,2.05004,0,904.9552,13.34368,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.96,3511.082 +2252,2.05428,0,905.0501,13.34376,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,155.983,3511.082 +2253,2.05852,0,905.145,13.34384,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.006,3511.082 +2254,2.06276,0,905.2399,13.34392,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.029,3511.082 +2255,2.067,0,905.3348,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0.008,0,156.051,3511.082 +2256,2.07852,0,905.44156,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.074,3511.082 +2257,2.09004,0,905.54832,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.097,3511.082 +2258,2.10156,0,905.65508,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.125,3511.082 +2259,2.11308,0,905.76184,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.152,3511.082 +2260,2.1246,0,905.8686,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0705,0.0592,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0.008,0,156.18,3511.082 +2261,2.1217267,0,905.9807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070513333,0.0592,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.207,3511.082 +2262,2.1188533,0,906.0928,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070526667,0.0592,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.235,3511.082 +2263,2.11598,0,906.2049,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07054,0.0592,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.263,3511.082 +2264,2.1131067,0,906.317,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070553333,0.0592,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0.008,0,156.29,3511.082 +2265,2.1102333,0,906.4291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070566667,0.0592,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.318,3511.082 +2266,2.10736,0,906.5412,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07058,0.0592,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0.008,0,156.345,3511.082 +2267,2.1044867,0,906.6533,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070593333,0.0592,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.372,3511.082 +2268,2.1016133,0,906.7654,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070606667,0.0592,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0.008,0,156.399,3511.082 +2269,2.09874,0,906.8775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07062,0.0592,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.426,3511.082 +2270,2.0958667,0,906.9896,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070633333,0.0592,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.453,3511.082 +2271,2.0929933,0,907.1017,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070646667,0.0592,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.48,3511.082 +2272,2.09012,0,907.2138,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07066,0.0592,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.506,3511.082 +2273,2.0872467,0,907.3259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070673333,0.0592,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0.008,0,156.532,3511.082 +2274,2.0843733,0,907.438,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070686667,0.0592,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.559,3511.082 +2275,2.0815,0,907.5501,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0707,0.0592,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.585,3511.082 +2276,2.078004,0,907.65054,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070708,0.0592,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.611,3511.082 +2277,2.074508,0,907.75098,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070716,0.0592,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.636,3511.082 +2278,2.071012,0,907.85142,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070724,0.0592,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0.008,0,156.662,3511.082 +2279,2.067516,0,907.95186,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070732,0.0592,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.687,3511.082 +2280,2.06402,0,908.0523,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07074,0.0592,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.713,3511.082 +2281,2.060524,0,908.15274,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070748,0.0592,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.738,3511.082 +2282,2.057028,0,908.25318,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070756,0.0592,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.763,3511.082 +2283,2.053532,0,908.35362,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070764,0.0592,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0.008,0,156.788,3511.082 +2284,2.050036,0,908.45406,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070772,0.0592,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.812,3511.082 +2285,2.04654,0,908.5545,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07078,0.0592,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.837,3511.082 +2286,2.043044,0,908.65494,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070788,0.0592,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.861,3511.082 +2287,2.039548,0,908.75538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070796,0.0592,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.886,3511.082 +2288,2.036052,0,908.85582,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070804,0.0592,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0.008,0,156.91,3511.082 +2289,2.032556,0,908.95626,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070812,0.0592,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.934,3511.082 +2290,2.02906,0,909.0567,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07082,0.0592,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.958,3511.082 +2291,2.025564,0,909.15714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070828,0.0592,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,156.981,3511.082 +2292,2.022068,0,909.25758,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070836,0.0592,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.005,3511.082 +2293,2.018572,0,909.35802,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070844,0.0592,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0.008,0,157.028,3511.082 +2294,2.015076,0,909.45846,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070852,0.0592,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.052,3511.082 +2295,2.01158,0,909.5589,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07086,0.0592,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.075,3511.082 +2296,2.008084,0,909.65934,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070868,0.0592,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.098,3511.082 +2297,2.004588,0,909.75978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070876,0.0592,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.121,3511.082 +2298,2.001092,0,909.86022,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070884,0.0592,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0.008,0,157.144,3511.082 +2299,1.997596,0,909.96066,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070892,0.0592,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.167,3511.082 +2300,1.9941,0,910.0611,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0709,0.0592,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.189,3511.082 +2301,1.991988,0,910.14458,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070904,0.0592,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.212,3511.082 +2302,1.989876,0,910.22807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070908,0.0592,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.234,3511.082 +2303,1.987764,0,910.31155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070912,0.0592,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0.008,0,157.256,3511.082 +2304,1.985652,0,910.39504,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070916,0.0592,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0.008,0,157.278,3511.082 +2305,1.98354,0,910.47852,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07092,0.0592,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.3,3511.082 +2306,1.981428,0,910.562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070924,0.0592,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.322,3511.082 +2307,1.979316,0,910.64549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070928,0.0592,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.344,3511.082 +2308,1.977204,0,910.72897,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070932,0.0592,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.366,3511.082 +2309,1.975092,0,910.81246,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070936,0.0592,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0.008,0,157.387,3511.082 +2310,1.97298,0,910.89594,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07094,0.0592,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.409,3511.082 +2311,1.970868,0,910.97942,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070944,0.0592,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.43,3511.082 +2312,1.968756,0,911.06291,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070948,0.0592,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.452,3511.082 +2313,1.966644,0,911.14639,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070952,0.0592,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.473,3511.082 +2314,1.964532,0,911.22988,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070956,0.0592,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.494,3511.082 +2315,1.96242,0,911.31336,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07096,0.0592,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0.008,0,157.515,3511.082 +2316,1.960308,0,911.39684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070964,0.0592,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.536,3511.082 +2317,1.958196,0,911.48033,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070968,0.0592,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.556,3511.082 +2318,1.956084,0,911.56381,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070972,0.0592,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.577,3511.082 +2319,1.953972,0,911.6473,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070976,0.0592,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.598,3511.082 +2320,1.95186,0,911.73078,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07098,0.0592,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.618,3511.082 +2321,1.949748,0,911.81426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070984,0.0592,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0.008,0,157.639,3511.082 +2322,1.947636,0,911.89775,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070988,0.0592,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.659,3511.082 +2323,1.945524,0,911.98123,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070992,0.0592,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.679,3511.082 +2324,1.943412,0,912.06472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.070996,0.0592,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0.008,0,157.699,3511.082 +2325,1.9413,0,912.1482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071,0.0592,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.719,3511.082 +2326,1.939188,0,912.23168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071004,0.0592,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.739,3511.082 +2327,1.937076,0,912.31517,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071008,0.0592,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0.008,0,157.759,3511.082 +2328,1.934964,0,912.39865,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071012,0.0592,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.779,3511.082 +2329,1.932852,0,912.48214,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071016,0.0592,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.799,3511.082 +2330,1.93074,0,912.56562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07102,0.0592,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.818,3511.082 +2331,1.928628,0,912.6491,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071024,0.0592,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.838,3511.082 +2332,1.926516,0,912.73259,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071028,0.0592,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.857,3511.082 +2333,1.924404,0,912.81607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071032,0.0592,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0.008,0,157.877,3511.082 +2334,1.922292,0,912.89956,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071036,0.0592,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.896,3511.082 +2335,1.92018,0,912.98304,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07104,0.0592,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.915,3511.082 +2336,1.918068,0,913.06652,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071044,0.0592,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.934,3511.082 +2337,1.915956,0,913.15001,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071048,0.0592,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.953,3511.082 +2338,1.913844,0,913.23349,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071052,0.0592,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.972,3511.082 +2339,1.911732,0,913.31698,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071056,0.0592,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,157.991,3511.082 +2340,1.90962,0,913.40046,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07106,0.0592,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0.008,0,158.01,3511.082 +2341,1.907508,0,913.48394,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071064,0.0592,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.029,3511.082 +2342,1.905396,0,913.56743,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071068,0.0592,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.047,3511.082 +2343,1.903284,0,913.65091,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071072,0.0592,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.066,3511.082 +2344,1.901172,0,913.7344,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071076,0.0592,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.085,3511.082 +2345,1.89906,0,913.81788,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07108,0.0592,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.103,3511.082 +2346,1.896948,0,913.90136,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071084,0.0592,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0.008,0,158.121,3511.082 +2347,1.894836,0,913.98485,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071088,0.0592,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.14,3511.082 +2348,1.892724,0,914.06833,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071092,0.0592,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0.008,0,158.158,3511.082 +2349,1.890612,0,914.15182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071096,0.0592,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.176,3511.082 +2350,1.8885,0,914.2353,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0711,0.0592,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.194,3511.082 +2351,1.885994,0,914.3042,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071106,0.0592,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.212,3511.082 +2352,1.883488,0,914.37309,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071112,0.0592,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.23,3511.082 +2353,1.880982,0,914.44199,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071118,0.0592,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0.008,0,158.248,3511.082 +2354,1.878476,0,914.51088,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071124,0.0592,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.266,3511.082 +2355,1.87597,0,914.57978,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07113,0.0592,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.284,3511.082 +2356,1.873464,0,914.64868,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071136,0.0592,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.301,3511.082 +2357,1.870958,0,914.71757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071142,0.0592,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.319,3511.082 +2358,1.868452,0,914.78647,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071148,0.0592,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.337,3511.082 +2359,1.865946,0,914.85536,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071154,0.0592,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.354,3511.082 +2360,1.86344,0,914.92426,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07116,0.0592,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0.008,0,158.372,3511.082 +2361,1.860934,0,914.99316,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071166,0.0592,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.389,3511.082 +2362,1.858428,0,915.06205,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071172,0.0592,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.406,3511.082 +2363,1.855922,0,915.13095,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071178,0.0592,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.424,3511.082 +2364,1.853416,0,915.19984,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071184,0.0592,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.441,3511.082 +2365,1.85091,0,915.26874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07119,0.0592,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.458,3511.082 +2366,1.848404,0,915.33764,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071196,0.0592,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.475,3511.082 +2367,1.845898,0,915.40653,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071202,0.0592,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0.008,0,158.492,3511.082 +2368,1.843392,0,915.47543,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071208,0.0592,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.509,3511.082 +2369,1.840886,0,915.54432,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071214,0.0592,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.526,3511.082 +2370,1.83838,0,915.61322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07122,0.0592,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.543,3511.082 +2371,1.835874,0,915.68212,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071226,0.0592,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.56,3511.082 +2372,1.833368,0,915.75101,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071232,0.0592,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.576,3511.082 +2373,1.830862,0,915.81991,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071238,0.0592,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.593,3511.082 +2374,1.828356,0,915.8888,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071244,0.0592,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0.008,0,158.61,3511.082 +2375,1.82585,0,915.9577,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07125,0.0592,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0.008,0,158.626,3511.082 +2376,1.823344,0,916.0266,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071256,0.0592,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.643,3511.082 +2377,1.820838,0,916.09549,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071262,0.0592,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.659,3511.082 +2378,1.818332,0,916.16439,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071268,0.0592,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.676,3511.082 +2379,1.815826,0,916.23328,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071274,0.0592,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.692,3511.082 +2380,1.81332,0,916.30218,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07128,0.0592,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.708,3511.082 +2381,1.810814,0,916.37108,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071286,0.0592,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.724,3511.082 +2382,1.808308,0,916.43997,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071292,0.0592,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0.008,0,158.741,3511.082 +2383,1.805802,0,916.50887,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071298,0.0592,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.757,3511.082 +2384,1.803296,0,916.57776,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071304,0.0592,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.773,3511.082 +2385,1.80079,0,916.64666,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07131,0.0592,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.789,3511.082 +2386,1.798284,0,916.71556,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071316,0.0592,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.805,3511.082 +2387,1.795778,0,916.78445,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071322,0.0592,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.821,3511.082 +2388,1.793272,0,916.85335,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071328,0.0592,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.837,3511.082 +2389,1.790766,0,916.92224,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071334,0.0592,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.853,3511.082 +2390,1.78826,0,916.99114,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07134,0.0592,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0.008,0,158.868,3511.082 +2391,1.785754,0,917.06004,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071346,0.0592,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.884,3511.082 +2392,1.783248,0,917.12893,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071352,0.0592,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.9,3511.082 +2393,1.780742,0,917.19783,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071358,0.0592,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.915,3511.082 +2394,1.778236,0,917.26672,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071364,0.0592,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.931,3511.082 +2395,1.77573,0,917.33562,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07137,0.0592,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.947,3511.082 +2396,1.773224,0,917.40452,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071376,0.0592,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.962,3511.082 +2397,1.770718,0,917.47341,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071382,0.0592,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.977,3511.082 +2398,1.768212,0,917.54231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071388,0.0592,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0.008,0,158.993,3511.082 +2399,1.765706,0,917.6112,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071394,0.0592,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.008,3511.082 +2400,1.7632,0,917.6801,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0714,0.0592,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.024,3511.082 +2401,1.760278,0,917.7393,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071404,0.0592,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.039,3511.082 +2402,1.757356,0,917.79849,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071408,0.0592,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0.008,0,159.054,3511.082 +2403,1.754434,0,917.85769,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071412,0.0592,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.069,3511.082 +2404,1.751512,0,917.91688,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071416,0.0592,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.084,3511.082 +2405,1.74859,0,917.97608,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07142,0.0592,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.099,3511.082 +2406,1.745668,0,918.03528,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071424,0.0592,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0.008,0,159.114,3511.082 +2407,1.742746,0,918.09447,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071428,0.0592,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.129,3511.082 +2408,1.739824,0,918.15367,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071432,0.0592,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.144,3511.082 +2409,1.736902,0,918.21286,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071436,0.0592,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.159,3511.082 +2410,1.73398,0,918.27206,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07144,0.0592,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.174,3511.082 +2411,1.731058,0,918.33126,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071444,0.0592,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.189,3511.082 +2412,1.728136,0,918.39045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071448,0.0592,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.204,3511.082 +2413,1.725214,0,918.44965,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071452,0.0592,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.218,3511.082 +2414,1.722292,0,918.50884,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071456,0.0592,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0.008,0,159.233,3511.082 +2415,1.71937,0,918.56804,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07146,0.0592,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.248,3511.082 +2416,1.716448,0,918.62724,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071464,0.0592,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.262,3511.082 +2417,1.713526,0,918.68643,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071468,0.0592,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.277,3511.082 +2418,1.710604,0,918.74563,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071472,0.0592,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.292,3511.082 +2419,1.707682,0,918.80482,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071476,0.0592,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.306,3511.082 +2420,1.70476,0,918.86402,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07148,0.0592,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.32,3511.082 +2421,1.701838,0,918.92322,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071484,0.0592,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.335,3511.082 +2422,1.698916,0,918.98241,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071488,0.0592,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0.008,0,159.349,3511.082 +2423,1.695994,0,919.04161,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071492,0.0592,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.364,3511.082 +2424,1.693072,0,919.1008,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071496,0.0592,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.378,3511.082 +2425,1.69015,0,919.16,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0715,0.0592,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.392,3511.082 +2426,1.687228,0,919.2192,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071504,0.0592,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.406,3511.082 +2427,1.684306,0,919.27839,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071508,0.0592,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.421,3511.082 +2428,1.681384,0,919.33759,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071512,0.0592,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.435,3511.082 +2429,1.678462,0,919.39678,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071516,0.0592,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.449,3511.082 +2430,1.67554,0,919.45598,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07152,0.0592,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.463,3511.082 +2431,1.672618,0,919.51518,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071524,0.0592,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0.008,0,159.477,3511.082 +2432,1.669696,0,919.57437,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071528,0.0592,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.491,3511.082 +2433,1.666774,0,919.63357,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071532,0.0592,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.505,3511.082 +2434,1.663852,0,919.69276,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071536,0.0592,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0.008,0,159.519,3511.082 +2435,1.66093,0,919.75196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07154,0.0592,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.532,3511.082 +2436,1.658008,0,919.81116,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071544,0.0592,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.546,3511.082 +2437,1.655086,0,919.87035,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071548,0.0592,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.56,3511.082 +2438,1.652164,0,919.92955,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071552,0.0592,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.574,3511.082 +2439,1.649242,0,919.98874,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071556,0.0592,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.588,3511.082 +2440,1.64632,0,920.04794,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07156,0.0592,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0.008,0,159.601,3511.082 +2441,1.643398,0,920.10714,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071564,0.0592,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.615,3511.082 +2442,1.640476,0,920.16633,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071568,0.0592,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.629,3511.082 +2443,1.637554,0,920.22553,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071572,0.0592,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.642,3511.082 +2444,1.634632,0,920.28472,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071576,0.0592,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.656,3511.082 +2445,1.63171,0,920.34392,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.07158,0.0592,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.669,3511.082 +2446,1.628788,0,920.40312,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071584,0.0592,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.683,3511.082 +2447,1.625866,0,920.46231,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071588,0.0592,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.696,3511.082 +2448,1.622944,0,920.52151,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071592,0.0592,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.709,3511.082 +2449,1.620022,0,920.5807,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.071596,0.0592,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0.008,0,159.723,3511.082 +2450,1.6171,0,920.6399,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.736,3511.082 +2451,1.61445,0,920.691,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.749,3511.082 +2452,1.6118,0,920.74209,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.763,3511.082 +2453,1.60915,0,920.79319,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.776,3511.082 +2454,1.6065,0,920.84428,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.789,3511.082 +2455,1.60385,0,920.89538,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.802,3511.082 +2456,1.6012,0,920.94648,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.815,3511.082 +2457,1.59855,0,920.99757,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.829,3511.082 +2458,1.5959,0,921.04867,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0.008,0,159.842,3511.082 +2459,1.59325,0,921.09976,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.855,3511.082 +2460,1.5906,0,921.15086,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.868,3511.082 +2461,1.58795,0,921.20196,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.881,3511.082 +2462,1.5853,0,921.25305,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.894,3511.082 +2463,1.58265,0,921.30415,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.907,3511.082 +2464,1.58,0,921.35524,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.919,3511.082 +2465,1.57735,0,921.40634,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.932,3511.082 +2466,1.5747,0,921.45744,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.945,3511.082 +2467,1.57205,0,921.50853,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.958,3511.082 +2468,1.5694,0,921.55963,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0.008,0,159.971,3511.082 +2469,1.56675,0,921.61072,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.983,3511.082 +2470,1.5641,0,921.66182,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,159.996,3511.082 +2471,1.56145,0,921.71292,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.009,3511.082 +2472,1.5588,0,921.76401,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.021,3511.082 +2473,1.55615,0,921.81511,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.034,3511.082 +2474,1.5535,0,921.8662,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.046,3511.082 +2475,1.55085,0,921.9173,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.059,3511.082 +2476,1.5482,0,921.9684,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.071,3511.082 +2477,1.54555,0,922.01949,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0.008,0,160.084,3511.082 +2478,1.5429,0,922.07059,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.096,3511.082 +2479,1.54025,0,922.12168,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.109,3511.082 +2480,1.5376,0,922.17278,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.121,3511.082 +2481,1.53495,0,922.22388,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.134,3511.082 +2482,1.5323,0,922.27497,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.146,3511.082 +2483,1.52965,0,922.32607,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.158,3511.082 +2484,1.527,0,922.37716,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.17,3511.082 +2485,1.52435,0,922.42826,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.183,3511.082 +2486,1.5217,0,922.47936,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.195,3511.082 +2487,1.51905,0,922.53045,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0.008,0,160.207,3511.082 +2488,1.5164,0,922.58155,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.219,3511.082 +2489,1.51375,0,922.63264,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.231,3511.082 +2490,1.5111,0,922.68374,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.244,3511.082 +2491,1.50845,0,922.73484,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.256,3511.082 +2492,1.5058,0,922.78593,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.268,3511.082 +2493,1.50315,0,922.83703,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.28,3511.082 +2494,1.5005,0,922.88812,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.292,3511.082 +2495,1.49785,0,922.93922,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.304,3511.082 +2496,1.4952,0,922.99032,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.316,3511.082 +2497,1.49255,0,923.04141,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.328,3511.082 +2498,1.4899,0,923.09251,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0.008,0,160.339,3511.082 +2499,1.48725,0,923.1436,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082 +2500,1.4846,0,923.1947,13.344,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,0.0716,0.0592,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0.008,0,160.351,3511.082 diff --git a/input/hector_rcp85.ini b/input/hector_rcp85.ini new file mode 100644 index 0000000..ecb2cbc --- /dev/null +++ b/input/hector_rcp85.ini @@ -0,0 +1,390 @@ +; Config file for hector model: RCP85 +;------------------------------------------------------------------------ +[core] +run_name=rcp85 +startDate=1745 +endDate=2300 +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[onelineocean] +enabled=0 ; 'enabled=0' will disable any component +;output=0 ; 'output=0' will disable any component's output +ocean_c=38000 ; Pg C + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? +;carbon_HL=145 ; high latitude, Pg C +;carbon_LL=750 ; low latitude, Pg C +;carbon_IO=10040 ; intermediate, Pg C +;carbon_DO=27070 ; deep, Pg C + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +; Ocean heat uptake parameters +k_max=0.3 ; max ocean heat uptake efficiency, W/m2/K +t_mid=2.75 ; global temperature at which k has declined by 50% +slope=1.0 ; slope of curve, 1/K (0 means constant k_max) +k_min=0.1 ; min ocean heat uptake efficiency, W/m2/K + +; Optional ocean C uptake constraint, Pg C/yr +; If supplied, the model will use these data, ignoring what it calculates +;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes +atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) +;C0=276 ; another way to specify, in ppmv +;boreal.veg_c=100 ; e.g. +;tropical.veg_c=450 ; +veg_c=550 ; vegetation, Pg C +;boreal.detritus_c=15 +;tropical.detritus_c=45 +detritus_c=55 ; detritus, Pg C +;boreal.soil_c=1200 +;tropical.soil_c=578 +soil_c=1782 ; soil, Pg C +;boreal.npp_flux0=5.0 +;tropical.npp_flux0=45.0 +npp_flux0=50.0 ; net primary production, Pg C/yr + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) +f_lucv=0.1 ; Fraction of land use change flux from vegetation +f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) + +; Anthropogenic contributions: direct emissions and land use change, Pg C/yr +anthroEmissions=csv:emissions/RCP85_emissions.csv +lucEmissions=csv:emissions/RCP85_emissions.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;Ca_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record +;Ca_constrain=csv:constraints/RCP85_co2ppm.csv ; MAGICC output + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.36 ; 0.36=about +20% @2xCO2 +q10_rh=2.0 ; respiration response Q10, unitless + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +Ftalbedo[1750]=0.0 +Ftalbedo[1950]=-0.2 + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerances +eps_rel=1.0e-6 +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +S0=53841.2 ; historical sulphate from year 2000 (Gg) +SN=42000 ; natural sulfur emissions (Gg) +SO2_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +;SV=csv:emissions/volcanic_RF.csv ; emissions time series + +;------------------------------------------------------------------------ +[CH4] +M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 +Tsoil=160 ; CH4 loss to soil (years) +Tstrat=120 ; CH4 loss to stratosphere (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=300 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +;molarMass=16.04 ; grams +;tau=10 ; lifetime in years (Oucher et al 2009) + +;------------------------------------------------------------------------ +[N2O] +N0=272.9596 ; preindustrial nitrous oxide, ppbv +UC_N2O=4.8 ; Tg(N2O)/ppb unit conversion between emissions and concentrations +TN2O0=132 ; Initial Lifetime of N2O + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2ON_emissions[1765]=11 ; natural emissions in 1765 +N2ON_emissions[2000]=8 ; natural emissions in 2000 +N2ON_emissions[2300]=8 ; natural emissions in 2300 + +N2O_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series +;molarMass=44.01 ; grams + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv + +;------------------------------------------------------------------------ +[temperature] +S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +;tgav_constrain=csv:constraints/tgav_historical.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:emissions/RCP85_emissions.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:emissions/RCP85_emissions.csv + +;------------------------------------------------------------------------ +; Halocarbons +; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years +rho=0.00008 ; radiative efficiencies W/m2/ppt +H0=35.0,pptv ; preindustrial concentration, pptv +CF4_emissions=csv:emissions/RCP85_emissions.csv +molarMass=88.0043 ; grams + +[C2F6_halocarbon] +tau=10000.0 +rho=0.00026 +C2F6_emissions=csv:emissions/RCP85_emissions.csv +molarMass=138.01 + +;[C4F10_halocarbon] +;tau=2600.0 +;rho=0.00033 +;C4F10_emissions=csv:emissions/RCP85_emissions.csv +;molarMass=238.0 + +[HFC23_halocarbon] +tau=270.0 +rho=0.00019 +HFC23_emissions=csv:emissions/RCP85_emissions.csv +molarMass=70.0 + +[HFC32_halocarbon] +tau=4.9 +rho=0.00011 +HFC32_emissions=csv:emissions/RCP85_emissions.csv +molarMass=52.0 + +[HFC4310_halocarbon] +tau=15.9 +rho=0.0004 +HFC4310_emissions=csv:emissions/RCP85_emissions.csv +molarMass=252.0 + +[HFC125_halocarbon] +tau=29.0 +rho=0.00023 +HFC125_emissions=csv:emissions/RCP85_emissions.csv +molarMass=120.02 + +[HFC134a_halocarbon] +tau=14.0 +rho=0.00016 +HFC134a_emissions=csv:emissions/RCP85_emissions.csv +molarMass=102.02 + +[HFC143a_halocarbon] +tau=52.0 +rho=0.00013 +HFC143a_emissions=csv:emissions/RCP85_emissions.csv +molarMass=84.04 + +;[HFC152a_halocarbon] +;tau=1.4 +;rho=0.00009 +;HFC152a_emissions=csv:emissions/RCP85_emissions.csv +;molarMass=66.0 + +[HFC227ea_halocarbon] +tau=34.2 +rho=0.00026 +HFC227ea_emissions=csv:emissions/RCP85_emissions.csv +molarMass=170.03 + +[HFC245fa_halocarbon] +tau=7.6 +rho=0.00028 +HFC245fa_emissions=csv:emissions/RCP85_emissions.csv +molarMass=134.0 + +;[HFC236fa_halocarbon] +;tau=240.0 +;rho=0.00028 +;HFC236fa_emissions=csv:emissions/RCP85_emissions.csv +;molarMass=152.0 + +[SF6_halocarbon] +tau=3200.0 +rho=0.00052 +SF6_emissions=csv:emissions/RCP85_emissions.csv +molarMass=146.06 + +[CFC11_halocarbon] +tau=45.0 +rho=0.00025 +CFC11_emissions=csv:emissions/RCP85_emissions.csv +molarMass=137.35 +;ni=3 +;FC=1 + +[CFC12_halocarbon] +tau=100 +rho=0.00032 +CFC12_emissions=csv:emissions/RCP85_emissions.csv +molarMass=120.9 +;ni=2 +;FC=0.6 + +[CFC113_halocarbon] +tau=85.0 +rho=0.0003 +CFC113_emissions=csv:emissions/RCP85_emissions.csv +molarMass=187.35 +;ni=3 +;FC=0.75 + +[CFC114_halocarbon] +tau=300 +rho=0.00031 +CFC114_emissions=csv:emissions/RCP85_emissions.csv +molarMass=170.9 +;ni=2 +;FC=0.28 + +[CFC115_halocarbon] +tau=1700 +rho=0.00018 +CFC115_emissions=csv:emissions/RCP85_emissions.csv +molarMass=154.45 + +[CCl4_halocarbon] +tau=26.0 +rho=0.00013 +CCl4_emissions=csv:emissions/RCP85_emissions.csv +molarMass=153.8 +;ni=4 +;FC=1.06 + +[CH3CCl3_halocarbon] +tau=5.0 +rho=0.00006 +CH3CCl3_emissions=csv:emissions/RCP85_emissions.csv +molarMass=133.35 +;ni=3 +;FC=1.08 + +[halon1211_halocarbon] +tau=16.0 +rho=0.00003 +halon1211_emissions=csv:emissions/RCP85_emissions.csv +molarMass=165.35 +;ni=1 +;nj=1 +;FC=1.18 + +[halon1301_halocarbon] +tau=65.0 +rho=0.00032 +halon1301_emissions=csv:emissions/RCP85_emissions.csv +molarMass=148.9 +;nj=1 +;FC=0.62 + +[halon2402_halocarbon] +tau=20.0 +rho=0.00033 +halon2402_emissions=csv:emissions/RCP85_emissions.csv +molarMass=259.8 +;nj=2 +;FC=1.22 + +[HCF22_halocarbon] +tau=12.0 +rho=0.0002 +HCF22_emissions=csv:emissions/RCP85_emissions.csv +molarMass=86.45 +;ni=1 +;FC=0.35 + +[HCF141b_halocarbon] +tau=9.3 +rho=0.00014 +HCF141b_emissions=csv:emissions/RCP85_emissions.csv +molarMass=116.9 +;ni=2 +;FC=0.72 + +[HCF142b_halocarbon] +tau=17.9 +rho=0.0002 +HCF142b_emissions=csv:emissions/RCP85_emissions.csv +molarMass=100.45 +;ni=1 +;FC=0.36 + +;[HCFC143_halocarbon] +;tau=1.3 +;rho=0.00014 +;HCFC143_emissions=csv:emissions/RCP85_emissions.csv +;molarMass=152.9 + +[CH3Cl_halocarbon] +tau=1.3 +rho=0.00001 +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +CH3Cl_emissions=csv:emissions/RCP85_emissions.csv +molarMass=50.45 +;ni=1 +;FC=0.8 + +[CH3Br_halocarbon] +tau=0.7 +rho=0.00001 +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +CH3Br_emissions=csv:emissions/RCP85_emissions.csv +molarMass=94.9 +;nj=1 +;FC=1.12 diff --git a/package.json b/package.json new file mode 100644 index 0000000..7f3d9c3 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "iexec-dapp-init", + "version": "1.0.0", + "description": "This is the registry for sample iexec dapps, used by the iexec-sdk cli.", + "main": "iexec.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/iExecBlockchainComputing/iexec-dapp-samples.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/iExecBlockchainComputing/iexec-dapp-samples/issues" + }, + "homepage": "https://github.com/iExecBlockchainComputing/iexec-dapp-samples#readme" +} diff --git a/truffle.js b/truffle.js deleted file mode 100644 index 87b347c..0000000 --- a/truffle.js +++ /dev/null @@ -1,31 +0,0 @@ -module.exports = { - networks: { - development: { - host: "http://localhost:8545", - port: 8545, - network_id: "*" // Match any network id - }, - ropsten: { - host: "https://ropsten.infura.io/berv5GTB5cSdOJPPnqOq", - port: 8545, - network_id: "3", - iexecOracleAddress: "0xb34406538112bd2b3036b2c417c7cff827777a11", // oracle v0.1.2 ropsten - // gasPriceMultiplier: 2, // use factor 2 of the network estimated gasPrice - // gasLimitMultiplier: 4, // use factor 4 of the network estimated gasLimit - // gasPrice: 21000000000 // manually set the gasPrice in gwei. Prefer "gasPriceMultiplier" - // gas: 400000 // manually set the gas limit in gwei. Prefer "gasLimitMultiplier" - }, - rinkeby: { - host: "https://rinkeby.infura.io/berv5GTB5cSdOJPPnqOq", - port: 8545, - network_id: "4", - iexecOracleAddress: "0x98275d4b6511ef05ed063d127dd82b72588326c9",// oracle v0.1.2 rinkeby - }, - kovan: { - host: "https://kovan.infura.io/berv5GTB5cSdOJPPnqOq", - port: 8545, - network_id: "42", - iexecOracleAddress: "0xb81d38d843cb526a3d0c3130d568fe09799135aa",// oracle v0.1.2 kovan - }, - } -};